/* =====================================================================
   PUFFS.CH — PRODUCT PAGE  (product.css)  Premium V3.1
   ===================================================================== */

/* PRODUCT PAGE PREMIUM COMPACT */

.product-page {
  padding-top: 52px;
  padding-bottom: 72px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 13px;
  color: #7a7890;
}

.product-breadcrumb a {
  color: #7c4dff;
  text-decoration: none;
}

.product-hero-premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: start;
  margin-top: 32px;
  margin-bottom: 8px;
}

.product-gallery-column {
  position: sticky;
  top: 90px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-details-premium {
  min-width: 0;
  height: 540px;
  display: flex;
  flex-direction: column;
}

/* Produits sans offre 4+1 (non-puffs) : le bloc pack est masque. La carte
   s'ajuste alors a son contenu (pas de hauteur fixe de 535px) pour ne pas
   laisser de vide sous les trust badges. */
.product-details-premium.no-pack-offer {
  height: auto;
}

/* Pour combler l'espace laisse par le bloc 4+1 absent (la colonne galerie est
   plus haute a cause du rack de variantes), on montre une description bien plus
   longue que le clamp a 3 lignes des puffs. Le bouton "Voir plus" reste dispo
   si le texte depasse encore. */
.product-details-premium.no-pack-offer #product-intro.product-intro-clamp {
  -webkit-line-clamp: 18;
  line-clamp: 18;
}

.product-gallery {
  position: relative;
  height: 540px;
  border-radius: 28px;
  /* Fond blanc unifie : la majorite des visuels produit ont deja un fond blanc
     (255) ou quasi-blanc (248-252) « cuit » dans l'image. Un wrapper blanc les
     fond sans couture, quel que soit le type de produit. Les rares photos a fond
     non blanc (ex. e-liquids « Toujours » sur fond noir) doivent etre ré-exportées
     sur fond blanc cote Shopify pour une coherence totale. */
  background: linear-gradient(160deg, #ffffff, #fbfaff);
  border: 1px solid rgba(124, 77, 255, .14);
  box-shadow: 0 4px 18px rgba(124, 77, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  padding: 28px;
  box-sizing: border-box;
}

.product-gallery img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Ombre tres legere : la plupart des images ont un fond opaque, une ombre
     marquee dessinerait le rectangle de la photo sur le fond blanc du wrapper. */
  filter: drop-shadow(0 8px 16px rgba(36, 22, 76, .07));
  transition: transform .25s ease;
}

.product-gallery:hover img {
  transform: none;
}

.product-gallery::after {
  content: none;
}

.gallery-flavor-band {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 6px 8px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 10px 28px rgba(45,28,90,.12);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  z-index: 4;
}

.gallery-flavor-options {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding: 4px 4px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,77,255,.35) transparent;
  scroll-behavior: smooth;
}
.gallery-flavor-options::-webkit-scrollbar { height: 5px; }
.gallery-flavor-options::-webkit-scrollbar-track { background: transparent; }
.gallery-flavor-options::-webkit-scrollbar-thumb { background: rgba(124,77,255,.28); border-radius: 20px; }

.gallery-flavor-options .product-variant-pill {
  scroll-snap-align: start;
  flex: 0 0 auto;
  flex-direction: row;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 0;
  padding: 6px 14px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #4a4470;
  white-space: nowrap;
  transform: none;
  transition: color .18s, background .18s;
}
.gallery-flavor-options .product-variant-pill::before { display: none; }
.gallery-flavor-options .product-variant-pill:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(90,60,160,.38);
}
.gallery-flavor-options .product-variant-pill:hover {
  color: #5826e8;
  background: rgba(124,77,255,.14);
  box-shadow: none;
  transform: none;
  border-color: transparent;
}
.gallery-flavor-options .product-variant-pill.is-active {
  color: #5826e8;
  font-weight: 800;
  background: rgba(124,77,255,.16);
  box-shadow: none;
  transform: none;
  border-color: transparent;
}
.gallery-flavor-options .product-variant-pill:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.gallery-flavor-options .variant-pill-emoji {
  width: 18px;
  height: 18px;
  display: block;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  color: #6d4aff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(69, 45, 120, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 5;
}
.product-gallery-nav:hover {
  background: #7c4dff;
  color: #fff;
  box-shadow: 0 8px 24px rgba(124,92,255,.30);
}
.product-gallery-nav.prev { left: 20px; }
.product-gallery-nav.next { right: 20px; }

/* ══ Details card ══ */
.product-details-premium {
  border-radius: 24px;
  padding: 20px 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(124, 77, 255, .11);
  box-shadow: 0 24px 70px rgba(45, 28, 90, .075);
}

/* ══ Badges ══ */
.product-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(124, 77, 255, .12);
  flex-wrap: wrap;
  align-items: center;
}
.product-meta .product-points-preview { margin: 0 0 0 auto; }

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.badge-18 {
  color: #e53935;
  background: #fff1f1;
  border: 1px solid #ffd1d1;
}

.badge-secondary {
  color: #6846e8;
  background: #f4efff;
  border: 1px solid #e1d6ff;
}

.badge-green {
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.badge-danger {
  color: #e53935;
  background: #fff1f1;
  border: 1px solid #ffd1d1;
}

#product-stock {
  color: #059669;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

/* ══ Title + intro ══ */
.product-brand-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  padding: 5px 13px 5px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,77,255,.14), rgba(88,38,232,.05));
  border: 1px solid rgba(124,77,255,.24);
  color: #4b21c9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(101, 61, 255, .1);
}
.product-brand-eyebrow i { font-size: 15px; color: #7c4dff; }

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 8px;
}
.product-title-row h1 { flex: 1 1 auto; }
.product-title-row .product-price-main {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  padding-top: 2px;
}
.product-price-sub { display: flex; align-items: center; gap: 6px; }
.product-price-sub:empty { display: none; }

