/* ═══════════════════════════════════════════════════════
   LUMIÈRE — Style Principal
   ═══════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FBF8F5;
  --cream-dark: #F3EDE6;
  --rose:       #E8C5B0;
  --rose-mid:   #C4856A;
  --rose-deep:  #A0624A;
  --gold:       #C9A96E;
  --sage:       #7AAD78;
  --sky:        #6A9CB8;
  --lavender:   #9B82C9;
  --charcoal:   #1C1C1C;
  --gray-dark:  #4A4A4A;
  --gray-mid:   #8A8A8A;
  --gray-light: #D4D4D4;
  --white:      #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(28, 28, 28, 0.06);
  --shadow-md:  0 8px 32px rgba(28, 28, 28, 0.10);
  --shadow-lg:  0 20px 60px rgba(28, 28, 28, 0.14);

  --trans:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }


/* ═══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */
.announce-bar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.announce-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}
.announce-track .sep { color: var(--rose); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}


/* ═══════════════════════════════════════════════════════
   HEADER — Double barre (Utilitaire + Navigation)
   ═══════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(28,28,28,0.08);
}

/* ── Barre utilitaire (haut) ── */
.nav-top {
  background: var(--cream);
  border-bottom: 1px solid rgba(196, 133, 106, 0.15);
}
.nav-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nt-left, .nt-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--gray-dark);
}
.nt-right { justify-content: flex-end; }
.nt-left a, .nt-right a, .nt-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gray-dark);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: color var(--trans);
  white-space: nowrap;
}
.nt-left a:hover, .nt-right a:hover, .nt-cart-btn:hover { color: var(--rose-mid); }
.nt-newsletter { color: var(--rose-mid) !important; font-weight: 500; }
.nt-sep { color: var(--gray-light); font-size: 0.7rem; }
.nt-cart-btn { font-family: var(--font-sans); }

/* Logo central dans la barre utilitaire */
.nav-top-logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.nav-top-logo a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1;
  transition: color var(--trans);
}
.nav-top-logo a:hover { color: var(--rose-mid); }
.ntl-sub {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-mid);
  font-family: var(--font-sans);
  font-weight: 400;
}

/* ── Barre navigation catégories (bas) ── */
.nav-bottom {
  background: var(--charcoal);
  border-bottom: none;
}
.nav-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  flex-shrink: 0;
}
.nav-menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: var(--trans);
  transform-origin: center;
}
.nav-menu-btn.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-cats {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-cat-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1.1rem;
  height: 46px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: color var(--trans), background var(--trans);
  position: relative;
}
.nav-cat-link:hover, .nav-cat-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-cat-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 2px;
  background: var(--rose);
  border-radius: 2px 2px 0 0;
}
.nav-cat-promo { color: var(--rose) !important; }
.nav-cat-promo:hover { color: var(--rose-mid) !important; }

/* Dropdown */
.has-drop { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-top: 2px solid var(--rose-mid);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.has-drop:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-dark);
  letter-spacing: 0.03em;
  transition: color var(--trans), padding-left var(--trans);
}
.nav-dropdown a:hover {
  color: var(--rose-mid);
  padding-left: 1.75rem;
}

/* Bouton recherche */
.nav-search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-search-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* ── Mobile menu ── */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { max-height: 100vh; }

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.mm-header button { color: var(--gray-dark); padding: 0.25rem; }

.mobile-menu ul { padding: 0.5rem 0; }
.mobile-menu li a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--trans), padding-left var(--trans);
}
.mobile-menu li a:hover { color: var(--rose-mid); padding-left: 2rem; }
.mm-promo { color: var(--rose-mid) !important; font-weight: 500; }

.mm-footer {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}
.mm-footer a {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
  transition: color var(--trans);
}
.mm-footer a:hover { color: var(--rose-mid); }


/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.btn-primary:hover {
  background: var(--rose-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 133, 106, 0.3);
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
}
.btn-light:hover {
  background: var(--cream);
  color: var(--rose-mid);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }


/* ═══════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════ */
#hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  user-select: none;
}

.hs-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* ── Slide ── */
.hs-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: clamp(480px, 68vh, 720px);
  position: relative;
  overflow: hidden;
}

