.elementor-353 .elementor-element.elementor-element-eb69fab{--display:flex;--padding-top:20px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-353 .elementor-element.elementor-element-3bf7670{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-353 .elementor-element.elementor-element-804c751{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-353 .elementor-element.elementor-element-eb69fab{--width:58%;}}/* Start custom CSS for shortcode, class: .elementor-element-df04a2c *//* =============================================================================
   AUDACE 2.0 — Section principale fiche produit [audace_product_main]
   =============================================================================
   À charger dans :
   - Elementor > Paramètres du site > CSS personnalisé
   - OU thème enfant > custom.css
   ============================================================================= */

:root {
  --a2-gold:       #C9A84C;
  --a2-gold-light: #E8D5A3;
  --a2-gold-dark:  #8B6914;
  --a2-noir:       #0F0F0E;
  --a2-warm:       #F7F6F3;
  --a2-warm-2:     #ECEAE4;
  --a2-white:      #FFFFFF;
  --a2-gray:       #6B6B68;
  --a2-gray-l:     #9A9A96;
  --a2-red:        #C84040;
  --a2-green:      #2E6E3F;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', sans-serif;

  --product-max: 1200px;
  --product-pad: 48px;
}


/* =============================================================================
   LAYOUT PRINCIPAL
   ============================================================================= */
.a2-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-family: var(--ff-sans);
}
.a2-product *, .a2-product *::before, .a2-product *::after {
  box-sizing: border-box;
}

/* =============================================================================
   GALERIE — colonne gauche
   ============================================================================= */
.a2-product__gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  padding-right: 48px;
}

/* Thumbnails verticaux */
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 0;
  overflow-y: auto;
  scrollbar-width: none;
  max-height: 500px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }

.thumb {
  width: 64px;
  height: 80px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease, outline 0.2s ease;
  outline: 1px solid transparent;
  outline-offset: 1px;
  flex-shrink: 0;
  background-color: var(--a2-warm-2);
  background-size: cover;
  background-position: center;
}
.thumb.active,
.thumb:hover { opacity: 1; outline-color: var(--a2-gold); }

/* Zone image principale — hauteur fixe raisonnable */
.gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--a2-warm-2);
  aspect-ratio: 3 / 4; /* ratio portrait standard mode */
  width: 100%;
}

/* Track des slides */
.gallery-track {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-slide.active { opacity: 1; }

/* Badge sur image */
.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  background: var(--a2-gold);
  color: var(--a2-noir);
  font-family: var(--ff-sans);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
  pointer-events: none;
}
.gallery-badge--promo {
  background: var(--a2-red);
  color: var(--a2-white);
}

/* Bouton wishlist */
.gallery-wishlist {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 36px;
  height: 36px;
  background: rgba(15, 15, 14, 0.5);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #888888;
  transition: color 0.2s ease, background 0.2s ease;
}
.gallery-wishlist:hover,
.gallery-wishlist.active {
  background: rgba(201, 168, 76, 0.9);
  color: var(--a2-noir);
}
.gallery-wishlist.active svg {
  fill: var(--a2-noir);
}

/* Dots navigation */
.gallery-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.gallery-dot.active {
  background: var(--a2-gold);
  width: 14px;
  border-radius: 3px;
}


/* =============================================================================
   INFOS PRODUIT — colonne droite
   ============================================================================= */
.a2-product__info {
  padding: 32px 0 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Animations staggerées à l'entrée */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.a2-product__info > * {
  animation: fadeInUp 0.45s ease both;
}
.a2-product__info > *:nth-child(1) { animation-delay: 0.04s; }
.a2-product__info > *:nth-child(2) { animation-delay: 0.08s; }
.a2-product__info > *:nth-child(3) { animation-delay: 0.12s; }
.a2-product__info > *:nth-child(4) { animation-delay: 0.16s; }
.a2-product__info > *:nth-child(5) { animation-delay: 0.20s; }
.a2-product__info > *:nth-child(6) { animation-delay: 0.24s; }

/* Catégorie */
.a2-product__category {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--a2-gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.a2-product__category::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--a2-gold-dark);
  flex-shrink: 0;
}

/* Titre */
.a2-product__title {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--a2-noir);
  margin: 0 0 6px 0;
  padding: 0;
}
.a2-product__title em {
  color: var(--a2-gold-dark);
  font-style: italic;
}

/* SKU */
.a2-product__ref {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--a2-gray-l);
  margin-bottom: 16px;
}