.product-details-premium h1 {
  margin: 0 0 6px;
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #10152f;
}

#product-intro {
  margin: 0 0 6px;
  font-size: 13.5px;
  color: #66657a;
  line-height: 1.5;
}

.product-intro-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-intro-wrap {
  position: relative;
}

.product-intro-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #7c4dff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-intro-toggle:hover { text-decoration: underline; }

/* État replié : le bouton "Voir plus" se place à la fin de la 3e ligne
   (et non en dessous), avec un fondu blanc pour ne pas chevaucher le texte. */
.product-intro-wrap .product-intro-clamp ~ .product-intro-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding-left: 38px;
  line-height: 1.55;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #ffffff 40%);
}

/* ══ Rating ══ */
.product-rating-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.product-rating-input { display: flex; gap: 1px; }

.rating-star-btn {
  border: 0;
  background: transparent;
  padding: 0 1px;
  font-size: 17px;
  color: #ffb020;
  cursor: pointer;
  line-height: 1;
  transition: color .12s, transform .12s;
}
.rating-star-btn.is-active { color: #f59e0b; }
.rating-star-btn:hover, .rating-star-btn:focus-visible { color: #fbbf24; transform: scale(1.2); }
.rating-star-btn.is-login-required { cursor: pointer; opacity: 1; }

.product-rating-value {
  font-size: 14px;
  font-weight: 700;
  color: #151933;
}

.product-rating-count {
  font-size: 13px;
  color: #85839a;
}

.product-rating-preview { font-size: 11px; color: #7c4dff; font-weight: 600; opacity: 0; transition: opacity .2s; }
.product-rating-preview.is-visible { opacity: 1; }

.product-rating-feedback {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: transparent;
}
.product-rating-feedback:empty { display: none; }
.product-rating-feedback.is-success { background: rgba(16,185,129,.08); color: #059669; }
.product-rating-feedback.is-error   { background: rgba(239,68,68,.08);  color: #dc2626; }

/* ══ Price block ══ */
.product-price-block {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px;
  padding: 0;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price-main { display: flex; align-items: baseline; gap: 8px; }
.product-price-main .price { margin: 0; }
.price-label { font-size: 13px; font-weight: 600; color: #77748b; white-space: nowrap; flex-shrink: 0; }
.product-price-main .price {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: #5826e8;
  background: linear-gradient(135deg, #7c4dff, #5826e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Price anchoring (strikethrough reference + discount badge) ── */
.product-price-compare {
  font-size: 17px;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.product-price-compare[hidden] { display: none; }
.product-price-discount-badge {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #e11d48;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .3px;
}
.product-price-discount-badge[hidden] { display: none; }

/* ── Loyalty points preview (under price) ── */
.product-points-preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, .08);
  border: 1px solid rgba(124, 58, 237, .18);
  color: #6d28d9;
  font-size: 12.5px;
  font-weight: 700;
  width: fit-content;
}
.product-points-preview i { font-size: 14px; }
.product-points-preview[hidden] { display: none; }

/* ── Accepted payment strip (below add-to-cart button) ── */
.product-payment-accepted {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 0;
  opacity: .65;
}
.payment-accepted-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  margin-right: 2px;
  white-space: nowrap;
}

.pay-sm {
  height: 16px;
  width: auto;
  border-radius: 2px;
  filter: grayscale(40%);
}

.pay-sm-twint {
  font-size: 9px;
  font-weight: 900;
  background: #374151;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: .04em;
  opacity: .75;
}

/* ── Pack 4+1 premium offer card ── */
.pack-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; }

.pack-offer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 20px;
  background:
    radial-gradient(130% 180% at 0% 0%, rgba(124, 77, 255, .16), transparent 58%),
    linear-gradient(135deg, #f7f2ff 0%, #efe7ff 100%);
  border: 1.5px solid #ddccff;
  box-shadow: 0 14px 34px -20px rgba(108, 64, 255, .7);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pack-offer::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #7c4dff, #6540ff);
}
.pack-offer.is-active {
  border-color: #4ade80;
  box-shadow: 0 12px 30px -16px rgba(34, 197, 94, .55);
}
.pack-offer.is-active::before {
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.pack-offer-media {
  position: relative;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ece6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pack-offer-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.pack-offer-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #7c4dff, #6233ff);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  box-shadow: 0 4px 10px -3px rgba(98, 51, 255, .7);
  letter-spacing: .2px;
}
.pack-offer-badge span { opacity: .85; margin: 0 1px; }
.pack-offer.is-active .pack-offer-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 10px -3px rgba(22, 163, 74, .7);
}

.pack-offer-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.pack-offer-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pack-offer-title {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 900; color: #1d1240;
}
.pack-offer-title i { color: #7c4dff; font-size: 16px; }
.pack-offer-tag {
  font-size: 11px; font-weight: 800; color: #6233ff;
  background: rgba(124, 77, 255, .12);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.pack-offer-tag sup { font-size: 8px; }

.pack-offer-prices { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.pack-offer-old {
  font-size: 14px; font-weight: 600; color: #9a93b3;
  text-decoration: line-through; text-decoration-color: #c9b8ff;
}
.pack-offer-new { font-size: 20px; font-weight: 900; color: #16a34a; }
.pack-offer-for { font-size: 11px; font-weight: 700; color: #8b85a3; }

.pack-offer-saving {
  font-size: 11px; font-weight: 800; color: #15803d;
}

.pack-offer-toggle {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; user-select: none;
}
.pack-offer-switch {
  width: 46px; height: 26px; border-radius: 999px;
  background: #d9cef7; position: relative;
  transition: background .2s;
}
.pack-offer-switch::after {
  content: "";
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.25);
  transition: transform .2s;
}
.pack-toggle-input:checked + .pack-offer-switch { background: #22c55e; }
.pack-toggle-input:checked + .pack-offer-switch::after { transform: translateX(20px); }
.pack-toggle-input:focus-visible + .pack-offer-switch { outline: 2px solid #7c4dff; outline-offset: 2px; }
.pack-offer-switch-text {
  font-size: 11px; font-weight: 800; color: #6233ff; white-space: nowrap;
}
.pack-offer.is-active .pack-offer-switch-text { color: #15803d; }

@media (max-width: 560px) {
  .pack-offer { gap: 12px; padding: 12px 14px; }
  .pack-offer-media { width: 54px; height: 54px; }
  .pack-offer-new { font-size: 18px; }
}

/* ══ KPI grid ══ */
.product-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}

.product-kpi-card {
  padding: 8px 5px;
  border-radius: 14px;
  background: #fbfaff;
  border: 1px solid rgba(124, 77, 255, .09);
  box-shadow: 0 5px 14px rgba(45, 28, 90, .03);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.product-kpi-card:hover {
  border-color: rgba(124,92,255,.30);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124,92,255,.12);
}

.product-kpi-icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2edff;
  color: #744cff;
  flex-shrink: 0;
}

/* Iconoir icons */
.product-kpi-icon i[class^="iconoir-"],
.product-kpi-icon i[class*=" iconoir-"] {
  font-size: 15px !important;
  color: #744cff !important;
  line-height: 1;
}

/* Phosphor fallback */
.product-kpi-icon i.ph,
.product-kpi-icon .ph {
  font-size: 15px !important;
  color: #744cff !important;
  line-height: 1;
  display: block;
}

.product-kpi-card strong {
  display: block;
  margin-bottom: 0;
  font-size: 11.5px;
  font-weight: 700;
  color: #4a4860;
}

.product-kpi-card span:last-child {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8a879d;
  letter-spacing: .05em;
}

/* ══ Collections ══ */
.product-collections-list { display: flex; flex-wrap: wrap; gap: 6px; }
.product-collection-chip {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(124,92,255,.07);
  color: #7c4dff;
  border: 1px solid rgba(124,92,255,.14);
}

/* ══ Purchase actions ══ */
.purchase-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 4px 0 0;
}

.quantity-selector {
  height: 52px;
  display: grid;
  grid-template-columns: 44px 46px 44px;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7f4ff);
  border: 1px solid rgba(124, 77, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 6px 16px rgba(101, 61, 255, .07);
  overflow: hidden;
  flex: 0 0 auto;
}

.btn-counter {
  height: 100%;
  border: 0;
  background: transparent;
  color: #6f45ff;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.btn-counter:hover { background: rgba(124,77,255,.1); color: #5826e8; }

.quantity-selector input[type="number"] {
  width: 100%;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #151933;
  background: transparent;
  outline: none;
  font-family: inherit;
  -moz-appearance: textfield;
}

.quantity-selector input[type="number"]::-webkit-outer-spin-button,
.quantity-selector input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#add-to-cart {
  height: 52px;
  flex: 0 1 auto;
  padding: 0 30px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c4dff, #5826e8);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(101, 61, 255, .24);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
#add-to-cart i { font-size: 18px; }
.btn-cart-icon { flex-shrink: 0; }

/* Divider under CTA + in-box trust row */
.buy-divider {
  height: 1px;
  background: rgba(124, 77, 255, .12);
  border-radius: 1px;
  margin: 16px 0 14px;
}
.product-buy-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

#add-to-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(101, 61, 255, .28);
}
#add-to-cart:active { transform: translateY(0); }
#add-to-cart:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ══ Trust strip ══ */
.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.product-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 2px 2px;
  cursor: default;
}

.product-trust-item i {
  flex-shrink: 0;
  font-size: 21px;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #8b5cff 0%, #6a3cff 100%);
  box-shadow: 0 4px 11px rgba(106, 60, 255, .32);
  line-height: 1;
  transition: transform .2s, box-shadow .2s;
}
.product-trust-item:hover i {
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(106, 60, 255, .42);
}

.trust-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.trust-item-label {
  font-size: 12.5px;
  font-weight: 800;
  color: #2b2350;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.trust-item-sub {
  display: none;
}

/* Payment trust item — logos row */
.trust-pay-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 2px;
}

.trust-pay-logo {
  height: 14px;
  width: auto;
  border-radius: 2px;
  filter: grayscale(20%);
  opacity: .85;
}

.trust-pay-twint {
  font-size: 9px;
  font-weight: 900;
  background: #1a1a1a;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: .05em;
  opacity: .8;
}

/* ══ Variant rack ══ */
.product-variant-rack {
  margin-top: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(124, 77, 255, .11);
  box-shadow: 0 18px 45px rgba(45, 28, 90, .055);
  flex: 0 0 auto;
}

.product-variant-rack-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.product-variant-rack h4 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #161a34;
}

.product-variant-count {
  font-size: 12px;
  font-weight: 700;
  color: #7c4dff;
  background: rgba(124,77,255,.08);
  padding: 2px 8px;
  border-radius: 20px;
}

.product-variant-selected {
  display: none;
}

/* Ligne "saveur/couleur selectionnee" au-dessus des pills (affichee via JS) */
#product-variant-current {
  margin: -4px 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #4a4470;
}
#product-variant-current strong {
  color: #5826e8;
  font-weight: 800;
}

/* ── Carrousel de saveurs (fleches + fondu sur les bords) ── */
.product-variant-carousel {
  position: relative;
}

.product-variant-carousel.has-overflow .product-variant-options {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-variant-carousel.has-overflow .product-variant-options::-webkit-scrollbar {
  height: 0;
  display: none;
}

/* Fondu sur les bords pour indiquer le defilement */
.product-variant-carousel.has-overflow::before,
.product-variant-carousel.has-overflow::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .2s ease;
}
.product-variant-carousel.has-overflow::before {
  left: 0;
  background: linear-gradient(90deg, #fff 20%, rgba(255,255,255,0));
}
.product-variant-carousel.has-overflow::after {
  right: 0;
  background: linear-gradient(270deg, #fff 20%, rgba(255,255,255,0));
}
.product-variant-carousel.has-overflow:has(.pvc-nav.prev:not([hidden]))::before {
  opacity: 1;
}
.product-variant-carousel.has-overflow:has(.pvc-nav.next:not([hidden]))::after {
  opacity: 1;
}

.pvc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(124, 77, 255, .18);
  background: #fff;
  color: #5826e8;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px 0;
  box-shadow: 0 6px 18px rgba(45, 28, 90, .16);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pvc-nav[hidden] { display: none; }
.pvc-nav.prev { left: -6px; }
.pvc-nav.next { right: -6px; }
.pvc-nav:hover {
  background: linear-gradient(140deg, #9d68ff, #6540ff);
  color: #fff;
  box-shadow: 0 8px 22px rgba(101, 64, 255, .38);
}
.pvc-nav:active {
  transform: translateY(-50%) scale(.92);
}

.product-variant-options {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding: 6px 2px 10px 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,77,255,.35) transparent;
  scroll-behavior: smooth;
}

.product-variant-options::-webkit-scrollbar {
  height: 6px;
}
.product-variant-options::-webkit-scrollbar-track {
  background: transparent;
}
.product-variant-options::-webkit-scrollbar-thumb {
  background: rgba(124,77,255,.28);
  border-radius: 20px;
}
.product-variant-options::-webkit-scrollbar-thumb:hover {
  background: rgba(124,77,255,.45);
}

/* Variant pills */
.product-variant-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 108px;
  min-height: 54px;
  border-radius: 16px;
  border: 1.5px solid rgba(124, 77, 255, .14);
  background: linear-gradient(160deg, #fdfcff, #f7f4ff);
  color: #2a1f5e;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 14px;
  box-shadow: 0 2px 6px rgba(45, 28, 90, .07), inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s cubic-bezier(.34,1.56,.64,1), background .2s ease;
  position: relative;
  overflow: hidden;
}

.product-variant-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,77,255,.06), transparent 60%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.product-variant-pill:hover {
  border-color: rgba(124,77,255,.45);
  background: linear-gradient(160deg, #f7f2ff, #ede6ff);
  color: #5b21e6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transform: translateY(-3px) scale(1.015);
}
.product-variant-pill:hover::before { opacity: 1; }

.product-variant-pill.is-active,
.product-variant-pill.active,
.product-variant-pill[aria-selected="true"] {
  background: linear-gradient(140deg, #9d68ff, #6540ff);
  color: #fff;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.product-variant-pill.is-active .variant-pill-price { opacity: .8; }
.product-variant-pill:disabled { opacity: .35; cursor: not-allowed; }

.variant-pill-icon { display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; }
.variant-pill-emoji { width: 24px; height: 24px; object-fit: contain; display: block; filter: drop-shadow(0 1px 2px rgba(36, 22, 76, .18)); }
.variant-pill-dot { width: 20px; height: 20px; border-radius: 50%; display: block; box-shadow: 0 1px 2px rgba(36, 22, 76, .18); }
.variant-pill-title { font-size: 13px; }
.variant-pill-price { font-size: 11px; opacity: .72; }
.variant-pill-stock { font-size: 10px; color: #ef4444; }

/* ══════════════════════════════════════════════
   DESCRIPTION SECTION
══════════════════════════════════════════════ */

.product-story-premium {
  margin-top: 42px;
  padding: 0 0 56px;
}

/* layout: description left + cards right */
.product-story-layout {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 18px;
  align-items: stretch;
}

.product-story-text-col,
.product-description-layout aside {
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(124, 77, 255, .1);
  box-shadow: 0 20px 55px rgba(45, 28, 90, .055);
}

.product-story-text-col {
  padding: 24px 32px 24px 24px;
  min-width: 0;
  overflow: hidden;
}

.product-story-visual { display: none; }

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7c4dff;
  background: rgba(124,77,255,.08);
  padding: 3px 10px;
  border-radius: 20px;
}

.product-story-text-col p,
.product-story-text-col #product-full-description {
  font-size: 14px;
  line-height: 1.7;
  color: #66657a;
  margin: 0 0 18px;
}

.product-story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.story-highlight {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 10px;
  background: #fbfaff;
  border: 1px solid rgba(124, 77, 255, .08);
  transition: border-color .2s;
}
.story-highlight:hover {
  border-color: rgba(124,77,255,.22);
}

.story-highlight-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2edff;
  color: #744cff;
}
.story-highlight-icon i { font-size: 11px; color: #744cff; }

.story-highlight-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0px; min-width: 0; overflow: hidden; }
.story-highlight-text strong {
  display: block;
  font-size: 11px;
  color: #151933;
  white-space: nowrap;
}

.story-highlight-text span {
  font-size: 10px;
  color: #77748b;
  white-space: nowrap;
}

/* ══ Description cards ══ */
.product-description-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.product-description-layout aside {
  padding: 16px 18px;
  transition: box-shadow .25s, transform .25s;
}
.product-description-layout aside:hover {
  box-shadow: 0 10px 36px rgba(124,77,255,.10);
  transform: translateY(-3px);
}

.card-header-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.card-header-premium h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7c4dff;
  background: rgba(124,77,255,.08);
  padding: 3px 10px;
  border-radius: 20px;
}

.card-icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2edff;
  color: #744cff;
}
.card-icon-wrap i { font-size: 15px; color: #744cff; }

.product-feature-list,
.product-service-list {
  margin: 0;
  padding-left: 16px;
  color: #66657a;
  font-size: 13px;
  line-height: 1.7;
}

/* ══ Payment logos ══ */
.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.pm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 9px;
  border: 1px solid #e5e7eb;
  background: #fff;
  height: 38px;
  min-width: 54px;
  transition: border-color .2s, box-shadow .2s;
}
.pm-badge:hover { border-color: rgba(124,77,255,.28); box-shadow: 0 3px 10px rgba(124,77,255,.10); }
.pm-badge img { height: 20px; width: auto; object-fit: contain; }
.pm-twint { font-size: 12px; font-weight: 900; color: #000; letter-spacing: .02em; font-family: Arial, sans-serif; }

/* ══ Lightbox ══ */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbFadeIn .2s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.product-lightbox[hidden] { display: none; }
.product-lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.product-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(8px);
}
.product-lightbox-close:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════════
   RELATED PRODUCTS
══════════════════════════════════════════════ */
/* ── Module fusionné : compléter la commande ── */
.product-cross {
  margin: 64px 0 56px;
}
.product-cross[hidden] { display: none; }
.product-cross-head {
  margin: 0 0 12px;
}
.product-cross-head h2 {
  position: relative;
  margin: 0 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1f1a3a;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.6px;
}
.product-cross-head h2::before {
  content: "";
  width: 6px;
  height: 26px;
  border-radius: 99px;
  background: linear-gradient(180deg, #7c5cff, #b44cff);
}
.product-cross-sub {
  margin: 0 0 0 18px;
  font-size: .95rem;
  color: #77748b;
  line-height: 1.45;
}

.product-related {
  margin-bottom: 0;
}

/* ── Frequently bought together (bundle) ── */
.product-bundle {
  margin: 0 0 30px;
  padding: 28px 30px;
  border: 1.5px solid #cdbcf5;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfaff 0%, #f6f4ff 100%);
  box-shadow: 0 14px 40px -26px rgba(88, 38, 232, .45);
}
.product-bundle[hidden] { display: none; }
.product-bundle-head {
  margin: 0 0 22px;
}
.product-bundle-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  padding: 5px 13px 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c4dff, #5826e8);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(88, 38, 232, .6);
}
.product-bundle-eyebrow::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center/14px no-repeat;
}
.product-bundle-head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #2d2150;
  letter-spacing: -.4px;
}
.product-bundle-head h2::before {
  content: "";
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #7c4dff, #5826e8);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center/17px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center/17px no-repeat;
}
.product-bundle-sub {
  margin: 0;
  font-size: .9rem;
  color: #77748b;
  line-height: 1.45;
}

/* ── 3 packs "souvent achetés ensemble" ── */
.product-bundle-packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bundle-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f0ecfb;
  box-shadow: 0 8px 24px -20px rgba(88, 38, 232, .4);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.bundle-pack:hover {
  box-shadow: 0 18px 38px -22px rgba(88, 38, 232, .5);
  border-color: #e3dbfb;
}
.bundle-pack.is-popular {
  border-color: #c9b8ff;
  box-shadow: 0 14px 34px -20px rgba(124, 77, 255, .55);
}
.bundle-pack-flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c4dff, #5826e8);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(88, 38, 232, .7);
}
.bundle-pack-flag i { font-size: 12px; }

.bundle-pack-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 16px;
}
.bundle-pack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: calc(50% - 14px);
  min-width: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.bundle-pack-item .bundle-pack-item-img {
  transition: border-color .18s ease, box-shadow .18s ease;
}
a.bundle-pack-item:hover .bundle-pack-item-img {
  border-color: #7c5cff;
  box-shadow: 0 6px 16px rgba(124,92,255,.18);
}
a.bundle-pack-item:hover .bundle-pack-item-name {
  color: #7c5cff;
}
.bundle-pack-item-img {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 15px;
  background: #f8f7fd;
  border: 1px solid #efecfb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bundle-pack-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.bundle-pack-item.is-current .bundle-pack-item-img {
  border-color: #7c5cff;
  box-shadow: 0 0 0 2px rgba(124,92,255,.22);
}
.bundle-pack-item-name {
  font-size: 12px;
  font-weight: 700;
  color: #2d2150;
  line-height: 1.3;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bundle-pack-plus {
  align-self: center;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  color: #cfcae6;
  line-height: 1;
  flex-shrink: 0;
}

.bundle-pack-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #ece8fb;
}
.bundle-pack-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bundle-pack-total-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #9a96ab;
}
.bundle-pack-total-price {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1;
  background: linear-gradient(120deg, #7c4dff 0%, #5826e8 60%, #b44cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #5826e8;
}
.bundle-pack-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 10px 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c4dff, #5826e8);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.bundle-pack-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(124,77,255,.5);
}
.bundle-pack-add.is-added {
  background: linear-gradient(135deg, #10b981, #059669);
}
.bundle-pack-add i { font-size: 16px; }

@media (max-width: 860px) {
  .product-bundle-packs { grid-template-columns: 1fr; gap: 14px; }
  .bundle-pack-items { padding: 6px 0 14px; }
}
@media (max-width: 560px) {
  .product-bundle { padding: 24px 16px; }
  .product-bundle-sub { margin-left: 0; }
}

.product-related-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.product-related-head-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-related-sub {
  margin: 0 0 0 17px;
  font-size: .9rem;
  color: #77748b;
  line-height: 1.45;
}

.product-related-head h3 {
  position: relative;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1f1a3a;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.4px;
}

.product-related-head h3::before {
  content: "";
  width: 5px;
  height: 19px;
  border-radius: 99px;
  background: linear-gradient(180deg, #7c5cff, #b44cff);
}

.product-related-head a {
  color: #7c4dff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-left: auto;
  transition: opacity .2s;
}
.product-related-head a:hover { opacity: .7; }

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.related-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid #d9cdf7;
  box-shadow: 0 6px 22px -14px rgba(88, 38, 232, .28);
  overflow: hidden;
  cursor: pointer;
  transition: transform .24s cubic-bezier(.34,1.3,.5,1), box-shadow .24s ease, border-color .24s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
/* Accent dégradé qui se révèle au survol (créativité + homogénéité) */
.related-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #7c5cff, #b44cff);
  opacity: 0;
  transition: opacity .24s ease;
  z-index: 3;
}
.related-card:hover {
  box-shadow: 0 22px 46px -22px rgba(88, 38, 232, .5);
  border-color: #b69bf5;
}
.related-card:hover::before { opacity: 1; }

.related-card-img {
  position: relative;
  width: 100%;
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 14px;
  background:
    radial-gradient(120% 90% at 50% 18%, #ffffff 0%, #f4efff 62%, #ece3ff 100%);
}
/* Halo doux derrière le produit pour unifier les visuels hétérogènes */
.related-card-img::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.16) 0%, rgba(124,92,255,0) 70%);
  z-index: 0;
}
.related-card-img img {
  position: relative;
  z-index: 1;
  height: 162px;
  max-height: 162px;
  width: auto;
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(36,22,76,.16));
  transition: transform .32s cubic-bezier(.34,1.3,.5,1);
}
.related-card:hover .related-card-img img { transform: scale(1.08) translateY(-2px); }