/* ── Côté visuel (gauche) ── */
.hs-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsv-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sg1) 0%, var(--sg2) 60%, var(--sg3) 100%);
}
.hsv-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}
.hsv-c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hsv-c2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--sg3) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  opacity: 0.3;
}

/* Produit dans le slider */
.hsv-product {
  position: relative;
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(28,28,28,0.18));
}

/* Sérum hero */
.hsp-serum {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
}
.hsp-dropper {
  width: 16px; height: 30px;
  background: var(--sg3);
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  margin-bottom: 2px;
  opacity: 0.9;
}
.hsp-neck {
  width: 32px; height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(255,255,255,0.7);
}
.hsp-body {
  width: 100%; height: 170px;
  background: linear-gradient(160deg, rgba(255,255,255,0.88), rgba(255,255,255,0.55));
  border-radius: 6px 6px 18px 18px;
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem;
}

/* Pot hero */
.hsp-jar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}
.hspj-lid {
  width: 100%; height: 28px;
  background: linear-gradient(135deg, var(--sg1), var(--sg2));
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
  border: 1px solid rgba(255,255,255,0.7);
}
.hspj-body {
  width: 100%; height: 110px;
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  border-radius: 4px 4px 18px 18px;
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem;
}

/* Label produit générique */
.hsp-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.hsp-label small {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-dark);
  opacity: 0.75;
}
.hsp-label span {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
}

/* Badge tournant */
.hsv-tag {
  position: absolute;
  bottom: 2rem; right: 2rem;
  width: 92px; height: 92px;
  animation: rotateBadge 20s linear infinite;
  z-index: 3;
}
.hsv-badge-ring { width: 100%; height: 100%; }
.hsv-tag > span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--rose-mid);
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }

/* ── Côté texte (droite) ── */
.hs-content {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem 4rem 4rem;
  position: relative;
}
.hs-content::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196,133,106,0.2), transparent);
}

.hs-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.hs-badge-green { background: var(--sage); }
.hs-badge-gold  { background: var(--gold); color: var(--charcoal); }

.hs-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.hs-title em {
  font-style: italic;
  color: var(--rose-mid);
  font-weight: 300;
}

.hs-tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--rose-mid);
  margin-bottom: 1rem;
}

.hs-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 380px;
}

.hs-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hs-link {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 2px;
  transition: color var(--trans), border-color var(--trans);
}
.hs-link:hover { color: var(--rose-mid); border-color: var(--rose-mid); }

/* ── Flèches ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transition: var(--trans);
}
.hs-arrow:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}
.hs-arrow svg { width: 20px; height: 20px; }
.hs-prev { left: 1.5rem; }
.hs-next { right: 1.5rem; }

/* ── Dots ── */
.hs-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 3rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.hs-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(28,28,28,0.2);
  transition: var(--trans);
}
.hs-dot.active {
  background: var(--rose-mid);
  width: 22px;
  border-radius: 4px;
}

/* ── Barre de progression ── */
.hs-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(196,133,106,0.15);
  z-index: 10;
}
.hs-progress-bar {
  height: 100%;
  background: var(--rose-mid);
  width: 0%;
  transition: width linear;
}

/* Animation slide-in contenu */
.hs-slide .hs-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hs-slide.active .hs-content > * { opacity: 1; transform: translateY(0); }
.hs-slide.active .hs-badge     { transition-delay: 0.15s; }
.hs-slide.active .hs-title     { transition-delay: 0.25s; }
.hs-slide.active .hs-tagline   { transition-delay: 0.35s; }
.hs-slide.active .hs-desc      { transition-delay: 0.42s; }
.hs-slide.active .hs-actions   { transition-delay: 0.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-16px) rotate(1.5deg); }
}


/* ═══════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header.light .section-title,
.section-header.light .section-eyebrow,
.section-header.light .section-sub { color: var(--white); }
.section-header.light .section-eyebrow { background: rgba(255,255,255,0.15); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-mid);
  background: rgba(196, 133, 106, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════════════════ */
.pillars {
  background: var(--white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.pillar {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--trans);
}
.pillar:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 100%; height: 100%; }

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════ */
.section-collection {
  padding: 6rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Product visual area */
.product-visual {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pv-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.4) 0%, transparent 60%);
}
.pv-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.new-tag  { background: var(--sage); }
.promo-tag { background: var(--rose-mid); }

