/* ============================================================
   GUY-TESTA.CSS — Page projet Guy Testa (soins capillaires)
   Accent UI : vert lime Grafitiks (base.css).
   Or de marque réservé au logo & aux titres de gammes.
   Bordures 2px (réf. Isela).
   ============================================================ */

:root {
  --gold: #cba357;
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: clamp(580px, 84vh, 760px);
  margin-top: 99px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% center;
  scale: 1;
  transition: scale 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: scale, translate;
}
#hero.loaded .hero-bg img { scale: 1.08; }
.hero-bg::after {
  content: none; /* dégradé hero retiré */
}
.hero-content {
  position: absolute; inset: 0;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(56px, 8vh, 110px) var(--content-pad) 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 16px;
}
/* br conditionnel — masqué sur desktop, visible sur mobile */
.mobile-br { display: none; }

.hero-line1 { display: flex; align-items: center; gap: 12px; }
.hero-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(44px, 5.2vw, 67px);
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  overflow: hidden;
}
.hero-title em {
  display: block; font-style: normal;
  transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
#hero.loaded .hero-title em { transform: translateY(0); }
.hero-spark {
  color: var(--accent);
  display: inline-flex; flex-shrink: 0;
  opacity: 0; animation: sparkPulse 3s ease-in-out infinite;
  transition: opacity 0.6s var(--transition) 0.3s;
}
#hero.loaded .hero-spark { opacity: 0.95; }
/* Une seule étoile sur desktop : celle après TESTA (--default).
   L'étoile inline (entre GUY et TESTA) est masquée ici, APRÈS .hero-spark,
   pour gagner la cascade ; elle est réaffichée en mobile (media ≤768). */
.hero-spark--inline { display: none; }
@keyframes sparkPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.35) rotate(15deg); }
}
.hero-desc {
  font-size: 16px; font-weight: 500; color: var(--gray);
  line-height: 1.7; max-width: 460px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.7s var(--transition) 0.45s, transform 0.7s var(--transition) 0.45s;
}
#hero.loaded .hero-desc { opacity: 1; transform: translateY(0); }
.hero-services {
  display: flex; gap: 26px; margin-top: 22px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.7s var(--transition) 0.6s, transform 0.7s var(--transition) 0.6s;
}
#hero.loaded .hero-services { opacity: 1; transform: translateY(0); }
.hero-service { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.hero-service-icon { width: 28px; height: 28px; }
.hero-service-icon img { width: 100%; height: 100%; object-fit: contain; }
.hero-service-label {
  font-size: 10px; font-weight: 600; color: var(--gray);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── EN-TÊTE titre / description ────────────────────────────── */
.row-header-line { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.row-header-line .section-title { margin-bottom: 0; flex-shrink: 0; }
/* Description à côté du titre : centrée en hauteur, 2 lignes équilibrées */
.row-header-line .section-desc { flex: 0 1 auto; min-width: 0; max-width: 380px; text-wrap: balance; }
#logo .row-header-line .section-desc { max-width: 740px; text-wrap: balance; }

/* ── SECTION 01 — LES ÉGÉRIES ───────────────────────────────── */
.egeries-carousel-wrap { margin-top: 44px; }
/* nav cachée sur desktop, visible sur mobile via media query */
.egeries-carousel-nav { display: none; }
.egeries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.egerie-card { display: flex; flex-direction: column; gap: 12px; }
.egerie-name { font-size: 14.2px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; }
.egerie-photo {
  border-radius: 16px; overflow: hidden; aspect-ratio: 216 / 362;
  border: 2px solid var(--border);
}
.egerie-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.egerie-card:hover .egerie-photo img { transform: scale(1.05); }
.egerie-feats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 44px;
}
/* Icône à gauche, alignée sur le haut du titre + texte */
.egerie-feat { display: flex; flex-direction: row; align-items: flex-start; gap: 14px; }
.egerie-feat-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--accent); }
.egerie-feat-icon img { width: 100%; height: 100%; object-fit: contain; }
.egerie-feat-text { display: flex; flex-direction: column; gap: 8px; }
.egerie-feat-title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; line-height: 1.2; }
.egerie-feat-desc { font-size: 12px; color: var(--gray); line-height: 1.55; text-wrap: balance; }