/* Avis */
.a2-product__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.stars {
  color: var(--a2-gold);
  font-size: 12px;
  letter-spacing: 2px;
}
.rating-count {
  font-size: 10px;
  color: var(--a2-gray-l);
}
.rating-link {
  font-size: 10px;
  color: var(--a2-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

/* Séparateur */
.sep {
  width: 100%;
  height: 1px;
  background: var(--a2-warm-2);
  margin: 20px 0;
}

/* ── Prix WooCommerce ── */
.a2-product__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
/* Prix normal */
.a2-product__price-wrap .woocommerce-Price-amount {
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--a2-noir);
  line-height: 1;
}
/* Prix barré (remise) */
.a2-product__price-wrap del .woocommerce-Price-amount {
  font-size: 20px;
  color: var(--a2-gray-l);
  text-decoration: line-through;
}
/* Prix soldé */
.a2-product__price-wrap ins .woocommerce-Price-amount {
  color: var(--a2-red);
  text-decoration: none;
}
.a2-product__price-wrap ins { text-decoration: none; }
/* Badge % */
.a2-product__price-badge {
  background: var(--a2-red);
  color: var(--a2-white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 7px;
  font-family: var(--ff-sans);
  align-self: center;
  flex-shrink: 0;
}

/* ── Stock ── */
.a2-product__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--a2-green);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.a2-product__stock::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--a2-green);
  flex-shrink: 0;
}
.a2-product__stock--low { color: var(--a2-red); }
.a2-product__stock--low::before { background: var(--a2-red); }
.a2-product__stock--out { color: var(--a2-gray-l); }
.a2-product__stock--out::before { background: var(--a2-gray-l); }

/* ── Couleurs ── */
.a2-product__color-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gray);
  margin-bottom: 10px;
}
.a2-product__color-label span {
  color: var(--a2-noir);
  font-weight: 500;
  margin-left: 6px;
}
.a2-product__colors {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.color-swatch {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: block !important;
    cursor: pointer;
    border: 2px solid transparent;
    outline: 1px solid transparent;
    outline-offset: 2px;
    transition: border-color 0.2s ease, outline-color 0.2s ease;
    flex-shrink: 0;
    box-sizing: border-box !important;
}

.color-swatch.active,
.color-swatch:hover {
  outline-color: var(--a2-gold);
}
.a2-product__colors .color-swatch {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    background-color: unset;
}

/* ── Tailles ── */
.a2-product__size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.a2-product__size-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gray);
}
.a2-product__size-label span {
  color: var(--a2-noir);
  font-weight: 500;
  margin-left: 6px;
}
.size-guide {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--a2-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--ff-sans);
  text-transform: uppercase;
}
.a2-product__sizes {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.size-btn {
  min-width: 48px;
  height: 40px;
  border: 1px solid var(--a2-warm-2);
  background: var(--a2-white);
  font-size: 11px;
  font-family: var(--ff-sans);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--a2-noir);
  padding: 0 12px;
  position: relative;
}
.size-btn:hover:not(.out-of-stock) { border-color: var(--a2-noir); }
.size-btn.active {
  background: var(--a2-noir);
  color: var(--a2-white);
  border-color: var(--a2-noir);
}
.size-btn.out-of-stock {
  color: var(--a2-warm-2);
  cursor: not-allowed;
  background: var(--a2-warm);
}
.size-btn.out-of-stock::after {
  content: '';
  position: absolute;
  top: 50%; left: 4px; right: 4px;
  height: 1px;
  background: var(--a2-warm-2);
  transform: rotate(-12deg);
}

/* ── Quantité ── */
.a2-product__qty-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.qty-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gray);
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--a2-warm-2);
  background: var(--a2-white);
}
.qty-btn {
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--a2-gray);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s ease;
  font-family: var(--ff-sans);
  line-height: 1;
}
.qty-btn:hover { color: var(--a2-gold-dark); }
.qty-val {
  width: 42px;
  text-align: center;
  font-size: 13px;
  color: var(--a2-noir);
  border: none; outline: none;
  font-family: var(--ff-sans);
}