/* — Serum bottle shape — */
.bottle-serum {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  filter: drop-shadow(0 12px 28px rgba(28,28,28,0.12));
}
.ps-neck {
  width: 24px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.5));
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,0.6);
}
.ps-body {
  width: 100%; flex: 1;
  min-height: 120px;
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
  border-radius: 6px 6px 14px 14px;
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 0.5rem;
}
.ps-dropper {
  width: 12px; height: 24px;
  background: var(--c3);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin-top: 4px;
  opacity: 0.9;
}

/* — Jar shape — */
.bottle-jar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  filter: drop-shadow(0 12px 28px rgba(28,28,28,0.12));
}
.pj-lid {
  width: 100%; height: 22px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
  border: 1px solid rgba(255,255,255,0.6);
}
.pj-body {
  width: 100%; height: 90px;
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  border-radius: 4px 4px 14px 14px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem;
}

/* — Tube shape — */
.bottle-tube {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  filter: drop-shadow(0 12px 28px rgba(28,28,28,0.12));
}
.pt-cap {
  width: 100%; height: 28px;
  background: var(--c3, #9B82C9);
  border-radius: 6px 6px 0 0;
}
.pt-body {
  width: 100%; height: 130px;
  background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem;
}
.pt-end {
  width: 80%; height: 12px;
  background: var(--c3, #9B82C9);
  border-radius: 0 0 6px 6px;
}

/* — Spray bottle — */
.bottle-spray {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 72px;
  filter: drop-shadow(0 12px 28px rgba(28,28,28,0.12));
}
.bsp-head {
  position: relative;
  width: 100%;
  height: 28px;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.bsp-nozzle {
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.8);
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(255,255,255,0.5);
}
.bsp-body {
  width: 90%; height: 140px;
  background: linear-gradient(160deg, rgba(255,255,255,0.88), rgba(255,255,255,0.55));
  border-radius: 14px 6px 14px 14px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem;
}

/* Product info */
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.pi-cat {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-mid);
}
.pi-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}
.pi-stars {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem;
}
.stars { color: #F0B429; letter-spacing: 1px; }
.reviews { color: var(--gray-mid); font-size: 0.75rem; }

.pi-desc {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.7;
  flex: 1;
}

.pi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.pi-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}
.btn-add {
  width: 38px; height: 38px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  font-weight: 300;
  line-height: 1;
}
.btn-add:hover {
  background: var(--rose-mid);
  transform: scale(1.1) rotate(90deg);
}


/* ═══════════════════════════════════════════════════════
   BANNER CTA
   ═══════════════════════════════════════════════════════ */
.banner-cta {
  background: var(--charcoal);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,133,106,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.banner-content { position: relative; z-index: 1; }
.banner-content > span {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.banner-content p {
  color: var(--gray-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.banner-content strong { color: var(--gold); letter-spacing: 0.1em; }


/* ═══════════════════════════════════════════════════════
   ROUTINE
   ═══════════════════════════════════════════════════════ */
.section-routine {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.routine-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.routine-step {
  flex: 1;
  padding: 2rem 2rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--trans);
}
.routine-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.rs-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.rs-visual {
  width: 56px; height: 56px;
  background: var(--rc, var(--rose));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.rs-icon { width: 28px; height: 28px; color: var(--gray-dark); }
.rs-icon svg { width: 100%; height: 100%; }

.rs-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.rs-content p {
  font-size: 0.84rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.rs-product {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--rose-mid);
  font-style: italic;
}

.routine-connector {
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), transparent);
  align-self: center;
  flex-shrink: 0;
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════════
   INGREDIENTS
   ═══════════════════════════════════════════════════════ */
.section-ingredients {
  background: var(--charcoal);
  padding: 6rem 2rem;
}
.section-ingredients .section-header { margin-bottom: 4rem; }

.ingredients-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ingredient-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--trans);
}
.ingredient-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(196,133,106,0.3);
}

.ing-visual {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ic1), var(--ic2));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}
.ing-shape {
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
}
.ing-letter {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}

.ing-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.ing-source {
  font-size: 0.72rem;
  color: var(--rose);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.ing-info > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.ing-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ing-benefits li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding-left: 1rem;
  position: relative;
}
.ing-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.65rem;
}