/* ── SECTION 02 — LOGO ──────────────────────────────────────── */
.logo-top {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 360px);
  justify-content: center; gap: 64px;
  align-items: center; margin: 52px 0;
}
.logo-emblem { display: flex; justify-content: center; }
.logo-emblem img { width: 100%; max-width: 480px; height: auto; }
/* Logo Guy Testa animé : tracé progressif puis remplissage (comme selflove) */
.gt-logo-svg { width: 100%; max-width: 480px; height: auto; display: block; overflow: visible; }
.gt-logo-svg path { fill: #cba357; }
.logo-emblem:not(.is-drawn) .gt-logo-svg path {
  fill-opacity: 0; stroke: #cba357; stroke-width: 1.4;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.logo-emblem:not(.is-drawn) .gt-logo-svg .gt-ring { stroke-dasharray: 1; stroke-dashoffset: 1; }
.logo-emblem.is-drawn .gt-logo-svg path {
  stroke: #cba357; stroke-width: 1.4; stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: gtDraw 1.8s cubic-bezier(0.65,0,0.35,1) forwards;
}
.logo-emblem.is-drawn .gt-logo-svg .gt-ring { animation: gtRing 1.6s ease forwards; }
@keyframes gtDraw {
  0%   { stroke-dashoffset: 1; fill-opacity: 0; }
  55%  { stroke-dashoffset: 0; fill-opacity: 0; }
  100% { stroke-dashoffset: 0; fill-opacity: 1; stroke-width: 0; }
}
@keyframes gtRing { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .gt-logo-svg path { fill-opacity: 1 !important; stroke: none !important; }
  .gt-logo-svg .gt-ring { stroke-dashoffset: 0 !important; }
}
.logo-feats { display: flex; flex-direction: column; gap: 30px; }
.logo-feat-title { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; margin-bottom: 8px; }
.logo-feat-desc { font-size: 15px; color: var(--gray); line-height: 1.6; max-width: 360px; text-wrap: balance; }
.logo-construction-band {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: stretch;
  border: 2px solid var(--border); border-radius: 28px;
  padding: 40px 52px; background: #0d0d0c;
  transition: border-color 0.18s ease;
}
.logo-construction-band:hover { border-color: var(--accent); }
.logo-construction-band img { width: 100%; max-width: 720px; height: auto; align-self: center; }
/* ligne verticale grise entre les formes et le texte */
.logo-construction-note {
  font-size: 15px; color: var(--gray); line-height: 1.6;
  border-left: 1px solid var(--border); padding-left: 48px;
  display: flex; flex-direction: column; justify-content: center;
}

/* ── SECTION 03 — GAMMES ────────────────────────────────────── */
.gamme { margin-top: 64px; }
.gamme-main {
  display: grid;
  grid-template-columns: 1.75fr 300px 1.35fr;
  gap: 56px;
  align-items: center;
}
/* Mode miroir : on inverse aussi les LARGEURS de colonnes (sinon débordement) */
.gamme--reverse .gamme-main { grid-template-columns: 1.35fr 300px 1.75fr; }

/* Galerie : image principale paysage + vignettes horizontales en dessous */
.gamme-gallery {
  display: flex; flex-direction: column; gap: 12px;
  height: clamp(340px, 28vw, 420px);
}
.gamme-gallery-main {
  position: relative; flex: 1; min-height: 0;
  border-radius: var(--radius-md); overflow: hidden;
  border: 2px solid var(--border); background: #0d0d0c;
}
/* Deux calques superposés → crossfade smooth */
.gamme-main-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.7s var(--transition), transform 1.3s var(--transition);
  will-change: opacity, transform;
}
.gamme-main-img.is-active { opacity: 1; transform: scale(1); }
.gamme-thumbs {
  display: flex; align-items: center; gap: 10px;
  height: 58px; flex-shrink: 0;
}
.gamme-thumb-nav {
  width: 30px; height: 30px; border-radius: 50%;
  background: #0d0d0c; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.gamme-thumb-nav:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.gamme-thumb-nav svg { width: 12px; height: 12px; }
.gamme-thumbs-track { overflow: hidden; flex: 1; min-width: 0; }
.gamme-thumbs-inner { display: flex; flex-direction: row; gap: 8px; transition: transform 0.4s var(--transition); }
.gamme-thumb {
  width: 66px; height: 46px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; flex-shrink: 0; opacity: 0.6;
  transition: opacity 0.25s, border-color 0.25s;
}
.gamme-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gamme-thumb.is-active, .gamme-thumb:hover { opacity: 1; border-color: var(--accent); }

/* ── Grandes images cliquables (égérie + produit) : loupe + outline vert ── */
.gamme-gallery-main, .gamme-product-img { cursor: none; }
.gamme-gallery-main { transition: border-color 0.18s ease; }
.gamme-gallery-main:hover { border-color: var(--accent); }
.gamme-product-img { position: relative; }
/* l'outline verte = bordure de la carte produit (sinon masquée par l'image) */
.gamme-product-card { transition: border-color 0.18s ease; }
.gamme-product-card:has(.gamme-product-img:hover) { border-color: var(--accent); }
.gamme-gallery-main::after, .gamme-product-img::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    rgba(0,0,0,0.42)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 22 22' fill='none'%3E%3Ccircle cx='9' cy='9' r='6' stroke='white' stroke-width='1.5'/%3E%3Cline x1='13.5' y1='13.5' x2='19' y2='19' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='7' y1='9' x2='11' y2='9' stroke='white' stroke-width='1'/%3E%3Cline x1='9' y1='7' x2='9' y2='11' stroke='white' stroke-width='1'/%3E%3C/svg%3E")
    center / 34px 34px no-repeat;
  opacity: 0; transition: opacity 0.18s ease;
}
.gamme-gallery-main:hover::after, .gamme-product-img:hover::after { opacity: 1; }

/* ── Lightbox Guy Testa ── */
.gt-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.gt-lightbox.is-open { opacity: 1; pointer-events: auto; }
.gt-lb-img { max-width: min(1000px, 92vw); max-height: 90vh; border-radius: 12px; object-fit: contain; }
.gt-lb-close, .gt-lb-prev, .gt-lb-next {
  position: absolute; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.gt-lb-close:hover, .gt-lb-prev:hover, .gt-lb-next:hover { background: rgba(255,255,255,0.18); border-color: var(--accent); }
.gt-lb-close { top: 22px; right: 26px; width: 40px; height: 40px; font-size: 20px; }
.gt-lb-prev, .gt-lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 26px; }
.gt-lb-prev { left: clamp(16px, 4vw, 60px); }
.gt-lb-next { right: clamp(16px, 4vw, 60px); }

/* Colonne texte + badges */
.gamme-text { display: flex; flex-direction: column; justify-content: center; }
.gamme-label { font-size: 12px; color: var(--gray); letter-spacing: 0.16em; }
.gamme-name { font-size: 24px; font-weight: 700; color: var(--white); margin: 6px 0 8px; letter-spacing: 0.02em; }
.gamme-sub { font-size: 15px; color: var(--gray); letter-spacing: 0.1em; margin-bottom: 18px; }
.gamme-desc { font-size: 13.5px; color: var(--gray); line-height: 1.65; }
.gamme-badges { display: flex; gap: 16px; margin-top: 26px; }
.gamme-badge { width: 46px; height: 46px; }
.gamme-badge img { width: 100%; height: 100%; object-fit: contain; }

/* Carte produit */
.gamme-product-card {
  border: 2px solid var(--border); border-radius: var(--radius-md);
  background: #0d0d0c; overflow: hidden;
  display: flex; flex-direction: column;
  height: clamp(340px, 28vw, 420px);
}
.gamme-product-img { flex: 1; overflow: hidden; min-height: 0; }
.gamme-product-img img { width: 100%; height: 100%; object-fit: cover; }
.gamme-product-cap {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 12px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; color: var(--gray);
}
.gamme-product-cap .sunmoon { display: inline-flex; gap: 7px; }
.gamme-product-cap .sunmoon img { width: 15px; height: 15px; object-fit: contain; }

/* Inversion (gamme mirroir) */
.gamme--reverse .gamme-gallery { order: 3; }
.gamme--reverse .gamme-text { order: 2; }
.gamme--reverse .gamme-product-card { order: 1; }

/* Bande ingrédients */
.gamme-ingredients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.gamme-ingredient {
  display: flex; gap: 18px; align-items: center;
  border: 2px solid var(--border); border-radius: 14px;
  padding: 14px 16px; background: #0d0d0c;
  transition: border-color var(--transition);
}
.gamme-ingredient:hover { border-color: rgba(216,255,0,0.25); }
.gamme-ingredient-img { width: 150px; height: 98px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.gamme-ingredient-img img { width: 100%; height: 100%; object-fit: cover; }
.gamme-ingredient-title { font-size: 12.5px; font-weight: 700; color: var(--white); letter-spacing: 0.03em; margin-bottom: 4px; }
.gamme-ingredient-desc { font-size: 11px; color: var(--gray); line-height: 1.45; }

/* ── SECTION 04 — SITE INTERNET ─────────────────────────────── */
/* Texte à gauche + mockup à droite (le fond noir du mockup se fond dans la page) */
.site-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  margin-top: 0;
}
.site-text { align-self: start; }   /* titre près du séparateur, pas centré */
.site-text .section-desc { margin-top: 10px; max-width: 460px; }
.site-mockup {
  position: relative;
  margin-right: calc(-1 * var(--content-pad));   /* débordement léger vers le bord droit */
}
.site-mockup img { width: 100%; height: auto; display: block; }

.site-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px; align-items: stretch;
}
/* icône + titre + texte centrés ; ligne séparatrice grise entre colonnes */
.site-feature { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 0 32px; }
.site-feature + .site-feature { border-left: 1px solid var(--border); }
.site-feature-icon { width: 58px; height: 58px; color: var(--accent); }
.site-feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.site-feature-title { font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.site-feature-desc { font-size: 12px; color: var(--gray); line-height: 1.55; text-wrap: balance; }

/* ── Boîtes site scrollables ────────────────────────────────── */
.site-scrolls {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 56px;
}
.site-scroll {
  position: relative;
  height: clamp(520px, 44vw, 680px);
  border: 2px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #0d0d0c;
}
/* conteneur scrollable manuellement (molette) */
.site-scroll-inner {
  position: absolute; inset: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(216,255,0,0.4) transparent;
}
.site-scroll-inner::-webkit-scrollbar { width: 6px; }
.site-scroll-inner::-webkit-scrollbar-thumb { background: rgba(216,255,0,0.35); border-radius: 3px; }
.site-scroll-inner img { width: 100%; height: auto; display: block; }
.scroll-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  background: rgba(13,13,12,0.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--white);
  z-index: 2; pointer-events: none;
  transition: opacity 0.4s var(--transition);
}
.site-scroll.scrolled .scroll-hint { opacity: 0; }
.scroll-hint-mouse {
  width: 15px; height: 23px; border: 1.5px solid var(--accent);
  border-radius: 8px; position: relative; flex-shrink: 0;
}
.scroll-hint-mouse::after {
  content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 2.5px; height: 5px; background: var(--accent); border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { opacity: 1; top: 4px; }
  50%      { opacity: 0.3; top: 10px; }
}

