/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

 #header {
    background: #9aedfd; 
 }
/* ===== BANNIÈRE PS_BANNER - STYLE MODERNE ===== */
.custom-banner-wrapper {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
  padding: 40px 0;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.custom-banner-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(36,185,215,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.custom-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.custom-banner-content .banner-item {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.custom-banner-content .banner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(36,185,215,0.1), transparent);
  transition: left 0.6s ease;
}

.custom-banner-content .banner-item:hover::before {
  left: 100%;
}

.custom-banner-content .banner-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(36,185,215,0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 100%);
}

.custom-banner-content .banner-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%);
  border-radius: 50%;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(36,185,215,0.3);
}

.custom-banner-content .banner-item:hover .banner-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(36,185,215,0.5);
}

.custom-banner-content .banner-icon svg {
  width: 32px;
  height: 32px;
}

.custom-banner-content .banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.custom-banner-content .banner-title {
  font-size: 15px;
  font-weight: 700;
  color: #232323;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.custom-banner-content .banner-item:hover .banner-title {
  color: #24b9d7;
}

.custom-banner-content .banner-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-banner-content {
    gap: 20px;
  }
  
  .custom-banner-content .banner-item {
    flex: 1 1 calc(50% - 20px);
    padding: 18px 20px;
  }
  
  .custom-banner-content .banner-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
  
  .custom-banner-content .banner-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .custom-banner-content .banner-title {
    font-size: 14px;
  }
  
  .custom-banner-content .banner-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .custom-banner-wrapper {
    padding: 30px 0;
    margin: 15px 0;
  }
  
  .custom-banner-content {
    gap: 15px;
  }
  
  .custom-banner-content .banner-item {
    flex: 1 1 100%;
    padding: 15px 18px;
  }
}

@media (max-width: 480px) {
  .custom-banner-wrapper {
    padding: 20px 0;
  }
  
  .custom-banner-content .banner-item {
    padding: 12px 15px;
    gap: 12px;
  }
  
  .custom-banner-content .banner-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .custom-banner-content .banner-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .custom-banner-content .banner-title {
    font-size: 13px;
  }
  
  .custom-banner-content .banner-subtitle {
    font-size: 11px;
  }
}

/* ===== DESCRIPTION DE CATÉGORIE - STYLE ÉLÉGANT ===== */
#category-description.text-muted,
.category-description {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 35px 40px;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #24b9d7;
  color: #363a42 !important;
  line-height: 1.8 !important;
  font-size: 15px !important;
}

/* Premier paragraphe en introduction */
#category-description p:first-of-type,
.category-description p:first-of-type {
  font-size: 17px !important;
  font-weight: 500 !important;
  color: #232323 !important;
  margin-bottom: 25px !important;
  line-height: 1.7 !important;
}

/* Tous les paragraphes */
#category-description p,
.category-description p {
  margin-bottom: 18px !important;
  color: #555 !important;
  line-height: 1.8 !important;
}

/* Titres dans la description */
#category-description h1,
#category-description h2,
#category-description h3,
#category-description h4,
.category-description h1,
.category-description h2,
.category-description h3,
.category-description h4 {
  color: #24b9d7 !important;
  font-weight: 700 !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.5px !important;
}

#category-description h1,
.category-description h1 {
  font-size: 28px !important;
}

#category-description h2,
.category-description h2 {
  font-size: 24px !important;
}

#category-description h3,
.category-description h3 {
  font-size: 20px !important;
}

/* Listes à puces */
#category-description ul,
.category-description ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 25px 0 !important;
}

#category-description ul li,
.category-description ul li {
  position: relative;
  padding-left: 35px !important;
  margin-bottom: 15px !important;
  color: #555 !important;
  line-height: 1.7 !important;
  font-size: 15px !important;
}

#category-description ul li::before,
.category-description ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#category-description ul li::after,
.category-description ul li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 5px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Emojis dans les listes */
#category-description ul li span,
.category-description ul li span {
  color: #363a42 !important;
}

/* Gras */
#category-description strong,
#category-description b,
.category-description strong,
.category-description b {
  color: #232323 !important;
  font-weight: 700 !important;
}

/* Italique */
#category-description em,
#category-description i,
.category-description em,
.category-description i {
  color: #24b9d7 !important;
  font-style: italic !important;
}

/* Liens */
#category-description a,
.category-description a {
  color: #24b9d7 !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
}

#category-description a:hover,
.category-description a:hover {
  color: #1a9fb8 !important;
  border-bottom-color: #24b9d7 !important;
}

/* Séparateurs de sous-titres */
#category-description hr,
.category-description hr {
  border: none !important;
  height: 2px !important;
  background: linear-gradient(to right, transparent, #24b9d7, transparent) !important;
  margin: 30px 0 !important;
}

/* Citations */
#category-description blockquote,
.category-description blockquote {
  border-left: 4px solid #24b9d7 !important;
  padding-left: 25px !important;
  margin: 25px 0 !important;
  font-style: italic !important;
  color: #555 !important;
  background: rgba(36, 185, 215, 0.05) !important;
  padding: 20px 25px !important;
  border-radius: 8px !important;
}

/* Responsive */
@media (max-width: 768px) {
  #category-description.text-muted,
  .category-description {
    padding: 25px 20px;
    margin: 20px 0;
    font-size: 14px !important;
  }
  
  #category-description p:first-of-type,
  .category-description p:first-of-type {
    font-size: 16px !important;
  }
  
  #category-description h1,
  .category-description h1 {
    font-size: 24px !important;
  }
  
  #category-description h2,
  .category-description h2 {
    font-size: 20px !important;
  }
  
  #category-description h3,
  .category-description h3 {
    font-size: 18px !important;
  }
  
  #category-description ul li,
  .category-description ul li {
    padding-left: 30px !important;
    font-size: 14px !important;
  }
}

/* ===== TEXTE PERSONNALISÉ (Bienvenue) - STYLE ÉLÉGANT ===== */
#custom-text {
  background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 100%);
  padding: 50px 60px;
  margin: 40px 0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

