/* Google Fonts Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Police générale du site */
body {
  background-color: rgb(12, 12, 12);
  font-family: "Poppins", sans-serif !important;
}

/* Titres */
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
}

.carousel-caption {
  color: white !important;
}

.form-text,
.text-muted {
  color: rgb(182, 182, 182) !important;
}
#myTab {
  .nav-link.active {
    color: #000000 !important; /* blanc par exemple */
  }
}

.blockreassurance_product {
  span,
  p {
    color: white !important;
  }
}
.breadcrumb__wrapper {
  background-color: rgb(12, 12, 12);
}

/* Menus et boutons */
.menu,
.btn {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
}

header {
  background-color: rgb(12, 12, 12) !important;
}

.header-top {
  background-color: rgb(12, 12, 12) !important;
}

.header-block__badge {
  color: black !important;
}
.btn-primary {
  background-color: white !important;
  color: black !important;
  border: 1px solid white !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  &:hover {
    background-color: black !important;
    color: white !important;
    border: 1px solid white !important;
  }
}
.btn-secondary {
  background-color: black !important;
  color: white !important;
  border: 1px solid white !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  &:hover {
    background-color: white !important;
    color: black !important;
    border: 1px solid black !important;
  }
}

.btn-outline-primary {
  background-color: transparent !important;
  color: white !important;
  border: 1px solid white !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  &:hover {
    background-color: white !important;
    color: black !important;
    border: 1px solid black !important;
  }
}
.btn-outline-secondary {
  background-color: transparent !important;
  color: black !important;
  border: 1px solid black !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  &:hover {
    background-color: black !important;
    color: white !important;
    border: 1px solid white !important;
  }
}

.main-menu__tree__link {
  /* Style de base : Blanc */
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 8px 15px !important;
  display: inline-block !important;
  font-family: sans-serif !important; /* À adapter à votre charte */

  /* Transition douce pour le hover */
  transition: all 0.3s ease !important;
}

.main-menu__tree__link:hover {
  color: #949494 !important;
  background-color: transparent !important;
}

/* --- Base de la page produit --- */
body {
  background-color: rgb(12, 12, 12);
  color: #fff;
  font-family: "Inter", sans-serif; /* Optionnel : une police moderne */
}

/* --- Titres et Textes --- */
.product__name {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product__description-short,
.rich-text,
.accordion-body {
  color: #ccc; /* Gris clair pour une meilleure lisibilité */
  line-height: 1.6;
}

/* --- Mise en forme des Bordures (White Lines) --- */
.product__col {
  border-left: 1px solid #fff; /* Ligne verticale séparatrice */
  padding-left: 30px;
}

/* Ligne sous le prix et le titre */
.product__name,
.product-prices {
  border-bottom: 1px solid #333; /* Gris foncé pour ne pas trop surcharger */
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/* --- Accordéons (Description, Détails) --- */
.product__infos.accordion {
  border-top: 1px solid #fff;
  margin-top: 40px;
}

.accordion-item {
  background-color: transparent !important;
}

.accordion-button {
  background-color: transparent !important;
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px 0;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1); /* Rend l'icône de la flèche blanche */
}

/* --- Boutons et Inputs --- */
.btn-primary,
.add-to-cart {
  background-color: #fff !important;
  color: rgb(12, 12, 12) !important;
  border: 1px solid #fff !important;
  border-radius: 0; /* Look carré plus premium */
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: rgb(12, 12, 12) !important;
  color: #fff !important;
}

/* --- Adaptabilité Mobile --- */
@media (max-width: 991px) {
  .product__col {
    border-left: none;
    border-top: 1px solid #fff;
    padding-left: 15px;
    padding-top: 30px;
  }
}

/* --- Liens (a) et Icônes (i) --- */

/* Couleur blanche par défaut */
a,
i,
.material-icons,
.product-miniature__link,
.product-miniature__title a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease-in-out; /* Animation fluide */
}

/* Effet Hover en gris */
a:hover,
i:hover,
.material-icons:hover,
.product-miniature__link:hover i,
.product-miniature__title a:hover {
  color: #999999 !important; /* Gris moyen */
}

/* Cas particulier : Boutons contenant des icônes */
button:hover i,
button:hover .material-icons {
  color: #999999 !important;
}

/* Sécurité pour les liens dans les textes riches (descriptions) */
.rich-text a {
  border-bottom: 1px solid #ffffff;
}

.rich-text a:hover {
  border-bottom-color: #999999;
}

@media (max-width: 1199px) {
  .header-bottom__container {
    .header-bottom__row {
      display: flex;
      flex-direction: row-reverse !important;
      align-items: center !important;
      justify-content: space-between !important;
    }
  }
}

.footer {
  border-top: 1px solid white;
  .footer__main {
    background-color: rgb(12, 12, 12);
  }
}

button {
  color: white !important;
}

label {
  color: white !important;
}
.checkout__steps {
  background-color: rgb(12, 12, 12) !important;
  color: white !important;
}

.modal-dialog {
  div {
    background-color: rgb(12, 12, 12) !important;
    color: white !important;
  }
}