.related-card-stock {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #059669;
  border: 1px solid rgba(16,185,129,.28);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px -4px rgba(16,185,129,.4);
}
.related-card-stock i { font-size: 9px; }
.related-card-stock.is-low {
  color: #d97706;
  border-color: rgba(245,158,11,.32);
  box-shadow: 0 4px 10px -4px rgba(245,158,11,.4);
}

.related-card-body {
  padding: 12px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Badge marque premium, pose en overlay sur l'image (evite la repetition
   avec le nom du produit qui contient souvent deja la marque) */
.related-card-brand-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5826e8;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(124,77,255,.22);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -6px rgba(88,38,232,.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card-brand {
  font-size: 9.5px;
  font-weight: 800;
  color: #a78bff;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.related-card-name {
  font-size: 12.5px;
  font-weight: 750;
  color: #151933;
  line-height: 1.28;
  margin: 0;
  min-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
}

.related-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #6b5e8f;
  background: linear-gradient(135deg, rgba(124,92,255,.10), rgba(180,76,255,.06));
  border: 1px solid rgba(124,77,255,.16);
  padding: 3px 8px;
  border-radius: 999px;
}
.related-card-pill i { font-size: 9px; color: #7c4dff; }

.related-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
}
.related-card-stars {
  display: inline-flex;
  gap: 1px;
  color: #f5a623;
  font-size: 11px;
}
.related-card-reviews {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
}

