/* ============================================
   AURÉLIA — Shared Stylesheet
   Premium DTC beauty / wellness
   ============================================ */

/* ============================================
   TOKENS
   ============================================ */
:root {
  /* Bases (warm whites, kept) */
  --ivory:        #FAF6EE;
  --ivory-warm:   #F2EBDC;
  --cream:        #EAE0CB;
  --cream-deep:   #DDD0B5;

  /* Accent layer — punchier */
  --blush:        #FFD8D3;
  --blush-soft:   #FFE9E5;
  --rose:         #FF8674;
  --rose-deep:    #E63946;   /* vibrant red — used for "em" italic accent + eyebrows */

  /* Brand: black-first (replaces refined burgundy) */
  --burgundy:     #0A0A0A;   /* pure-ish black for headlines + dark blocks + buttons */
  --burgundy-soft:#1F1F1F;
  --ink:          #050505;
  --ink-soft:     #2A2A2A;
  --mute:         #757575;

  /* Gold — now punchy saffron */
  --gold:         #F4C13A;
  --gold-soft:    #FFD963;
  --gold-pale:    #FFF0BA;

  /* Per-product saturated colors (Nutribrain-style tiles) */
  --c-collagene:  #FF4D7E;   /* hot pink */
  --c-serenite:   #7DC74A;   /* lime green */
  --c-vitalite:   #FF7A2E;   /* tangerine */
  --c-eclat:      #FFC107;   /* electric yellow */
  --c-sommeil:    #3F51B5;   /* indigo blue */
  --c-detox:      #2EC470;   /* emerald */

  /* Aliases used elsewhere */
  --sage:         #7DC74A;
  --navy:         #3F51B5;
  --coral:        #FF7A2E;
  --matcha:       #2EC470;

  --line:         rgba(10, 10, 10, 0.14);
  --line-soft:    rgba(10, 10, 10, 0.07);

  --serif:  'Fraunces', 'Times New Roman', serif;
  --sans:   'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius: 2px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
input, textarea { font: inherit; color: inherit; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: multiply;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow-line::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--rose-deep);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--burgundy);
}
h1 { font-size: clamp(2.75rem, 7vw, 6rem); font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-variation-settings: "opsz" 96; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-variation-settings: "opsz" 48; line-height: 1.15; }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 500; letter-spacing: 0.01em; color: var(--ink); }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }

p.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: var(--ink-soft); max-width: 50ch; }
p.body { color: var(--ink-soft); }

.caption {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--mute);
}

.num-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--rose-deep);
  letter-spacing: 0.05em;
}

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-pad { padding: clamp(4rem, 9vw, 9rem) 0; }
.section-pad-sm { padding: clamp(3rem, 6vw, 6rem) 0; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce {
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem var(--gutter);
  text-align: center;
  font-weight: 500;
}
.announce span { display: inline-flex; align-items: center; gap: 0.6rem; }
.announce .dot {
  width: 4px; height: 4px; background: var(--gold-soft); border-radius: 50%;
  display: inline-block; margin: 0 1rem;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 242, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem var(--gutter);
  gap: 1rem;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--rose-deep); }
.nav-link:hover::after { transform: scaleX(1); }
.logo-wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.85rem;
  color: var(--burgundy);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
  line-height: 1;
}
.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}
.cart-count {
  background: var(--burgundy);
  color: var(--ivory);
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}
.menu-toggle { display: none; width: 24px; height: 18px; position: relative; cursor: pointer; }
.menu-toggle span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink); transition: all 0.4s var(--ease); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 18px; }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); width: 100%; }
@media (max-width: 860px) {
  .nav-left { display: none; }
  .menu-toggle { display: block; justify-self: start; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .logo-wordmark { font-size: 1.5rem; justify-self: center; }
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37, 18, 24, 0);
  pointer-events: none;
  transition: background 0.5s var(--ease);
  z-index: 198;
}
.mobile-nav-overlay.open { background: rgba(37, 18, 24, 0.55); pointer-events: all; }
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--ivory);
  z-index: 199;
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 30px 0 60px -30px rgba(37, 18, 24, 0.25);
  padding-top: 1.5rem;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.75rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav-head .logo-wordmark { font-size: 1.5rem; }
.mobile-nav-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--burgundy);
  transition: transform 0.3s var(--ease);
  background: none; border: none; cursor: pointer;
}
.mobile-nav-close:hover { transform: rotate(90deg); }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--burgundy);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
  text-decoration: none;
  font-variation-settings: "opsz" 144;
}
.mobile-nav-link:hover { background: var(--cream); padding-left: 2.25rem; }
.mobile-nav-link::after {
  content: '→';
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--rose-deep);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}
.mobile-nav-link:hover::after { opacity: 1; transform: translateX(0); }
.mobile-nav-sub {
  padding: 1rem 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
}
.mobile-nav-foot {
  margin-top: auto;
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--line-soft);
  background: var(--cream);
}
.mobile-nav-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.mobile-nav-foot .contact-line {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.mobile-nav-socials {
  display: flex; gap: 0.75rem;
  margin-top: 1rem;
}
.mobile-nav-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
  transition: all 0.3s var(--ease);
}
.mobile-nav-socials a:hover { background: var(--burgundy); color: var(--ivory); border-color: var(--burgundy); }
.mobile-nav-socials svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================
   HERO IMAGE (new home)
   ============================================ */
.home-hero {
  background: var(--ivory);
  overflow: hidden;
  position: relative;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: clamp(540px, 80vh, 760px);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.home-hero-text { max-width: 600px; position: relative; z-index: 2; }
.home-hero-text .eyebrow { margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s var(--ease-out) 0.1s forwards; }
.home-hero-text h1 {
  font-size: clamp(2.75rem, 6.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.25s forwards;
}
.home-hero-text h1 em { font-style: italic; font-weight: 300; color: var(--rose-deep); }
.home-hero-text .lead {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.4s forwards;
}
.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.55s forwards;
}
.home-hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.7s forwards;
}
.home-hero-trust .stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.95rem; }
.home-hero-trust span:not(.stars) {
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--ink-soft); text-transform: uppercase;
}
.home-hero-trust strong { color: var(--ink); font-weight: 600; }

/* Home hero — added badges + stats row */
.home-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.85s forwards;
  list-style: none;
}
.home-hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.home-hero-badges li svg {
  width: 16px; height: 16px;
  stroke: var(--rose-deep);
  fill: none; stroke-width: 1.6;
  flex-shrink: 0;
}
.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 1s forwards;
}
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--burgundy);
  letter-spacing: -0.025em;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
@media (max-width: 540px) {
  .home-hero-badges { grid-template-columns: 1fr; }
  .home-hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .home-hero-stats .stat:last-child { grid-column: span 2; }
}

/* Hero image side — 6-product colored mosaic */
.home-hero-image {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  overflow: hidden;
  background: var(--ivory);
}
.home-hero-image > img.home-bg-photo {
  /* Optional AI-generated background photo — uncomment when ready */
  /* position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; */
  display: none;
}
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.m-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.m-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 90%, rgba(0,0,0,0.22), transparent 70%);
  pointer-events: none;
}
.m-tile.bg-collagene { background: var(--c-collagene); }
.m-tile.bg-serenite  { background: var(--c-serenite); }
.m-tile.bg-vitalite  { background: var(--c-vitalite); }
.m-tile.bg-eclat     { background: var(--c-eclat); }
.m-tile.bg-sommeil   { background: var(--c-sommeil); }
.m-tile.bg-detox     { background: var(--c-detox); }
.m-tile .jar {
  width: 50%;
  position: relative;
  z-index: 2;
}
.home-hero-image .caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
  z-index: 3;
  background: rgba(10, 10, 10, 0.7);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
}
.home-hero-image .badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--burgundy);
  color: var(--ivory);
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  z-index: 3;
}
@media (max-width: 860px) {
  .home-hero-inner { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding-bottom: 4rem; }
  .home-hero-image { order: 2; max-width: 480px; margin: 0 auto; }
  .home-hero-text { order: 1; }
}