/* ── CTA boutons ── */
.a2-product__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.btn-cart {
  width: 100%; height: 52px;
  background: var(--a2-noir);
  color: var(--a2-gold-light);
  border: none;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  cursor: pointer;
  font-family: var(--ff-sans);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background 0.25s ease, color 0.25s ease;
  font-weight: 400;
  position: relative;
}
.btn-cart svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-cart:hover:not(:disabled) { background: #252522; color: var(--a2-gold); }
.btn-cart:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-cart--loading { background: #333333; color: rgba(255,255,255,0.4); }
.btn-cart--success { background: var(--a2-green); color: var(--a2-white); }
.btn-cart--disabled { background: var(--a2-warm-2); color: var(--a2-gray-l); cursor: not-allowed; }

.btn-buy {
  width: 100%; height: 52px;
  background: var(--a2-gold);
  color: var(--a2-noir);
  border: none;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  cursor: pointer;
  font-family: var(--ff-sans);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
  font-weight: 500;
  text-decoration: none;
}
.btn-buy:hover { background: var(--a2-gold-dark); color: var(--a2-white); text-decoration: none; }

/* ── Réassurance ── */
.a2-product__reassurance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.reas-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: var(--a2-gray);
  line-height: 1.5;
}
.reas-item__icon {
  color: var(--a2-gold-dark);
  flex-shrink: 0;
  margin-top: 1px;
}
.reas-item__icon svg { width: 14px; height: 14px; }

/* ── Accordéons ── */
.a2-product__accordions { border-top: 1px solid var(--a2-warm-2); }
.accordion { border-bottom: 1px solid var(--a2-warm-2); }
.accordion__header {
  width: 100%; padding: 16px 0;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--a2-noir);
  transition: color 0.2s ease;
}
.accordion__header:hover { color: var(--a2-gold-dark); }
.accordion__icon {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
  color: var(--a2-gray-l);
  flex-shrink: 0;
}
.accordion.open .accordion__icon { transform: rotate(45deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion.open .accordion__body { max-height: 600px; padding-bottom: 20px; }
.accordion__content {
  font-size: 12px;
  line-height: 1.9;
  color: var(--a2-gray);
}
.accordion__content p { margin-bottom: 10px; }
.accordion__content p:last-child { margin-bottom: 0; }
.accordion__content ul, .accordion__content ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.accordion__content ul li {
  padding-left: 16px;
  position: relative;
}
.accordion__content ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--a2-gold);
}
.accordion__content strong { color: var(--a2-noir); font-weight: 500; }

/* ── Partage ── */
.a2-product__share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.share-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gray-l);
}
.share-btn {
  width: 30px; height: 30px;
  border: 1px solid var(--a2-warm-2);
  background: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--a2-gray);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.share-btn svg { width: 13px; height: 13px; }
.share-btn:hover, .share-btn.copied {
  border-color: var(--a2-gold);
  color: var(--a2-gold);
  text-decoration: none;
}


/* =============================================================================
   RESPONSIVE — Tablette (< 1024px)
   ============================================================================= */
@media (max-width: 1024px) {
  .a2-product__gallery { padding-right: 24px; }
  .a2-product__info    { padding-left: 24px; }
}


/* =============================================================================
   RESPONSIVE — Mobile (< 900px) — empilement vertical
   ============================================================================= */
@media (max-width: 900px) {
  .a2-product {
    grid-template-columns: 1fr;
  }
  .a2-product__gallery {
    position: relative;
    top: auto;
    padding-right: 0;
    margin-bottom: 28px;
  }
  .gallery-main {
    aspect-ratio: 1 / 1;
  }
  .gallery-thumbs {
    max-height: none;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .thumb { width: 56px; height: 70px; }
  .a2-product__info { padding-left: 0; }
}


/* =============================================================================
   RESPONSIVE — Mobile portrait (< 600px)
   ============================================================================= */
@media (max-width: 600px) {

  .a2-product__gallery {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs { display: none; } /* masqué sur petit mobile */
  .gallery-main { aspect-ratio: 4 / 5; }

  .a2-product__title { font-size: 24px; }

  .a2-product__reassurance { grid-template-columns: 1fr; gap: 8px; }

  .a2-product__cta { gap: 8px; }
  .btn-cart, .btn-buy { height: 48px; font-size: 9px; letter-spacing: 3px; }

  .a2-product__sizes { gap: 5px; }
  .size-btn { min-width: 42px; height: 36px; font-size: 10px; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-3f4adcc *//* =============================================================================
   AUDACE 2.0 — Section Bundle [audace_bundle]
   "Avec ceci nos clientes ont acheté"
   =============================================================================
   À charger dans :
   - Elementor > Paramètres du site > CSS personnalisé
   - OU thème enfant > custom.css
   ============================================================================= */

:root {
  --a2-gold:       #C9A84C;
  --a2-gold-light: #E8D5A3;
  --a2-gold-dark:  #8B6914;
  --a2-noir:       #1A1A1A;
  --a2-noir-2:     #111110;
  --a2-noir-3:     #1A1200;
  --a2-white:      #FFFFFF;
  --a2-gray:       #9A9A96;
  --a2-gray-light: #F7F6F3;
  --a2-gray-mid:   #ECEAE4;
  --a2-red:        #C84040;

  --bundle-max: 1200px;
  --bundle-pad: 48px;
  --bundle-mt:  0;
  --bundle-mb:  0;
  --bundle-img: 180px; /* hauteur des images produits */
}


/* =============================================================================
   SECTION
   ============================================================================= */
.audace-bundle {
  background: var(--a2-noir-2);
  padding: 56px 0;
  border-top: 1px solid #1A1A18;
  border-bottom: 1px solid #1A1A18;
  width: 100%;
}

.audace-bundle__inner {
  max-width: var(--bundle-max);
  margin: 0 auto;
  padding: 0 var(--bundle-pad);
}


/* =============================================================================
   EN-TÊTE
   ============================================================================= */
.audace-bundle__header {
  margin-bottom: 36px;
}
.audace-bundle__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--a2-gold);
  margin-bottom: 10px;
}
.audace-bundle__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--a2-gold);
  flex-shrink: 0;
}
.audace-bundle__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--a2-white);
  line-height: 1.2;
  margin: 0;
}
.audace-bundle__title em {
  color: var(--a2-gold);
  font-style: italic;
}