.related-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f1ecfb;
}
.related-card-price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
}

.related-card-price {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.5px;
  background: linear-gradient(120deg, #7c4dff 0%, #5826e8 55%, #b44cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #6f45ff;
}
.related-card-price-compare {
  font-size: 12px;
  font-weight: 600;
  color: #b0adc0;
  text-decoration: line-through;
  text-decoration-thickness: 1.2px;
}

.related-card-add {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c4dff, #5826e8);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, box-shadow .2s, background .2s;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(124,77,255,.55);
}
.related-card-add:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 12px 24px -8px rgba(124,77,255,.6);
}
.related-card-add.is-added {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 18px -6px rgba(16,185,129,.6);
  animation: relatedAddPop .3s ease;
}
@keyframes relatedAddPop {
  0% { transform: scale(.8); }
  60% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ══ Responsive ══ */
@media (max-width: 1100px) {
  .product-hero-premium {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-gallery-column { position: static; }

  .product-details-premium {
    height: auto;
  }

  .product-gallery {
    height: auto;
    min-height: 460px;
  }

  /* Story layout: stack at 1100px so description has full width for highlights */
  .product-story-layout { grid-template-columns: 1fr; }

  .product-story-highlights { grid-template-columns: repeat(3, 1fr); }

  .product-description-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  /* Below 860px: stack story layout */
  .product-story-layout { grid-template-columns: 1fr; }

  .product-description-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .product-page {
    padding-top: 48px;
  }

  .product-details-premium,
  .product-story-shell,
  .product-variant-rack {
    padding: 22px;
    border-radius: 22px;
  }

  .product-gallery {
    height: 360px;
    border-radius: 22px;
    padding: 20px;
  }

  .product-gallery img {
    max-width: 100%;
    max-height: 100%;
  }

  .product-details-premium h1 { font-size: 22px; }

  .product-price-block {
    flex-direction: column;
  }

  .product-price-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purchase-actions {
    flex-wrap: wrap;
  }

  #add-to-cart { flex: 1 1 100%; }

  .product-title-row { flex-direction: column; gap: 6px; }
  .product-title-row .product-price-main { align-items: flex-start; text-align: left; }

  .product-trust-strip { grid-template-columns: 1fr; }
  .product-buy-trust { grid-template-columns: repeat(4, 1fr); }
  .product-story-highlights { grid-template-columns: 1fr; }

  .product-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
/* ============ Avis produits (premium) ============ */
.product-reviews-premium {
  padding: 8px 0 20px;
}

.reviews-premium-shell {
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border: 1px solid rgba(124, 77, 255, .12);
  border-radius: 22px;
  padding: 24px 24px 26px;
  box-shadow: 0 20px 50px rgba(45, 28, 90, .055);
}

.reviews-premium-head {
  margin-bottom: 16px;
}

.reviews-premium-head h2 {
  position: relative;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #1f1a3a;
}

.reviews-premium-head h2::before {
  content: "";
  width: 5px;
  height: 20px;
  border-radius: 99px;
  background: linear-gradient(180deg, #7c5cff, #b44cff);
}

.reviews-premium-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6f6b85;
}

/* ---- Top row: compact summary (left) + review form (right) ---- */
.reviews-premium-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

/* Summary card: score header + distribution stacked, compact */
.reviews-snapshot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(124, 77, 255, .1);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(45, 28, 90, .04);
}

.reviews-score-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(124, 77, 255, .1);
}

.reviews-score-block strong {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #1f1a3a;
}

.reviews-score-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-summary-stars {
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-summary-count {
  font-size: 12.5px;
  font-weight: 600;
  color: #6f6b85;
}

.rv-star { color: #e2ddf2; }
.rv-star.is-on { color: #ffb020; }

.reviews-distribution {
  display: grid;
  gap: 7px;
}

.rv-dist-row {
  display: grid;
  grid-template-columns: 26px 1fr 20px;
  align-items: center;
  gap: 10px;
}

.rv-dist-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #6f6b85;
  text-align: left;
}

.rv-dist-track {
  height: 7px;
  border-radius: 8px;
  background: rgba(124, 77, 255, .1);
  overflow: hidden;
}

.rv-dist-fill {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #7c4dff, #b44cff);
  transition: width .5s ease;
}

.rv-dist-count {
  font-size: 11.5px;
  font-weight: 600;
  color: #9b97ad;
  text-align: right;
}

.reviews-reward-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 77, 255, .09), rgba(101, 64, 255, .04));
  border: 1px solid rgba(124, 77, 255, .16);
  font-size: 12px;
  line-height: 1.4;
  color: #5b4b8a;
}
.reviews-reward-note i {
  font-size: 16px;
  color: #7c4dff;
  flex-shrink: 0;
}
.reviews-reward-note strong {
  color: #4a2fc2;
  font-weight: 800;
}