#custom-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #24b9d7, #1a9fb8, #24b9d7);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

#custom-text::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(36,185,215,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* Titre principal "Bienvenue" */
#custom-text h1,
#custom-text h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #232323 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  letter-spacing: 0.5px !important;
  position: relative;
  z-index: 1;
}

#custom-text h1::after,
#custom-text h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #24b9d7, #1a9fb8);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Sous-titre d'introduction */
#custom-text p:first-of-type {
  font-size: 19px !important;
  font-weight: 500 !important;
  color: #363a42 !important;
  text-align: center !important;
  margin-bottom: 35px !important;
  line-height: 1.7 !important;
  position: relative;
  z-index: 1;
}

/* Paragraphes de contenu */
#custom-text p {
  font-size: 16px !important;
  line-height: 1.9 !important;
  color: #555 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  position: relative;
  z-index: 1;
}

/* Texte en gras */
#custom-text strong,
#custom-text b {
  color: #232323 !important;
  font-weight: 700 !important;
}

/* Dernier paragraphe avec cœur */
#custom-text p:last-of-type {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #24b9d7 !important;
  text-align: center !important;
  margin-top: 35px !important;
  margin-bottom: 0 !important;
  padding: 25px 30px !important;
  background: linear-gradient(135deg, rgba(36,185,215,0.08) 0%, rgba(26,159,184,0.08) 100%);
  border-radius: 12px !important;
  border: 2px solid rgba(36,185,215,0.2) !important;
  position: relative;
  z-index: 1;
}

/* Emoji cœur */
#custom-text img[alt="💙"],
#custom-text img[alt="❤️"],
#custom-text img[alt="💚"],
#custom-text img[alt="💛"] {
  display: inline !important;
  width: 24px !important;
  height: 24px !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
  animation: heartbeat 1.5s infinite;
}

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

/* Liens dans le texte personnalisé */
#custom-text a {
  color: #24b9d7 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  border-bottom: 2px solid transparent !important;
  transition: all 0.3s ease !important;
}

#custom-text a:hover {
  color: #1a9fb8 !important;
  border-bottom-color: #24b9d7 !important;
}

/* Responsive */
@media (max-width: 992px) {
  #custom-text {
    padding: 40px 40px;
    margin: 30px 0;
  }
  
  #custom-text h1,
  #custom-text h2 {
    font-size: 30px !important;
  }
  
  #custom-text p:first-of-type {
    font-size: 17px !important;
  }
  
  #custom-text p {
    font-size: 15px !important;
  }
  
  #custom-text p:last-of-type {
    font-size: 18px !important;
    padding: 20px 25px !important;
  }
}

@media (max-width: 768px) {
  #custom-text {
    padding: 30px 25px;
    margin: 20px 0;
  }
  
  #custom-text h1,
  #custom-text h2 {
    font-size: 26px !important;
  }
  
  #custom-text p:first-of-type {
    font-size: 16px !important;
    margin-bottom: 25px !important;
  }
  
  #custom-text p {
    font-size: 14px !important;
    text-align: left !important;
  }
  
  #custom-text p:last-of-type {
    font-size: 16px !important;
    padding: 18px 20px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  #custom-text {
    padding: 25px 20px;
  }
  
  #custom-text h1,
  #custom-text h2 {
    font-size: 22px !important;
  }
  
  #custom-text p:first-of-type {
    font-size: 15px !important;
  }
  
  #custom-text p {
    font-size: 14px !important;
  }
  
  #custom-text p:last-of-type {
    font-size: 15px !important;
    padding: 15px 18px !important;
  }
}

/* ===== PACK COMPLET PAGE PRODUIT - AMÉLIORATIONS ===== */

/* 1. BOUTON AJOUTER AU PANIER */
.product-add-to-cart .add-to-cart,
.product-add-to-cart button[type="submit"],
button.btn-primary,
.btn-primary {
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%) !important;
  border: none !important;
  padding: 15px 35px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-radius: 50px !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(36, 185, 215, 0.4) !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.product-add-to-cart .add-to-cart::before,
.product-add-to-cart button[type="submit"]::before,
button.btn-primary::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.product-add-to-cart .add-to-cart:hover,
.product-add-to-cart button[type="submit"]:hover,
button.btn-primary:hover,
.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 25px rgba(36, 185, 215, 0.6) !important;
  background: linear-gradient(135deg, #1a9fb8 0%, #24b9d7 100%) !important;
}

.product-add-to-cart .add-to-cart:hover::before,
.product-add-to-cart button[type="submit"]:hover::before,
button.btn-primary:hover::before,
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