/* ============================================
   NOTRE DÉMARCHE (how it works)
   ============================================ */
.approach { background: var(--ivory-warm); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.approach-head { text-align: center; max-width: 700px; margin: 0 auto clamp(3rem, 5vw, 4rem); }
.approach-head .eyebrow { margin-bottom: 1.5rem; display: inline-flex; }
.approach-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.approach-head p { margin-top: 1.5rem; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
}
.approach-step {
  background: var(--ivory);
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: background 0.5s var(--ease);
}
.approach-step:hover { background: var(--cream); }
.approach-step .num-mark { color: var(--rose-deep); display: block; }
.approach-step .approach-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
  background: var(--ivory);
}
.approach-step .approach-icon svg {
  width: 28px; height: 28px;
  stroke: var(--burgundy);
  fill: none; stroke-width: 1.2;
}
.approach-step h3 { color: var(--burgundy); font-size: 1.35rem; }
.approach-step p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
.approach-step .approach-tag {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--rose-deep);
}
@media (max-width: 860px) { .approach-grid { grid-template-columns: 1fr; } }

/* ============================================
   BESTSELLERS (3-card row)
   ============================================ */
.bestsellers { background: var(--ivory); }
.bestsellers-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  gap: 2rem;
}
.bestsellers-head .eyebrow { margin-bottom: 1.5rem; display: inline-flex; }
.bestsellers-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.bestsellers-head .btn-link { padding-bottom: 6px; white-space: nowrap; }
@media (max-width: 720px) {
  .bestsellers-head { grid-template-columns: 1fr; align-items: start; }
}
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
@media (max-width: 960px) { .bestsellers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .bestsellers-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================
   CATALOG PAGE
   ============================================ */
.catalog-page-hero {
  background:
    radial-gradient(ellipse 60% 50% at 25% 30%, rgba(232, 200, 192, 0.3), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(216, 182, 138, 0.18), transparent 70%),
    var(--ivory);
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
}
.catalog-page-hero-inner { max-width: 720px; margin: 0 auto; }
.catalog-page-hero .eyebrow { margin-bottom: 2rem; display: inline-flex; }
.catalog-page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.catalog-page-hero h1 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.catalog-page-hero p { margin: 0 auto; max-width: 540px; }

/* Catalog hero strip — 4 stats */
.catalog-hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  padding-top: clamp(2rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line-soft);
}
.strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}
.strip-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.strip-num small {
  font-size: 0.4em;
  color: var(--mute);
  font-style: italic;
  vertical-align: super;
  letter-spacing: 0;
}
.strip-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
@media (max-width: 720px) {
  .catalog-hero-strip { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
}

/* Catalog hero — decorative mini jars row */
.catalog-hero-jars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 1100px;
  margin: clamp(3rem, 5vw, 5rem) auto 0;
}
.catalog-hero-jars .mj {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.catalog-hero-jars .mj::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 90%, rgba(0,0,0,0.18), transparent 70%);
  pointer-events: none;
}
.catalog-hero-jars .mj.bg-collagene { background: var(--c-collagene); }
.catalog-hero-jars .mj.bg-serenite  { background: var(--c-serenite); }
.catalog-hero-jars .mj.bg-vitalite  { background: var(--c-vitalite); }
.catalog-hero-jars .mj.bg-eclat     { background: var(--c-eclat); }
.catalog-hero-jars .mj.bg-sommeil   { background: var(--c-sommeil); }
.catalog-hero-jars .mj.bg-detox     { background: var(--c-detox); }
.catalog-hero-jars .mj .jar {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .catalog-hero-jars { grid-template-columns: repeat(3, 1fr); }
}

/* Filter chips on catalog page */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  background: var(--ivory-warm);
}
.catalog-filter {
  padding: 0.65rem 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.catalog-filter.active {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}
.catalog-filter:hover { color: var(--burgundy); border-color: var(--burgundy); }
.catalog-filter.active:hover { color: var(--ivory); }

/* ============================================
   BRAND STORY IMAGE (replace empty signature)
   ============================================ */
.brand-story-visual.with-image {
  background: var(--cream);
  padding: 0;
}
.brand-story-visual.with-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(0.97) saturate(0.94);
}
.brand-story-visual.with-image::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(248, 242, 232, 0.6);
  pointer-events: none;
  z-index: 2;
}
.brand-story-visual.with-image .signature {
  background: rgba(248, 242, 232, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem 1.75rem;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 3;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.15rem 2.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { border-color: var(--ink); }
.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
  padding: 1.1rem 2rem;
}
.btn-secondary:hover { background: var(--burgundy); color: var(--ivory); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  position: relative;
  padding-bottom: 4px;
  background: none;
  border: none;
}
.btn-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--burgundy);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.btn-link:hover::after { transform-origin: left; transform: scaleX(0.4); }
.btn-link .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.btn-link:hover .arrow { transform: translateX(4px); }

/* ============================================
   PRESS MARQUEE
   ============================================ */
.press {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 1.5rem 0;
}
.press-track {
  display: flex;
  gap: 5rem;
  animation: marquee 35s linear infinite;
  width: fit-content;
}
.press-item {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--burgundy);
  white-space: nowrap;
  opacity: 0.7;
}
.press-item .small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-right: 0.75rem;
  color: var(--rose-deep);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================
   CSS-RENDERED JAR (reused across pages)
   ============================================ */
.jar {
  display: flex;
  flex-direction: column;
  width: 100%;
  filter: drop-shadow(0 30px 30px rgba(74, 31, 43, 0.18));
}
.jar-cap {
  width: 78%;
  margin: 0 auto;
  height: 14%;
  background: linear-gradient(180deg, #C9A571 0%, #B8945F 45%, #8E6F44 100%);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  box-shadow: inset 0 -1px 3px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
}
.jar-cap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent);
  border-radius: 8px 8px 0 0;
}
.jar-ring {
  width: 86%;
  margin: 0 auto;
  height: 3%;
  background: linear-gradient(180deg, #8E6F44, #6B5232);
  border-radius: 2px;
}
.jar-body {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, rgba(255,248,235,0.95) 0%, rgba(248,235,218,0.95) 30%, rgba(238,220,195,0.95) 100%);
  border-radius: 14px 14px 28px 28px;
  position: relative;
  box-shadow: inset 4px 0 8px rgba(120,80,50,0.08), inset -4px 0 8px rgba(120,80,50,0.08), inset 0 -20px 30px rgba(120,80,50,0.12);
  overflow: hidden;
}
.jar-body::before {
  content: '';
  position: absolute;
  top: 0; left: 12%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.1));
  filter: blur(2px);
}
.jar-body::after {
  content: '';
  position: absolute;
  top: 0; right: 8%;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, rgba(120,80,50,0.15), rgba(120,80,50,0.05));
  filter: blur(4px);
}
.jar-label {
  position: absolute;
  top: 25%; left: 8%; right: 8%;
  background: #FAF4E8;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(74,31,43,0.08);
}
.jar-label .brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144;
}
.jar-label .product-name {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 0.65rem;
}
.jar-label .divider { width: 24px; height: 1px; background: var(--gold); margin: 0.5rem auto; }
.jar-label .product-meta {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 400;
}