/* =============================================================================
   LAYOUT — produits à gauche, récap à droite
   ============================================================================= */
.audace-bundle__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}


/* =============================================================================
   LISTE DES PRODUITS
   ============================================================================= */
.audace-bundle__products {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Séparateur + */
.audace-bundle__plus {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: #333330;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}


/* =============================================================================
   CARTE PRODUIT
   ============================================================================= */
.audace-bundle__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 160px;
  position: relative;
  flex-shrink: 0;
}

/* Image */
.audace-bundle__img {
  width: 160px;
  height: var(--bundle-img);
  background-color: #1E1E1C;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  color: rgba(201, 168, 76, 0.15);
  font-style: italic;
  transition: opacity 0.2s ease;
}
.audace-bundle__img-label { cursor: pointer; display: block; width: 100%; }
.audace-bundle__img-label:hover .audace-bundle__img { opacity: 0.88; }
.audace-bundle__img-link { display: block; }
.audace-bundle__img-link:hover .audace-bundle__img { opacity: 0.88; }

/* Badge coché produit principal */
.audace-bundle__checked-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  background: var(--a2-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
}
.audace-bundle__checked-badge svg {
  width: 11px;
  height: 11px;
  color: var(--a2-noir);
}

/* Contour produit principal */
.audace-bundle__card--main .audace-bundle__img {
  outline: 2px solid var(--a2-gold);
  outline-offset: 2px;
}

/* Checkbox cachée */
.audace-bundle__checkbox { display: none; }

/* Toggle visuel */
.audace-bundle__toggle-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 100%;
}
.audace-bundle__toggle-box {
  width: 18px;
  height: 18px;
  border: 1px solid #2A2A28;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.audace-bundle__toggle-box svg {
  width: 10px;
  height: 10px;
  color: transparent;
  transition: color 0.2s ease;
}
.audace-bundle__toggle-box--checked {
  background: var(--a2-gold);
  border-color: var(--a2-gold);
}
.audace-bundle__toggle-box--checked svg {
  color: var(--a2-noir);
}
.audace-bundle__toggle-label {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444444;
  transition: color 0.2s ease;
}
.audace-bundle__img-label:hover .audace-bundle__toggle-label {
  color: var(--a2-gold);
}

/* Infos texte */
.audace-bundle__card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  width: 100%;
}
.audace-bundle__card-cat {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333330;
}
.audace-bundle__card-name {
  font-size: 11px;
  color: var(--a2-white);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.audace-bundle__card-name:hover {
  color: var(--a2-gold);
  text-decoration: none;
}
.audace-bundle__card-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: var(--a2-gold);
  line-height: 1;
}
.audace-bundle__card-price del {
  color: #333330;
  font-size: 12px;
  text-decoration: line-through;
  margin-right: 3px;
}
.audace-bundle__card-price ins {
  text-decoration: none;
  color: var(--a2-red);
}


/* =============================================================================
   RÉCAP
   ============================================================================= */
.audace-bundle__recap {
  background: var(--a2-noir);
  border: 1px solid #1E1E1C;
  padding: 24px 22px;
  position: sticky;
  top: 72px; /* sous le header sticky */
}

.audace-bundle__recap-title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 16px;
}

.audace-bundle__recap-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.audace-bundle__recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  transition: opacity 0.2s ease;
}
.audace-bundle__recap-row > span:first-child {
  color: #444444;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.audace-bundle__recap-row > span:last-child {
  color: #555555;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  flex-shrink: 0;
}
.audace-bundle__recap-row--main > span:first-child {
  color: #666664;
}
.audace-bundle__recap-row--hidden {
  opacity: 0.28;
  text-decoration: line-through;
}