/* 2. BOUTON DONNEZ VOTRE AVIS */
.product-actions .review-btn,
a[href*="review"],
button[data-toggle*="review"],
.product-actions button.btn,
button.btn-comment {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border: 2px solid #24b9d7 !important;
  color: #24b9d7 !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.product-actions .review-btn:hover,
a[href*="review"]:hover,
button[data-toggle*="review"]:hover,
.product-actions button.btn:hover,
button.btn-comment:hover {
  background: #24b9d7 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(36, 185, 215, 0.3) !important;
}

/* Bouton gris "Donnez votre avis" spécifique */
button[style*="background-color: rgb(96, 109, 120)"],
button[style*="background-color:#60697"],
.product-information button.btn {
  background: linear-gradient(135deg, #607178 0%, #4a5861 100%) !important;
  border: none !important;
  color: white !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

button[style*="background-color: rgb(96, 109, 120)"]:hover,
button[style*="background-color:#60697"]:hover,
.product-information button.btn:hover {
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(36, 185, 215, 0.4) !important;
}

/* 3. BADGE NEUF */
.product-flags .product-flag,
.product-flag.new {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%) !important;
  color: white !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-radius: 25px !important;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4) !important;
  animation: pulse-badge 2s infinite !important;
}

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

/* 4. PRIX */
.product-prices .current-price,
.product-price,
.current-price-value {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #24b9d7 !important;
  letter-spacing: -1px !important;
  display: inline-block !important;
}

.product-prices .current-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.product-prices .tax-shipping-delivery-label {
  font-size: 14px !important;
  color: #7a7a7a !important;
  font-weight: 400 !important;
  margin: 0 !important;
  display: inline-block !important;
}

/* 5. ONGLETS DESCRIPTION / DÉTAILS */
.nav-tabs {
  border-bottom: 3px solid #f0f0f0 !important;
  margin-bottom: 30px !important;
}

.nav-tabs .nav-link {
  border: none !important;
  background: transparent !important;
  color: #7a7a7a !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 15px 30px !important;
  margin-right: 10px !important;
  border-radius: 8px 8px 0 0 !important;
  transition: all 0.3s ease !important;
  position: relative;
}

.nav-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #24b9d7, #1a9fb8);
  transition: width 0.3s ease;
}

.nav-tabs .nav-link:hover {
  background: rgba(36, 185, 215, 0.05) !important;
  color: #24b9d7 !important;
}

.nav-tabs .nav-link.active {
  background: linear-gradient(135deg, rgba(36, 185, 215, 0.1) 0%, rgba(26, 159, 184, 0.1) 100%) !important;
  color: #24b9d7 !important;
  font-weight: 700 !important;
}

.nav-tabs .nav-link.active::after {
  width: 100%;
}

/* 6. BLOC GARANTIES / LIVRAISON / RETOURS */
/* Override complet du module blockreassurance */

/* Conteneur principal */
body #product #block-reassurance,
body #block-reassurance,
#product #block-reassurance,
#block-reassurance {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  padding: 30px !important;
  border-radius: 12px !important;
  margin: 30px auto !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  max-width: 100% !important;
}

body #product #block-reassurance .container,
body #block-reassurance .container,
#block-reassurance .container {
  padding: 0 !important;
  max-width: 100% !important;
}

/* Liste des garanties */
body #product #block-reassurance ul,
body #block-reassurance ul,
#block-reassurance ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

/* Items de liste */
body #product #block-reassurance li,
body #block-reassurance li,
#block-reassurance li {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: none !important;
  border: none !important;
  display: block !important;
}

/* Cartes blanches pour chaque garantie */
body #product #block-reassurance li .block-reassurance-item,
body #block-reassurance li .block-reassurance-item,
#block-reassurance li .block-reassurance-item,
#block-reassurance .block-reassurance-item {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 20px !important;
  background: white !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  border-left: 4px solid transparent !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  width: 100% !important;
  min-height: 80px !important;
}

body #product #block-reassurance li .block-reassurance-item:hover,
body #block-reassurance li .block-reassurance-item:hover,
#block-reassurance li .block-reassurance-item:hover,
#block-reassurance .block-reassurance-item:hover {
  transform: translateX(8px) !important;
  border-left-color: #24b9d7 !important;
  box-shadow: 0 4px 16px rgba(36, 185, 215, 0.2) !important;
}

/* Conteneur icône avec cercle turquoise */
html body #product #block-reassurance .reassurance-icon,
html body #block-reassurance .reassurance-icon,
html body #product #block-reassurance .block-reassurance-item .reassurance-icon,
html body #block-reassurance .block-reassurance-item .reassurance-icon,
html body .custom-reassurance .reassurance-icon,
body #product #block-reassurance .reassurance-icon,
body #block-reassurance .reassurance-icon,
#block-reassurance .reassurance-icon,
div.reassurance-icon {
  flex-shrink: 0 !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%) !important;
  background-color: #24b9d7 !important;
  border-radius: 50% !important;
  padding: 10px !important;
  margin: 0 !important;
  box-shadow: 0 3px 8px rgba(36, 185, 215, 0.25) !important;
  overflow: hidden !important;
}

/* Images des icônes en blanc */
html body #product #block-reassurance .reassurance-icon img,
html body #block-reassurance .reassurance-icon img,
html body #product #block-reassurance .block-reassurance-item .reassurance-icon img,
html body #block-reassurance .block-reassurance-item .reassurance-icon img,
html body .custom-reassurance .reassurance-icon img,
body #product #block-reassurance .reassurance-icon img,
body #block-reassurance .reassurance-icon img,
#block-reassurance .reassurance-icon img,
div.reassurance-icon img,
body #product #block-reassurance img,
body #block-reassurance img,
#block-reassurance img {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
  margin: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
}

/* Conteneur texte */
body #product #block-reassurance .reassurance-text,
body #block-reassurance .reassurance-text,
#block-reassurance .reassurance-text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Texte des garanties */
body #product #block-reassurance .reassurance-text span,
body #block-reassurance .reassurance-text span,
#block-reassurance .reassurance-text span,
body #product #block-reassurance span,
body #block-reassurance span,
#block-reassurance span {
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: #333 !important;
  display: block !important;
  font-weight: 600 !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0.2px !important;
}