/* Jar color variants for catalog (cap color shifts) */
.jar.j-serenite .jar-cap { background: linear-gradient(180deg, #B5C2A8 0%, #8FA382 45%, #6B7D5F 100%); }
.jar.j-serenite .jar-ring { background: linear-gradient(180deg, #6B7D5F, #4F5F44); }
.jar.j-serenite .jar-body { background: linear-gradient(180deg, rgba(240,245,235,0.95) 0%, rgba(220,232,212,0.95) 60%, rgba(195,213,182,0.95) 100%); }
.jar.j-vitalite .jar-cap { background: linear-gradient(180deg, #E8B894 0%, #D9A06A 45%, #B07A45 100%); }
.jar.j-vitalite .jar-ring { background: linear-gradient(180deg, #B07A45, #8E5E2E); }
.jar.j-vitalite .jar-body { background: linear-gradient(180deg, rgba(252, 240, 225, 0.95) 0%, rgba(245, 220, 195, 0.95) 60%, rgba(232, 195, 162, 0.95) 100%); }
.jar.j-eclat .jar-cap { background: linear-gradient(180deg, #F0CB7A 0%, #D9AE52 45%, #A88333 100%); }
.jar.j-eclat .jar-ring { background: linear-gradient(180deg, #A88333, #7E5F1F); }
.jar.j-eclat .jar-body { background: linear-gradient(180deg, rgba(253, 247, 230, 0.95) 0%, rgba(250, 235, 200, 0.95) 60%, rgba(240, 217, 168, 0.95) 100%); }
.jar.j-sommeil .jar-cap { background: linear-gradient(180deg, #6B6F8C 0%, #4C5070 45%, #313450 100%); }
.jar.j-sommeil .jar-ring { background: linear-gradient(180deg, #313450, #1F2238); }
.jar.j-sommeil .jar-body { background: linear-gradient(180deg, rgba(232, 232, 240, 0.95) 0%, rgba(208, 210, 222, 0.95) 60%, rgba(185, 188, 205, 0.95) 100%); }
.jar.j-detox .jar-cap { background: linear-gradient(180deg, #A4B584 0%, #7D9061 45%, #586B40 100%); }
.jar.j-detox .jar-ring { background: linear-gradient(180deg, #586B40, #3E4F2A); }
.jar.j-detox .jar-body { background: linear-gradient(180deg, rgba(240, 246, 230, 0.95) 0%, rgba(218, 230, 200, 0.95) 60%, rgba(195, 212, 175, 0.95) 100%); }

/* ============================================
   FAQ ACCORDION (used on product page)
   ============================================ */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 5vw, 5rem);
}
.faq-head h2 { margin-bottom: 1.5rem; }
.faq-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.faq-head .body { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 320px; }
.faq-head .contact {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--burgundy);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.faq-head .contact small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.75rem 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex;
  width: 100%;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
}
.faq-question h3 {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--burgundy);
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}
.faq-item:hover .faq-question h3 { color: var(--rose-deep); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute; background: var(--burgundy); transition: all 0.4s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1px; }
.faq-toggle::after { width: 1px; height: 12px; }
.faq-item.open .faq-toggle { background: var(--burgundy); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--ivory); }
.faq-item.open .faq-toggle::after { height: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-top: 1.25rem;
  padding-right: 3rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (max-width: 860px) { .faq-inner { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--ink); color: var(--ivory); padding: clamp(4rem, 6vw, 6rem) 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}
.footer-brand .logo-wordmark { color: var(--ivory); font-size: 2rem; margin-bottom: 1.5rem; }
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(248, 242, 232, 0.65);
  line-height: 1.55;
  max-width: 280px;
  margin-bottom: 2rem;
}
.socials { display: flex; gap: 1rem; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(248, 242, 232, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-col a { font-size: 0.92rem; color: rgba(248, 242, 232, 0.7); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(248, 242, 232, 0.1);
  font-size: 0.78rem;
  color: rgba(248, 242, 232, 0.45);
  gap: 2rem;
  flex-wrap: wrap;
}
.pay-icons { display: flex; gap: 0.75rem; align-items: center; }
.pay-icon {
  background: rgba(248, 242, 232, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 242, 232, 0.7);
  font-weight: 600;
}

/* Footer signature credit */
.footer-credit {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 242, 232, 0.4);
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(248, 242, 232, 0.06);
  margin-top: 1.75rem;
  font-weight: 500;
}
.footer-credit a {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.14em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
  margin-left: 0.4rem;
}
.footer-credit a:hover { border-color: var(--gold-soft); }
.footer-credit em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold-soft);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   CART DRAWER (used on all pages)
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(37, 18, 24, 0);
  pointer-events: none;
  transition: background 0.5s var(--ease);
  z-index: 199;
}
.cart-overlay.open { background: rgba(37, 18, 24, 0.55); pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: min(440px, 92vw);
  height: 100vh;
  background: var(--ivory);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 60px -30px rgba(37, 18, 24, 0.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line-soft);
}
.cart-header h3 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.25rem; color: var(--burgundy);
}
.cart-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--burgundy);
  transition: transform 0.3s var(--ease);
}
.cart-close:hover { transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 1.75rem; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 1rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 1.5rem;
}
.cart-item-img {
  width: 80px; height: 100px;
  background: var(--cream);
  display: block;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item-info h4 a { color: inherit; text-decoration: none; }
.cart-item-info h4 a:hover { color: var(--rose-deep); }
.cart-item-info h4 { font-family: var(--serif); font-weight: 400; font-size: 1rem; color: var(--burgundy); margin-bottom: 0.3rem; }
.cart-item-info .variant-text { font-size: 0.78rem; color: var(--mute); margin-bottom: 0.65rem; }
.qty-control {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  width: fit-content;
}
.qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy); font-size: 0.9rem;
  transition: background 0.3s var(--ease);
}
.qty-btn:hover { background: var(--cream); }
.qty-val { padding: 0 0.5rem; font-size: 0.9rem; font-weight: 500; }
.cart-item-price { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; color: var(--burgundy); text-align: right; }
.cart-item-remove {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); margin-top: 0.5rem; text-align: right;
  transition: color 0.3s var(--ease);
}
.cart-item-remove:hover { color: var(--rose-deep); }
.cart-empty { text-align: center; padding: 4rem 1rem; color: var(--ink-soft); }
.cart-empty p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.1rem; margin-bottom: 1.5rem; }
.cart-footer { padding: 1.5rem 1.75rem; border-top: 1px solid var(--line-soft); background: var(--cream); }
.cart-summary { display: flex; justify-content: space-between; margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.cart-summary.total {
  font-family: var(--serif); font-size: 1.4rem; color: var(--burgundy); font-weight: 400;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
}
.cart-shipping-bar { background: var(--ivory); border-radius: 100px; height: 5px; margin: 1rem 0; overflow: hidden; }
.cart-shipping-progress { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); width: 0%; transition: width 0.5s var(--ease); }
.cart-shipping-text { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 0.85rem; color: var(--rose-deep); text-align: center; margin-bottom: 1rem; }
.cart-checkout-btn {
  width: 100%;
  background: var(--burgundy); color: var(--ivory);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border-radius: var(--radius); margin-top: 1rem;
  transition: background 0.3s var(--ease);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
}
.cart-checkout-btn:hover { background: var(--ink); }
.cart-secure {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute); text-align: center; margin-top: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.cart-secure svg { width: 12px; height: 12px; stroke: var(--mute); fill: none; stroke-width: 1.5; }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--burgundy); color: var(--ivory);
  padding: 0.85rem 1.25rem; z-index: 90;
  display: none; align-items: center; justify-content: space-between;
  gap: 1rem; border-radius: var(--radius);
  box-shadow: 0 20px 40px -15px rgba(37,18,24,0.4);
  transform: translateY(150%);
  transition: transform 0.5s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-info { display: flex; flex-direction: column; }
.sticky-cta-name { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1rem; }
.sticky-cta-price { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); }
.sticky-cta button {
  background: var(--gold); color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  border-radius: var(--radius); white-space: nowrap;
}
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed; top: 4.5rem; right: 1rem;
  background: var(--burgundy); color: var(--ivory);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 500;
  transform: translateX(120%);
  transition: transform 0.5s var(--ease);
  z-index: 250;
  box-shadow: 0 20px 40px -15px rgba(37,18,24,0.4);
}
.toast.show { transform: translateX(0); }
.toast::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  font-size: 0.75rem; font-weight: 700;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   HOMEPAGE / CATALOG SPECIFIC
   ============================================ */

/* Catalog hero */
.cat-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 90% 25%, rgba(232, 200, 192, 0.35), transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(216, 182, 138, 0.18), transparent 70%),
    var(--ivory);
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(4rem, 7vw, 7rem);
}
.cat-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
}
.cat-hero .eyebrow { margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 1s var(--ease-out) 0.1s forwards; }
.cat-hero h1 {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: 1.02;
  margin-bottom: 2.25rem;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.25s forwards;
}
.cat-hero h1 em { font-style: italic; font-weight: 300; color: var(--rose-deep); }
.cat-hero .lead {
  margin: 0 auto 2.75rem;
  max-width: 600px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.4s forwards;
}
.cat-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.55s forwards;
}
/* Scrolling jars deco */
.cat-hero-deco {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; max-width: 1400px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
  padding: 0 5%;
}
.cat-hero-deco .mini-jar-deco {
  width: 70px;
  animation: floatBig 8s ease-in-out infinite;
}
.cat-hero-deco .mini-jar-deco:nth-child(2) { animation-delay: -2s; transform: translateY(-30px); }
@keyframes floatBig {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@media (max-width: 720px) { .cat-hero-deco { display: none; } }
.cat-hero-inner > * { position: relative; z-index: 1; }

/* Featured cure (Le rituel du moment) */
.featured {
  background: var(--ivory-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.featured-visual {
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse at center, var(--blush) 0%, var(--blush-soft) 55%, var(--ivory-warm) 100%);
  border-radius: 50%;
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-visual::before {
  content: '';
  position: absolute;
  inset: -2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.featured-visual .jar { width: 40%; }
.featured-info .eyebrow { margin-bottom: 1.5rem; display: inline-flex; }
.featured-info h2 { margin-bottom: 1.5rem; }
.featured-info h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.featured-info .lead { margin-bottom: 2rem; }
.featured-bullets { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.featured-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.featured-bullets li::before {
  content: '—';
  color: var(--rose-deep);
  font-family: var(--serif);
  font-style: italic;
}
.featured-price-row { display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 2rem; }
.featured-price {
  font-family: var(--serif); font-size: 2rem; color: var(--burgundy); font-weight: 400; line-height: 1;
}
.featured-rating { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-soft); text-transform: uppercase; }
.featured-rating .stars { color: var(--gold); letter-spacing: 0.18em; margin-right: 0.5rem; }
@media (max-width: 860px) {
  .featured-inner { grid-template-columns: 1fr; gap: 3rem; }
  .featured-visual { max-width: 360px; }
}

/* Catalog grid */
.catalog { background: var(--ivory); }
.catalog-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.catalog-head h2 { margin-bottom: 0; }
.catalog-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.catalog-head .lead { justify-self: end; margin: 0; }
@media (max-width: 720px) {
  .catalog-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .catalog-head .lead { justify-self: start; }
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: var(--ivory);
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: background 0.5s var(--ease);
  cursor: pointer;
}
.product-card:hover { background: var(--ivory-warm); }
.product-card:hover .product-card-visual { transform: scale(1.05); }
.product-card:hover .pc-cta::after { transform: scaleX(0.5); transform-origin: left; }
.product-card-visual {
  aspect-ratio: 1;
  background: var(--c-collagene);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 90%, rgba(0,0,0,0.18), transparent 70%);
  pointer-events: none;
}
.product-card-visual.bg-serenite { background: var(--c-serenite); }
.product-card-visual.bg-vitalite { background: var(--c-vitalite); }
.product-card-visual.bg-eclat    { background: var(--c-eclat); }
.product-card-visual.bg-sommeil  { background: var(--c-sommeil); }
.product-card-visual.bg-detox    { background: var(--c-detox); }
.product-card-visual .jar { width: 50%; }
.pc-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: -0.5rem;
}
.product-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--burgundy);
  line-height: 1.15;
}
.pc-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.pc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.pc-price { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--burgundy); }
.pc-price small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--mute); display: block; font-family: var(--sans); margin-top: 0.15rem; }
.pc-cta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  position: relative;
  padding-bottom: 4px;
}
.pc-cta::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--burgundy);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.pc-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--rose-deep);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  z-index: 2;
}
@media (max-width: 960px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .catalog-grid { grid-template-columns: 1fr; } }