.audace-bundle__recap-sep {
  width: 100%;
  height: 1px;
  background: #1E1E1C;
  margin: 16px 0;
}

.audace-bundle__recap-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}
.audace-bundle__recap-total-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444444;
}
.audace-bundle__recap-total-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.audace-bundle__recap-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  color: var(--a2-white);
  line-height: 1;
  transition: color 0.2s ease;
}
.audace-bundle__recap-saving {
  font-size: 9px;
  color: var(--a2-gold);
  letter-spacing: 1px;
  min-height: 14px;
  transition: opacity 0.2s ease;
}

/* Bouton CTA */
.audace-bundle__cta {
  width: 100%;
  height: 48px;
  background: var(--a2-gold);
  color: var(--a2-noir);
  border: none;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 10px;
}
.audace-bundle__cta:hover:not(:disabled) {
  background: var(--a2-gold-dark);
  color: var(--a2-white);
}
.audace-bundle__cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.audace-bundle__cta--loading {
  background: #444444;
  color: rgba(255,255,255,0.5);
}
.audace-bundle__cta--success {
  background: #2E6E3F;
  color: var(--a2-white);
}

/* Note sous le bouton */
.audace-bundle__cta-note {
  font-size: 9px;
  color: #333330;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}


/* =============================================================================
   RESPONSIVE — Tablette (< 1024px)
   ============================================================================= */
@media (max-width: 1024px) {
  :root {
    --bundle-pad: 32px;
    --bundle-img: 160px;
  }
  .audace-bundle__layout {
    grid-template-columns: 1fr 260px;
    gap: 32px;
  }
  .audace-bundle__card { width: 140px; }
  .audace-bundle__img  { width: 140px; }
}


/* =============================================================================
   RESPONSIVE — Mobile (< 900px)
   ============================================================================= */
@media (max-width: 900px) {
  .audace-bundle__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .audace-bundle__recap {
    position: static;
  }
}


/* =============================================================================
   RESPONSIVE — Mobile portrait (< 600px)
   ============================================================================= */
@media (max-width: 600px) {
  :root {
    --bundle-pad: 16px;
    --bundle-img: 140px;
  }
  .audace-bundle {
    padding: 40px 0;
  }
  .audace-bundle__products {
    gap: 10px;
    justify-content: center;
  }
  .audace-bundle__card  { width: 120px; }
  .audace-bundle__img   { width: 120px; }
  .audace-bundle__plus  { font-size: 22px; }
  .audace-bundle__title { font-size: 20px; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-085d11c *//* =============================================================================
   AUDACE 2.0 — Section Vous aimerez aussi [audace_related]
   =============================================================================
   À charger dans :
   - Elementor > Paramètres du site > CSS personnalisé
   - OU thème enfant > custom.css
   ============================================================================= */

:root {
  --a2-gold:       #C9A84C;
  --a2-gold-light: #E8D5A3;
  --a2-gold-dark:  #8B6914;
  --a2-noir:       #1A1A1A;
  --a2-white:      #FFFFFF;
  --a2-gray:       #9A9A96;
  --a2-gray-light: #F7F6F3;
  --a2-gray-mid:   #ECEAE4;
  --a2-red:        #C84040;

  --related-max: 1200px;
  --related-pad: 48px;
  --related-mt:  60px;
  --related-mb:  80px;
  --related-gap: 20px;
  --related-img-h: 300px;
  --related-cols:  4; /* Surchargé en inline depuis PHP */
}


/* =============================================================================
   SECTION
   ============================================================================= */
.audace-related {
  background: var(--a2-white);
  padding: var(--related-mt) 0 var(--related-mb);
  border-top: 1px solid var(--a2-gray-mid);
  width: 100%;
}

.audace-related__inner {
  max-width: var(--related-max);
  margin: 0 auto;
  padding: 0 var(--related-pad);
}


/* =============================================================================
   EN-TÊTE
   ============================================================================= */
.audace-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.audace-related__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--a2-noir);
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
.audace-related__title em {
  color: var(--a2-gold-dark);
  font-style: italic;
}

/* Lien Voir tout */
.audace-related__see-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--a2-gold-dark);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.audace-related__see-all::after { content: '→'; font-size: 11px; }
.audace-related__see-all:hover { opacity: 0.7; text-decoration: none; }


/* =============================================================================
   GRILLE
   ============================================================================= */
.audace-related__grid {
  display: grid;
  grid-template-columns: repeat(var(--related-cols, 4), 1fr);
  gap: var(--related-gap);
}


/* =============================================================================
   CARTE PRODUIT
   ============================================================================= */
.audace-related__card {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Image */
.audace-related__img-wrap {
  display: block;
  position: relative;
  height: var(--related-img-h);
  overflow: hidden;
  background: var(--a2-gray-light);
  text-decoration: none;
  margin-bottom: 12px;
}
.audace-related__img-wrap:hover .audace-related__img {
  transform: scale(1.05);
}

/* Zoom image au hover */
.audace-related__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.04) 100%);
  pointer-events: none;
}