/* ═══════════════════════════════════════════════════════
   STORY
   ═══════════════════════════════════════════════════════ */
.section-story {
  padding: 6rem 2rem;
  background: var(--cream);
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-frame {
  position: relative;
  height: 520px;
}
.sf-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #F5E6DF 0%, #E8C5B0 60%, #C4856A 100%);
  opacity: 0.3;
}

.sf-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.sf-card-1 {
  width: 220px;
  top: 15%; left: 5%;
  padding: 1.5rem;
  animation: floatCard 7s ease-in-out infinite;
}
.sfc-gradient {
  height: 60px;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.sf-card-1 p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.sf-card-1 small { font-size: 0.7rem; color: var(--gray-mid); }

.sf-card-2 {
  bottom: 25%; right: 5%;
  padding: 1.25rem 1.75rem;
  animation: floatCard 8s ease-in-out infinite;
  animation-delay: -2s;
}
.sf-card-3 {
  bottom: 8%; left: 15%;
  padding: 1.25rem 1.75rem;
  animation: floatCard 9s ease-in-out infinite;
  animation-delay: -5s;
}
.sfc-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
}
.sfc-stat span { font-size: 0.72rem; color: var(--gray-mid); letter-spacing: 0.05em; }

/* Story text */
.story-text .section-eyebrow { margin-bottom: 1.25rem; }
.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.story-text h2 em { color: var(--rose-mid); font-weight: 300; }
.story-text p {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
}
.sv-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.sv-item svg { width: 18px; height: 18px; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.section-testimonials {
  padding: 6rem 2rem;
  background: var(--white);
}

.testimonials-track-wrap { overflow: hidden; max-width: 1200px; margin: 0 auto; }
.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  min-width: calc(33.333% - 1.34rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.tc-stars { color: #F0B429; letter-spacing: 3px; font-size: 0.9rem; }
.tc-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}
.tc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.88rem; color: var(--charcoal); font-weight: 600; }
.tc-author span { font-size: 0.72rem; color: var(--gray-mid); }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.tn-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rose);
  color: var(--rose-mid);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.tn-btn:hover {
  background: var(--rose-mid);
  color: var(--white);
  border-color: var(--rose-mid);
}
.tn-dots { display: flex; gap: 0.5rem; }
.tn-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: var(--trans);
  cursor: pointer;
}
.tn-dot.active {
  background: var(--rose-mid);
  width: 20px;
  border-radius: 3px;
}


/* ═══════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════ */
.section-newsletter {
  background: linear-gradient(135deg, #F5E6DF 0%, #EDE0D5 50%, #E8D5C8 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nl-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(196, 133, 106, 0.08);
}
.nl-deco-1 { width: 400px; height: 400px; top: -200px; left: -100px; }
.nl-deco-2 { width: 300px; height: 300px; bottom: -150px; right: -50px; }

.nl-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}
.nl-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.nl-inner p {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.nl-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto 1rem;
}
.nl-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(196,133,106,0.3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--trans);
}
.nl-form input::placeholder { color: var(--gray-mid); }
.nl-form input:focus { border-color: var(--rose-mid); background: var(--white); }
.nl-form button {
  padding: 0.9rem 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--trans);
  white-space: nowrap;
}
.nl-form button:hover { background: var(--rose-mid); }
.nl-legal { font-size: 0.7rem; color: var(--gray-mid); line-height: 1.5; }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: #141414;
  color: rgba(255,255,255,0.6);
  padding: 5rem 2rem 2.5rem;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 6rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--trans);
}
.footer-social a:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.fl-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.fl-col li { margin-bottom: 0.65rem; }
.fl-col a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}
.fl-col a:hover { color: var(--rose); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--rose); }
.footer-payments {
  display: flex;
  gap: 0.5rem;
}
.pay-badge {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.3);
}


