/* Boutique HoméoJuices — styles complémentaires aux utilities Tailwind hs-*.
   Chargé uniquement sur les pages boutique (via {% block extra_head %}). */

/* Texture grain discrète, posée en overlay multiply sur les blocs sombres/clairs. */
.hj-grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Défilé horizontal infini (bandeau arguments). */
@keyframes hj-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hj-marquee { display: inline-flex; white-space: nowrap; animation: hj-marq 34s linear infinite; }
@media (prefers-reduced-motion: reduce) { .hj-marquee { animation: none; } }

/* Le bandeau s'efface sur ses bords au lieu de se couper net, et s'arrête
   quand on le survole — on peut lire la mention qui passe. */
.hj-marquee-rail {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.hj-marquee-rail:hover .hj-marquee { animation-play-state: paused; }

/* Galerie fiche produit : vignette active. */
.hj-thumb { cursor: pointer; border: 1px solid rgba(179, 139, 83, 0.28); padding: 2px; background: #fff; transition: border-color .2s ease; }
.hj-thumb:hover { border-color: rgba(179, 139, 83, 0.65); }
.hj-thumb[aria-current="true"] { border-color: #926e3c; }

/* Sélecteur de format : état sélectionné. */
.hj-format { cursor: pointer; border: 1px solid rgba(35, 29, 23, 0.2); background: #fff; transition: border-color .2s ease, background .2s ease; }
.hj-format:hover { border-color: rgba(179, 139, 83, 0.6); }
.hj-format[aria-pressed="true"] { border-color: #926e3c; background: #F6F2EA; }

/* Tiroir mini-panier : glissement latéral. */
.hj-drawer .hj-drawer-panel { transform: translateX(100%); transition: transform .32s cubic-bezier(0.16, 1, 0.3, 1); }
.hj-drawer.is-open .hj-drawer-panel { transform: translateX(0); }
.hj-drawer [data-cart-overlay] { opacity: 0; transition: opacity .32s ease; }
.hj-drawer.is-open [data-cart-overlay] { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hj-drawer .hj-drawer-panel, .hj-drawer [data-cart-overlay] { transition: none; }
}

/* Pastille compteur panier (navbar). */
.hj-cart-count.is-empty { display: none; }

/* Apparition douce au chargement d'un écran boutique. */
@keyframes hj-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hj-screen { animation: hj-fade .5s ease both; }
@media (prefers-reduced-motion: reduce) { .hj-screen { animation: none; } }

/* ============================================================================
   REFONTE ACCUEIL BOUTIQUE — hero filigrane + scène voûtée bicolore
   Palette de marque uniquement (hs-*). Signature : diptyque robe blanc | rubis.
   ============================================================================ */

/* Effervescence : fines bulles montantes (partagée hero + scène). */
@keyframes hj-rise {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  12%  { opacity: var(--peak, .5); }
  78%  { opacity: var(--peak, .5); }
  100% { transform: translateY(var(--climb, -620px)) translateX(var(--drift, 10px)) scale(1); opacity: 0; }
}
.hj-fizz {
  position: absolute; bottom: -4%; border-radius: 50%; pointer-events: none; opacity: 0; z-index: 1;
  width: var(--s, 6px); height: var(--s, 6px);
  /* une bulle a un côté éclairé et un liseré : dégradé décentré + anneau */
  background: radial-gradient(circle at 34% 26%, rgba(255,255,255,1) 4%, rgba(226,199,148,.5) 46%, rgba(179,139,83,.28) 100%);
  box-shadow: inset 0 -1px 3px rgba(255,255,255,.95), 0 0 0 1.4px rgba(146,110,60,.72), 0 3px 12px rgba(146,110,60,.35);
}
@media (prefers-reduced-motion: no-preference) {
  .hj-fizz { animation: hj-rise var(--dur, 13s) linear infinite; animation-delay: var(--delay, 0s); }
}

/* Le champ d'effervescence : la colonne de bulles qui monte derrière le cadre.
   Chaque bulle est réglée à la main (nth-child) — un chapelet irrégulier monte
   mieux qu'un semis aléatoire : le regard suit une trajectoire, pas un bruit. */
.hj-fizz-field {
  position: absolute; inset: -6% -13% 0; z-index: 1; pointer-events: none;
  /* les bulles s'effacent en haut de course au lieu de disparaître d'un coup */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
}
/* Les colonnes de bord (gauche/droite) sont visibles sur toute la course ;
   les colonnes centrales passent derrière le cadre et ne réapparaissent
   qu'au-dessus — c'est l'effervescence qui s'échappe de la bouteille. */
.hj-fizz-field .hj-fizz:nth-child(1)  { left:  1%; --s: 9px;  --dur: 15s;   --delay: 0s;    --climb: -640px; --drift: 22px;  --peak: .9;  }
.hj-fizz-field .hj-fizz:nth-child(2)  { left:  5%; --s: 14px; --dur: 19s;   --delay: 2.2s;  --climb: -700px; --drift: -14px; --peak: .68; }
.hj-fizz-field .hj-fizz:nth-child(3)  { left:  9%; --s: 6px;  --dur: 11s;   --delay: 4.1s;  --climb: -600px; --drift: 16px;  --peak: 1;   }
.hj-fizz-field .hj-fizz:nth-child(4)  { left: 26%; --s: 11px; --dur: 17s;   --delay: 1.1s;  --climb: -820px; --drift: 26px;  --peak: .75; }
.hj-fizz-field .hj-fizz:nth-child(5)  { left: 38%; --s: 7px;  --dur: 13s;   --delay: 5.4s;  --climb: -760px; --drift: -14px; --peak: .95; }
.hj-fizz-field .hj-fizz:nth-child(6)  { left: 47%; --s: 13px; --dur: 20s;   --delay: 3.2s;  --climb: -880px; --drift: 20px;  --peak: .6;  }
.hj-fizz-field .hj-fizz:nth-child(7)  { left: 56%; --s: 8px;  --dur: 14.5s; --delay: 0.5s;  --climb: -800px; --drift: -22px; --peak: .85; }
.hj-fizz-field .hj-fizz:nth-child(8)  { left: 68%; --s: 5px;  --dur: 12s;   --delay: 6.3s;  --climb: -740px; --drift: 14px;  --peak: 1;   }
.hj-fizz-field .hj-fizz:nth-child(9)  { left: 90%; --s: 10px; --dur: 16s;   --delay: 2.8s;  --climb: -680px; --drift: -18px; --peak: .72; }
.hj-fizz-field .hj-fizz:nth-child(10) { left: 94%; --s: 6px;  --dur: 10.5s; --delay: 4.8s;  --climb: -620px; --drift: 12px;  --peak: .98; }
.hj-fizz-field .hj-fizz:nth-child(11) { left: 97%; --s: 12px; --dur: 18s;   --delay: 1.7s;  --climb: -700px; --drift: -10px; --peak: .64; }
.hj-fizz-field .hj-fizz:nth-child(12) { left: 99%; --s: 4px;  --dur: 9s;    --delay: 5.9s;  --climb: -580px; --drift: 14px;  --peak: 1;   }

/* ---- HERO ------------------------------------------------------------------ */
.hj-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% 16%, rgba(179,139,83,.15), transparent 52%),
    radial-gradient(90% 80% at 6% 104%, rgba(124,146,119,.16), transparent 55%),
    linear-gradient(180deg, #FBF6EC 0%, #F6F2EA 100%);
}
/* Wordmark géant en filigrane derrière la scène (le « gros texte » de fond). */
.hj-hero__word {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic;
  /* Calé pour tenir ENTIER dans la fenêtre : « HoméoJuices » mesure ~5,75×
     sa taille de fonte, donc 16vw ≈ 92 % de la largeur — il respire sans se
     faire trancher par l'overflow du hero. */
  font-size: clamp(3.3rem, 16vw, 16.5rem); line-height: .82; white-space: nowrap;
  letter-spacing: -.02em; color: #926E3C; opacity: .055; user-select: none;
  pointer-events: none; z-index: 0;
}
.hj-hero__grid {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 3.5rem; align-items: center;
  padding: clamp(3.5rem, 6vw, 6.5rem) 2.5rem;
}
@media (max-width: 960px) {
  .hj-hero__grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
}
.hj-hero__copy { max-width: 34rem; }
@media (max-width: 960px) { .hj-hero__copy { margin: 0 auto; } }

/* Scène photo : cadre or double-filet + halo + bulles. */
.hj-stage { position: relative; justify-self: center; width: min(100%, 600px); }
.hj-stage__glow {
  position: absolute; inset: -14% -10%; z-index: 0;
  background: radial-gradient(58% 58% at 50% 44%, rgba(203,165,107,.42), transparent 70%);
}
.hj-frame {
  position: relative; z-index: 2; padding: .9rem; background: rgba(253,250,245,.55);
  box-shadow: 0 44px 80px -34px rgba(84,58,22,.55);
}
.hj-frame::before {
  content: ''; position: absolute; inset: .32rem; z-index: 3; pointer-events: none;
  border: 1px solid rgba(179,139,83,.55);
}
/* Photo agrandie : la source paysage est recadrée en portrait, sujet centré. */
.hj-frame img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.hj-stage__cap {
  position: absolute; z-index: 4; left: -.5rem; bottom: 1.5rem;
  background: #02342C; color: #E3CEA3; font-size: .55rem; letter-spacing: .22em;
  text-transform: uppercase; padding: .55rem .95rem;
}

/* CTA travaillés (réutilisés dans le hero). */
.hj-cta {
  display: inline-flex; align-items: center; gap: .85rem; padding: 1.05rem 1.9rem;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; text-decoration: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1), background-color .3s, color .3s;
}
.hj-cta--primary { background: #B38B53; color: #FDFAF5; }
.hj-cta--primary:hover { background: #926E3C; }
.hj-cta--primary .arw { width: 1.7rem; height: 1px; background: currentColor; transition: width .35s ease; }
.hj-cta--primary:hover .arw { width: 2.4rem; }
.hj-cta--ghost { color: #231D17; padding-left: 0; padding-right: 0; letter-spacing: .2em; }
.hj-cta--ghost .arw { width: 1.9rem; height: 1px; background: currentColor; transition: width .35s ease; }
.hj-cta--ghost:hover .arw { width: 2.6rem; }

/* ---- FICHE PRODUIT : switcher de cuvée ------------------------------------ */
.cuvee-switch { display: inline-flex; gap: .3rem; padding: .35rem; border: 1px solid rgba(179,139,83,.3); background: #FDFAF5; border-radius: 999px; }
.cuvee-switch__opt {
  display: inline-flex; align-items: center; gap: .55rem; padding: .6rem 1.5rem; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: #7C9277; text-decoration: none; transition: background-color .3s, color .3s;
}
.cuvee-switch__opt .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.cuvee-switch__opt:hover { color: #231D17; }
.cuvee-switch__opt.is-active { background: #231D17; color: #FDFAF5; }

/* ---- FICHE PRODUIT : offre de lancement (Duo) -----------------------------
   Plus d'aplat jaune ni de bordure pleine : le bloc adopte le langage du reste
   du site — papier, monture d'équerres or, double liseré, chiffres en Playfair.
   La remise n'est pas une pastille rouge : c'est un chiffre gravé, posé à côté
   de SA BASE (le prix à la bouteille), pour qu'on sache d'où elle vient. */
.duo-offer {
  position: relative; margin-top: 1.8rem;
  background: #FDFAF5;
  padding: .85rem .85rem 1.5rem;
  box-shadow: 0 26px 54px -34px rgba(84, 58, 22, .42);
  /* Le filigrane déborde volontairement : c'est la carte qui le recadre. */
  overflow: hidden;
}
/* double liseré intérieur — même geste que la carte newsletter */
.duo-offer::after {
  content: ''; position: absolute; inset: .4rem; pointer-events: none; z-index: 3;
  border: 1px solid rgba(179, 139, 83, .26);
}
/* Pas d'équerres ici : la photo occupe tout le haut du bloc et en avalerait
   deux sur quatre. C'est la photo qui porte le liseré, comme les cadres du
   reste du site. */
.duo-offer__figure { position: relative; }
.duo-offer__figure::after {
  content: ''; position: absolute; inset: .3rem; z-index: 2; pointer-events: none;
  border: 1px solid rgba(253, 250, 245, .5);
}
.duo-offer__img { display: block; width: 100%; height: auto; }
/* container-type : le filigrane se dimensionne sur la largeur de la carte,
   pas sur celle de la fenêtre — la colonne d'achat change de largeur. */
.duo-offer__body { padding: 1.25rem 1.15rem 0; container-type: inline-size; }

.duo-offer__badge {
  display: flex; width: fit-content; align-items: center; gap: .6rem;
  font-family: 'Poppins', sans-serif; font-size: .55rem; letter-spacing: .26em;
  text-transform: uppercase; color: #926E3C;
}
.duo-offer__dots { display: inline-flex; gap: .3rem; }
.duo-offer__dots i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

.duo-offer__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.5rem;
  color: #231D17; margin-top: .7rem; line-height: 1.08; }
.duo-offer__title em { display: block; font-style: italic; color: #926E3C; }
.duo-offer__compo { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; line-height: 1.45;
  color: #4A3E32; margin-top: .5rem; }

/* Le compteur : ce qu'on économise | ce qu'on paie, séparés d'un filet.
   Deux colonnes parce que ce sont deux informations distinctes, pas un décor. */
.duo-offer__deal {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.1rem;
  margin-top: 1.1rem; padding-top: 1.05rem;
  border-top: 1px solid rgba(179, 139, 83, .3);
}
/* Mot fantôme — même geste que .hj-hero__word, calé derrière les chiffres :
   c'est là que l'œil se pose, le filigrane y donne de la profondeur sans
   gêner la lecture. Hors flux (position absolute), donc invisible pour la
   grille ci-dessus. Le `/ ''` masque le mot aux lecteurs d'écran. */
.duo-offer__deal::before {
  content: 'Duo';
  content: 'Duo' / '';
  position: absolute; z-index: 0; right: -.05em; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic;
  font-size: 4.4rem;
  font-size: 30cqw;
  line-height: .74; letter-spacing: -.035em; white-space: nowrap;
  color: #926E3C; opacity: .055;
  pointer-events: none; user-select: none;
}
.duo-offer__deal > * { position: relative; z-index: 1; }
.duo-offer__cut { text-align: center; padding-right: 1.1rem; border-right: 1px solid rgba(179, 139, 83, .3); }
.duo-offer__pct { display: block; font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 600; font-size: 2.4rem; line-height: 1; color: #B5462F; }
.duo-offer__saved { display: block; margin-top: .3rem; font-family: 'Poppins', sans-serif;
  font-size: .54rem; letter-spacing: .14em; text-transform: uppercase; color: #926E3C; }
/* nowrap : un prix ne se coupe jamais avant son symbole. Le flex-wrap laisse
   le prix barré passer à la ligne quand la carte est trop étroite (mobile). */
.duo-offer__now { display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem .55rem; }
.duo-offer__now b { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 2rem; color: #231D17; white-space: nowrap; }
.duo-offer__now s { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #7C9277; white-space: nowrap; }

/* Carte étroite (colonne d'achat en mobile) : on resserre pour que le compteur
   « remise | prix » tienne sur une seule ligne. */
@container (max-width: 345px) {
  .duo-offer__deal { gap: .85rem; }
  .duo-offer__cut { padding-right: .85rem; }
  .duo-offer__pct { font-size: 2rem; }
  .duo-offer__now b { font-size: 1.7rem; }
  .duo-offer__now s { font-size: 1.05rem; }
}
/* la base du calcul, écrite noir sur blanc */
.duo-offer__base { margin-top: .3rem; grid-column: 1 / -1; font-family: 'Poppins', sans-serif;
  font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; color: #7C9277; }

.duo-offer__btn {
  margin-top: 1.2rem; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  background: #02342C; color: #F6F2EA; border: none; cursor: pointer; padding: 1.05rem;
  font-family: 'Poppins', sans-serif; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  transition: background-color .3s, transform .45s cubic-bezier(.16,1,.3,1);
}
.duo-offer__btn:hover { background: #143f36; transform: translateY(-2px); }
.duo-offer__btn:focus-visible { outline: 2px solid #B38B53; outline-offset: 3px; }

/* ---- LANDING : accordéon FAQ ---------------------------------------------- */
.hj-faq summary { list-style: none; }
.hj-faq summary::-webkit-details-marker { display: none; }
.hj-faq-ico { transition: transform .3s ease; }
.hj-faq[open] .hj-faq-ico { transform: rotate(45deg); }

/* ---- ACCUEIL : section « offre de lancement Duo » (coffret encadré) ------- */
.duo-feature {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 80% at 82% 6%, rgba(203,165,107,.15), transparent 55%),
    radial-gradient(70% 80% at 6% 100%, rgba(181,70,47,.07), transparent 55%),
    linear-gradient(180deg, #FBF6EC 0%, #F6F2EA 100%);
}
.duo-frame { position: relative; z-index: 2; padding: .9rem; background: rgba(253,250,245,.6);
  box-shadow: 0 42px 80px -34px rgba(84,58,22,.5); }
.duo-frame::before { content: ''; position: absolute; inset: .32rem; z-index: 3; pointer-events: none;
  border: 1px solid rgba(179,139,83,.55); }
.duo-frame img { display: block; width: 100%; height: auto; }
.duo-glow { position: absolute; inset: -12% -8%; z-index: 0;
  background: radial-gradient(58% 58% at 50% 46%, rgba(203,165,107,.42), transparent 70%); }
.duo-cap { position: absolute; z-index: 4; left: -.5rem; bottom: 1.3rem; background: #02342C; color: #E3CEA3;
  font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; padding: .5rem .9rem; }

/* Vignette « format sélectionné » : petit ✓ */
.hj-format { position: relative; }
.hj-format[aria-pressed="true"]::after {
  content: '✓'; position: absolute; top: 5px; right: 7px; font-size: .7rem; color: #926E3C;
}

/* ---- CARTES « BIENTÔT À LA CAVE » ----------------------------------------- */
.avenir-card {
  position: relative; overflow: hidden; background: #FFFFFF; border: 1px solid rgba(179,139,83,.2);
  display: flex; flex-direction: column; min-height: 280px; padding: 2.1rem 1.7rem 1.9rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
}
.avenir-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #CBA56B, #926E3C);
  transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.avenir-card:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -28px rgba(84,58,22,.42); border-color: rgba(179,139,83,.5); }
.avenir-card:hover::after { transform: scaleX(1); }
/* La marque de la carte, c'est l'objet lui-même — l'alambic, la bouteille, la
   fiole — dessiné en grand et en creux. Un numéro d'ordre ne dirait rien :
   ces créations ne se suivent pas, elles cohabitent. */
.avenir-card__mark {
  position: absolute; top: -0.5rem; right: -0.6rem; z-index: 0; pointer-events: none;
  font-size: 6.6rem; line-height: 1; color: rgba(146, 110, 60, .085);
  transition: color .5s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.avenir-card:hover .avenir-card__mark { color: rgba(146, 110, 60, .16); transform: translate(-3px, 3px) rotate(-4deg); }
@media (max-width: 640px) { .avenir-card__mark { font-size: 5.2rem; } }
.avenir-card__body { position: relative; z-index: 1; margin-top: auto; }
.avenir-card__tag { display: block; font-family: 'Poppins', sans-serif; font-size: .5rem; letter-spacing: .24em; text-transform: uppercase; color: #7C9277; }
.avenir-card__name { margin-top: .4rem; font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.5rem; line-height: 1.1; color: #231D17; }
.avenir-card__desc { margin-top: .55rem; font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; line-height: 1.45; color: #4A3E32; }

/* ---- INVITATION NEWSLETTER (carte gravée) --------------------------------- */
.hj-invite {
  position: relative; background: #FDFAF5; border: 1px solid rgba(179,139,83,.45);
  box-shadow: 0 26px 54px -32px rgba(84,58,22,.38);
  padding: clamp(2.4rem, 4vw, 3.4rem) clamp(1.6rem, 4vw, 3.6rem); text-align: center;
}
.hj-invite::before {
  content: ''; position: absolute; inset: 8px; pointer-events: none;
  border: 1px solid rgba(179,139,83,.26);
}
.hj-invite__form { display: flex; align-items: center; gap: .75rem; max-width: 440px; margin: 1.7rem auto 0; }
.hj-invite__input {
  flex: 1; min-width: 0; background: transparent; border: none; border-bottom: 1px solid rgba(146,110,60,.5);
  padding: .7rem .2rem; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: #231D17;
  text-align: center; outline: none; transition: border-color .3s;
}
.hj-invite__input::placeholder { color: rgba(74,62,50,.45); }
.hj-invite__input:focus { border-color: #926E3C; }
.hj-invite__btn {
  flex: none; display: inline-flex; align-items: center; gap: .5rem; height: 46px; padding: 0 1.5rem;
  background: #B38B53; color: #FDFAF5; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  transition: background-color .3s;
}
.hj-invite__btn:hover { background: #926E3C; }
@media (max-width: 520px) {
  .hj-invite__form { flex-direction: column; align-items: stretch; }
  .hj-invite__btn { justify-content: center; height: 50px; }
}

/* ============================================================================
   SCÈNES DE CUVÉE — le produit sur le papier de la maison
   Plus d'aplats : le fond reste neutre, la robe de chaque cuvée ne vit que
   dans du trait (montures, filets, liserés) et dans le grand mot en filigrane
   — le motif « ghost » qui court sur tout le site. Teintes relevées sur les
   étiquettes imprimées : or #DFC270 (Blanc), carmin #DB0028 (Rouge).
   ============================================================================ */

/* Le garde-fou anti-scroll horizontal est porté par la SECTION pleine largeur,
   pas par le conteneur centré : sinon le filigrane est tranché net au bord des
   1240px. Ici il file jusqu'au bord de l'écran et se perd hors-champ. */
.shop-section { overflow-x: clip; }

.shop-scenes {
  position: relative; overflow: visible;
  max-width: 1240px; margin: 0 auto;
  padding: clamp(3.6rem, 6vw, 5.5rem) 1.5rem clamp(2rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; gap: clamp(3.5rem, 6vw, 6rem);
}
@media (min-width: 768px) { .shop-scenes { padding-left: 2.5rem; padding-right: 2.5rem; } }

.shop-scene {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: 0.96fr 1fr; align-items: center;
  gap: clamp(2rem, 4.5vw, 4.2rem);
}
@media (max-width: 900px) { .shop-scene { grid-template-columns: 1fr; gap: 2.4rem; } }

.shop-scene--blanc {
  --robe: #DFC270;
  --robe-soft: rgba(223, 194, 112, 0.62);
  --robe-glow: rgba(223, 194, 112, 0.5);
  --robe-ghost: rgba(146, 110, 60, 0.42);
  --robe-fill: rgba(223, 194, 112, 0.95);
  --robe-fill-2: rgba(203, 165, 107, 0.5);
  --robe-bleed: rgba(223, 194, 112, 0.42);
}
.shop-scene--rouge {
  --robe: #DB0028;
  --robe-soft: rgba(219, 0, 40, 0.34);
  --robe-glow: rgba(219, 0, 40, 0.26);
  --robe-ghost: rgba(181, 70, 47, 0.34);
  --robe-fill: rgba(219, 0, 40, 0.42);
  --robe-fill-2: rgba(181, 70, 47, 0.22);
  --robe-bleed: rgba(219, 0, 40, 0.16);
}

/* Le grand mot en filigrane — la robe écrite derrière la scène.
   TROIS PLAQUES, là où la page d'accueil n'en tire que deux : la bavure
   d'encre (copie floue, sous le texte), l'aplat dégradé qui se dissout, et
   la copie hors-registre en trait de cheveu. C'est le même geste, poussé
   plus loin : ici le mot est le décor principal, il a droit à l'encre. */
.shop-ghost {
  /* Ancré du côté TEXTE, jamais du côté photo : le cadre est opaque, un mot
     qui passe derrière se fait trancher net par son bord.
     PADDING OBLIGATOIRE : `background-clip: text` et `mask-image` découpent
     au ras de la border box. En Playfair italique, la dernière lettre déborde
     de sa boîte — sans marge intérieure elle est tranchée net. Les `top`/
     `right` ci-dessous compensent ce padding pour garder le calage d'origine. */
  position: absolute; z-index: 0;
  padding: 0.18em 0.44em 0.34em 0.32em;
  top: -0.5em; right: -0.5em;
  font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic;
  font-size: clamp(6rem, 16.5vw, 15rem); line-height: 0.72; letter-spacing: -0.03em;
  white-space: nowrap; pointer-events: none; user-select: none;
  /* plaque 2 — l'aplat dégradé, qui se dissout vers le bas */
  color: transparent;
  background: linear-gradient(163deg, var(--robe-fill) 6%, var(--robe-fill-2) 44%, transparent 86%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 97%);
          mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 97%);
}
/* Les deux autres plaques épousent la boîte du parent (`inset: 0` + le même
   padding), donc leur texte se cale exactement sur le sien ; le décalage
   hors-registre se fait au `transform`, pas au positionnement. */
.shop-ghost::before,
.shop-ghost::after {
  content: attr(data-word); position: absolute; inset: 0; padding: inherit;
}
/* plaque 1 — la bavure : l'encre qui a pris dans le papier, sous le texte */
.shop-ghost::before { z-index: -1; color: var(--robe-bleed); filter: blur(14px); }
/* plaque 3 — la copie hors-registre, en trait seul */
.shop-ghost::after {
  color: transparent; -webkit-text-stroke: 1.2px var(--robe-ghost);
  transform: translate(0.055em, 0.04em);
  -webkit-mask-image: linear-gradient(180deg, #000 10%, transparent 90%);
          mask-image: linear-gradient(180deg, #000 10%, transparent 90%);
}
.shop-scene--flip .shop-ghost { right: auto; left: -0.38em; }
.shop-scene--flip .shop-ghost::after { transform: translate(-0.055em, 0.04em); }
@media (max-width: 900px) {
  .shop-ghost { font-size: clamp(4.8rem, 23vw, 8.5rem); top: -0.44em; opacity: 0.8; }
  .shop-ghost::before { filter: blur(9px); }
}

/* ---- la mise en scène photo ---- */
.shop-stage { position: relative; z-index: 2; width: 100%; max-width: 440px; justify-self: center; }
.shop-scene--flip .shop-stage { order: 2; }
@media (max-width: 900px) { .shop-scene--flip .shop-stage { order: 0; } }

.shop-halo {
  position: absolute; inset: -14% -12%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52% 52% at 50% 46%, rgba(203, 165, 107, 0.4), transparent 70%),
    radial-gradient(64% 64% at 50% 50%, var(--robe-glow), transparent 72%);
}

/* les quatre équerres : une monture de joaillier, à la teinte de la robe */
.shop-corners {
  position: absolute; inset: -0.7rem; z-index: 4; pointer-events: none;
  --l: 30px;
  background:
    linear-gradient(var(--robe), var(--robe)) left  top    / 1px var(--l) no-repeat,
    linear-gradient(var(--robe), var(--robe)) left  top    / var(--l) 1px no-repeat,
    linear-gradient(var(--robe), var(--robe)) right top    / 1px var(--l) no-repeat,
    linear-gradient(var(--robe), var(--robe)) right top    / var(--l) 1px no-repeat,
    linear-gradient(var(--robe), var(--robe)) left  bottom / 1px var(--l) no-repeat,
    linear-gradient(var(--robe), var(--robe)) left  bottom / var(--l) 1px no-repeat,
    linear-gradient(var(--robe), var(--robe)) right bottom / 1px var(--l) no-repeat,
    linear-gradient(var(--robe), var(--robe)) right bottom / var(--l) 1px no-repeat;
  opacity: 0.75;
  transition: inset .6s cubic-bezier(.16,1,.3,1), opacity .6s cubic-bezier(.16,1,.3,1);
}
.shop-scene:hover .shop-corners { inset: -1.05rem; opacity: 1; }
@media (max-width: 640px) { .shop-corners { inset: -0.5rem; --l: 22px; } }

.shop-frame {
  position: relative; z-index: 2; display: block; padding: .9rem;
  background: rgba(253, 250, 245, .65);
  box-shadow: 0 42px 80px -34px rgba(84, 58, 22, .5);
  transition: box-shadow .6s cubic-bezier(.16,1,.3,1);
}
.shop-frame::before {
  content: ''; position: absolute; inset: .32rem; z-index: 3; pointer-events: none;
  border: 1px solid var(--robe-soft);
}
.shop-frame img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.shop-scene:hover .shop-frame { box-shadow: 0 50px 90px -34px rgba(84, 58, 22, .58); }

.shop-cap {
  position: absolute; z-index: 5; left: -.5rem; bottom: 1.4rem;
  background: #02342C; color: #E3CEA3;
  font-family: 'Poppins', sans-serif; font-size: .55rem; letter-spacing: .22em;
  text-transform: uppercase; padding: .5rem .9rem;
}
/* vignette packaging, en débord du cadre */
.shop-chip {
  position: absolute; z-index: 5; right: -1.7rem; bottom: -1.9rem;
  width: clamp(104px, 14vw, 162px); padding: .4rem;
  background: #FDFAF5; border: 1px solid rgba(179, 139, 83, .35);
  box-shadow: 0 24px 42px -22px rgba(84, 58, 22, .55);
}
.shop-chip img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.shop-scene--flip .shop-chip { right: auto; left: -1.7rem; }
@media (max-width: 640px) {
  .shop-chip { right: -.4rem; bottom: -1.3rem; }
  .shop-scene--flip .shop-chip { left: -.4rem; right: auto; }
}

/* ---- le texte ---- */
.shop-body { position: relative; z-index: 2; }

.shop-kicker {
  display: flex; width: fit-content; align-items: center; gap: .7rem;
  font-family: 'Poppins', sans-serif; font-size: .58rem; letter-spacing: .3em;
  text-transform: uppercase; color: #926E3C;
}
.shop-kicker::before { content: ''; width: 26px; height: 1px; flex: none; background: var(--robe); }

.shop-robe {
  display: flex; width: fit-content; align-items: center; gap: .6rem; margin-top: .7rem;
  font-family: 'Poppins', sans-serif; font-size: .54rem; letter-spacing: .22em;
  text-transform: uppercase; color: #4A3E32;
}
.shop-robe .dot { width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--robe); box-shadow: 0 0 0 1px var(--robe-soft); }

.shop-name { font-family: 'Playfair Display', serif; line-height: 1; margin-top: .9rem; }
.shop-name b { display: block; font-weight: 600; font-style: normal; font-size: clamp(2.2rem, 3.8vw, 3.1rem); color: #231D17; }
.shop-name i { display: block; font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); margin-top: .12em; color: #926E3C; }

.shop-rule {
  display: block; width: 68px; height: 1px; margin-top: 1rem;
  background: linear-gradient(90deg, var(--robe) 0%, transparent 100%);
  transition: width .6s cubic-bezier(.16,1,.3,1);
}
.shop-scene:hover .shop-rule { width: 108px; }

.shop-teaser { font-family: 'Cormorant Garamond', serif; font-size: 1.14rem; line-height: 1.58;
  max-width: 29rem; margin-top: .85rem; color: #4A3E32; text-wrap: pretty; }

.shop-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.05rem; }
.shop-tag { font-family: 'Poppins', sans-serif; font-size: .52rem; letter-spacing: .14em;
  text-transform: uppercase; padding: .4rem .74rem; border-radius: 999px;
  border: 1px solid rgba(146, 110, 60, .32); background: rgba(255, 255, 255, .5); color: #926E3C; }

/* ---- prix + achat ---- */
.shop-buy { margin-top: 1.6rem; }
.shop-price {
  display: inline-flex; align-items: baseline; gap: .55rem; padding-left: .95rem;
  border-left: 1px solid var(--robe-soft);
}
.shop-price b { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.85rem; color: #231D17; }
.shop-price span { font-family: 'Poppins', sans-serif; font-size: .58rem; letter-spacing: .12em;
  text-transform: uppercase; color: #7C9277; }
.shop-pack { margin-top: .45rem; padding-left: .95rem; font-family: 'Poppins', sans-serif;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: #7C9277; }

.shop-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.shop-btn {
  display: inline-flex; align-items: center; gap: .6rem; padding: 1rem 1.7rem; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
  transition: background-color .35s, color .35s, border-color .35s,
              box-shadow .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
}
.shop-btn--solid { background: #B38B53; color: #FDFAF5; }
.shop-btn--solid:hover {
  background: #926E3C; transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--robe), 0 16px 34px -18px var(--robe);
}
.shop-btn--outline { border: 1px solid rgba(35, 29, 23, .24); color: #231D17; }
.shop-btn--outline:hover { border-color: var(--robe); color: #926E3C; transform: translateY(-2px); }

/* ---- ÉCHOS DU MÊME LANGAGE : hero et bande duo ---------------------------- */

/* Le titre du hero est signé du filet qui va de l'or du Blanc au carmin du Rouge. */
.hj-hero__title { position: relative; display: inline-block; padding-bottom: 1.1rem; }
.hj-hero__title::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 168px; height: 1px;
  background: linear-gradient(90deg, #DFC270 0%, #DB0028 88%, transparent 100%);
}
@media (max-width: 960px) { .hj-hero__title::after { left: 50%; transform: translateX(-50%); } }

/* Monture d'angles — même geste que les scènes, en or sur les blocs qui
   réunissent les deux robes (hero, duo). */
.hj-stage__corners,
.duo-corners {
  position: absolute; inset: -0.8rem; z-index: 4; pointer-events: none;
  --c: #B38B53; --l: 34px;
  background:
    linear-gradient(var(--c), var(--c)) left  top    / 1px var(--l) no-repeat,
    linear-gradient(var(--c), var(--c)) left  top    / var(--l) 1px no-repeat,
    linear-gradient(var(--c), var(--c)) right top    / 1px var(--l) no-repeat,
    linear-gradient(var(--c), var(--c)) right top    / var(--l) 1px no-repeat,
    linear-gradient(var(--c), var(--c)) left  bottom / 1px var(--l) no-repeat,
    linear-gradient(var(--c), var(--c)) left  bottom / var(--l) 1px no-repeat,
    linear-gradient(var(--c), var(--c)) right bottom / 1px var(--l) no-repeat,
    linear-gradient(var(--c), var(--c)) right bottom / var(--l) 1px no-repeat;
  opacity: .7;
  transition: inset .6s cubic-bezier(.16,1,.3,1), opacity .6s cubic-bezier(.16,1,.3,1);
}
.hj-stage:hover .hj-stage__corners,
.duo-feature:hover .duo-corners { inset: -1.2rem; opacity: 1; }
@media (max-width: 640px) { .hj-stage__corners, .duo-corners { inset: -0.5rem; --l: 24px; } }

/* ---- INDEX DE FIN DE PAGE — « continuer la visite » -----------------------
   Pas des cartes : un index gravé, comme le dos d'une étiquette. Chaque
   entrée est une ligne posée sur un filet, avec sa marque à gauche (la robe
   pour une cuvée, l'outil pour une page). Au survol la ligne s'ouvre : le
   filet se teinte, la marque avance, le trait de fin s'allonge. */
.shop-index { border-top: 1px solid rgba(179, 139, 83, .28); }

.shop-index__row {
  position: relative; display: grid; align-items: center;
  grid-template-columns: 2.4rem minmax(9rem, 13rem) 1fr auto;
  gap: 0 1.6rem; padding: 1.5rem .4rem;
  border-bottom: 1px solid rgba(179, 139, 83, .28);
  text-decoration: none; color: inherit;
  transition: background-color .45s ease, padding-left .5s cubic-bezier(.16,1,.3,1);
}
.shop-index__row:hover { background: rgba(253, 250, 245, .8); padding-left: 1.1rem; }
/* le filet de teinte qui court sous la ligne survolée */
.shop-index__row::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, var(--mark, #B38B53), transparent 72%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.shop-index__row:hover::after { transform: scaleX(1); }

.shop-index__mark {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--mark, #B38B53);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.shop-index__mark .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--mark);
  box-shadow: 0 0 0 1px rgba(255,255,255,.9), 0 0 0 2px var(--mark); }
.shop-index__row:hover .shop-index__mark { transform: translateX(3px); }

.shop-index__kicker { font-family: 'Poppins', sans-serif; font-size: .56rem; letter-spacing: .26em;
  text-transform: uppercase; color: #7C9277; display: block; }
.shop-index__name { display: block; font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.5rem;
  line-height: 1.12; color: #231D17; margin-top: .3rem; }
.shop-index__row:focus-visible { outline: 2px solid #926E3C; outline-offset: -3px; background: rgba(253, 250, 245, .8); }
.shop-index__desc { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; line-height: 1.45;
  color: #4A3E32; text-wrap: pretty; }

.shop-index__go { display: inline-flex; align-items: center; gap: .7rem;
  font-family: 'Poppins', sans-serif; font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase; color: #926E3C; white-space: nowrap; }
.shop-index__go .arw { display: block; width: 1.6rem; height: 1px; background: currentColor;
  transition: width .5s cubic-bezier(.16,1,.3,1); }
.shop-index__row:hover .shop-index__go .arw { width: 2.6rem; }

@media (max-width: 860px) {
  .shop-index__row { grid-template-columns: 2rem 1fr; gap: .1rem .9rem; padding: 1.35rem .2rem; }
  .shop-index__mark { grid-row: span 2; align-self: start; margin-top: .2rem; }
  .shop-index__desc { grid-column: 2; margin-top: .45rem; }
  .shop-index__go { grid-column: 2; margin-top: .85rem; }
}

/* Le mot en filigrane de la bande duo — mêmes trois plaques que les scènes,
   mais l'encre part de l'or du Blanc pour finir sur le carmin du Rouge :
   le duo porte les deux robes dans un seul mot. */
.duo-ghost {
  /* padding : cf. .shop-ghost — sans lui, l'italique est tranché par le
     découpage de background-clip/mask au bord de la boîte. */
  position: absolute; z-index: 0;
  padding: 0.18em 0.44em 0.34em 0.32em;
  /* ancré au bord : c'est le padding (0.44em) qui crée le retrait visuel —
     un `right` positif ferait sortir la boîte de l'écran et le mot serait
     raboté par l'overflow de la bande. */
  right: 0; top: 0.92rem;
  font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic;
  font-size: clamp(6rem, 17vw, 15rem); line-height: .72; letter-spacing: -.03em;
  pointer-events: none; user-select: none;
  color: transparent;
  background: linear-gradient(112deg, rgba(223,194,112,.92) 4%, rgba(203,165,107,.5) 46%, rgba(219,0,40,.28) 88%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 97%);
          mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 97%);
}
.duo-ghost::before,
.duo-ghost::after {
  content: attr(data-word); position: absolute; inset: 0; padding: inherit;
}
.duo-ghost::before { z-index: -1; color: rgba(223, 194, 112, .38); filter: blur(14px); }
.duo-ghost::after {
  transform: translate(.055em, .04em);
  color: transparent; -webkit-text-stroke: 1.2px rgba(146, 110, 60, .32);
  -webkit-mask-image: linear-gradient(180deg, #000 10%, transparent 90%);
          mask-image: linear-gradient(180deg, #000 10%, transparent 90%);
}
@media (max-width: 900px) {
  .duo-ghost { font-size: clamp(5rem, 24vw, 8rem); opacity: .8; }
  .duo-ghost::before { filter: blur(9px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE DE VENTE — /boutique/homeojuices/
   La page alterne deux registres : le RÉCIT (Cormorant, aéré) et la PREUVE
   (Poppins tabulaire, dense, réglée au filet). Les blocs ci-dessous sont la
   preuve — c'est leur densité qui les distingue du reste de la page.
   ═════════════════════════════════════════════════════════════════════════ */

/* Chiffres alignés en colonne : un prix ne doit jamais danser d'une ligne à l'autre. */
.hj-num { font-variant-numeric: tabular-nums; }

/* ── Module d'achat du héro ────────────────────────────────────────────── */
.hj-buybox {
  margin-top: 2.2rem; max-width: 27rem; background: #FDFAF5;
  border: 1px solid rgba(179, 139, 83, .28); padding: .5rem .5rem .9rem;
  box-shadow: 0 22px 48px -34px rgba(84, 58, 22, .45);
}
@media (max-width: 900px) { .hj-buybox { margin-left: auto; margin-right: auto; } }

.hj-buybox__row {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem .75rem; border-bottom: 1px solid rgba(179, 139, 83, .16);
}
.hj-buybox__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.hj-buybox__name { font-family: 'Playfair Display', serif; font-size: 1.08rem; color: #231D17; }
.hj-buybox__price {
  margin-left: auto; font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: #231D17; font-variant-numeric: tabular-nums;
}
.hj-buybox__btn {
  display: inline-flex; align-items: center; gap: .4rem; flex: none;
  border: 1px solid rgba(179, 139, 83, .5); background: transparent;
  padding: .5rem .85rem; font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: #926E3C; cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.hj-buybox__btn:hover { background: #B38B53; border-color: #B38B53; color: #FDFAF5; }

.hj-buybox__duo {
  display: flex; width: calc(100% - 1.5rem); align-items: center; justify-content: space-between;
  gap: .8rem; margin: .75rem .75rem 0; padding: .85rem 1rem;
  background: #02342C; color: #F6F2EA; border: 0; cursor: pointer;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  transition: opacity .25s ease;
}
.hj-buybox__duo:hover { opacity: .9; }
/* nowrap : un prix ne se coupe jamais avant son symbole. */
.hj-buybox__duoprice { display: inline-flex; align-items: baseline; gap: .45rem; font-variant-numeric: tabular-nums; }
.hj-buybox__duoprice b { font-family: 'Playfair Display', serif; font-size: 1.2rem; letter-spacing: 0; white-space: nowrap; }
.hj-buybox__duoprice s { font-size: .62rem; opacity: .55; letter-spacing: 0; white-space: nowrap; }
.hj-rail__btn b, .hj-rail__btn s, .hj-ladder__unit b { white-space: nowrap; }

.hj-buybox__ship {
  display: flex; align-items: center; gap: .5rem; margin: .85rem .75rem 0;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: #7C9277;
}

/* ── Le comparatif — signature de la page ──────────────────────────────── */
.hj-band-compare { background: #FDFAF5; border-top: 1px solid rgba(179, 139, 83, .2); border-bottom: 1px solid rgba(179, 139, 83, .2); }

.hj-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.hj-compare-wrap:focus-visible { outline: 2px solid #B38B53; outline-offset: 4px; }

.hj-compare {
  width: 100%; min-width: 680px; border-collapse: collapse;
  font-variant-numeric: tabular-nums; background: #FFFFFF;
}
.hj-compare th, .hj-compare td {
  padding: .95rem 1rem; text-align: left; vertical-align: top;
  border-bottom: 1px solid rgba(179, 139, 83, .18);
}
.hj-compare thead th {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: #7C9277;
  border-bottom: 1px solid rgba(179, 139, 83, .45); white-space: nowrap;
}
/* La colonne de la maison : on l'isole par la couleur, pas par une bordure criarde. */
.hj-compare thead th.is-nous { color: #926E3C; background: #F6F2EA; }
.hj-compare td.is-nous { background: #F6F2EA; }
.hj-compare tbody tr:last-child th, .hj-compare tbody tr:last-child td { border-bottom: 0; }

.hj-compare tbody th {
  font-family: 'Poppins', sans-serif; font-weight: 400; font-size: .74rem;
  color: #231D17; white-space: nowrap;
  /* Le critère reste lisible pendant le défilement horizontal sur mobile. */
  position: sticky; left: 0; background: #FFFFFF; z-index: 1;
}
.hj-compare td {
  font-family: 'Cormorant Garamond', serif; font-size: 1.06rem; line-height: 1.35; color: #4A3E32;
}
.hj-compare td.is-nous { font-family: 'Poppins', sans-serif; font-size: .78rem; color: #231D17; }
.hj-compare td.is-non { color: #7C9277; }
.hj-compare td.is-na { color: rgba(124, 146, 119, .55); }
.hj-compare__ico { margin-right: .45rem; font-size: .68rem; color: #B38B53; }

.hj-compare__note {
  margin-top: 1.1rem; max-width: 46rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.5; color: #7C9277;
}

/* ── Les trois piliers (sur fond forest) ───────────────────────────────── */
.hj-piliers { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .hj-piliers { grid-template-columns: 1fr; } }

.hj-pilier {
  position: relative; padding: 1.9rem 1.6rem 1.7rem;
  border: 1px solid rgba(203, 165, 107, .28); background: rgba(246, 242, 234, .04);
}
.hj-pilier__num {
  position: absolute; top: 1.1rem; right: 1.2rem;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem;
  color: rgba(203, 165, 107, .35);
}
.hj-pilier__ico { font-size: 1.6rem; color: #CBA56B; }
.hj-pilier__kicker {
  display: block; margin-top: 1.2rem; font-size: .56rem;
  letter-spacing: .2em; text-transform: uppercase; color: #B7C189;
}
.hj-pilier__title {
  margin-top: .5rem; font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 1.42rem; line-height: 1.15; color: #F6F2EA;
}
.hj-pilier__text {
  margin-top: .7rem; font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; line-height: 1.5; color: rgba(246, 242, 234, .8);
}

/* ── L'échelle de prix ─────────────────────────────────────────────────── */
.hj-ladder { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); align-items: start; }
@media (max-width: 900px) { .hj-ladder { grid-template-columns: 1fr; } }

.hj-ladder__step {
  position: relative; display: flex; flex-direction: column;
  background: #FFFFFF; border: 1px solid rgba(179, 139, 83, .22); padding: 1.9rem 1.5rem 1.5rem;
}
/* Le meilleur prix se signale par le trait, pas par une couleur criarde. */
.hj-ladder__step.is-best {
  border-color: #B38B53; box-shadow: 0 26px 54px -34px rgba(84, 58, 22, .45);
}
.hj-ladder__step.is-best::before {
  content: ''; position: absolute; inset-inline: -1px; top: -1px; height: 3px; background: #B38B53;
}
.hj-ladder__flag {
  position: absolute; top: -.72rem; left: 1.5rem; background: #B38B53; color: #FDFAF5;
  padding: .25rem .7rem; font-size: .54rem; letter-spacing: .18em; text-transform: uppercase;
}
.hj-ladder__label { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #231D17; }
.hj-ladder__sub { margin-top: .2rem; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: #7C9277; }

.hj-ladder__unit {
  margin-top: 1.2rem; display: flex; align-items: baseline; gap: .5rem;
  font-variant-numeric: tabular-nums;
}
.hj-ladder__unit b { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 2.3rem; color: #231D17; line-height: 1; }
.hj-ladder__unit span { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #7C9277; }

.hj-ladder__detail { margin-top: 1.2rem; border-top: 1px solid rgba(179, 139, 83, .22); padding-top: .9rem; }
.hj-ladder__detail > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .35rem 0; font-size: .78rem;
}
.hj-ladder__detail dt { color: #7C9277; }
.hj-ladder__detail dd { color: #231D17; font-variant-numeric: tabular-nums; text-align: right; }
.hj-ladder__detail .is-free { color: #16A34A; font-weight: 400; }
.hj-ladder__detail .is-save { color: #926E3C; }

.hj-ladder__btn {
  margin-top: 1.3rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border: 1px solid #B38B53; background: transparent; color: #926E3C;
  padding: .95rem 1rem; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; transition: background .25s ease, color .25s ease;
}
.hj-ladder__btn:hover { background: #B38B53; color: #FDFAF5; }
.hj-ladder__btn.is-solid { background: #02342C; border-color: #02342C; color: #F6F2EA; }
.hj-ladder__btn.is-solid:hover { background: #143f36; border-color: #143f36; }

.hj-promos { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.hj-promos li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .55rem;
  border-left: 2px solid #B38B53; padding: .55rem .9rem; background: #FFFFFF;
  font-size: .82rem; color: #231D17;
}
.hj-promos i { color: #926E3C; font-size: .8rem; }
.hj-promos em { font-style: normal; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #7C9277; }
.hj-promos time { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #926E3C; }

.hj-badge-save {
  background: #B5462F; color: #FDFAF5; padding: .22rem .6rem;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; font-variant-numeric: tabular-nums;
}

/* ── La fiche technique ────────────────────────────────────────────────── */
.hj-spec { border-top: 1px solid rgba(179, 139, 83, .3); }
.hj-spec__row {
  display: grid; grid-template-columns: 15rem 1fr; gap: 1.5rem;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(179, 139, 83, .18);
}
@media (max-width: 700px) { .hj-spec__row { grid-template-columns: 1fr; gap: .35rem; } }
.hj-spec dt { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: #926E3C; padding-top: .25rem; }
.hj-spec dd { font-family: 'Cormorant Garamond', serif; font-size: 1.16rem; line-height: 1.5; color: #4A3E32; }

/* ── Dégustation & accords dans la scène de cuvée ──────────────────────── */
.shop-tasting { margin-top: 1.4rem; border-top: 1px solid rgba(179, 139, 83, .22); }
.shop-tasting > div { padding: .7rem 0; border-bottom: 1px solid rgba(179, 139, 83, .12); }
.shop-tasting > div:last-child { border-bottom: 0; }
.shop-tasting dt { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: #926E3C; }
.shop-tasting dd { margin-top: .25rem; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.45; color: #4A3E32; }

.shop-pairings { margin-top: 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; }
.shop-pairings > span { font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; color: #7C9277; margin-right: .2rem; }
.shop-pairings em {
  font-style: normal; font-size: .68rem; color: #4A3E32;
  border: 1px solid rgba(179, 139, 83, .3); padding: .22rem .55rem;
}

.shop-formats { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; margin-bottom: .8rem; }
@media (max-width: 560px) { .shop-formats { grid-template-columns: 1fr; } }
.shop-format {
  display: flex; flex-direction: column; gap: .18rem;
  border: 1px solid rgba(179, 139, 83, .28); background: #FDFAF5; padding: .9rem .9rem 1rem;
}
.shop-format.is-best { border-color: #B38B53; }
.shop-format__lab { font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; color: #7C9277; }
.shop-format__prix { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #231D17; font-variant-numeric: tabular-nums; }
.shop-format__unit { font-family: 'Cormorant Garamond', serif; font-size: .98rem; line-height: 1.3; color: #7C9277; }
.shop-format .shop-btn { margin-top: .7rem; width: 100%; justify-content: center; }

/* ── Rail d'achat persistant ───────────────────────────────────────────── */
.hj-rail {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  background: rgba(253, 250, 245, .97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(179, 139, 83, .35);
  box-shadow: 0 -14px 40px -26px rgba(84, 58, 22, .5);
  transform: translateY(110%); visibility: hidden;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), visibility .45s;
}
.hj-rail.is-on { transform: none; visibility: visible; }
@media (prefers-reduced-motion: reduce) { .hj-rail { transition: none; } }

.hj-rail__in {
  max-width: 1280px; margin: 0 auto; padding: .7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.hj-rail__say { display: flex; flex-direction: column; gap: .1rem; }
.hj-rail__name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #231D17; }
.hj-rail__note { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: #7C9277; }
@media (max-width: 700px) { .hj-rail__say { display: none; } }

.hj-rail__acts { display: flex; align-items: center; gap: .55rem; margin-left: auto; }
@media (max-width: 700px) { .hj-rail__acts { width: 100%; } }

.hj-rail__btn {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid rgba(179, 139, 83, .45); background: transparent; color: #231D17;
  padding: .6rem .85rem; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: border-color .25s ease, background .25s ease;
  font-variant-numeric: tabular-nums;
}
.hj-rail__btn:hover { border-color: #B38B53; background: #F6F2EA; }
.hj-rail__btn b { font-family: 'Playfair Display', serif; font-size: .95rem; letter-spacing: 0; }
.hj-rail__btn s { font-size: .58rem; opacity: .5; letter-spacing: 0; }
.hj-rail__btn.is-solid {
  background: #02342C; border-color: #02342C; color: #F6F2EA; flex: 1 1 auto; justify-content: center;
}
.hj-rail__btn.is-solid:hover { background: #143f36; border-color: #143f36; }
.hj-rail__dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
@media (max-width: 700px) {
  .hj-rail__btn { flex: 1 1 0; justify-content: center; padding: .7rem .5rem; }
}