/* Brand pillars */
.pillars { background: var(--cream); border-top: 1px solid var(--line-soft); }
.pillars-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}
.pillars-head .eyebrow { margin-bottom: 1.5rem; display: inline-flex; }
.pillars-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.pillar { text-align: center; padding: 1rem; }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 3.5rem;
  color: var(--rose-deep);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  display: block;
}
.pillar h3 { color: var(--burgundy); font-size: 1.4rem; margin-bottom: 1rem; }
.pillar p { color: var(--ink-soft); font-size: 0.95rem; max-width: 280px; margin: 0 auto; line-height: 1.6; }
@media (max-width: 720px) { .pillars-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Brand story split */
.brand-story { background: var(--ivory); border-bottom: 1px solid var(--line-soft); }
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.brand-story-visual {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 30% 30%, var(--blush) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, var(--gold-pale) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}
.brand-story-visual::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(74, 31, 43, 0.2);
  pointer-events: none;
}
.brand-story-visual .signature {
  position: absolute;
  bottom: 3rem; left: 3rem; right: 3rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--burgundy);
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}
.brand-story-visual .signature small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 1rem;
  font-weight: 500;
}
.brand-story-text .eyebrow { margin-bottom: 1.5rem; display: inline-flex; }
.brand-story-text h2 { margin-bottom: 1.75rem; }
.brand-story-text h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.brand-story-text p { margin-bottom: 1.5rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.brand-story-text p.lead { font-size: 1.1rem; }
.brand-story-text p:last-of-type { margin-bottom: 2.5rem; }
@media (max-width: 860px) { .brand-story-inner { grid-template-columns: 1fr; } }

/* Big editorial quote */
.big-quote {
  background: var(--burgundy);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(216, 182, 138, 0.12), transparent 60%);
  pointer-events: none;
}
.big-quote-inner { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.big-quote .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.2em; margin-bottom: 2rem; display: block; }
.big-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  line-height: 1.3;
  color: var(--ivory);
  letter-spacing: -0.015em;
  margin-bottom: 2.5rem;
  font-variation-settings: "opsz" 144;
}
.big-quote .author {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.big-quote .author span { color: rgba(248, 242, 232, 0.5); }

/* Journal preview */
.journal { background: var(--ivory); }
.journal-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  gap: 2rem;
}
.journal-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.journal-head .btn-link { padding-bottom: 6px; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.article-card { cursor: pointer; }
.article-card-img {
  aspect-ratio: 4/3;
  background: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.article-card:nth-child(1) .article-card-img {
  background:
    radial-gradient(ellipse at 30% 40%, var(--blush) 0%, transparent 60%),
    linear-gradient(135deg, var(--cream) 0%, var(--ivory-warm) 100%);
}
.article-card:nth-child(2) .article-card-img {
  background:
    radial-gradient(ellipse at 70% 30%, var(--gold-pale) 0%, transparent 60%),
    linear-gradient(135deg, var(--cream-deep) 0%, var(--ivory-warm) 100%);
}
.article-card:nth-child(3) .article-card-img {
  background:
    radial-gradient(ellipse at 50% 50%, var(--blush-soft) 0%, transparent 60%),
    linear-gradient(135deg, var(--cream) 0%, #F4ECDB 100%);
}
.article-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 31, 43, 0.05));
  transition: opacity 0.5s var(--ease);
}
.article-card:hover .article-card-img::after { opacity: 0; }
.article-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.article-card-meta .sep { color: var(--line); }
.article-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease);
}
.article-card:hover h3 { color: var(--rose-deep); }
.article-card-excerpt { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 860px) { .journal-grid { grid-template-columns: 1fr; gap: 2.5rem; } .journal-head { grid-template-columns: 1fr; align-items: start; } }