/* Responsive */
@media (max-width: 768px) {
  body #product #block-reassurance,
  body #block-reassurance,
  #block-reassurance {
    padding: 20px !important;
  }
  
  body #product #block-reassurance li .block-reassurance-item,
  body #block-reassurance li .block-reassurance-item,
  #block-reassurance li .block-reassurance-item {
    padding: 15px !important;
    gap: 15px !important;
  }
  
  body #product #block-reassurance .reassurance-icon,
  body #block-reassurance .reassurance-icon,
  #block-reassurance .reassurance-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
  
  body #product #block-reassurance .reassurance-icon img,
  body #block-reassurance .reassurance-icon img,
  #block-reassurance .reassurance-icon img,
  body #product #block-reassurance img,
  body #block-reassurance img,
  #block-reassurance img {
    width: 24px !important;
    height: 24px !important;
  }
}

/* 7. FIL D'ARIANE (BREADCRUMB) */
.breadcrumb {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  padding: 15px 20px !important;
  border-radius: 10px !important;
  margin-bottom: 25px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

.breadcrumb-item {
  font-size: 14px !important;
  color: #7a7a7a !important;
}

.breadcrumb-item a {
  color: #24b9d7 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
}

.breadcrumb-item a:hover {
  color: #1a9fb8 !important;
  text-decoration: underline !important;
}

.breadcrumb-item.active {
  color: #363a42 !important;
  font-weight: 600 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›" !important;
  color: #24b9d7 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

/* 8. BOUTONS DE PARTAGE SOCIAL */
.product-actions .social-sharing,
.social-sharing,
.product-information .social-sharing {
  display: flex !important;
  align-items: center !important;
  margin-top: 25px !important;
  padding: 20px !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  width: 100% !important;
}

.social-sharing > span:first-child {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #363a42 !important;
  letter-spacing: 0.3px !important;
  margin-right: 15px !important;
  flex-shrink: 0 !important;
}

.social-sharing ul {
  display: flex !important;
  gap: 10px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap !important;
}

.social-sharing ul li {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  cursor: default !important;
}

.social-sharing ul li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: 38px !important;
  padding: 0 18px !important;
  border-radius: 19px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
  white-space: nowrap !important;
  text-indent: 0 !important;
  overflow: visible !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 0 !important;
}

.social-sharing ul li a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

/* Facebook */
.social-sharing .facebook a {
  background-color: #3b5998 !important;
  color: white !important;
}

.social-sharing .facebook a:hover {
  background-color: #2d4373 !important;
  color: white !important;
}

/* Twitter/X */
.social-sharing .twitter a {
  background-color: #1da1f2 !important;
  color: white !important;
}

.social-sharing .twitter a:hover {
  background-color: #0c85d0 !important;
  color: white !important;
}

/* Pinterest */
.social-sharing .pinterest a {
  background-color: #bd081c !important;
  color: white !important;
}

.social-sharing .pinterest a:hover {
  background-color: #8c0615 !important;
  color: white !important;
}

/* 9. QUANTITÉ INPUT */
.product-add-to-cart .product-quantity {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 20px !important;
  flex-wrap: nowrap !important;
}

.product-quantity .qty {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

.bootstrap-touchspin {
  display: inline-flex !important;
  align-items: center !important;
  float: none !important;
  position: relative !important;
}

.product-quantity .qty input,
.bootstrap-touchspin input.form-control {
  width: 60px !important;
  height: 45px !important;
  text-align: center !important;
  border: 2px solid #e9ecef !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #363a42 !important;
  transition: all 0.3s ease !important;
  float: none !important;
}

.product-quantity .qty input:focus,
.bootstrap-touchspin input.form-control:focus {
  border-color: #24b9d7 !important;
  box-shadow: 0 0 0 3px rgba(36, 185, 215, 0.1) !important;
  outline: none !important;
}

.bootstrap-touchspin .input-group-btn-vertical {
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  float: none !important;
  margin-left: 15px !important;
  position: relative !important;
}

.bootstrap-touchspin .btn-touchspin,
.bootstrap-touchspin .bootstrap-touchspin-up,
.bootstrap-touchspin .bootstrap-touchspin-down {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border: 2px solid #e9ecef !important;
  color: #363a42 !important;
  width: 35px !important;
  height: 21px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  position: relative !important;
}

.bootstrap-touchspin .btn-touchspin:hover,
.bootstrap-touchspin .bootstrap-touchspin-up:hover,
.bootstrap-touchspin .bootstrap-touchspin-down:hover {
  background: #24b9d7 !important;
  border-color: #24b9d7 !important;
  color: white !important;
  transform: scale(1.05) !important;
}

/* Le bouton "Ajouter au panier" à côté */
.product-quantity .add {
  display: inline-block !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* RESPONSIVE : Sur mobile, bouton "Ajouter au panier" en dessous */
@media (max-width: 576px) {
  .product-add-to-cart .product-quantity {
    flex-wrap: wrap !important;
  }
  
  .product-quantity .add {
    width: 100% !important;
    margin-top: 15px !important;
  }
  
  .product-quantity .add .btn {
    width: 100% !important;
  }
}

/* 10. TITRE PRODUIT */
.product-title,
h1.h1,
.product-information h1 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #232323 !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.3px !important;
  line-height: 1.3 !important;
  padding-bottom: 15px !important;
  border-bottom: 3px solid #24b9d7 !important;
  position: relative !important;
}

.product-title::after,
h1.h1::after,
.product-information h1::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #24b9d7, #1a9fb8);
  animation: expand-line 2s ease-in-out infinite;
}

@keyframes expand-line {
  0%, 100% {
    width: 80px;
  }
  50% {
    width: 120px;
  }
}

/* Responsive pour toutes les améliorations */
@media (max-width: 768px) {
  .product-add-to-cart .add-to-cart,
  .product-add-to-cart button[type="submit"],
  button.btn-primary,
  .btn-primary {
    padding: 12px 25px !important;
    font-size: 14px !important;
  }
  
  .product-prices .current-price,
  .product-price {
    font-size: 26px !important;
  }
  
  .nav-tabs .nav-link {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  
  .product-title,
  h1.h1 {
    font-size: 24px !important;
  }
  
  .breadcrumb {
    padding: 12px 15px !important;
  }
  
  .breadcrumb-item {
    font-size: 13px !important;
  }
}

/* ===== DESCRIPTION DE PRODUIT (ONGLETS) - STYLE ÉLÉGANT ===== */
.product-description,
#description .product-description,
.tab-content .product-description {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: 35px 40px;
  margin: 0;
  border-radius: 12px;
  line-height: 1.9 !important;
  color: #555 !important;
}

/* Titres principaux dans la description */
.product-description h1,
.product-description h2,
.product-description h3,
#description .product-description h1,
#description .product-description h2,
#description .product-description h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #232323 !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid #24b9d7 !important;
  letter-spacing: 0.5px !important;
}

.product-description h1:first-child,
.product-description h2:first-child,
.product-description h3:first-child {
  margin-top: 0 !important;
}

/* Sous-titres (ex: "Pourquoi vous allez l'adorer") */
.product-description h4,
.product-description h5,
#description .product-description h4,
#description .product-description h5 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #24b9d7 !important;
  margin-top: 25px !important;
  margin-bottom: 18px !important;
  letter-spacing: 0.3px !important;
}

