.cart-dropdown {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 70%; /* Augmente la taille du panier sur PC */
  max-width: 400px; /* Limite la taille du panier */
  max-height: 80vh; /* Limite la hauteur à 70% de la hauteur de la fenêtre */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  background-color: white;
  border-radius: 15px;
  margin-top: 60px;
  overflow-y: auto; /* Permet le défilement vertical */
  overflow-x: hidden; /* Empêche le défilement horizontal */
  
}

/* Pour les petits écrans, on réduit la taille du panier */
@media (max-width: 992px) {
  .cart-dropdown {
    width: 90%; /* Plus large pour mobile */
    right: 10px;
    max-height: 60vh; /* Ajuste la hauteur pour mobile */
  }
}

.cart-dropdown::-webkit-scrollbar {
  width: 3px; /* Largeur de la barre */
}

.cart-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1; /* Couleur de l'arrière-plan de la piste */
  border-radius: 10px; /* Coins arrondis */
}

.cart-dropdown::-webkit-scrollbar-thumb {
  background: black; /* Couleur de la barre */
  border-radius: 10px; /* Coins arrondis */
}

.cart-dropdown::-webkit-scrollbar-thumb:hover {
  background: #555; /* Couleur de la barre au survol */
}

/* Bouton fermer */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

/* Option pour les boutons en survol */
.close-btn:hover {
  color: red;
}

/* Carroussel */




.scroll-home::-webkit-scrollbar {
  width: 1px; /* Largeur de la barre */
  height: 1px;
}


.scroll-home::-webkit-scrollbar-track {
  background: #f1f1f1; /* Couleur de l'arrière-plan de la piste */
  border-radius: 1px; /* Coins arrondis */
}

.scroll-home::-webkit-scrollbar-thumb {
  background: #555; /* Couleur de la barre */
  border-radius: 1px; /* Coins arrondis */
}

.scroll-home::-webkit-scrollbar-thumb:hover {
  background: #555; /* Couleur de la barre au survol */
}





.section-title {
  font-size: 20px; /* Taille par défaut */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #222; /* Noir profond */
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  text-align: center;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ff2e63);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.highlight {
  color: #ff2e63; /* Rose élégant */
  font-weight: bold;
}



.scrollbar:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(183, 182, 182, 0.2);
  transition: transform 0.2s, box-shadow 0.1s;
}

.card-img-top2 {
  transition: transform 0.1s;
}

.card-img-top2:hover {
  transform: scale(0.9);
}



.discovery {
  background-image: url(../image/discovery/1.png);
  background-size: cover;
  height: 500px;


}




.suivi-container {
  height: auto;
  background-color: rgb(166, 158, 158);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 95%;
  margin: auto;
}
.suivi-list li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 15px;
  color: #343a40;
  display: flex;
  align-items: center;
}
.suivi-list li i {
  color: #28a745; /* Couleur verte pour les icônes */
  margin-right: 10px;
  font-size: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #495057; /* modern dark grey */
  color: #f8f9fa; /* lighter text for better contrast */
  padding: 20px; /* increased padding for more space */
  text-align: center;
  z-index: 1000;
  border-top: 3px solid #17a2b8; /* updated to a teal color for a modern touch */
}

.cookie-banner button {
  margin-left: 20px; /* increased margin for better spacing */
  background-color: #17a2b8; /* matching button color to border */
  color: #fff;
  padding: 10px 20px; /* added padding for larger button */
  border: none; /* remove default border */
  border-radius: 5px; /* rounded corners for a modern look */
  cursor: pointer;
}

.cookie-banner button:hover {
  background-color: #138496; /* darker shade of teal for hover effect */
}



.bg-cover-center {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.icon-space {
  margin-right: 10px;
}

.bg-cover {
  background-size: cover;
  background-position: center;
}

.btn-custom {
  margin-right: 10px;
}

.full-height {
  height: 80vh;
}

.btn-primary {
  background-color: #FF5733;
  /* Couleur personnalisée */
  border-color: #FF5733;
  /* Couleur de la bordure correspondante */
}

.btn-primary:hover {
  background-color: #E04C2F;
  /* Couleur personnalisée pour l'état hover */
  border-color: #E04C2F;
  /* Couleur de la bordure pour l'état hover */
}

.btn-secondary {
  background-color: #3498DB;
  /* Couleur tendacieuse personnalisée */
  border-color: #3498DB;
  /* Couleur de la bordure correspondante */
}

.btn-secondary:hover {
  background-color: #2980B9;
  /* Couleur tendacieuse pour l'état hover */
  border-color: #2980B9;
  /* Couleur de la bordure pour l'état hover */
}

.text-custom {
  color: #2980B9;
  /* Couleur vert foncé */
}

.custom-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: scale(1.05);
}