/* Newsletter */
.newsletter {
  background: var(--burgundy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,200,192,0.12), transparent 60%);
  pointer-events: none;
}
.newsletter-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; padding: 0 var(--gutter); }
.newsletter .eyebrow { color: var(--gold-soft); margin-bottom: 1.75rem; display: inline-flex; }
.newsletter .eyebrow-line::before { background: var(--gold-soft); }
.newsletter h2 { color: var(--ivory); margin-bottom: 1.25rem; }
.newsletter h2 em { color: var(--gold-soft); font-style: italic; font-weight: 300; }
.newsletter p { color: rgba(248, 242, 232, 0.75); margin-bottom: 2.5rem; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(248, 242, 232, 0.3);
  padding-bottom: 0.5rem;
  transition: border-color 0.3s var(--ease);
}
.newsletter-form:focus-within { border-color: var(--gold-soft); }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--ivory);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(248, 242, 232, 0.5); }
.newsletter-form button {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-soft);
  padding: 0.5rem 0 0.5rem 1.5rem;
  transition: color 0.3s var(--ease);
}
.newsletter-form button:hover { color: var(--ivory); }
.newsletter-fine { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 0.85rem; color: rgba(248, 242, 232, 0.5); margin-top: 1.5rem; }


/* ============================================
   PRODUCT PAGE SPECIFIC
   ============================================ */

/* Breadcrumb */
.crumb {
  padding: 1.25rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.crumb a { color: var(--ink-soft); transition: color 0.3s var(--ease); }
.crumb a:hover { color: var(--burgundy); }
.crumb .sep { margin: 0 0.6rem; color: var(--mute); }
.crumb .current { color: var(--burgundy); }

/* Product hero (La Cure) — restructured: main image + thumbnails grid below */
.product-hero {
  background: var(--ivory);
  padding-top: 1rem;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* Wrapper that holds main image + thumbnails together, sticky */
.ph-visual-wrap {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

/* Main product image — smaller, vibrant tile */
.ph-main {
  aspect-ratio: 1;
  background: var(--c-collagene);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  max-width: 100%;
}
.ph-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 90%, rgba(0,0,0,0.22), transparent 70%);
  pointer-events: none;
}
.ph-main .jar {
  width: 46%;
  position: relative;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ph-main .ph-zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
  cursor: pointer;
  z-index: 3;
}
.ph-main .ph-zoom svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
/* Optional photo overlay (when AI-generated image is provided) */
.ph-main img.main-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Auto-hide CSS placeholders when a real photo is dropped in */
.ph-main:has(img.main-photo) > .jar { display: none; }
.ph-main:has(img.main-photo)::after { display: none; }
.thumb:has(img) .mini-jar-thumb { display: none; }
.thumb:has(img) { background: transparent; padding: 0; }
.thumb img { display: block; }
.step-img:has(img) .placeholder-icon { display: none; }
.ingredient-img:has(img) .placeholder-icon { display: none; }
.home-hero-image:has(img.home-bg-photo) .hero-mosaic { display: none; }

/* Product card visual : when an img is present, hide the CSS jar */
.product-card-visual:has(> img) > .jar { display: none; }
.product-card-visual:has(> img)::after { display: none; }
.product-card-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.home-hero-image img.home-bg-photo {
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Thumbnails — clean grid of 4, never overflow */
.ph-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  width: 100%;
}
.thumb {
  aspect-ratio: 1;
  background: var(--ivory-warm);
  border: 1.5px solid transparent;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.thumb:hover { border-color: var(--line); }
.thumb.active { border-color: var(--ink); }
.thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.thumb .mini-jar-thumb {
  width: 32%; height: auto;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #FAF4E8 30%, #E8D5B0 100%);
  border-radius: 3px 3px 5px 5px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.thumb .mini-jar-thumb::before {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%; height: 22%;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}
.thumb.bg-collagene { background: var(--c-collagene); }
.thumb.bg-serenite { background: var(--c-serenite); }
.thumb.bg-vitalite { background: var(--c-vitalite); }
.thumb.bg-eclat    { background: var(--c-eclat); }
.thumb.bg-sommeil  { background: var(--c-sommeil); }
.thumb.bg-detox    { background: var(--c-detox); }

.ph-info { padding-top: 1rem; }
.ph-info .eyebrow { margin-bottom: 1.25rem; display: inline-flex; }
.ph-info h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}
.ph-info h1 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.ph-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 96;
}
.ph-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.ph-rating-row .stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.95rem; }
.ph-rating-row a { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-soft); text-transform: uppercase; border-bottom: 1px solid var(--line); padding-bottom: 2px; }

.ph-bullets {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2.5rem;
}
.ph-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.ph-bullets li svg {
  width: 22px; height: 22px;
  stroke: var(--rose-deep);
  fill: none; stroke-width: 1.3;
  margin-top: 2px;
}
.ph-bullets li span { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.55; }
.ph-bullets li strong { color: var(--burgundy); font-weight: 500; }

/* Variants */
.variants {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin: 2rem 0;
}
.variant {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}
.variant:hover { border-color: var(--burgundy); }
.variant.active { border-color: var(--burgundy); background: var(--cream); }
.variant.active::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--burgundy); pointer-events: none; }
.variant input { appearance: none; -webkit-appearance: none; margin: 0; }
.variant-radio { width: 16px; height: 16px; border: 1px solid var(--burgundy); border-radius: 50%; position: relative; flex-shrink: 0; }
.variant.active .variant-radio::after { content: ''; position: absolute; inset: 3px; background: var(--burgundy); border-radius: 50%; }
.variant-info { display: flex; flex-direction: column; gap: 0.1rem; }
.variant-title { font-weight: 500; font-size: 0.95rem; color: var(--ink); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.variant-meta { font-size: 0.78rem; color: var(--mute); }
.variant-badge {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--rose-deep); color: var(--ivory);
  padding: 0.25rem 0.55rem; border-radius: var(--radius);
  font-weight: 500;
}
.variant-price { font-family: var(--serif); font-size: 1.15rem; color: var(--burgundy); font-weight: 400; text-align: right; }
.variant-price .save {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--rose-deep);
  text-transform: uppercase;
  margin-top: 0.15rem;
  font-weight: 500;
}

.ph-add-row { margin-bottom: 1.5rem; }
.ph-add-row .btn-primary { width: 100%; padding: 1.3rem 2rem; font-size: 0.82rem; }

.ph-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.ph-trust > div {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.65rem;
  font-size: 0.78rem; color: var(--ink-soft);
}
.ph-trust svg { width: 24px; height: 24px; stroke: var(--burgundy); fill: none; stroke-width: 1.2; }

@media (max-width: 860px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ph-visual-wrap { position: static; top: auto; max-width: 480px; margin: 0 auto; width: 100%; }
  .ph-main { aspect-ratio: 1; }
  .ph-thumbs { grid-template-columns: repeat(4, 1fr); }
  .ph-info { padding-top: 0; }
}

/* Product section header (shared on product page sub-sections) */
.product-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.product-section-head .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--rose-deep);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
}
.product-section-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.product-section-head .lead { justify-self: end; margin: 0; }
@media (max-width: 860px) {
  .product-section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-section-head .lead { justify-self: start; }
}

/* Product : Le Rituel timeline (with image per step) */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
}
.step {
  padding: 0;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.step-img {
  aspect-ratio: 4/5;
  width: 100%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, var(--blush) 0%, transparent 70%),
    var(--ivory-warm);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.step-img .placeholder-icon {
  width: 38%;
  opacity: 0.45;
  color: var(--burgundy);
}
.step-img .placeholder-icon svg { width: 100%; height: auto; stroke: currentColor; fill: none; stroke-width: 0.8; }
.step-marker {
  width: 36px; height: 36px;
  background: var(--burgundy);
  color: var(--ivory);
  border-radius: 50%;
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  z-index: 2;
}
.step h4 {
  color: var(--burgundy);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  font-style: normal;
  letter-spacing: -0.015em;
  margin: 0;
}
.step p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .timeline { grid-template-columns: 1fr; gap: 2rem; }
}