/* Paragraphes */
.product-description p,
#description .product-description p {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #555 !important;
  margin-bottom: 18px !important;
}

.product-description p:first-of-type,
#description .product-description p:first-of-type {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #363a42 !important;
  margin-bottom: 25px !important;
}

/* Texte en gras */
.product-description strong,
.product-description b,
#description .product-description strong,
#description .product-description b {
  color: #232323 !important;
  font-weight: 700 !important;
}

/* Listes à puces avec emojis */
.product-description ul,
#description .product-description ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 20px 0 25px 0 !important;
}

.product-description ul li,
#description .product-description ul li {
  position: relative;
  padding-left: 15px !important;
  margin-bottom: 18px !important;
  color: #555 !important;
  line-height: 1.8 !important;
  font-size: 15px !important;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Garder les emojis au début */
.product-description ul li::before,
#description .product-description ul li::before {
  content: none !important;
}

/* Style pour les emojis dans les listes */
.product-description ul li img,
#description .product-description ul li img {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  margin-top: 2px !important;
  flex-shrink: 0;
}

/* Listes simples sans emoji */
.product-description ul li:not(:has(img))::before,
#description .product-description ul li:not(:has(img))::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #24b9d7;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Listes ordonnées */
.product-description ol,
#description .product-description ol {
  padding-left: 25px !important;
  margin: 20px 0 !important;
}

.product-description ol li,
#description .product-description ol li {
  margin-bottom: 15px !important;
  color: #555 !important;
  line-height: 1.8 !important;
  font-size: 15px !important;
}

/* Section "La boîte contient" ou similaire */
.product-description h3 + ul,
.product-description h4 + ul,
#description .product-description h3 + ul,
#description .product-description h4 + ul {
  background: rgba(36, 185, 215, 0.05);
  padding: 20px 25px;
  border-radius: 10px;
  border-left: 4px solid #24b9d7;
  margin: 15px 0 25px 0 !important;
}

/* Précautions ou avertissements */
.product-description p:last-of-type,
#description .product-description p:last-of-type {
  font-size: 13px !important;
  color: #7a7a7a !important;
  font-style: italic !important;
  padding: 15px 20px !important;
  background: #f8f9fa !important;
  border-left: 3px solid #ffc107 !important;
  border-radius: 8px !important;
  margin-top: 30px !important;
  line-height: 1.7 !important;
}

/* Responsive pour descriptions produit */
@media (max-width: 768px) {
  .product-description,
  #description .product-description {
    padding: 25px 20px;
  }
  
  .product-description h1,
  .product-description h2,
  .product-description h3 {
    font-size: 20px !important;
  }
  
  .product-description h4,
  .product-description h5 {
    font-size: 17px !important;
  }
  
  .product-description p,
  .product-description ul li,
  .product-description ol li {
    font-size: 14px !important;
  }
  
  .product-description ul li {
    gap: 10px;
  }
}

/* ===== BANNIÈRE RÉASSURANCE - STYLE MODERNE ===== */
#block-reassurance.custom-reassurance {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#block-reassurance.custom-reassurance .reassurance-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

#block-reassurance.custom-reassurance .reassurance-item {
  flex: 1 1 200px;
  max-width: 280px;
  margin: 0;
}

#block-reassurance.custom-reassurance .block-reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 100%;
}

#block-reassurance.custom-reassurance .block-reassurance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#block-reassurance.custom-reassurance .reassurance-icon {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#block-reassurance.custom-reassurance .block-reassurance-item:hover .reassurance-icon {
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%);
  transform: scale(1.1);
}

#block-reassurance.custom-reassurance .reassurance-icon img {
  max-width: 45px;
  max-height: 45px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(78%) saturate(818%) hue-rotate(155deg) brightness(95%) contrast(91%);
  transition: all 0.3s ease;
}

#block-reassurance.custom-reassurance .block-reassurance-item:hover .reassurance-icon img {
  filter: brightness(0) saturate(100%) invert(100%);
  transform: scale(1.05);
}

#block-reassurance.custom-reassurance .reassurance-text {
  margin: 0;
}

#block-reassurance.custom-reassurance .reassurance-text span {
  font-size: 14px;
  font-weight: 600;
  color: #363a42;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  display: block;
  transition: color 0.3s ease;
}

#block-reassurance.custom-reassurance .block-reassurance-item:hover .reassurance-text span {
  color: #24b9d7;
}