/* ═══════════════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(28,28,28,0.4);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--white);
  z-index: 995;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
}
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-dark);
  transition: var(--trans);
}
.cart-close:hover { background: var(--cream-dark); color: var(--charcoal); }
.cart-close svg { width: 18px; height: 18px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  padding: 2rem;
  text-align: center;
}
.cart-empty svg { width: 56px; height: 56px; }
.cart-empty p {
  font-size: 0.92rem;
  color: var(--gray-mid);
  margin-bottom: 0.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: center;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { transform: translateX(20px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.ci-swatch {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.6rem;
  font-style: italic;
  color: var(--gray-dark);
  text-align: center;
  line-height: 1.3;
  padding: 0.4rem;
}
.ci-info { display: flex; flex-direction: column; gap: 0.3rem; }
.ci-name { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }
.ci-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ci-qty-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream-dark);
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  line-height: 1;
}
.ci-qty-btn:hover { background: var(--rose); }
.ci-qty { font-size: 0.85rem; font-weight: 500; min-width: 1rem; text-align: center; }
.ci-price { font-family: var(--font-serif); font-size: 0.95rem; color: var(--charcoal); font-weight: 600; }
.ci-remove {
  align-self: start;
  color: var(--gray-mid);
  font-size: 1rem;
  line-height: 1;
  padding: 0.2rem;
  transition: color var(--trans);
}
.ci-remove:hover { color: #E53E3E; }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}
#cartSubtotal {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.cart-shipping-note {
  font-size: 0.75rem;
  color: var(--sage);
  text-align: center;
}


/* ═══════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ═══════════════════════════════════════════════════════
   ANIMATIONS ON SCROLL
   ═══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
.fade-up:nth-child(7) { transition-delay: 0.6s; }
.fade-up:nth-child(8) { transition-delay: 0.7s; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ─── Touch : supprime le flash bleu au tap ─── */
* { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }

/* ─── Sticky CTA mobile (caché par défaut) ─── */
.mobile-sticky-cta {
  display: none;
}