/* Product : La Formule (ingredients block, dark) */
.formula {
  background: var(--burgundy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.formula::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(184, 145, 96, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(232, 200, 192, 0.08), transparent 70%);
  pointer-events: none;
}
.formula .eyebrow { color: var(--gold-soft); }
.formula .eyebrow-line::before { background: var(--gold-soft); }
.formula h2 { color: var(--ivory); }
.formula h2 em { color: var(--gold-soft); font-style: italic; font-weight: 300; }
.formula .lead { color: rgba(248, 242, 232, 0.7); }
.formula .num { color: var(--gold-soft); }
.ingredient-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(248, 242, 232, 0.12);
}
.ingredient {
  background: var(--burgundy);
  padding: 0;
  display: flex; flex-direction: column;
  transition: background 0.6s var(--ease);
  overflow: hidden;
}
.ingredient:hover { background: var(--burgundy-soft); }
.ingredient .ingredient-img {
  aspect-ratio: 4/3;
  width: 100%;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(244, 193, 58, 0.3) 0%, transparent 70%),
    var(--burgundy-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ingredient .ingredient-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ingredient .ingredient-img .placeholder-icon {
  width: 36%;
  opacity: 0.4;
  color: var(--gold-soft);
}
.ingredient .ingredient-img .placeholder-icon svg { width: 100%; height: auto; stroke: currentColor; fill: none; stroke-width: 0.8; }
.ingredient .ingredient-body {
  padding: clamp(1.75rem, 2.5vw, 2.25rem) clamp(1.25rem, 2vw, 2rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  flex: 1;
}
.ingredient .num-big {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
}
.ingredient h3 { color: var(--ivory); font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
.ingredient .origin {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--gold-soft);
}
.ingredient p { font-size: 0.9rem; color: rgba(248, 242, 232, 0.75); line-height: 1.55; }
.ingredient .dose {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  border-top: 1px solid rgba(248, 242, 232, 0.15);
  padding-top: 1rem;
  margin-top: auto;
}
@media (max-width: 1000px) { .ingredient-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ingredient-list { grid-template-columns: 1fr; } }
.formula-note {
  margin-top: clamp(3rem, 5vw, 5rem);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Product : Notre Engagement (statement) */
.statement {
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before, .statement::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  pointer-events: none;
}
.statement::before {
  top: -100px; left: -100px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.4;
}
.statement::after {
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
  opacity: 0.4;
}
.statement-inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 1; }
.statement .eyebrow { margin-bottom: 2rem; display: inline-flex; }
.statement h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
}
.statement h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.statement .credo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 3.5rem;
  font-variation-settings: "opsz" 96;
}

.commitments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: 3.5rem;
  text-align: left;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.commitment .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--rose-deep);
  margin-bottom: 0.65rem;
  display: block;
}
.commitment h3 { color: var(--burgundy); font-size: 1.2rem; margin-bottom: 0.85rem; }
.commitment p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 720px) {
  .commitments { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
}

.statement-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.statement-cta small {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--mute);
  font-size: 0.9rem;
}

/* Signature */
.signature-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
}
.signature-block .sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--burgundy);
  font-variation-settings: "opsz" 144;
}
.signature-block small {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}

/* ============================================
   USP BANNER (after hero)
   ============================================ */
.usp-banner {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.4rem 0;
  overflow: hidden;
}
.usp-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.usp-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  white-space: nowrap;
}
.usp-item svg {
  width: 16px; height: 16px;
  stroke: var(--rose-deep);
  fill: none; stroke-width: 1.5;
}
.usp-item .sep {
  width: 1px;
  height: 14px;
  background: var(--line);
  margin-left: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 720px) {
  .usp-item .sep { display: none; }
  .usp-inner { gap: 1rem 2rem; }
}

/* ============================================
   REVIEWS SECTION (social proof on product page)
   ============================================ */
.reviews { background: var(--blush-soft); position: relative; overflow: hidden; }
.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(232, 213, 176, 0.3), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(248, 242, 232, 0.4), transparent 60%);
  pointer-events: none;
}
.reviews-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}
.reviews-head .num-mark { display: block; margin-bottom: 1rem; }
.reviews-head h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.reviews-head p { color: var(--ink-soft); margin-top: 1rem; }

/* Aggregate rating block */
.rating-summary {
  background: var(--ivory);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  border: 1px solid var(--line-soft);
}
.rating-big { text-align: center; border-right: 1px solid var(--line-soft); padding-right: clamp(1rem, 3vw, 3rem); }
.rating-big .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4rem, 8vw, 5.5rem);
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144;
}
.rating-big .num small {
  font-size: 0.32em;
  color: var(--mute);
  font-style: italic;
  font-weight: 300;
}
.rating-big .stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}
.rating-big .count {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.rating-big .count strong { color: var(--burgundy); }

.rating-bars { display: flex; flex-direction: column; gap: 0.85rem; }
.rating-bar {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
}
.rating-bar .label {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.rating-bar .label::after { content: '★'; color: var(--gold); font-style: normal; }
.rating-bar .track {
  background: var(--line);
  border-radius: 100px;
  height: 5px;
  overflow: hidden;
}
.rating-bar .fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 1s var(--ease);
}
.rating-bar .pct {
  text-align: right;
  color: var(--mute);
  font-size: 0.78rem;
}

@media (max-width: 720px) {
  .rating-summary { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .rating-big { border-right: 0; border-bottom: 1px solid var(--line-soft); padding-right: 0; padding-bottom: 2rem; }
}

/* Filter chips */
.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.review-filter {
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.review-filter.active { background: var(--burgundy); color: var(--ivory); border-color: var(--burgundy); }
.review-filter:hover { color: var(--burgundy); border-color: var(--burgundy); }
.review-filter.active:hover { color: var(--ivory); }

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
}
.review-card {
  background: var(--ivory);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s var(--ease);
}
.review-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -25px rgba(74, 31, 43, 0.2);
}
.review-card .top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.review-card .stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.9rem; }
.review-card .review-date {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--mute);
  text-transform: uppercase;
}
.review-card .review-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--burgundy);
  line-height: 1.3;
}
.review-card blockquote {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.005em;
}
.review-card .review-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
}
.review-card .review-info { display: flex; flex-direction: column; gap: 0.1rem; }
.review-card .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.review-card .avatar-2 { background: var(--gold-pale); }
.review-card .avatar-3 { background: var(--cream-deep); }
.review-card .avatar-4 { background: #DDE6D2; }
.review-card .avatar-5 { background: #F4D9BD; }
.review-card .avatar-6 { background: #D4D7E0; }
.review-card .review-name { font-size: 0.88rem; font-weight: 500; color: var(--burgundy); }
.review-card .review-where { font-size: 0.72rem; color: var(--mute); letter-spacing: 0.04em; }
.review-card .verified {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}
.review-card .verified::before {
  content: '✓';
  background: var(--rose-deep);
  color: var(--ivory);
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.reviews-more {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.reviews-more .btn { padding: 1rem 2.5rem; }
.reviews-more .meta {
  display: block;
  margin-top: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ============================================
   ACCOUNT PAGE
   ============================================ */
.account-section {
  background: var(--ivory);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.account-card {
  background: var(--ivory-warm);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.account-card h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 0.5rem;
}
.account-card h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.account-card .sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.account-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.form-field input {
  padding: 0.95rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  outline: none;
}
.form-field input:focus { border-color: var(--burgundy); }
.form-field input::placeholder { color: var(--mute); }
.form-actions { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.5rem; }
.form-actions .btn { padding: 1.1rem 1.5rem; justify-content: center; }
.form-link {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: center;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-soft);
  align-self: center;
  transition: color 0.3s var(--ease);
}
.form-link:hover { color: var(--burgundy); border-color: var(--burgundy); }
.account-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.account-perks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  align-items: start;
  line-height: 1.5;
}
.account-perks li svg {
  width: 18px; height: 18px;
  stroke: var(--rose-deep);
  fill: none; stroke-width: 1.6;
  margin-top: 2px;
}

/* Contact page */
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; list-style: none; margin: 1rem 0; padding: 0; border-top: 1px solid var(--line-soft); padding-top: 1.5rem; }
.contact-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--burgundy); fill: none; stroke-width: 1.4; }
.contact-list strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 0.35rem;
}
.contact-list a, .contact-list span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--burgundy);
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}
.contact-list a:hover { color: var(--rose-deep); }
.contact-aside {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-left: 2px solid var(--rose-deep);
}