/* ---- Reviews list: carrousel pleine largeur ---- */
.reviews-list-col { min-width: 0; }

.reviews-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.reviews-list-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #1f1a3a;
}
.reviews-list-title[hidden] { display: none; }

.reviews-see-all {
  border: 1px solid rgba(124, 77, 255, .22);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #6f45ff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.reviews-see-all:hover {
  background: #f4efff;
  border-color: rgba(124, 77, 255, .4);
  transform: translateY(-1px);
}
.reviews-see-all i { font-size: 15px; }
.reviews-see-all[hidden] { display: none; }

.product-reviews-slider {
  position: relative;
}
.product-reviews-slider[hidden] { display: none; }

.product-reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-reviews-track::-webkit-scrollbar { display: none; }

.product-reviews-track .rv-card {
  flex: 0 0 300px;
  max-width: 300px;
  scroll-snap-align: start;
}

.pr-rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(124, 77, 255, .2);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(45, 28, 90, .16), inset 0 1px 0 rgba(255,255,255,.9);
  z-index: 6;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .2s ease;
}
.pr-rev-nav:hover {
  background: linear-gradient(135deg, #7c5cff, #b44cff);
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(124, 92, 255, .4);
  transform: translateY(-50%) scale(1.08);
}

.pr-rev-chevron {
  display: block;
  width: 9px;
  height: 9px;
}
.pr-rev-prev .pr-rev-chevron {
  border-left: 2px solid #7c5cff;
  border-bottom: 2px solid #7c5cff;
  transform: rotate(45deg) translate(2px, -2px);
}
.pr-rev-next .pr-rev-chevron {
  border-right: 2px solid #7c5cff;
  border-top: 2px solid #7c5cff;
  transform: rotate(45deg) translate(-2px, 2px);
}
.pr-rev-nav:hover .pr-rev-chevron { border-color: #fff; }

.pr-rev-prev { left: -16px; }
.pr-rev-next { right: -16px; }

@media (max-width: 720px) {
  .pr-rev-prev { left: 4px; }
  .pr-rev-next { right: 4px; }
  .product-reviews-track .rv-card { flex-basis: 80%; max-width: 80%; }
}

/* ---- Modal : tous les avis ---- */
.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}
.reviews-modal[hidden] { display: none; }

.reviews-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 16, 54, .58);
  backdrop-filter: blur(4px);
}