/* Responsive */
@media (max-width: 768px) {
  #block-reassurance.custom-reassurance {
    padding: 20px 0;
  }
  
  #block-reassurance.custom-reassurance .reassurance-list {
    gap: 15px;
  }
  
  #block-reassurance.custom-reassurance .reassurance-item {
    flex: 1 1 calc(50% - 15px);
    max-width: none;
  }
  
  #block-reassurance.custom-reassurance .block-reassurance-item {
    padding: 15px 10px;
  }
  
  #block-reassurance.custom-reassurance .reassurance-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }
  
  #block-reassurance.custom-reassurance .reassurance-icon img {
    max-width: 35px;
    max-height: 35px;
  }
  
  #block-reassurance.custom-reassurance .reassurance-text span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #block-reassurance.custom-reassurance .reassurance-item {
    flex: 1 1 100%;
  }
}

 .about-section {
  padding: 50px 20px;
  background-color: #f4f0f8;
  font-family: 'Poppins', sans-serif;
  color: #333;
  text-align: center;
}

.about-section h1 {
  font-size: 36px;
  color: #6b4f9f;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.about-card {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.about-card .icon {
  font-size: 50px;
  color: #6b4f9f;
  margin-bottom: 15px;
}

.about-card h2 {
  font-size: 22px;
  color: #6b4f9f;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 16px;
  line-height: 1.5;
}

/* Avantages */
.about-advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.adv-card {
  flex: 1 1 200px;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.adv-card .icon {
  font-size: 40px;
  color: #6b4f9f;
  margin-bottom: 10px;
}

.adv-card h3 {
  font-size: 20px;
  color: #6b4f9f;
  margin-bottom: 10px;
}

.adv-card p {
  font-size: 14px;
  line-height: 1.5;
}

.legal-section {
  background-color: #fdfdfd;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.legal-section h1 {
  text-align: center;
  font-size: 36px;
  color: #6b4f9f;
  margin-bottom: 40px;
}

.legal-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.legal-card h2 {
  font-size: 24px;
  color: #6b4f9f;
  margin-bottom: 15px;
}

.legal-card p, .legal-card ul {
  font-size: 16px;
  line-height: 1.6;
}

.legal-card ul {
  padding-left: 20px;
  list-style-type: disc;
}

.legal-card a {
  color: #6b4f9f;
  text-decoration: underline;
}
.terms-section {
  background-color: #fdfdfd;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.terms-section h1 {
  text-align: center;
  font-size: 36px;
  color: #6b4f9f;
  margin-bottom: 40px;
}

.terms-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.terms-card h2 {
  font-size: 24px;
  color: #6b4f9f;
  margin-bottom: 15px;
}

.terms-card p, .terms-card ul {
  font-size: 16px;
  line-height: 1.6;
}

.terms-card ul {
  padding-left: 20px;
  list-style-type: disc;
}

.terms-card a {
  color: #6b4f9f;
  text-decoration: underline;
}
.payment-section {
  background-color: #fdfdfd;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.payment-section h1 {
  text-align: center;
  font-size: 36px;
  color: #6b4f9f;
  margin-bottom: 40px;
}

.payment-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.payment-card h2 {
  font-size: 24px;
  color: #6b4f9f;
  margin-bottom: 15px;
}

.payment-card p, .payment-card ul {
  font-size: 16px;
  line-height: 1.6;
}

.payment-card ul {
  padding-left: 20px;
  list-style-type: disc;
}

.payment-card a {
  color: #6b4f9f;
  text-decoration: underline;
}
.shipping-section {
  background-color: #fdfdfd;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.shipping-section h1 {
  text-align: center;
  font-size: 36px;
  color: #6b4f9f;
  margin-bottom: 40px;
}

.shipping-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.shipping-card h2 {
  font-size: 24px;
  color: #6b4f9f;
  margin-bottom: 15px;
}

.shipping-card p, .shipping-card ul {
  font-size: 16px;
  line-height: 1.6;
}

.shipping-card ul {
  padding-left: 20px;
  list-style-type: disc;
}

/* Bloc description produit en pleine largeur */
#main .product-container + .row {
  margin-top: 30px;
}

#main .product-container + .row .tabs {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#main .product-container + .row .nav-tabs {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
}

#main .product-container + .row .tab-content {
  padding: 20px 0;
}

#main .product-container + .row .product-description {
  line-height: 1.8;
}

/* ========================================
   11. FOOTER - STYLE MODERNE
   ======================================== */

/* Fond dégradé du footer */
#footer,
.footer-container {
 background: linear-gradient(135deg, #a0efff 0%, #88ecff 100%) !important;
  padding: 50px 0 30px;
  color: #ecf0f1;
  margin-top: 50px;
}

/* Titres des sections - NE PAS toucher à display/width/float */
.footer-container h3,
.footer-container h4,
.footer-container .h3,
.footer-container .h4 {
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
}

/* Barre turquoise sous les titres */
.footer-container h3::after,
.footer-container h4::after,
.footer-container .h3::after,
.footer-container .h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #24b9d7, #1a9fb8);
}

/* Liens du footer */
.footer-container a {
  color: #bdc3c7;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-container a:hover {
  color: #24b9d7;
}

.footer-container li {
  margin-bottom: 10px;
}

