/* ============================================================
   SAHRA BOTANICAL — Stylesheet V11
   Nature · Ritual · Balance
   ============================================================ */

/* ============================================================
   SAHRA BOTANICAL — V11 Premium Landing Page
   Inspiration : Aesop · Rituals · Herbivore Botanicals
   ============================================================ */

:root {
  --cream:      #F8F4EE;
  --cream-deep: #EDE5D8;
  --sand:       #D9CBBA;
  --hibiscus:   #7C2230;
  --hibiscus-2: #9E3040;
  --moringa:    #5A7252;
  --earth:      #6B4F38;
  --ink:        #1A1714;
  --muted:      #7A6E65;
  --line:       rgba(26,23,20,.1);
  --white:      #fff;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body:    "Jost", system-ui, sans-serif;

  --shadow:    0 16px 48px rgba(26,23,20,.08);
  --shadow-lg: 0 32px 80px rgba(26,23,20,.12);
  --radius:    4px;
  --radius-lg: 8px;
  --transition: 300ms ease;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

/* Grain subtil Aesop-style */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

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

:focus-visible {
  outline: 1px solid var(--hibiscus);
  outline-offset: 4px;
}

/* ── LAYOUT ── */
.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}
.section     { padding: 120px 0; }
.section-sm  { padding: 80px 0; }
.section-xs  { padding: 48px 0; }

/* ── TYPOGRAPHIE ── */
.label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
}

.display {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .92;
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--ink);
}

.headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.subhead {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
}

.body-lg {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
}

.body-sm { font-size: .9rem; color: var(--muted); font-weight: 300; line-height: 1.75; }
.text-muted { color: var(--muted); }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-dark:hover {
  background: var(--hibiscus);
  border-color: var(--hibiscus);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--earth);
  border: 1px solid var(--sand);
  padding: 14px 28px;
}
.btn-ghost:hover {
  border-color: var(--earth);
  color: var(--ink);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* Lien arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--earth);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.link-arrow:hover {
  color: var(--ink);
  border-color: var(--ink);
  gap: 14px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(248,244,238,.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-tagline {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 0;
  transition: border-color var(--transition);
  position: relative;
}
.nav-icon:hover { border-color: var(--line); }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--hibiscus);
  color: var(--white);
  font-size: .6rem;
  font-weight: 500;
  display: none;
  place-items: center;
}

.mobile-toggle { display: none; }
.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--ink); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
  position: relative;
  z-index: 2;
}

.hero-left .label { margin-bottom: 28px; }

.hero-eyebrow {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-style: italic;
  color: var(--earth);
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-meta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-value {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}
.hero-meta-label {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-right::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(248,244,238,.15), transparent 40%);
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 0;
  writing-mode: vertical-rl;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-scroll::before {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--sand);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── BANDE VALEURS ── */
.values-strip {
  background: var(--ink);
  padding: 28px 0;
  overflow: hidden;
}
.values-track {
  display: flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
}
.values-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(248,244,238,.55);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.values-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--hibiscus);
  flex-shrink: 0;
}

/* ── PRODUITS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cream);
  padding: 6px 12px;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--earth);
  border: 1px solid var(--line);
}

.product-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-collection {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--earth);
}

.product-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.product-desc {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
}

.product-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 400;
}

.product-actions { display: flex; gap: 8px; }

.btn-cart {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all var(--transition);
  border-radius: 0;
}
.btn-cart:hover {
  border-color: var(--hibiscus);
  color: var(--hibiscus);
  background: rgba(124,34,48,.04);
}

.btn-voir {
  padding: 10px 18px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all var(--transition);
  border-radius: 0;
  cursor: pointer;
}
.btn-voir:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ── STORYTELLING ── */
.roots-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.roots-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,34,48,.12), transparent 70%);
  pointer-events: none;
}

.roots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.roots-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.roots-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  filter: sepia(.15);
}
.roots-image::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(248,244,238,.12);
  pointer-events: none;
}

.roots-copy .label {
  color: rgba(248,244,238,.45);
}

.roots-copy .headline {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 32px;
}

.roots-copy p {
  color: rgba(248,244,238,.65);
  font-weight: 300;
  line-height: 1.9;
  font-size: .96rem;
  margin-bottom: 20px;
}

.roots-quote {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 2px solid var(--hibiscus);
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(248,244,238,.8);
  line-height: 1.5;
}

/* ── RITUELS ── */
.rituals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.ritual-item {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--transition);
}
.ritual-item:last-child { border-right: none; }
.ritual-item:hover { background: rgba(26,23,20,.02); }

.ritual-number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -.04em;
}

.ritual-moment {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hibiscus);
  margin-bottom: 12px;
  font-weight: 500;
}