/* ── SECTION 05 — PARCOURS ──────────────────────────────────── */
.parcours-steps {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-top: 48px; gap: 8px;
}
.parcours-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px; padding: 0 8px;
}
.parcours-step-icon { width: 54px; height: 54px; color: var(--accent); }
.parcours-step-icon img { width: 100%; height: 100%; object-fit: contain; }
.parcours-step-title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; }
.parcours-step-desc { font-size: 11px; color: var(--gray); line-height: 1.5; }
.parcours-arrow {
  flex-shrink: 0; align-self: flex-start;
  /* centré sur le titre : icône 54px + gap 14px + ~½ ligne de titre - ½ flèche */
  margin-top: 67px;
  color: var(--accent); opacity: 0.6;
}
.parcours-arrow svg { width: 18px; height: 18px; }

/* ── VIDÉOS PLEINE LARGEUR ─────────────────────────────── */
.gt-video {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.gt-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLETTE (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gt-video video { aspect-ratio: 16 / 9; }
  .egeries-grid { grid-template-columns: repeat(3, 1fr); }
  .egerie-feats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .logo-top { grid-template-columns: 1fr; gap: 36px; }
  .logo-construction-band { grid-template-columns: 1fr; gap: 28px; text-align: center; align-items: center; }
  .logo-construction-note { max-width: 100%; border-left: none; padding-left: 0; }
  .gamme-main,
  .gamme--reverse .gamme-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gamme-gallery { grid-column: 1 / -1; }
  .gamme--reverse .gamme-gallery,
  .gamme--reverse .gamme-text,
  .gamme--reverse .gamme-product-card { order: 0; }
  .site-features { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .site-feature { padding: 0; }
  .site-feature + .site-feature { border-left: none; }
  .parcours-steps { flex-wrap: wrap; gap: 28px; }
  .parcours-step { flex: 1 1 40%; }
  .parcours-arrow { display: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  #hero { height: auto; min-height: 76svh; margin-top: 72px; }
  .hero-content { padding: 56px var(--content-pad) 48px; }

  /* titre sur 2 lignes + taille plus imposante */
  .mobile-br { display: block; }
  .hero-title { font-size: clamp(54px, 17vw, 72px); line-height: 0.95; }
  .hero-bg img { object-position: 30% center; }
  .hero-bg::after {
    content: '';
    background:
      linear-gradient(to right, rgba(13,13,12,0.88) 0%, rgba(13,13,12,0.55) 45%, transparent 75%),
      linear-gradient(to bottom, rgba(13,13,12,0.15) 0%, rgba(13,13,12,0.55) 70%, rgba(13,13,12,0.96) 100%);
  }
  /* texte moins large */
  .hero-desc { font-size: 14px; max-width: 230px; }
  /* retirer icônes services sur mobile */
  .hero-services { display: none; }
  /* étoile : version inline directement après "GUY" dans le titre */
  .hero-spark--default { display: none; }
  .hero-spark--inline {
    display: inline-flex; vertical-align: middle;
    margin-left: 10px; margin-top: 0;
  }

  .row-header-line { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* carousel égéries mobile */
  .egeries-carousel-wrap { overflow: hidden !important; position: relative; }
  #egeriesTrack { display: flex !important; flex-wrap: nowrap; gap: 16px; will-change: transform; }
  .egerie-card { flex-shrink: 0; }
  .egerie-card.clone { display: flex !important; }
  .egeries-carousel-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-top: 20px;
  }
  .egeries-nav-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: #111110; border: 2px solid var(--border);
    color: var(--white); font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), border-color var(--transition);
  }
  .egeries-nav-btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
  .egeries-dots { display: flex; gap: 7px; align-items: center; }
  .egeries-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.3); border: none; padding: 0; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .egeries-dot.active { background: var(--accent); transform: scale(1.3); }

  /* égérie-feats → liste bordée style transmet (pattern LFP) */
  .egerie-feats {
    display: flex; flex-direction: column; gap: 0;
    background: #111110; border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); overflow: hidden; margin-top: 32px;
  }
  .egerie-feat {
    display: flex; flex-direction: row; align-items: center;
    padding: 18px 20px; gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .egerie-feat:last-child { border-bottom: none; }

  /* ── Vignettes gammes : scroll natif fluide sur mobile ── */
  .gamme-thumb-nav { display: none; }
  .gamme-thumbs { gap: 0; }
  .gamme-thumbs-track {
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; flex: 1;
  }
  .gamme-thumbs-track::-webkit-scrollbar { display: none; }
  .gamme-thumbs-inner { transform: none !important; }

  /* ── Gammes : réorganisation mobile (titre → carousel → texte+badges → produit) ── */
  .gamme { overflow: hidden; }
  /* flex colonne + align-items:stretch pour que les enfants soient calés à gauche */
  .gamme-main,
  .gamme--reverse .gamme-main { display: flex !important; flex-direction: column; gap: 6px; align-items: stretch; }
  /* display:contents expose les enfants directs de .gamme-text au flex parent */
  .gamme-text { display: contents; }
  /* 1. Titre gamme (label + nom + sous-titre) en premier — texte gauche par défaut */
  .gamme-label { order: 1; }
  .gamme-name  { order: 1; }
  .gamme-sub   { order: 1; margin-bottom: 0; }
  /* 2. Carousel */
  .gamme-gallery { order: 2 !important; height: clamp(300px, 90vw, 460px); width: 100%; min-width: 0; margin-top: 14px; }
  /* 3. Texte descriptif */
  .gamme-desc { order: 3; margin-top: 18px; }
  /* 3. Badges → encadré 3 icônes séparées verticalement */
  .gamme-badges {
    order: 3; gap: 0; margin-top: 12px;
    background: #111110; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.1);
    border-radius: var(--radius-md); overflow: hidden;
  }
  .gamme-badge {
    flex: 1; padding: 40px 0;
    display: flex; align-items: center; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .gamme-badge:last-child { border-right: none; }
  /* icônes taille correcte + encadré assez haut pour les contenir */
  .gamme-badge img { width: 40px; height: 40px; object-fit: contain; }
  /* désactiver le :hover "collant" sur mobile (cause double bordure verte) */
  .gamme-thumb:hover:not(.is-active) { border-color: transparent; opacity: 0.6; }
  /* 4. Image shampooing — plus de marge vis-à-vis des badges */
  .gamme-product-card { order: 4 !important; max-width: 100%; width: 100%; margin-top: 24px !important; }
  /* ingrédients hors .gamme-main : naturellement après */
  .gamme-ingredients { grid-template-columns: 1fr; gap: 12px; }

  .site-inner { grid-template-columns: 1fr; gap: 24px; }
  /* réduire le mockup pour que le dégradé ne touche plus les bords haut/bas */
  .site-mockup { max-width: 88%; margin: 0 auto; }
  /* cartes features 2×2 : box-shadow inset = jamais rogné par overflow parent */
  .site-features { grid-template-columns: 1fr 1fr; gap: 16px; }
  .site-feature {
    background: #111110;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
    border: none; border-radius: var(--radius-md);
    padding: 28px 14px; min-height: 260px; justify-content: flex-start; align-items: center;
  }
  .site-feature-desc { font-size: 11px; }
  .site-scrolls { grid-template-columns: 1fr; gap: 36px; }
  .site-scroll { height: clamp(440px, 120vw, 620px); }

  /* ── Section parcours → style liste bordée (même pattern que égéries-feats) ── */
  .parcours-steps {
    flex-direction: column; align-items: stretch; gap: 0;
    background: #111110; border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); overflow: hidden;
  }
  .parcours-step {
    display: grid; grid-template-columns: 46px 1fr;
    column-gap: 16px; row-gap: 4px; align-items: center;
    padding: 18px 20px; text-align: left; flex: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .parcours-step:last-child { border-bottom: none; }
  .parcours-step-icon  { grid-row: 1 / 3; width: 46px; height: 46px; }
  .parcours-step-title { grid-row: 1; align-self: end; font-size: 12px; }
  .parcours-step-desc  { grid-row: 2; align-self: start; }

  /* ── Lightbox mobile : dots ── */
  .gt-lb-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; align-items: center; z-index: 2;
  }
  .gt-lb-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: none; padding: 0; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .gt-lb-dot.active { background: var(--accent); transform: scale(1.25); }
  /* cacher prev/next sur mobile — le swipe suffit */
  .gt-lb-prev, .gt-lb-next { display: none; }
}