/* Badge promo */
.audace-related__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--a2-gold);
  color: var(--a2-noir);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  font-weight: 700;
  z-index: 3;
  line-height: 1;
}

/* Bouton wishlist */
.audace-related__wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--a2-gray);
  transition: color 0.2s ease, background 0.2s ease;
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.audace-related__card:hover .audace-related__wishlist {
  opacity: 1;
  transform: translateY(0);
}
.audace-related__wishlist svg {
  width: 14px;
  height: 14px;
}
.audace-related__wishlist:hover,
.audace-related__wishlist.active {
  color: var(--a2-red);
  background: var(--a2-white);
}
.audace-related__wishlist.active svg {
  fill: var(--a2-red);
  stroke: var(--a2-red);
}

/* Actions au hover (bouton panier) */
.audace-related__hover-actions {
  position: absolute;
  bottom: calc(12px + 12px); /* au-dessus du margin-bottom de l'image */
  left: 0;
  right: 20px; /* marge pour le wishlist */
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 4;
  pointer-events: none;
}
.audace-related__card:hover .audace-related__hover-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Bouton + Panier */
.audace-related__cart {
  background: var(--a2-noir);
  color: var(--a2-gold-light);
  border: none;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  font-weight: 400;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.audace-related__cart:hover {
  background: var(--a2-gold);
  color: var(--a2-noir);
}
.audace-related__cart--link {
  background: var(--a2-gray-light);
  color: var(--a2-noir);
}
.audace-related__cart--link:hover {
  background: var(--a2-noir);
  color: var(--a2-gold-light);
}

/* Infos texte */
.audace-related__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Catégorie */
.audace-related__cat {
  font-size: 9px;
  color: var(--a2-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nom produit */
.audace-related__name {
  font-size: 13px;
  font-weight: 400;
  color: var(--a2-noir);
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.audace-related__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.audace-related__name a:hover {
  color: var(--a2-gold-dark);
}

/* Prix WooCommerce */
.audace-related__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--a2-noir);
  line-height: 1.3;
}
.audace-related__price del {
  color: var(--a2-gray);
  font-size: 13px;
  text-decoration: line-through;
  margin-right: 4px;
}
.audace-related__price ins {
  text-decoration: none;
  color: var(--a2-red);
}


/* =============================================================================
   RESPONSIVE — Tablette (< 1024px)
   ============================================================================= */
@media (max-width: 1024px) {
  :root {
    --related-pad:  32px;
    --related-img-h: 260px;
  }
  .audace-related__grid {
    grid-template-columns: repeat(
      min(var(--related-cols, 4), 3),
      1fr
    ) !important;
  }
}


/* =============================================================================
   RESPONSIVE — Mobile paysage (< 900px)
   ============================================================================= */
@media (max-width: 900px) {
  :root {
    --related-pad:  24px;
    --related-img-h: 220px;
    --related-gap:   14px;
  }
  .audace-related__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Afficher les actions panier en permanence sur mobile */
  .audace-related__hover-actions {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  /* Wishlist toujours visible */
  .audace-related__wishlist {
    opacity: 1;
    transform: none;
  }
}


/* =============================================================================
   RESPONSIVE — Mobile portrait (< 480px)
   ============================================================================= */
@media (max-width: 480px) {
  :root {
    --related-pad:  16px;
    --related-mt:   40px;
    --related-mb:   48px;
    --related-img-h: 190px;
    --related-gap:   10px;
  }
  .audace-related__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .audace-related__title {
    font-size: 22px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-15263b0 *//* =============================================================================
   AUDACE 2.0 — Section SEO à onglets [audace_seo_tabs]
   =============================================================================
   À charger dans :
   - Elementor > Paramètres du site > CSS personnalisé
   - OU thème enfant > custom.css
   ============================================================================= */

:root {
  --a2-gold:       #C9A84C;
  --a2-gold-light: #E8D5A3;
  --a2-gold-dark:  #8B6914;
  --a2-noir:       #1A1A1A;
  --a2-white:      #FFFFFF;
  --a2-gray:       #6B6B68;
  --a2-gray-l:     #9A9A96;
  --a2-gray-light: #F7F6F3;
  --a2-gray-mid:   #ECEAE4;
  --a2-red:        #C84040;

  --seo-max: 1200px;
  --seo-pad: 48px;
}


/* =============================================================================
   SECTION
   ============================================================================= */
.audace-seo-tabs {
  background: var(--a2-white);
  border-top: 1px solid var(--a2-gray-mid);
  width: 100%;
}

.audace-seo-tabs__inner {
  max-width: var(--seo-max);
  margin: 0 auto;
  padding: 0 var(--seo-pad);
}


/* =============================================================================
   NAVIGATION ONGLETS
   ============================================================================= */
.audace-seo-tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--a2-gray-mid);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.audace-seo-tabs__nav::-webkit-scrollbar { display: none; }

.seo-tab {
  padding: 18px 22px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gray-l);
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.seo-tab:hover { color: var(--a2-noir); }
.seo-tab.active {
  color: var(--a2-noir);
  border-bottom-color: var(--a2-gold);
}

/* Badge compteur (avis) */
.seo-tab__count {
  background: var(--a2-gold);
  color: var(--a2-noir);
  font-size: 8px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
}


/* =============================================================================
   PANELS
   ============================================================================= */
.seo-tab-panel {
  display: none;
  padding: 48px 0;
}
.seo-tab-panel.active {
  display: block;
}


/* =============================================================================
   PANEL 1 — DESCRIPTION
   ============================================================================= */
.seo-desc__grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: start;
}
.seo-desc__grid--full {
  grid-template-columns: 1fr;
}

/* Titre H2 SEO */
.seo-desc__h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--a2-noir);
  line-height: 1.3;
  margin: 0 0 18px 0;
}

/* Contenu wysiwyg */
.seo-desc__body p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--a2-gray);
  margin-bottom: 14px;
}
.seo-desc__body p:last-child { margin-bottom: 0; }
.seo-desc__body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--a2-noir);
  margin: 20px 0 10px 0;
}
.seo-desc__body ul,
.seo-desc__body ol {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}
.seo-desc__body ul li,
.seo-desc__body ol li {
  font-size: 12px;
  color: var(--a2-gray);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
  margin-bottom: 6px;
}
.seo-desc__body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--a2-gold);
}
.seo-desc__body strong { color: var(--a2-noir); font-weight: 500; }