.reviews-modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(86vh, 820px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border: 1px solid rgba(124, 77, 255, .14);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(20, 12, 50, .4);
  overflow: hidden;
  animation: reviewsModalIn .24s ease;
}

@keyframes reviewsModalIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reviews-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 18px;
  background: #fff;
  border-bottom: 1px solid rgba(124, 77, 255, .12);
}
.reviews-modal-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.4px;
  color: #1f1a3a;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.reviews-modal-head h3::before {
  content: "";
  width: 5px;
  height: 19px;
  border-radius: 99px;
  background: linear-gradient(180deg, #7c5cff, #b44cff);
}
.reviews-modal-sub {
  display: block;
  margin-top: 5px;
  padding-left: 15px;
  font-size: 12.5px;
  color: #6f6b85;
}

.reviews-modal-close {
  border: 0;
  background: #f4efff;
  color: #6f45ff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
.reviews-modal-close:hover { background: #e6dbff; transform: rotate(90deg); }

.reviews-modal-body {
  padding: 18px 24px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,77,255,.4) transparent;
}
.reviews-modal-body::-webkit-scrollbar { width: 8px; }
.reviews-modal-body::-webkit-scrollbar-thumb {
  background: rgba(124,77,255,.3);
  border-radius: 8px;
}
.reviews-modal-body .rv-card {
  flex: none;
  max-width: none;
}

.reviews-empty {
  color: #6f6b85;
  font-size: 13.5px;
  text-align: center;
  padding: 24px 10px;
  background: #fff;
  border: 1px dashed rgba(124, 77, 255, .18);
  border-radius: 14px;
}

.rv-card {
  background: #fff;
  border: 1px solid rgba(124, 77, 255, .1);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 8px 20px rgba(45, 28, 90, .04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(45, 28, 90, .07);
}

.rv-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.rv-card-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #b44cff);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.rv-card-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rv-card-id strong {
  font-size: 14px;
  font-weight: 800;
  color: #1f1a3a;
}

.rv-card-date {
  font-size: 11px;
  color: #9b97ad;
}

.rv-card-verified {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #18a957;
  background: rgba(24, 169, 87, .1);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.rv-card-stars {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.rv-card-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #4a4760;
}

/* ---- Write review form (right column, premium) ---- */
.review-form-card {
  background: #fff;
  border: 1px solid rgba(124, 77, 255, .14);
  border-radius: 16px;
  padding: 18px 20px 20px;
  box-shadow: 0 10px 26px rgba(45, 28, 90, .05);
}

.review-form-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.3px;
  color: #1f1a3a;
}

.review-form-reward {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(124, 77, 255, .08), rgba(101, 64, 255, .04));
  border: 1px solid rgba(124, 77, 255, .16);
  font-size: 12.5px;
  line-height: 1.4;
  color: #5b4b8a;
}