.ritual-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}

.ritual-desc {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}

.ritual-chip {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--sand);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--earth);
  border-radius: 0;
}

/* ── COFFRET ── */
.coffret-section {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.coffret-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coffret-image {
  position: relative;
}
.coffret-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.coffret-badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--hibiscus);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--ff-display);
  font-size: .9rem;
  line-height: 1.2;
  font-style: italic;
  box-shadow: var(--shadow);
}

.coffret-includes {
  margin: 32px 0;
  display: grid;
  gap: 14px;
}

.coffret-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.coffret-line:last-child { border-bottom: none; }

.coffret-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-hib { background: var(--hibiscus); }
.dot-mor { background: var(--moringa); }
.dot-bao { background: #B9966B; }
.dot-fon { background: #CBB38A; }

.coffret-price {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ink);
  margin: 24px 0 8px;
  line-height: 1;
}
.coffret-price-note {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .08em;
}

/* ── TÉMOIGNAGES ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star {
  width: 14px; height: 14px;
  fill: var(--hibiscus);
}

.review-text {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  flex-shrink: 0;
}

.review-name { font-size: .88rem; font-weight: 500; color: var(--ink); }
.review-sub  { font-size: .76rem; color: var(--muted); margin-top: 2px; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.newsletter-inner { max-width: 560px; margin: 0 auto; }

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.newsletter-input {
  flex: 1;
  height: 56px;
  padding: 0 20px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: .9rem;
  color: var(--ink);
  outline: none;
  font-family: var(--ff-body);
}
.newsletter-input::placeholder { color: var(--muted); }

.newsletter-btn {
  height: 56px;
  padding: 0 28px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--hibiscus); }

.newsletter-note {
  margin-top: 14px;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(248,244,238,.6);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(248,244,238,.08);
}

.footer-brand .brand-name { color: var(--cream); font-size: 1.2rem; }
.footer-brand .brand-tagline { color: rgba(248,244,238,.35); }

.footer-brand-desc {
  font-size: .86rem;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 240px;
  color: rgba(248,244,238,.45);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(248,244,238,.12);
  display: grid;
  place-items: center;
  color: rgba(248,244,238,.45);
  transition: all var(--transition);
  border-radius: 0;
  font-size: .7rem;
  letter-spacing: .1em;
  font-weight: 500;
}
.social-link:hover {
  border-color: rgba(248,244,238,.4);
  color: var(--cream);
}

.footer-col-title {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248,244,238,.35);
  margin-bottom: 20px;
}

.footer-links { display: grid; gap: 12px; }
.footer-links a {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(248,244,238,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .74rem;
  letter-spacing: .08em;
  color: rgba(248,244,238,.3);
}

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--cream);
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,23,20,.3);
  z-index: 190;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.cart-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}
.cart-close {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.cart-close:hover { border-color: var(--ink); color: var(--ink); }

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 24px 28px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cart-line strong { font-weight: 500; display: block; margin-bottom: 4px; font-size: .92rem; }
.cart-line small { font-size: .8rem; color: var(--muted); }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  margin-top: 10px;
}
.qty button {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: transparent;
  transition: background var(--transition);
  font-size: .9rem;
}
.qty button:hover { background: var(--cream-deep); }
.qty span { min-width: 32px; text-align: center; font-size: .88rem; font-weight: 500; }

.cart-foot {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .9rem;
  color: var(--muted);
}
.cart-row.total {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 400;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cart-empty-msg {
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 32px 0;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  font-size: .82rem;
  letter-spacing: .06em;
  z-index: 300;
  opacity: 0;
  transition: all 280ms ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: none; will-change: auto; }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.divider-dark {
  height: 1px;
  background: rgba(248,244,238,.08);
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 60vw; max-height: 520px; }
  .hero-left { padding: 60px 0 40px; }
  .roots-grid, .coffret-grid { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .rituals-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual-item { border-right: none; border-bottom: 1px solid var(--line); }
  .ritual-item:last-child { border-bottom: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: grid; }
  .products-grid { grid-template-columns: 1fr; }
  .rituals-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .hero-left { padding: 48px 0 32px; }
  .hero-meta { gap: 24px; }
  .roots-image { aspect-ratio: auto; max-height: none; }
  .roots-image img { height: auto; min-height: 320px; object-position: center top; }
  .coffret-badge { width: 80px; height: 80px; font-size: .78rem; top: -14px; right: -14px; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; border: none; gap: 12px; }
  .newsletter-input { border: 1px solid var(--line); height: 52px; background: var(--white); }
  .newsletter-btn { height: 52px; width: 100%; }
}

@media (max-width: 480px) {
  .display { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .hero-meta { flex-direction: column; gap: 16px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .coffret-grid { gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}