/* Section newsletter */
.block_newsletter,
#blockEmailSubscription_displayFooterBefore {
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.block_newsletter #block-newsletter-label,
.block_newsletter h3 {
  font-size: 24px;  
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.block_newsletter p {
  
  font-size: 14px;
  margin-bottom: 25px;
}

/* Formulaire newsletter */
.block_newsletter form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.block_newsletter form .input-wrapper {
  flex: 1;
  min-width: 250px;
}

.block_newsletter form input[type="email"],
.block_newsletter form input[type="text"] {
  width: 100%;
  padding: 15px 20px;
  border: 3px solid #24b9d7;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.block_newsletter form input::placeholder {
  color: rgba(44, 62, 80, 0.6);
}

.block_newsletter form input:focus {
  border-color: #1a9fb8;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 185, 215, 0.3);
}

/* Bouton S'ABONNER */
.block_newsletter form button[type="submit"],
.block_newsletter form .btn-primary {
  padding: 15px 40px;
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(36, 185, 215, 0.3);
  height: 100%;
  min-width: 150px;
}

.block_newsletter form button:hover {
  background: linear-gradient(135deg, #1a9fb8 0%, #24b9d7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 185, 215, 0.4);
}

/* Copyright */
.footer-container p.text-sm-center {
  color: #95a5a6;
  font-size: 13px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 25px;
}

/* Réseaux sociaux */
.block-social ul li {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.block-social ul li:hover {
  background-color: #24b9d7;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(36, 185, 215, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    padding: 30px 15px 20px;
  }
  
  .block_newsletter {
    padding: 25px 20px;
  }
  
  .block_newsletter form {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Bouton "Soyez le premier à donner votre avis" responsive */
  .post-product-comment,
  .btn-comment-big,
  button.btn-comment {
    width: calc(100% - 30px) !important;
    max-width: 100% !important;
    padding: 10px 12px !important;
    font-size: 10px !important;
    white-space: nowrap !important;
    text-align: center !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 15px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .post-product-comment i.material-icons {
    font-size: 16px !important;
    vertical-align: middle !important;
  }
  
  /* Conteneur des commentaires */
  #empty-product-comment,
  .product-comment-list-item {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
}

/* ========================================
   12. SOUS-MENU - AMÉLIORATION VISIBILITÉ
   ======================================== */

/* Sous-menu plus visible avec ombre et fond blanc */
#_desktop_top_menu .popover.sub-menu {
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 2px solid #24b9d7 !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  margin-top: 0 !important;
}

/* Liens du sous-menu avec hover turquoise */
#_desktop_top_menu .popover.sub-menu a {
  padding: 10px 20px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

#_desktop_top_menu .popover.sub-menu a:hover {
  background-color: #24b9d7 !important;
  color: #ffffff !important;
  padding-left: 30px !important;
}

/* Titres de catégorie (data-depth="1") plus visibles */
#_desktop_top_menu .popover.sub-menu a[data-depth="1"] {
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  color: #232323 !important;
}

/* Séparateur entre les sections */
#_desktop_top_menu .popover.sub-menu ul[data-depth="1"] {
  border-bottom: 1px solid #f6f6f6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#_desktop_top_menu .popover.sub-menu ul[data-depth="1"]:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* ========================================
   13. MODAL PRODUIT (LIGHTBOX) - DESIGN MODERNE
   ======================================== */

/* Animation d'ouverture fluide */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Backdrop avec effet */
#product-modal {
  animation: fadeIn 0.3s ease-out;
}

#product-modal .modal-dialog {
  max-width: 1200px !important;
  width: 95% !important;
  margin: 30px auto !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Container modal principal - écrase le style par défaut */
#product-modal .modal-content {
  padding: 0 !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border: 3px solid #24b9d7 !important;
  border-radius: 15px !important;
  overflow: visible !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
  animation: modalFadeIn 0.4s ease-out !important;
  position: relative !important;
}

/* Bouton de fermeture stylisé - version cliquable */
#product-modal .modal-content .btn-close-custom {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 1000;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  color: #24b9d7;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #24b9d7;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#product-modal .modal-content .btn-close-custom:hover {
  background: #24b9d7;
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(36, 185, 215, 0.4);
}

/* Corps de la modal avec fond dégradé turquoise et layout horizontal */
#product-modal .modal-content .modal-body {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  margin-left: 0 !important;
  padding: 30px !important;
  background: linear-gradient(135deg, #24b9d7 0%, #1a9fb8 100%) !important;
}

/* Conteneur de l'image principale à gauche */
#product-modal .modal-content .modal-body .images-container {
  flex: 1 !important;
  max-width: 65% !important;
}

/* Zone de l'image principale avec fond blanc */
#product-modal .modal-content .modal-body figure {
  background: #ffffff !important;
  padding: 25px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  margin: 0 !important;
}

/* Image principale du produit */
#product-modal .modal-content .modal-body .product-cover-modal {
  background: #ffffff !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.4s ease !important;
  display: block !important;
  margin: 0 auto !important;
}

#product-modal .modal-content .modal-body .product-cover-modal:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Effet de zoom au clic */
#product-modal .modal-content .modal-body .product-cover-modal:active {
  transform: scale(0.98) !important;
}

/* Caption de l'image */
#product-modal .modal-content .modal-body .image-caption {
  width: 100% !important;
  padding: 15px 20px !important;
  background: rgba(246, 246, 246, 0.95) !important;
  border-top: 3px solid #24b9d7 !important;
  border-radius: 0 0 8px 8px !important;
  margin-top: 15px !important;
}

#product-modal .modal-content .modal-body .image-caption p {
  color: #232323 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
}

/* Section des miniatures à droite (verticalement) */
#product-modal .modal-content .modal-body .thumbnails {
  position: relative !important;
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 20px !important;
  border-radius: 10px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
  margin-top: 0 !important;
  text-align: center !important;
  flex: 0 0 280px !important;
  max-width: 280px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Mask des miniatures - ascenseur seulement si nécessaire */
#product-modal .modal-content .modal-body .mask {
  position: relative !important;
  z-index: 1 !important;
  max-height: 80vh !important;
  margin-top: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 5px !important;
}

