body {
    font-family:"poppins",serif;
    font-weight: 600;
    font-style: normal;
    background-color: #dadada;                 
  }  

.header {
    color: #FFD700;
    text-shadow: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #141414; /* Vibrant green background */
    padding: 15px ;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }

  .header-title {
    font-size: medium;
  }
  
  .Banner {
    margin: 0;  /* Remove any margin */
    padding: 0;  /* Remove any padding */
  }
  
  .Banner img {
    width: 100%; /* Make it responsive */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    display: block; /* Removes extra space below image */
  }
  
  .logo img {
    width: 60px; /* Adjust the size of the logo */
    height: auto; /* Maintain aspect ratio */
    margin-left: 0px;
  }
  
  .navbar ul {
    list-style-type: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    display: flex;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .navbar li {
    margin: 0 10px; /* Space between links */
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
    font-size: small;
  }
  
  .navbar a {
    text-decoration: none; /* Remove underline */
    color: white; /* White text color */
    font-weight: bold;
    transition: color 0.3s; /* Smooth transition for hover effect */
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .navbar a:hover {
    color: #FFD700; /* Gold color on hover */
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }

  .carousel-item {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .product-info {
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
  }
  
  .form-container {
    text-align: center;
    max-width: 100%;
    padding: 20px;
    background-color: #141414;
    border-radius: 8px;
    color: #ffd700;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  h2 {
    text-align: center;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }

  h1 {
    color: #272727;
  }
  
  ::placeholder{
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }

  .autres-produites {
    animation: vibrate 1.5s infinite; /* Apply the vibrate animation continuously */
  }
  
  .btn-warning {
    animation: vibrate 1.5s infinite; /* Apply the vibrate animation continuously */
  }
  
  @keyframes vibrate {
    0% { transform: translate(0); }
    10% { transform: translate(-2px, 0); }
    20% { transform: translate(2px, 0); }
    30% { transform: translate(-2px, 0); }
    40% { transform: translate(2px, 0); }
    50% { transform: translate(-2px, 0); }
    60% { transform: translate(2px, 0); }
    70% { transform: translate(-2px, 0); }
    80% { transform: translate(2px, 0); }
    90% { transform: translate(-2px, 0); }
    100% { transform: translate(0); } /* Return to original position */
  }
  
  .price-text {
    color: #ff0000;
    text-align: center;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
    animation: flash 1s infinite; /* Apply the flash animation */
  }



  @keyframes flash {
    0% {
      opacity: 1; /* Fully visible */
    }
    50% {
      opacity: 0; /* Invisible */
    }
    100% {
      opacity: 1; /* Fully visible again */
    }
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .icon {
    margin: 0 15px;
  }
  
  .icon img {
    width: 40px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
  }
  
  .icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }

  .contact-container {
    padding: 5px;
    margin-top: 50px;
  }

  footer {
    text-align: center;
    padding: 5px ;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }

