body {
  margin: 0;
  font-family:"poppins",serif; 
  font-weight: 600;
  font-style: normal;  
  background-color: #dadada;                      
}

.header {
  color: #FFD700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #141414; /* Vibrant green background */
  padding: 15px 30px;
  font-family:"poppins",serif; 
  font-weight: 600;
  font-style: normal;
}

  .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 {
    max-width: 60px;
    height: auto; /* Maintain aspect ratio */
    margin-left: 0px;
  }
  
  .navbar ul {
    list-style-type: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .navbar li {
    margin: 0 5px; /* Space between links */
    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 */
  }
  
  .navbar a:hover {
    color: #FFD700; /* Gold color on hover */
  }
  
  .product-selection {
    max-width: 760px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: right;
    margin-top: 15px;
    font-family:"poppins",serif; 
  }
  
  .product-selection h2 {
    text-align: center;
    color: #ff0000;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .checkbox-group label {
    display: block;
    font-size: small;
  }
  
  .product-selection input[type=text],
  .product-selection input[type=email],
  .product-selection input[type=tel] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .form-container {
    text-align: center;
    max-width: 100%;
    margin: auto;
    padding: 20px;
    background-color: #141414;
    border-radius: 8px;
    color: #ffd700;
  }
  
  footer {
    text-align: center;
    padding: 5px;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .contact-container {
    padding: 5px;
    margin-top: 50px;
  }

  ::placeholder{
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  h1 {
    color: #131212;
  }

  h2 {
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  p {
    color: #666;
  }
  
  .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;
  }
  
  .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 */
  }

.carousel-item {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.price-text {
  color: #00ce07;
}

.autres-produites {
  animation: vibrate 1.5s infinite; /* Apply the vibrate animation continuously */
}