/* --- CONFIGURATION GÉNÉRALE --- */
.bw-theme .product-card-bw {
  background-color: #000 !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important; /* Angles droits pour le look luxe */
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bw-theme .product-card-bw:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* --- IMAGE --- */
.bw-theme .product-miniature__image-container {
  background: #000;
  position: relative;
  border-bottom: 1px solid #222;
}

.bw-theme .product-miniature__image {
  transition: opacity 0.3s ease;
}

.bw-theme .product-card-bw:hover .product-miniature__image {
  opacity: 0.8;
}

/* --- TEXTES ET TITRES --- */
.bw-theme .product-miniature__title {
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 300 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px 0;
}

.bw-theme .product-miniature__title:hover {
  color: #999 !important;
}

/* --- PRIX --- */
.bw-theme .product-miniature__price {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
}

.bw-theme .product-miniature__regular-price {
  color: #555 !important;
  text-decoration: line-through;
  font-size: 0.8rem;
  margin-left: 8px;
}

/* --- FORMULAIRE ET BOUTON AJOUT --- */
.product-form-bw {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}

.btn-add-bw {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  height: 40px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-add-bw:hover {
  background: #000 !important;
  color: #fff !important;
}

/* --- QUANTITÉ (Minimaliste) --- */
.bw-theme .quantity-button .input-group {
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
}

.bw-theme .quantity-button input {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
}

.bw-theme .quantity-button .btn {
  color: #fff !important;
  background: transparent !important;
}

/* --- BADGES (PROMO) --- */
.bw-theme .badge {
  background-color: #fff !important;
  color: #000 !important;
  border-radius: 0 !important;
  font-weight: 900;
  padding: 5px 12px;
}

.featured-products {
  .section-title {
    display: none !important;
  }
}
.dropdown-menu {
  background-color: rgb(12, 12, 12) !important;
  border: 1px solid white;
}
.product-miniature {
  margin-top: 20px !important;
  .card {
    background-color: rgb(12, 12, 12) !important;
    .card-body {
      background-color: rgb(12, 12, 12) !important;
      div {
        background-color: rgb(31, 31, 31) !important;
        color: white !important;
      }
    }
  }
}
/* Card principale avec effet glassmorphism */
.product-miniature .card {
  background: linear-gradient(
    135deg,
    #1f1f1f 0%,
    #2a2a2a 50%,
    #1f1f1f 100%
  ) !important;
  background-size: 200% 200% !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  overflow: hidden !important;
  position: relative !important;
  animation: gradientShift 8s ease infinite !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-miniature .card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 40px rgba(99, 102, 241, 0.3) !important;
}

/* Halos lumineux animés */
.product-miniature .card::before {
  content: "" !important;
  position: absolute !important;
  top: -100px !important;
  left: -100px !important;
  width: 200px !important;
  height: 200px !important;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.2) 0%,
    transparent 70%
  ) !important;
  animation: glow 6s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.product-miniature .card::after {
  content: "" !important;
  position: absolute !important;
  bottom: -80px !important;
  right: -80px !important;
  width: 180px !important;
  height: 180px !important;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.25) 0%,
    transparent 70%
  ) !important;
  filter: blur(40px) !important;
  animation: pulse 4s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Container d'image avec overlay au survol */
.product-miniature__image-container {
  position: relative !important;
  overflow: hidden !important;
  z-index: 2 !important;
}

.product-miniature__image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  filter: brightness(0.9) !important;
}

.product-miniature .card:hover .product-miniature__image {
  transform: scale(1.1) !important;
  filter: brightness(1) !important;
}

/* Badges avec effet néon */
.product-flags .badge {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 5px 20px rgba(236, 72, 153, 0.5) !important;
  animation: badgePulse 2s ease-in-out infinite !important;
  position: relative !important;
  z-index: 3 !important;
}

.product-flags .badge.new {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.5) !important;
}

/* Section infos avec z-index pour passer au-dessus des halos */
.product-miniature__infos {
  background: transparent !important;
  color: white !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Titre produit */
.product-miniature__title {
  color: white !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  transition: color 0.3s ease !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.product-miniature__title:hover {
  color: #a78bfa !important;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.6) !important;
}

/* Bouton aperçu rapide */
.product-miniature__quickview_button {
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 8px 15px !important;
  transition: all 0.3s ease !important;
}

.product-miniature__quickview_button:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;
}

/* Bouton wishlist */
.wishlist-button-add {
  background: rgba(236, 72, 153, 0.2) !important;
  border: 1px solid rgba(236, 72, 153, 0.4) !important;
  color: #ec4899 !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.wishlist-button-add:hover {
  background: rgba(236, 72, 153, 0.4) !important;
  color: white !important;
  box-shadow: 0 5px 20px rgba(236, 72, 153, 0.5) !important;
}

/* Prix */
.product-miniature__price {
  color: #a78bfa !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.4) !important;
}

.product-miniature__regular-price {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: line-through !important;
}

/* Boutons de quantité */
.quantity-button .btn {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  transition: all 0.3s ease !important;
  border-radius: 10px !important;
}

.quantity-button .btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
}

.quantity-button .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  text-align: center !important;
  font-weight: 600 !important;
}

/* Bouton Ajouter au panier */
.product-miniature__infos .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5) !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  position: relative !important;
  overflow: hidden !important;
}

.product-miniature__infos .btn-primary::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  ) !important;
  transition: left 0.5s ease !important;
}

.product-miniature__infos .btn-primary:hover::before {
  left: 100% !important;
}

.product-miniature__infos .btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.7) !important;
}

/* Étoiles de notation */
.grade-stars {
  filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.5)) !important;
}

/* Animations */
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes glow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, 30px) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.product-miniature__infos__bottom {
  margin-bottom: 0rem !important;
}

.card {
span{
color: black !important
}
}

#checkout-delivery-step{
span{
color: black !important
}
}
.account-menu a span {
  color: white !important;
}

.account-menu a:hover span,
.account-menu a.active span {
  color: black !important;
}

.account-menu a:hover i,
.account-menu a.active i {
  color: black !important;
}


#history-link:hover .link-item {
  color: black !important;
}


.address__edit{
 color: black !important;
}

.address__delete{
 color: black !important;
}


.customer-link__link i{
 color: black !important;
}



#content i{
 color: black !important;

}

.product-miniature__prices span{

  color: white !important;
}