/* Aside */
.seo-desc__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Carte citation */
.seo-desc__quote-card {
  background: var(--a2-gray-light);
  border: 1px solid var(--a2-gray-mid);
  padding: 20px;
}
.seo-desc__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--a2-gray);
  line-height: 1.7;
  margin: 0 0 10px 0;
  border-left: 2px solid var(--a2-gold);
  padding-left: 12px;
}
.seo-desc__author {
  font-size: 10px;
  color: var(--a2-gray-l);
  letter-spacing: 1px;
  margin: 0;
}

/* Tags */
.seo-desc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seo-tag {
  background: var(--a2-gray-mid);
  color: var(--a2-gray);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 10px;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: default;
}
.seo-tag:hover {
  background: var(--a2-gold);
  color: var(--a2-noir);
}


/* =============================================================================
   PANEL 2 — DÉTAILS
   ============================================================================= */
.seo-details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.seo-details__group-title {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gray-l);
  margin: 0 0 14px 0;
  font-weight: 400;
  font-family: inherit;
}

/* Tableau */
.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.seo-table tr {
  border-bottom: 1px solid var(--a2-gray-mid);
}
.seo-table tr:last-child { border-bottom: none; }
.seo-table td {
  padding: 10px 0;
  color: var(--a2-gray);
  line-height: 1.5;
  vertical-align: top;
}
.seo-table td:first-child {
  color: var(--a2-noir);
  font-weight: 400;
  width: 42%;
  padding-right: 12px;
}

/* Icônes entretien */
.seo-care-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.seo-care-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--a2-gray-light);
  border: 1px solid var(--a2-gray-mid);
  text-align: center;
}
.seo-care-icon__sym {
  font-size: 16px;
  color: var(--a2-noir);
  font-weight: 300;
  line-height: 1;
}
.seo-care-icon span {
  font-size: 9px;
  color: var(--a2-gray-l);
  letter-spacing: 0.5px;
  line-height: 1.4;
}


/* =============================================================================
   PANEL 3 — AVIS CLIENTS
   ============================================================================= */
.seo-reviews__layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

/* Résumé */
.seo-reviews__score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--a2-noir);
  line-height: 1;
  margin-bottom: 8px;
}
.seo-reviews__stars {
  color: var(--a2-gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.seo-reviews__count {
  font-size: 10px;
  color: var(--a2-gray-l);
  margin-bottom: 20px;
}
.seo-reviews__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--a2-gray-l);
}
.seo-bar-row > span:first-child {
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}
.seo-bar-row > span:last-child {
  width: 20px;
  flex-shrink: 0;
}
.seo-bar {
  flex: 1;
  height: 4px;
  background: var(--a2-gray-mid);
}
.seo-bar__fill {
  height: 100%;
  background: var(--a2-gold);
  transition: width 0.5s ease;
}