/* Select + textarea reuse form-field styling */
.form-field select, .form-field textarea {
  padding: 0.95rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  outline: none;
  resize: vertical;
}
.form-field select:focus, .form-field textarea:focus { border-color: var(--burgundy); }
.form-field textarea { min-height: 120px; line-height: 1.5; }
.form-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1 L 5 5 L 9 1' stroke='%234A1F2B' stroke-width='1.5' fill='none'/></svg>"); background-position: right 1rem center; background-repeat: no-repeat; padding-right: 2.5rem; }
@media (max-width: 860px) {
  .account-grid { grid-template-columns: 1fr; }
}

/* Dashboard (logged in) */
.account-dashboard { max-width: 1100px; margin: 0 auto; }
.dash-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.dash-greet h2 { margin: 0; }
.dash-greet h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.dash-greet .sub { margin-top: 1rem; font-size: 0.9rem; color: var(--ink-soft); }
.dash-greet .sub span { color: var(--burgundy); font-weight: 500; }
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.dash-card {
  background: var(--ivory-warm);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dash-card h3 { color: var(--burgundy); font-size: 1.2rem; margin-bottom: 0.5rem; }
.dash-empty { color: var(--ink-soft); font-size: 0.95rem; }
.dash-empty p { margin-bottom: 0.75rem; font-family: var(--serif); font-style: italic; font-weight: 300; }
.dash-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}
.dash-toggle strong { display: block; font-size: 0.95rem; color: var(--burgundy); font-weight: 500; margin-bottom: 0.2rem; }
.dash-toggle small { font-size: 0.82rem; color: var(--ink-soft); display: block; }
.dash-switch {
  position: relative;
  width: 44px; height: 24px;
  display: inline-block;
}
.dash-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.dash-switch span {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 100px;
  transition: background 0.3s var(--ease);
  cursor: pointer;
}
.dash-switch span::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: var(--ivory);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.dash-switch input:checked + span { background: var(--burgundy); }
.dash-switch input:checked + span::before { transform: translateX(20px); }
@media (max-width: 720px) {
  .dash-grid { grid-template-columns: 1fr; }
  .dash-head { grid-template-columns: 1fr; align-items: start; }
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-section { background: var(--ivory); padding: clamp(2rem, 4vw, 4rem) 0 clamp(4rem, 7vw, 6rem); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: start;
}
.checkout-form { display: flex; flex-direction: column; gap: clamp(2rem, 3vw, 3rem); }
.checkout-block { padding: clamp(1.75rem, 3vw, 2.5rem); background: var(--ivory-warm); border: 1px solid var(--line-soft); }
.checkout-block h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--burgundy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}
.checkout-block .step {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 0.9rem; color: var(--rose-deep);
  display: block; margin-bottom: 0.4rem;
}
.checkout-block .help {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.checkout-fields .form-field.full { grid-column: 1 / -1; }
.checkout-cards { display: flex; gap: 0.5rem; align-items: center; margin-top: 0.85rem; }
.checkout-cards .card-chip {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 720px) { .checkout-fields { grid-template-columns: 1fr; } }

/* Order summary */
.order-summary {
  position: sticky;
  top: 90px;
  background: var(--ivory-warm);
  border: 1px solid var(--line-soft);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.order-summary .step { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 0.9rem; color: var(--rose-deep); display: block; }
.order-summary h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.4rem; color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.summary-items { display: flex; flex-direction: column; gap: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line-soft); }
.summary-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.85rem; align-items: center; }
.summary-item-img {
  width: 64px; height: 80px;
  background: var(--cream);
  overflow: hidden;
}
.summary-item-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-item-info h4 { font-family: var(--serif); font-weight: 400; font-size: 0.95rem; color: var(--burgundy); margin: 0 0 0.25rem; }
.summary-item-info .meta { font-size: 0.78rem; color: var(--mute); letter-spacing: 0.02em; }
.summary-item-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  color: var(--burgundy);
}
.summary-line { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--ink-soft); }
.summary-line.total {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--burgundy);
  font-weight: 400;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}
.summary-pay-btn {
  width: 100%;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  margin-top: 0.5rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s var(--ease);
}
.summary-pay-btn:hover { background: var(--ink); }
.summary-secure {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
  margin-top: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.summary-secure svg { width: 12px; height: 12px; stroke: var(--mute); fill: none; stroke-width: 1.5; }

.summary-empty {
  text-align: center;
  padding: 2rem 1rem;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  color: var(--ink-soft);
}

@media (max-width: 960px) { .checkout-grid { grid-template-columns: 1fr; } .order-summary { position: static; } }

/* Delivery picker */
.delivery-options { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.5rem; }
.delivery-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.3s var(--ease);
  position: relative;
}
.delivery-option:hover { border-color: var(--burgundy); }
.delivery-option.active { border-color: var(--burgundy); background: var(--cream); }
.delivery-option input { appearance: none; -webkit-appearance: none; margin: 0; width: 16px; height: 16px; border: 1px solid var(--burgundy); border-radius: 50%; position: relative; }
.delivery-option.active input::after { content: ''; position: absolute; inset: 3px; background: var(--burgundy); border-radius: 50%; }
.delivery-option .delivery-info strong { display: block; font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.delivery-option .delivery-info small { display: block; font-size: 0.78rem; color: var(--mute); margin-top: 0.15rem; }
.delivery-option .delivery-price { font-family: var(--serif); color: var(--burgundy); font-weight: 400; font-size: 1.05rem; }

/* ============================================
   MERCI / CONFIRMATION PAGE
   ============================================ */
.merci-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 200, 192, 0.3), transparent 60%),
    var(--ivory);
  padding: clamp(5rem, 8vw, 8rem) 0;
  text-align: center;
}
.merci-inner { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.merci-check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.merci-section h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.merci-section h1 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.merci-section .credo {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.merci-summary {
  background: var(--ivory-warm);
  border: 1px solid var(--line-soft);
  padding: clamp(2rem, 3vw, 2.5rem);
  text-align: left;
  margin: 2.5rem 0;
}
.merci-summary .step { display: block; font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--rose-deep); margin-bottom: 0.4rem; font-size: 0.9rem; }
.merci-summary .order-num { font-family: var(--serif); color: var(--burgundy); font-size: 1.5rem; margin-bottom: 1.5rem; }
.merci-summary p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.5rem; }
.merci-summary p strong { color: var(--burgundy); font-weight: 500; }
.merci-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================
   GLOBAL MOBILE FIXES
   Tested at 320px, 375px, 414px, 540px
   ============================================ */

/* Prevent horizontal overflow site-wide */
html, body { max-width: 100%; overflow-x: hidden; }
* { max-width: 100%; }