.review-form-reward i {
  font-size: 16px;
  color: #7c4dff;
  flex-shrink: 0;
}

.review-form-reward strong {
  color: #4a2fc2;
  font-weight: 800;
}

.review-form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #8a86a0;
  margin-bottom: 7px;
}

.review-form-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.review-form-star {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: #e2ddf2;
  cursor: pointer;
  padding: 0;
  transition: transform .12s ease, color .12s ease;
}

.review-form-star:hover { transform: scale(1.14); }
.review-form-star.is-on { color: #ffb020; }
.review-form-star.is-hover { color: #ffc94d; }

.review-form-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(124, 77, 255, .2);
  border-radius: 12px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  color: #1f1a3a;
  resize: vertical;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.review-form-textarea:focus {
  border-color: #7c4dff;
  box-shadow: 0 0 0 3px rgba(124, 77, 255, .12);
}

.review-form-hint {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: #6f6b85;
  min-height: 16px;
}

.review-form-hint.is-error { color: #e5484d; }
.review-form-hint a {
  color: #6540ff;
  font-weight: 700;
  text-decoration: underline;
}

.btn-submit-review {
  width: 100%;
  margin-top: 12px;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  background: linear-gradient(120deg, #7c4dff, #6540ff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px -10px rgba(108, 64, 255, .8);
  transition: transform .18s ease;
}

.btn-submit-review:hover { transform: translateY(-2px); }
.btn-submit-review:disabled { opacity: .6; cursor: not-allowed; transform: none; }

@media (max-width: 860px) {
  .reviews-premium-shell { padding: 22px 18px 26px; border-radius: 20px; }
  .reviews-snapshot {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 18px;
  }
  .reviews-score-block {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(124, 77, 255, .12);
  }
  .reviews-premium-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .reviews-list { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   Récap du lot : remplit toute la hauteur, sans vide
   ══════════════════════════════════════════ */
.product-bundle-perks {
  align-self: stretch;
}
.product-bundle-perks .bundle-recap {
  flex: 1;
  justify-content: space-between;
}
.bundle-recap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-recap-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #5a566e;
}
.bundle-recap-list li i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 14px;
  color: #7c4dff;
}

@media (max-width: 600px) {
  .product-bundle-summary { flex-direction: column; align-items: stretch; }
  .product-bundle-add { width: 100%; }
}