/* Liste avis */
.seo-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.seo-review {
  padding: 22px 0;
  border-bottom: 1px solid var(--a2-gray-mid);
}
.seo-review:first-child { padding-top: 0; }
.seo-review:last-of-type { border-bottom: none; }

.seo-review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.seo-review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--a2-gold-dark);
  color: var(--a2-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  flex-shrink: 0;
}
.seo-review__meta-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.seo-review__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--a2-noir);
}
.seo-review__meta {
  font-size: 10px;
  color: var(--a2-gray-l);
}
.seo-review__stars {
  color: var(--a2-gold);
  font-size: 12px;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.seo-review__text {
  font-size: 12px;
  color: var(--a2-gray);
  line-height: 1.8;
  margin: 0;
}

.seo-reviews__empty {
  font-size: 12px;
  color: var(--a2-gray-l);
  font-style: italic;
  padding: 20px 0;
}

.seo-reviews__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: none;
  border: 1px solid var(--a2-gray-mid);
  padding: 10px 20px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gold-dark);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.seo-reviews__more:hover {
  border-color: var(--a2-gold);
  color: var(--a2-gold);
  text-decoration: none;
}


/* =============================================================================
   PANEL 4 — GUIDE DES TAILLES
   ============================================================================= */
.seo-size-intro {
  font-size: 12px;
  color: var(--a2-gray);
  line-height: 1.8;
  margin: 0 0 28px 0;
  max-width: 680px;
}

/* Tableau tailles */
.seo-size-table-wrap {
  overflow-x: auto;
  margin-bottom: 28px;
  -webkit-overflow-scrolling: touch;
}
.seo-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 420px;
}
.seo-size-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a2-gray-l);
  font-weight: 400;
  border-bottom: 2px solid var(--a2-gray-mid);
}
.seo-size-table td {
  padding: 12px 16px;
  color: var(--a2-gray);
  border-bottom: 1px solid var(--a2-gray-mid);
  vertical-align: middle;
}
.seo-size-table tr:last-child td { border-bottom: none; }
.seo-size-table td:first-child strong {
  color: var(--a2-noir);
  font-weight: 500;
}

/* Ligne mise en avant */
.seo-size-row--highlight td {
  background: #FDF9F0;
  color: var(--a2-noir) !important;
}
.seo-size-row--highlight td:first-child strong {
  color: var(--a2-gold-dark) !important;
}

/* Conseils */
.seo-size-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.seo-size-tip {
  background: var(--a2-gray-light);
  border: 1px solid var(--a2-gray-mid);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.seo-size-tip__icon { font-size: 16px; flex-shrink: 0; line-height: 1.4; }
.seo-size-tip p {
  font-size: 11px;
  color: var(--a2-gray);
  line-height: 1.7;
  margin: 0;
}


/* =============================================================================
   RESPONSIVE — Tablette (< 1024px)
   ============================================================================= */
@media (max-width: 1024px) {
  :root { --seo-pad: 32px; }
  .seo-desc__grid { grid-template-columns: 1fr 220px; gap: 36px; }
  .seo-care-icons { grid-template-columns: repeat(2, 1fr); }
}


/* =============================================================================
   RESPONSIVE — Mobile (< 768px)
   ============================================================================= */
@media (max-width: 768px) {
  :root { --seo-pad: 20px; }

  .seo-tab { padding: 14px 14px; font-size: 9px; }

  .seo-desc__grid { grid-template-columns: 1fr; gap: 28px; }
  .seo-details__grid { grid-template-columns: 1fr; gap: 28px; }
  .seo-reviews__layout { grid-template-columns: 1fr; gap: 28px; }
  .seo-size-tips { grid-template-columns: 1fr; }

  .seo-reviews__score { font-size: 44px; }
}


/* =============================================================================
   RESPONSIVE — Mobile portrait (< 480px)
   ============================================================================= */
@media (max-width: 480px) {
  :root { --seo-pad: 16px; }

  .seo-tab { padding: 12px 10px; letter-spacing: 1px; }
  .audace-seo-tabs__nav { gap: 0; }

  .seo-desc__h2 { font-size: 18px; }
  .seo-size-tips { grid-template-columns: 1fr; }
  .seo-care-icons { grid-template-columns: repeat(2, 1fr); }
}/* End custom CSS */