/* Tablet & below: tighten announce bar */
@media (max-width: 760px) {
  .announce {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 0.55rem 0.75rem;
    line-height: 1.5;
  }
  .announce span { flex-wrap: wrap; justify-content: center; gap: 0.25rem 0.5rem; }
  .announce .dot { margin: 0 0.35rem; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .announce {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.5rem;
  }
  .announce .dot { display: none; }
  .announce span { gap: 0.15rem 0.85rem; }

  /* Nav : hide "Compte" text — keep just icon? For now keep label but compact */
  .nav-inner { padding: 1rem 0.85rem; gap: 0.4rem; }
  .logo-wordmark { font-size: 1.3rem !important; }
  .nav-right { gap: 0.85rem; }
  .nav-right .nav-link[href="mon-compte.html"] { font-size: 0.65rem; letter-spacing: 0.1em; }
  .cart-trigger { font-size: 0.65rem; letter-spacing: 0.1em; gap: 0.35rem; }
  .cart-count { width: 1.2rem; height: 1.2rem; font-size: 0.62rem; }

  /* Breadcrumb */
  .crumb { font-size: 0.62rem; letter-spacing: 0.1em; padding: 0.85rem var(--gutter); }
  .crumb .sep { margin: 0 0.3rem; }
}

/* Tiny mobile (≤ 380px) */
@media (max-width: 380px) {
  /* Hide "Compte" text on very small screens, keep panier only */
  .nav-right .nav-link[href="mon-compte.html"] { display: none; }
  .home-hero-text h1 { font-size: 2.5rem !important; }
}

/* ============================================
   CHECKOUT mobile fixes
   ============================================ */
@media (max-width: 720px) {
  .checkout-fields { grid-template-columns: 1fr; gap: 1rem; }
  .checkout-block { padding: 1.5rem 1.25rem; }
  .order-summary { padding: 1.5rem 1.25rem; }
  .summary-item { grid-template-columns: 56px 1fr auto; gap: 0.65rem; }
  .summary-item-img { width: 56px; height: 70px; }
  .checkout-form { gap: 1.5rem; }
  .checkout-section { padding: 1.5rem 0 3rem; }
}

/* ============================================
   PRODUCT PAGE mobile fixes
   ============================================ */
@media (max-width: 720px) {
  .ph-info h1 { font-size: 2rem; }
  .ph-bullets li svg { width: 18px; height: 18px; }
  .ph-bullets li span { font-size: 0.92rem; }
  .variant { padding: 0.95rem 1rem; gap: 0.75rem; }
  .variant-title { font-size: 0.88rem; }
  .variant-meta { font-size: 0.72rem; }
  .variant-price { font-size: 1rem; }
  .variant-badge { font-size: 0.55rem; padding: 0.2rem 0.4rem; }
  .ph-trust > div { font-size: 0.7rem; gap: 0.4rem; }
  .ph-rating-row { flex-wrap: wrap; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .ph-add-row .btn-primary { padding: 1.1rem 1rem; font-size: 0.72rem; letter-spacing: 0.1em; }
  .ph-trust { grid-template-columns: 1fr; gap: 1rem; padding-top: 1.5rem; }
  .ph-trust > div { flex-direction: row; justify-content: center; gap: 0.5rem; }
  .ph-trust svg { width: 18px; height: 18px; }
}

/* ============================================
   CART DRAWER mobile fixes
   ============================================ */
@media (max-width: 480px) {
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 0.6rem; }
  .cart-item-img { width: 64px; height: 80px; }
  .cart-item-info h4 { font-size: 0.92rem; }
  .cart-item-info .variant-text { font-size: 0.72rem; }
  .cart-item-price { font-size: 1rem; }
  .cart-item-remove { font-size: 0.62rem; }
  .qty-control { transform: scale(0.92); transform-origin: left; }
  .cart-items { padding: 1rem 1.25rem; }
  .cart-footer { padding: 1.25rem; }
}

/* ============================================
   HERO HOME mobile fixes
   ============================================ */
@media (max-width: 720px) {
  .home-hero-text h1 { font-size: clamp(2.25rem, 9vw, 3.25rem); }
  .home-hero-text .lead { font-size: 1rem; }
  .home-hero-cta { gap: 0.85rem; }
  .home-hero-cta .btn { padding: 0.95rem 1.5rem; font-size: 0.72rem; }
  .home-hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .home-hero-stats .stat:last-child { grid-column: span 2; }
  .stat-num { font-size: 1.5rem; }
}

/* ============================================
   CATALOG mobile fixes
   ============================================ */
@media (max-width: 480px) {
  .catalog-filters { padding: 1.5rem 0.85rem; gap: 0.4rem; }
  .catalog-filter { padding: 0.5rem 1rem; font-size: 0.62rem; letter-spacing: 0.1em; }
  .product-card { padding: 1.5rem 1.25rem; gap: 1.15rem; }
  .product-card h3 { font-size: 1.2rem; }
  .pc-tagline { font-size: 0.88rem; }
  .pc-price { font-size: 1.05rem; }
}

/* ============================================
   ACCOUNT page mobile fixes
   ============================================ */
@media (max-width: 720px) {
  .account-card { padding: 1.75rem 1.25rem; }
  .form-field input { padding: 0.85rem 0.9rem; font-size: 0.92rem; }
  .form-actions .btn { padding: 1rem 1.25rem; }
  .dash-card { padding: 1.5rem 1.25rem; }
}

/* ============================================
   ARTICLE / JOURNAL mobile fixes
   ============================================ */
@media (max-width: 720px) {
  .article-hero h1 { font-size: 1.85rem; }
  .article-body p { font-size: 1rem; }
  .article-body p.lead-paragraph { font-size: 1.1rem; }
  .article-body h2 { font-size: 1.4rem; margin-top: 2.5rem; }
  .article-body blockquote { font-size: 1.1rem; padding-left: 1rem; margin: 2rem 0; }
  .article-meta-row { flex-wrap: wrap; gap: 0.4rem; font-size: 0.62rem; }
}

/* ============================================
   FAQ / REVIEWS mobile fixes
   ============================================ */
@media (max-width: 720px) {
  .faq-question { gap: 1rem; }
  .faq-question h3 { font-size: 1rem; }
  .faq-toggle { width: 28px; height: 28px; }
  .faq-answer-inner { padding-right: 1rem; font-size: 0.9rem; }
  .rating-summary { padding: 1.5rem 1.25rem; }
  .rating-big .num { font-size: 3rem; }
  .review-card { padding: 1.5rem 1.25rem; }
  .review-card blockquote { font-size: 0.95rem; }
}

/* ============================================
   FOOTER mobile fixes
   ============================================ */
@media (max-width: 480px) {
  footer { padding: 3rem 0 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; font-size: 0.7rem; }
  .pay-icons { flex-wrap: wrap; gap: 0.4rem; }
  .pay-icon { font-size: 0.6rem; padding: 0.3rem 0.55rem; }
}

/* ============================================
   STICKY CTA + mobile drawer tweaks
   ============================================ */
@media (max-width: 480px) {
  .sticky-cta { padding: 0.7rem 1rem; gap: 0.6rem; }
  .sticky-cta-name { font-size: 0.9rem; }
  .sticky-cta-price { font-size: 0.62rem; letter-spacing: 0.08em; }
  .sticky-cta button { padding: 0.6rem 1rem; font-size: 0.65rem; letter-spacing: 0.1em; }
  .mobile-nav-link { padding: 0.95rem 1.5rem; font-size: 1.25rem; }
  .mobile-nav { padding-top: 1rem; }
}

/* ============================================
   JOURNAL ARTICLE PAGE
   ============================================ */
.article-hero {
  background: var(--ivory);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
}
.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}
.article-meta-row .sep { color: var(--mute); opacity: 0.5; }
.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.article-hero h1 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.article-hero .author {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink-soft);
}
.article-hero .author strong { font-weight: 400; color: var(--burgundy); font-style: normal; font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.02em; }
.article-cover {
  max-width: 1100px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.article-body p, .article-body h2, .article-body h3, .article-body blockquote, .article-body ul {
  margin-bottom: 1.5rem;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}
.article-body p.lead-paragraph {
  font-size: 1.3rem;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.45;
  margin-bottom: 2rem;
}
.article-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--burgundy);
}
.article-body h2 em { font-style: italic; color: var(--rose-deep); font-weight: 300; }
.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  font-family: var(--serif);
  color: var(--burgundy);
}
.article-body blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--burgundy);
  line-height: 1.4;
  border-left: 3px solid var(--rose-deep);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.article-body ul li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
  padding-left: 1.5rem;
  position: relative;
}
.article-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose-deep);
}

/* ============================================
   PRODUCT VARIANTS (other cures color overrides)
   ============================================ */
.product-hero.theme-serenite .ph-main { background: var(--c-serenite); }
.product-hero.theme-vitalite .ph-main { background: var(--c-vitalite); }
.product-hero.theme-eclat    .ph-main { background: var(--c-eclat); }
.product-hero.theme-sommeil  .ph-main { background: var(--c-sommeil); }
.product-hero.theme-detox    .ph-main { background: var(--c-detox); }