/* ══ TABLET LARGE ══════════════════════════════ */
@media (max-width: 1200px) {
  #hero               { padding: 5rem 4rem; gap: 3rem; }
  .products-grid      { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ══ TABLET ════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Slider */
  .hs-slide               { grid-template-columns: 1fr 1fr; min-height: 420px; }
  .hs-content             { padding: 3rem 2.5rem; }
  .hs-title               { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  .hsv-tag                { width: 72px; height: 72px; bottom: 1rem; right: 1rem; }

  /* Sections */
  .story-inner            { grid-template-columns: 1fr; gap: 3rem; }
  .story-frame            { height: 320px; }
  .routine-steps          { flex-direction: column; gap: 1rem; }
  .routine-connector      { display: none; }
  .ingredients-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ══ MOBILE LARGE ══════════════════════════════ */
@media (max-width: 900px) {

  /* Nav top */
  .nt-left                { display: none; }
  .nav-top-inner          { grid-template-columns: 1fr auto; gap: 1rem; padding: 0 1.25rem; }
  .nt-right               { gap: 0.5rem; }
  .nt-newsletter          { display: none; }
  .nt-sep                 { display: none; }
  .nav-top-logo a         { font-size: 1.55rem; }
  .ntl-sub                { display: none; }

  /* Nav bottom */
  .nav-cats               { display: none; }
  .nav-menu-btn           { display: flex; }
  .nav-bottom-inner       { justify-content: space-between; padding: 0 1.25rem; }
  .nav-search-btn span    { display: none; }
  .nav-search-btn         { padding: 0.45rem 0.65rem; border-radius: 50%; }

  /* Sections padding */
  .pillars                { padding: 3.5rem 1.25rem; }
  .section-collection     { padding: 4rem 1.25rem; }
  .section-routine        { padding: 4rem 1.25rem; }
  .section-ingredients    { padding: 4rem 1.25rem; }
  .section-story          { padding: 4rem 1.25rem; }
  .section-testimonials   { padding: 4rem 1.25rem; }
  .section-newsletter     { padding: 4rem 1.25rem; }
  .banner-cta             { padding: 3.5rem 1.25rem; }
  .site-footer            { padding: 4rem 1.25rem 2rem; }

  /* Grids */
  .products-grid          { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pillars-grid           { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .ingredients-grid       { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top             { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links           { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom          { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-payments        { justify-content: center; }
  .footer-legal           { justify-content: center; flex-wrap: wrap; }

  /* Panier pleine largeur */
  .cart-drawer            { width: 100vw; }
}

/* ══ MOBILE ════════════════════════════════════ */
@media (max-width: 600px) {

  /* Announce bar */
  .announce-bar           { font-size: 0.65rem; padding: 8px 0; }

  /* Nav */
  .nav-top                { display: none; }
  .nav-top-logo a         { font-size: 1.3rem; }
  .nav-bottom-inner       { padding: 0 1rem; height: 52px; }

  /* Hero slider mobile : visuel en haut, texte en bas */
  .hs-slide               { grid-template-columns: 1fr; grid-template-rows: 52vw 1fr; min-height: auto; }
  .hs-visual              { order: 1; min-height: 52vw; }
  .hs-content             { order: 2; padding: 2rem 1.5rem 3.5rem; }
  .hs-content::before     { display: none; }
  .hs-title               { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hs-tagline             { font-size: 0.95rem; }
  .hs-desc                { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .hs-arrow               { width: 40px; height: 40px; top: 26vw; }
  .hs-arrow svg           { width: 16px; height: 16px; }
  .hs-dots                { bottom: auto; top: calc(52vw - 2rem); right: 50%; transform: translateX(50%); }
  .hsv-tag                { display: none; }

  /* Piliers : 2 colonnes même sur mobile */
  .pillars-grid           { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pillar                 { padding: 1.25rem 0.75rem; }
  .pillar h3              { font-size: 1rem; }
  .pillar p               { font-size: 0.78rem; }
  .pillar-icon            { width: 42px; height: 42px; margin-bottom: 0.9rem; }

  /* Produits : 2 colonnes compactes */
  .products-grid          { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-info           { padding: 1rem; gap: 0.35rem; }
  .pi-name                { font-size: 0.95rem; }
  .pi-desc                { display: none; }
  .pi-price               { font-size: 1.1rem; }
  .btn-add                { width: 34px; height: 34px; font-size: 1.2rem; }
  .pv-tag                 { font-size: 0.55rem; padding: 0.2rem 0.5rem; top: 0.6rem; left: 0.6rem; }

  /* Routine */
  .routine-step           { padding: 1.5rem; }
  .rs-number              { font-size: 2.2rem; }

  /* Banner */
  .banner-content h2      { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* Ingrédients */
  .ingredient-card        { padding: 1.75rem; }

  /* Story */
  .story-frame            { height: 260px; }
  .sf-card-1              { width: 180px; }
  .story-text h2          { font-size: 1.9rem; }

  /* Témoignages */
  .testi-card             {
    min-width: 100%;
    padding: 1.75rem;
  }
  .tc-text                { font-size: 0.95rem; }

  /* Newsletter */
  .nl-inner h2            { font-size: 1.7rem; }
  .nl-form                { flex-direction: column; }
  .nl-form input,
  .nl-form button         { width: 100%; }

  /* Footer */
  .footer-links           { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-logo            { font-size: 1.35rem; }
  .pay-badge              { font-size: 0.58rem; padding: 0.2rem 0.5rem; }

  /* Toast en bas */
  .toast                  { width: calc(100% - 2rem); text-align: center; font-size: 0.8rem; }

  /* Sticky CTA mobile */
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
    background: rgba(251, 248, 245, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--cream-dark);
    gap: 0.75rem;
    box-shadow: 0 -4px 24px rgba(28,28,28,0.08);
  }
  .mobile-sticky-cta .btn-primary {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-size: 0.78rem;
  }
  .mobile-sticky-cta .cart-quick-btn {
    width: 48px; height: 48px;
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--charcoal);
    flex-shrink: 0;
    position: relative;
  }
  .mobile-sticky-cta .cart-quick-btn svg { width: 20px; height: 20px; }
  .mobile-sticky-cta .cart-quick-badge {
    position: absolute;
    top: 6px; right: 6px;
    width: 16px; height: 16px;
    background: var(--rose-mid);
    color: white;
    font-size: 0.58rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  /* Espace en bas pour le sticky CTA */
  .site-footer            { padding-bottom: calc(2rem + 80px); }
}

/* ══ TRÈS PETIT MOBILE ═════════════════════════ */
@media (max-width: 360px) {
  .products-grid          { grid-template-columns: 1fr; }
  .pillars-grid           { grid-template-columns: 1fr; }
  .hero-title             { font-size: 2rem; }
}