/* Scrollbar personnalisée turquoise pour les miniatures */
#product-modal .modal-content .modal-body .mask::-webkit-scrollbar {
  width: 8px;
}

#product-modal .modal-content .modal-body .mask::-webkit-scrollbar-track {
  background: rgba(246, 246, 246, 0.5);
  border-radius: 10px;
}

#product-modal .modal-content .modal-body .mask::-webkit-scrollbar-thumb {
  background: #24b9d7;
  border-radius: 10px;
}

#product-modal .modal-content .modal-body .mask::-webkit-scrollbar-thumb:hover {
  background: #1a9fb8;
}

#product-modal .modal-content .modal-body .mask.nomargin {
  margin-top: 0 !important;
}

/* Miniatures des images avec effet hover turquoise */
#product-modal .modal-content .modal-body .product-images {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Chaque vignette en colonne */
#product-modal .modal-content .modal-body .product-images li {
  display: block !important;
  margin: 0 !important;
  width: 100% !important;
}

#product-modal .modal-content .modal-body .product-images img {
  width: 100% !important;
  max-width: 150px !important;
  height: auto !important;
  cursor: pointer !important;
  background: #ffffff !important;
  border: 3px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 5px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

#product-modal .modal-content .modal-body .product-images img:hover {
  border: 3px solid #24b9d7 !important;
  box-shadow: 0 8px 25px rgba(36, 185, 215, 0.5) !important;
  transform: translateY(-8px) scale(1.08) !important;
}

/* Effet brillant sur hover des miniatures */
#product-modal .modal-content .modal-body .product-images img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.5s;
}

#product-modal .modal-content .modal-body .product-images img:hover::after {
  left: 100%;
}

/* Flèches de navigation - masquées */
#product-modal .modal-content .modal-body .arrows {
  display: none !important;
}

/* ============================================
   SECTION 14: PAGE PRODUIT - DESIGN TURQUOISE (ÉTAPE PAR ÉTAPE)
   ============================================ */

/* ÉTAPE 1 : Fond dégradé turquoise pour #wrapper uniquement */
#wrapper {
 background: linear-gradient(135deg, #a0efff 0%, #88ecff 100%) !important;
}

/* ÉTAPE 3 : Marge autour du contenu pour décoller du bord */
#content {
  padding: 20px !important;
}

/* Espacer les colonnes de la page produit */
.js-product-container .col-md-6 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Ajouter de l'espace autour du container principal */
.js-product-container {
  padding: 0 15px !important;
}

/* ÉTAPE 4 : Coins arrondis sur les images pour la cohérence */

/* Image principale en haut - coins arrondis */
.product-cover {
  border-radius: 12px;
  overflow: hidden;
}

.product-cover img {
  border-radius: 12px;
}

/* Miniatures en bas - coins arrondis */
.thumb-container {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thumb-container img {
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Effet hover sur les miniatures */
.thumb-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(36, 185, 215, 0.4);
}

.thumb-container:hover img {
  transform: scale(1.05);
}

/* Miniature sélectionnée avec bordure turquoise */
.thumb-container img.selected {
  border: 3px solid #24b9d7;
  box-shadow: 0 0 10px rgba(36, 185, 215, 0.5);
}

/* ÉTAPE 5 : Centrer la vidéo */
.product-cover-video,
video {
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* ÉTAPE 6 : Améliorer la section description et commentaires */

/* Container principal de la description - avec marges plus grandes et coins plus arrondis */
#main .product-container + .row .tabs,
.product-tabs,
.tabs {
  margin: 0 30px !important;
  padding: 0 10px !important;
  border-radius: 12px !important;
  overflow: hidden;
}

/* Contenu de la description - ne pas dépasser */
.tab-content,
#tab-content {
  padding: 30px !important;
  border-radius: 12px;
  background: #ffffff;
  margin: 0 !important;
}

/* Description - ajouter des marges et ne pas dépasser */
#product-description,
.product-description {
  padding: 20px;
  border-radius: 12px;
  
}

/* Section commentaires - coins arrondis et marges augmentées */
body #product-comments-list-footer,
body .product-comments,
body #comments,
body .comments {
  margin: 30px 12px  !important;
  padding-bottom: 1px !important;
}

/* Chaque commentaire individuel - coins arrondis avec sélecteur très spécifique */
body #comments .product-comment-list-item,
body .product-comments .product-comment-list-item,
.product-comment-list-item,
body .product-comment-list-item {
  border-radius: 12px !important;
  padding: 20px !important;
  margin: 5px 12px !important;
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* Forcer sur le container parent aussi */
body #comments-list,
body .comments-list {
  border-radius: 12px !important;
  overflow: hidden !important;
  margin: 0 30px !important;
}

/* Bouton "DONNEZ VOTRE AVIS" - centré avec marge en dessous */
button.post-product-comment,
.btn.post-product-comment {
  display: block !important;
  margin: 40px auto 80px auto !important;
  padding: 12px 40px !important;
  border-radius: 25px !important;
  background: #ffffff !important;
  border: 2px solid #17a2b8 !important;
  color: #17a2b8 !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

button.post-product-comment:hover,
.btn.post-product-comment:hover {
  background: #17a2b8 !important;
  color: #ffffff !important;
}

/* ========================================
   COINS ARRONDIS VIGNETTES PRODUITS (nouveaux produits, meilleures ventes)
   ======================================== */

/* Images des vignettes produits */
.product-miniature img,
.product-thumbnail img,
.thumbnail-container img {
  border-radius: 12px !important;
  overflow: hidden;
}

/* Conteneurs des vignettes */
.product-miniature .thumbnail-container,
.product-thumbnail,
.thumbnail-container {
  border-radius: 12px !important;
  overflow: hidden;
}


