/* ===================================================================
   INDI'S SOAP — PREMIUM LUXURY DESIGN SYSTEM
   Aesop / Jo Malone aesthetic. Clean, editorial, expensive.
   =================================================================== */

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Core palette — luxury skincare */
  --ivory:        #FAF8F5;   /* warm cream / soft ivory */
  --ivory-light:  #F5F2EC;   /* slightly deeper cream */
  --ivory-warm:   #F0EBE2;   /* warm tinted cream */
  --charcoal:     #2C2C2C;   /* rich charcoal */
  --charcoal-mid: #4A4A4A;   /* mid charcoal */
  --muted:        #8A8A8A;   /* muted gray */
  --muted-light:  #B0A898;   /* light muted */
  --sage:         #8B9A7D;   /* sage green */
  --sage-light:   #A8B098;   /* light sage */
  --sage-deep:    #6B7A5D;   /* deep sage */
  --gold:         #C9A96E;   /* champagne gold */
  --gold-light:   #D8BC8E;   /* light gold */
  --gold-pale:    #EDD9A8;   /* pale gold */
  --gold-deep:    #B8903E;   /* deep gold */
  --white:        #FFFFFF;   /* pure white */
  --forest:       #2C3B28;   /* warm dark green (keep for text on light) */
  --forest-light: #3D5138;

  /* Semantic */
  --bg:            var(--ivory);
  --bg-alt:        var(--ivory-light);
  --surface:       var(--white);
  --fg:            var(--charcoal);
  --fg-muted:      var(--muted);
  --fg-subtle:     var(--muted-light);
  --accent:        var(--gold);
  --accent-light:  var(--gold-light);
  --accent-pale:   var(--gold-pale);

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:     'DM Sans', -apple-system, sans-serif;
  --font-body:     'DM Sans', -apple-system, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 100px;
  --space-3xl: 140px;

  /* Motion */
  --ease-luxury:   cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --motion-fast:   150ms;
  --motion-base:   280ms;
  --motion-slow:   450ms;
  --motion-xslow:  700ms;

  /* Borders */
  --radius-sm:  2px;
  --radius-md:  6px;
  --radius-lg:  12px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md:  0 8px 32px rgba(44, 44, 44, 0.10);
  --shadow-lg:  0 20px 60px rgba(44, 44, 44, 0.14);
  --shadow-xl:  0 40px 100px rgba(44, 44, 44, 0.18);
  --shadow-gold: 0 0 30px rgba(201, 169, 110, 0.15);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Nav is fixed — add top padding so content starts below it */
  padding-top: 0; /* hero is full-height so no padding needed */
}

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

/* Make all page content start below fixed nav (except homepage hero which is full-height) */
.page-content { padding-top: 80px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1 { font-size: clamp(48px, 6vw, 88px); }
h2 { font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(18px, 2vw, 28px); }

p { font-size: 16px; color: var(--fg-muted); line-height: 1.75; }

em { font-family: var(--font-sans); font-style: italic; color: var(--accent); }

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1999;
  transition: width 0.08s linear;
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--motion-slow) var(--ease-luxury),
              transform var(--motion-slow) var(--ease-luxury),
              background var(--motion-fast) ease;
  z-index: 998;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--forest-light); transform: translateY(-2px); }

/* --- GOLD SHIMMER KEYFRAME --- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes shimmerPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.15); }
  50%       { box-shadow: 0 8px 40px rgba(201,168,76,0.35), 0 0 0 1px rgba(201,168,76,0.15); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ambientPulse {
  0%, 100% { opacity: 0.06; }
  50%       { opacity: 0.12; }
}
@keyframes sectionEntrance {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.04em;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--motion-base) var(--ease-luxury),
              left var(--motion-base) var(--ease-luxury);
}
.nav-link:hover { color: var(--forest); }
.nav-link:hover::after { width: 100%; left: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cart {
  display: flex;
  align-items: center;
  color: var(--charcoal);
  transition: color var(--motion-fast) ease;
  position: relative;
}
.nav-cart:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  line-height: 1;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest);
  padding: 8px;
}
.nav-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 400;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background var(--motion-fast) ease,
              transform var(--motion-fast) var(--ease-luxury),
              box-shadow var(--motion-fast) ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Gold shimmer overlay on primary button */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(201,168,76,0.3) 40%,
    rgba(232,201,164,0.5) 50%,
    rgba(201,168,76,0.3) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.6s ease;
}
.btn-primary:hover::before { background-position: 200% center; }
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary:active { transform: scale(0.97); }

/* Gold outline button */
.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) var(--ease-luxury);
  z-index: 0;
}
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold:hover { color: var(--forest); }
.btn-gold span { position: relative; z-index: 1; }

.btn-cta {
  background: var(--gold);
  color: var(--forest);
  box-shadow: var(--shadow-gold);
  animation: goldGlow 3s ease-in-out infinite;
}
.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(201,168,76,0.4);
  animation: none;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245,240,232,0.95) 0%,
    rgba(245,240,232,0.7) 50%,
    rgba(245,240,232,0.5) 100%
  );
}

/* Floating botanicals */
.hero-botanicals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-botanical {
  position: absolute;
  animation: floatBotanical var(--dur, 10s) ease-in-out var(--delay, 0s) infinite;
  opacity: var(--opacity, 0.15);
}
@keyframes floatBotanical {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  33%       { transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 5deg)); }
  66%       { transform: translateY(-10px) rotate(calc(var(--rot, 0deg) - 3deg)); }
}

/* Gold shimmer divider */
.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px 0;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.5vw, 96px);
  color: var(--forest);
  line-height: 1.0;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
  font-family: var(--font-sans);
  font-size: 20px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(200,133,74,0.4);
  color: var(--accent);
  background: transparent;
  transition: all var(--motion-fast) ease;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(200,133,74,0.06);
  transform: translateY(-2px);
}
.badge {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.05);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  z-index: 1;
  pointer-events: none;
}
.hero-image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform var(--motion-xslow) var(--ease-luxury);
}
.hero-image-frame:hover img { transform: scale(1.03); }

/* Floating accent card */
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: var(--ivory);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-float-stat {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--forest);
  font-weight: 400;
}
.hero-float-label {
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===================================================================
   SECTIONS — SHARED
   =================================================================== */
.section {
  padding: var(--space-3xl) 60px;
}
.section-alt { background: var(--cream-light); }
.section-dark { background: var(--forest); color: var(--cream); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-label-light { color: var(--gold-light); }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 60px);
  color: var(--forest);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 400;
}
.section-headline-light { color: var(--cream); }
.section-headline em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-family: var(--font-sans);
  font-size: 20px;
}
.section-sub-light { color: rgba(245,240,232,0.65); }

/* ===================================================================
   CATEGORIES
   =================================================================== */
.categories { padding: 0 60px 80px; }
.categories-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.category-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-luxury);
}
.category-card:hover .category-bg-img { transform: scale(1.05); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,34,24,0.85) 0%,
    rgba(15,34,24,0.35) 50%,
    rgba(15,34,24,0.08) 100%
  );
  display: flex;
  align-items: flex-end;
  transition: background var(--motion-base) ease;
}
.category-card:hover .category-overlay {
  background: linear-gradient(
    to top,
    rgba(15,34,24,0.92) 0%,
    rgba(15,34,24,0.5) 50%,
    rgba(15,34,24,0.15) 100%
  );
}
.category-content { padding: 36px; width: 100%; }
.category-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.category-headline {
  font-family: var(--font-serif);
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}
.category-body {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}
.category-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  transition: all var(--motion-fast) ease;
}
.category-card:hover .category-cta {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

/* ===================================================================
   BESTSELLERS / PRODUCT GRID
   =================================================================== */
.bestsellers { background: var(--cream-light); padding: var(--space-3xl) 60px; }
.bestsellers-header { text-align: center; margin-bottom: var(--space-xl); }
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: var(--space-xl);
}
.bestsellers-cta { text-align: center; }

/* Product card */
.product-card {
  background: var(--ivory);
  border: 1px solid rgba(26,58,42,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform var(--motion-slow) var(--ease-luxury),
              box-shadow var(--motion-slow) var(--ease-luxury),
              border-color var(--motion-base) ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201,168,76,0.25);
}
.product-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Image zoom on hover */
.product-card .product-tile img,
.shop-card .product-tile img {
  transition: transform var(--motion-slow) var(--ease-luxury);
}
.product-card:hover .product-tile img,
.shop-card:hover .product-tile img {
  transform: scale(1.05);
}

.tile-brand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-serif);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.3;
  font-style: italic;
  font-weight: 400;
}
.tile-type {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(255,255,255,0.7);
  color: var(--forest);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.product-bs-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 12px;
}
.bestseller-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  background: var(--gold);
  color: var(--forest);
  border-radius: var(--radius-sm);
}
.product-info { padding: 20px; }
.product-name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.3;
}
.product-price {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}
.price-3 {
  color: var(--fg-subtle);
  font-weight: 400;
  font-size: 13px;
}

/* ================================================================
   SOAP + LOTION VISUAL SYSTEMS
   ================================================================ */
.soap-visual {
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.soap-top {
  width: 100%;
  height: 28px;
  border-radius: 14px 14px 4px 4px;
  background: var(--tile-color-a, #E8C9A4);
  position: relative; z-index: 3;
}
.soap-mid {
  width: 100%;
  height: 32px;
  border-radius: 4px 4px 10px 10px;
  background: var(--tile-color-b, #C8854A);
  margin-top: -2px;
  position: relative; z-index: 2;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.25), 0 4px 8px rgba(44,59,40,0.12);
}
.soap-bot {
  width: 105%;
  height: 18px;
  border-radius: 4px 4px 14px 14px;
  background: var(--tile-color-c, #A0643A);
  margin-top: -4px;
  position: relative; z-index: 1;
}
.soap-visual::after {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px; z-index: 4;
}
.lotion-visual {
  position: relative;
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lotion-cap {
  width: 28%;
  height: 22px;
  background: var(--tile-color-c, #8B6B3D);
  border-radius: 4px 4px 2px 2px;
  position: relative; z-index: 4;
  box-shadow: 0 2px 4px rgba(44,59,40,0.15);
}
.lotion-cap::before {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
}
.lotion-body {
  width: 100%;
  height: 70px;
  border-radius: 8px 8px 12px 12px;
  background: linear-gradient(165deg, var(--tile-color-a, #F0E8D8) 0%, var(--tile-color-b, #D4B896) 60%, var(--tile-color-c, #B8864F) 100%);
  margin-top: -2px;
  position: relative; z-index: 3;
  box-shadow: inset 0 3px 8px rgba(255,255,255,0.3), 0 4px 12px rgba(44,59,40,0.1);
}
.lotion-body::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50%; height: 60%;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}
.lotion-base {
  width: 108%;
  height: 14px;
  border-radius: 2px 2px 12px 12px;
  background: var(--tile-color-c, #8B6B3D);
  margin-top: -2px;
  position: relative; z-index: 2;
}

/* Soap tile palette */
.tile-soap-cucumber { --tile-bg:#EFF5EC; --tile-color-a:#D6E8CF; --tile-color-b:#94C17A; --tile-color-c:#6A9E4E; }
.tile-soap-lavender { --tile-bg:#F0EEF5; --tile-color-a:#DDD5E8; --tile-color-b:#A890C8; --tile-color-c:#7B62A8; }
.tile-soap-oatmeal  { --tile-bg:#F5F0E5; --tile-color-a:#EFE2C8; --tile-color-b:#D4B06A; --tile-color-c:#A88848; }
.tile-soap-turmeric { --tile-bg:#FDF5E3; --tile-color-a:#F5E0A0; --tile-color-b:#E8B830; --tile-color-c:#C49010; }
.tile-soap-silk-jasmin { --tile-bg:#F5EEF0; --tile-color-a:#F0D8E0; --tile-color-b:#D490A8; --tile-color-c:#B86882; }
.tile-soap-black-forest { --tile-bg:#ECECEC; --tile-color-a:#5A5A5A; --tile-color-b:#3A3A3A; --tile-color-c:#1E1E1E; }
.tile-soap-charcoal-aloe { --tile-bg:#ECEFED; --tile-color-a:#9AB0A8; --tile-color-b:#5A8070; --tile-color-c:#2A4A3E; }
.tile-soap-island-citrus { --tile-bg:#EEF5ED; --tile-color-a:#C8E8BC; --tile-color-b:#7CB85A; --tile-color-c:#5A8A38; }
.tile-soap-sandalwood-rose { --tile-bg:#F5EEF0; --tile-color-a:#E8D0C8; --tile-color-b:#B87860; --tile-color-c:#8A5040; }
.tile-soap-mango-papaya { --tile-bg:#FDF0E0; --tile-color-a:#F8D880; --tile-color-b:#E8A820; --tile-color-c:#C07800; }
.tile-soap-egyptian-musk { --tile-bg:#F0ECF5; --tile-color-a:#E0D0E8; --tile-color-b:#C090D0; --tile-color-c:#9060A0; }
.tile-soap-lemon-zest { --tile-bg:#FBF8E0; --tile-color-a:#F8EC80; --tile-color-b:#F0D820; --tile-color-c:#C8A800; }
.tile-soap-moonlight-and-rose { --tile-bg:#F5EEF3; --tile-color-a:#F0D8E0; --tile-color-b:#D898B8; --tile-color-c:#A86880; }
.tile-soap-mountain-air { --tile-bg:#EFF3F5; --tile-color-a:#C8D8E0; --tile-color-b:#88A8C0; --tile-color-c:#587888; }
.tile-soap-asian-tea-blossom { --tile-bg:#EFF5F0; --tile-color-a:#C8E0D0; --tile-color-b:#78B098; --tile-color-c:#488068; }
.tile-soap-avocado-and-lemon { --tile-bg:#F5F8EC; --tile-color-a:#D8E8C0; --tile-color-b:#A8C848; --tile-color-c:#789028; }
.tile-soap-african-violet { --tile-bg:#F0EEF5; --tile-color-a:#DCD0E8; --tile-color-b:#B0A0D0; --tile-color-c:#8870A8; }
.tile-soap-tangerine-grapefruit { --tile-bg:#FDF4E8; --tile-color-a:#F8D0A0; --tile-color-b:#F09030; --tile-color-c:#C86808; }
.tile-soap-lavender-mint { --tile-bg:#EEF5F2; --tile-color-a:#D0D8E8; --tile-color-b:#9098C8; --tile-color-c:#6870A0; }
.tile-soap-french-vanilla-biscotti { --tile-bg:#F5F0E8; --tile-color-a:#EFE2C8; --tile-color-b:#D4A860; --tile-color-c:#A87840; }

/* Lotion tile palette */
.tile-lotion-cool-water  { --tile-bg:#EBF3F7; --tile-color-a:#C8E4F0; --tile-color-b:#5A9EC8; --tile-color-c:#3878A8; }
.tile-lotion-lavender-mint { --tile-bg:#F0EEF5; --tile-color-a:#D8D0E8; --tile-color-b:#9890C0; --tile-color-c:#6A6890; }
.tile-lotion-lemon-jasmine { --tile-bg:#F8F4E3; --tile-color-a:#F5E8A8; --tile-color-b:#E8C830; --tile-color-c:#C8A010; }
.tile-lotion-french-pear { --tile-bg:#F0F5EC; --tile-color-a:#D8E8C8; --tile-color-b:#A0C868; --tile-color-c:#789840; }
.tile-lotion-asian-tea-blossom { --tile-bg:#EFF5F0; --tile-color-a:#C8E0D0; --tile-color-b:#78B098; --tile-color-c:#488068; }
.tile-lotion-petal-dance { --tile-bg:#F5EEF2; --tile-color-a:#F0D8E0; --tile-color-b:#D8A0B8; --tile-color-c:#B87890; }
.tile-lotion-mountain-air { --tile-bg:#EFF3F5; --tile-color-a:#D0E0E8; --tile-color-b:#88B0C8; --tile-color-c:#5888A0; }
.tile-lotion-cotton-fields { --tile-bg:#F5F5F2; --tile-color-a:#E8E8E0; --tile-color-b:#C8C8B8; --tile-color-c:#A0A090; }
.tile-lotion-vanilla-oatmeal { --tile-bg:#F5F0E5; --tile-color-a:#EFE2C8; --tile-color-b:#D4A860; --tile-color-c:#B07840; }
.tile-lotion-festival { --tile-bg:#F5EEF0; --tile-color-a:#F0D8D8; --tile-color-b:#E07070; --tile-color-c:#C04040; }
.tile-lotion-carrot-citrus { --tile-bg:#FDF4E0; --tile-color-a:#F8E0A0; --tile-color-b:#E8A010; --tile-color-c:#C07800; }
.tile-lotion-apple-cantaloupe { --tile-bg:#F0F5EC; --tile-color-a:#D8E8B8; --tile-color-b:#A8C040; --tile-color-c:#789028; }
.tile-lotion-bromelain-rosehips { --tile-bg:#F5EEEE; --tile-color-a:#F0D8D0; --tile-color-b:#D89070; --tile-color-c:#A86040; }
.tile-lotion-turmeric-honey-orange { --tile-bg:#FDF5E3; --tile-color-a:#F5E0A0; --tile-color-b:#E8B830; --tile-color-c:#C49010; }
.tile-lotion-sandalwood-rose { --tile-bg:#F5EEEE; --tile-color-a:#E8D8D8; --tile-color-b:#C09090; --tile-color-c:#906060; }
.tile-lotion-gobi-gold { --tile-bg:#F8F2E5; --tile-color-a:#F0E0A8; --tile-color-b:#D4A838; --tile-color-c:#A87818; }
.tile-lotion-dragon-blood { --tile-bg:#F5EEEE; --tile-color-a:#E8D0D0; --tile-color-b:#C03030; --tile-color-c:#801818; }
.tile-lotion-oatmeal-honey { --tile-bg:#F5F0E5; --tile-color-a:#EFE2C8; --tile-color-b:#D4A860; --tile-color-c:#A87840; }
.tile-lotion-cucumber-melon { --tile-bg:#EFF5EC; --tile-color-a:#D0E8C0; --tile-color-b:#90C840; --tile-color-c:#609020; }
.tile-lotion-aloe-vera { --tile-bg:#ECF5EC; --tile-color-a:#C8E8C8; --tile-color-b:#70B870; --tile-color-c:#488048; }
.tile-lotion-cherry-almond { --tile-bg:#F5EEF0; --tile-color-a:#F0D8E0; --tile-color-b:#D87888; --tile-color-c:#A84858; }
.tile-lotion-dessert-sage { --tile-bg:#F0F5EE; --tile-color-a:#D8E8C8; --tile-color-b:#A8B868; --tile-color-c:#788840; }
.tile-lotion-egyptian-musk { --tile-bg:#F0ECF5; --tile-color-a:#E0D8E8; --tile-color-b:#C0A8D8; --tile-color-c:#9070A8; }
.tile-lotion-french-vanilla-biscotti { --tile-bg:#F5F0E5; --tile-color-a:#EFE2C8; --tile-color-b:#D4A860; --tile-color-c:#A87840; }
.tile-lotion-mango-papaya { --tile-bg:#FDF0E0; --tile-color-a:#F8D880; --tile-color-b:#E8A820; --tile-color-c:#C07800; }
.tile-lotion-black-forest-lotion { --tile-bg:#ECECEC; --tile-color-a:#6A6A6A; --tile-color-b:#4A4A4A; --tile-color-c:#282828; }

/* ===================================================================
   INGREDIENTS
   =================================================================== */
.ingredients { background: var(--cream); padding: var(--space-3xl) 60px; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.ingredient-card {
  background: var(--ivory);
  padding: 36px 28px;
  border: 1px solid rgba(26,58,42,0.07);
  border-radius: var(--radius-md);
  transition: transform var(--motion-slow) var(--ease-luxury),
              box-shadow var(--motion-slow) var(--ease-luxury),
              border-color var(--motion-base) ease;
}
.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}
.ingredient-icon { margin-bottom: 20px; }
.ingredient-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 400;
}
.ingredient-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials { background: var(--cream-light); padding: var(--space-3xl) 60px; }
.testimonials-header { text-align: center; margin-bottom: var(--space-xl); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--ivory);
  border: 1px solid rgba(26,58,42,0.07);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--motion-slow) var(--ease-luxury),
              box-shadow var(--motion-slow) var(--ease-luxury);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars { display: flex; gap: 4px; }
.testimonial-text {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-footer { display: flex; flex-direction: column; gap: 4px; }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--forest); }
.testimonial-product { font-size: 12px; color: var(--fg-subtle); }

/* ===================================================================
   CRAFTSMANSHIP SECTION
   =================================================================== */
.craft { background: var(--forest); padding: var(--space-3xl) 60px; }
.craft-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: center;
}
.craft-stats { display: flex; flex-direction: column; gap: 0; }
.craft-stat-block {
  padding: 32px 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.craft-stat-block:first-child { border-top: 1px solid rgba(245,240,232,0.1); }
.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(245,240,232,0.55);
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  font-size: 15px;
}
.craft-body {
  font-size: 16px;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 18px;
}
.craft-quote {
  margin-top: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.craft-quote blockquote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(245,240,232,0.85);
  line-height: 1.6;
}

/* ===================================================================
   EMAIL CAPTURE
   =================================================================== */
.email-capture {
  background: var(--forest);
  padding: var(--space-3xl) 60px;
}
.email-capture-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.email-capture-content { max-width: 560px; text-align: center; }
.email-capture .section-label { color: var(--gold-light); }
.email-capture-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--cream);
  margin-bottom: 16px;
  margin-top: 12px;
}
.email-capture-headline em { color: var(--gold-light); }
.email-capture-sub {
  font-size: 15px;
  color: rgba(245,240,232,0.55);
  margin-bottom: 32px;
  font-family: var(--font-sans);
  font-size: 17px;
}
.email-form-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.email-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 15px;
  border: 1px solid rgba(245,240,232,0.15);
  background: rgba(245,240,232,0.06);
  color: var(--cream);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--motion-fast) ease;
}
.email-input::placeholder { color: rgba(245,240,232,0.35); }
.email-input:focus { border-color: var(--gold-light); }
.email-submit {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--forest);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--motion-fast) ease, transform var(--motion-fast) ease;
  white-space: nowrap;
}
.email-submit:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-1px); }
.email-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.email-success-msg {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 500;
}
.email-error-msg {
  margin-top: 12px;
  font-size: 14px;
  color: #ff9e9a;
}
.email-count {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.08em;
}

/* ===================================================================
   CLOSING / CTA
   =================================================================== */
.closing { background: var(--cream); padding: var(--space-3xl) 60px; }
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-visual {
  display: flex;
  justify-content: center;
}
.closing-image-frame {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.closing-image-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 1;
  pointer-events: none;
}
.closing-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--forest);
  margin-bottom: 24px;
  line-height: 1.15;
}
.closing-headline em { font-style: italic; color: var(--gold); }
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 19px;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--cream-light);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(26,58,42,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 400;
  font-style: italic;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-family: var(--font-sans);
  font-size: 15px;
}
.footer-links { display: flex; gap: 60px; }
.footer-col-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 10px;
  transition: color var(--motion-fast) ease;
  text-decoration: none;
  display: block;
}
.footer-col p:hover, .footer-col a:hover { color: var(--forest); }
.footer-social { display: flex; flex-direction: column; gap: 0; }
.footer-social .footer-col-label { margin-bottom: 14px; }
.social-icons { display: flex; flex-direction: row; gap: 14px; align-items: center; flex-wrap: wrap; }
.social-icon { color: var(--fg-muted); transition: color var(--motion-fast) ease; display: flex; align-items: center; gap: 6px; }
.social-icon:hover { color: var(--gold); }
.coming-soon-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.6;
  font-weight: 500;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(26,58,42,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--fg-subtle); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--fg-subtle); transition: color var(--motion-fast) ease; }
.footer-bottom-links a:hover { color: var(--forest); }

/* ===================================================================
   SCROLL REVEAL ANIMATIONS
   =================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Staggered scroll reveals */
.animate-on-scroll,
.reveal-section,
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--motion-xslow) var(--ease-luxury),
              transform var(--motion-xslow) var(--ease-luxury);
}
.animate-on-scroll.visible,
.reveal-section.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Hero entrance */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-reveal > * {
  opacity: 0;
  animation: heroReveal 0.7s var(--ease-luxury) forwards;
}
.hero-reveal > *:nth-child(1) { animation-delay: 0.15s; }
.hero-reveal > *:nth-child(2) { animation-delay: 0.3s; }
.hero-reveal > *:nth-child(3) { animation-delay: 0.45s; }
.hero-reveal > *:nth-child(4) { animation-delay: 0.6s; }
.hero-reveal > *:nth-child(5) { animation-delay: 0.75s; }
.hero-visual { opacity: 0; animation: heroReveal 0.8s var(--ease-luxury) 0.5s forwards; }

/* Letter reveal */
@keyframes letterReveal {
  from { opacity: 0; transform: translateY(20px) rotate(3deg); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); filter: blur(0); }
}
.letter-reveal { display: inline-block; opacity: 0; }

/* Star rating pulse */
@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}
.product-card:hover .shop-card-rating .stars svg,
.product-card:hover .product-tile .stars svg {
  animation: starPulse 0.4s var(--ease-luxury) 0.1s;
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .scroll-progress, .back-to-top, .hero-botanical { display: none; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .hero-inner { gap: 40px; }
  .bestsellers-grid { grid-template-columns: repeat(3, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { padding: 20px 30px; }
  .nav.scrolled { padding: 14px 30px; }
  .nav-tag { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(26,58,42,0.1);
    flex-direction: column;
    padding: 20px 30px 30px;
    gap: 0;
    z-index: 999;
  }
  .nav-links.nav-links-open { display: flex; }
  .nav-link { padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(26,58,42,0.06); }

  .hero-inner { grid-template-columns: 1fr; padding: 120px 30px 60px; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-image-frame { max-width: 380px; }
  .hero-float-card { display: none; }
  .hero-headline { font-size: clamp(40px, 8vw, 64px); }

  .categories { padding: 0 30px 60px; }
  .categories-inner { grid-template-columns: 1fr; gap: 20px; }
  .section { padding: var(--space-2xl) 30px; }
  .bestsellers { padding: var(--space-2xl) 30px; }
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .craft-inner { grid-template-columns: 1fr; gap: 40px; }
  .craft-stats { flex-direction: row; flex-wrap: wrap; }
  .craft-stat-block { flex: 1; min-width: 120px; padding: 20px 16px; }
  .craft-stat-block:first-child { border-top: 1px solid rgba(245,240,232,0.1); }
  .email-capture { padding: var(--space-2xl) 30px; }
  .email-form-row { flex-direction: column; }
  .closing { padding: var(--space-2xl) 30px; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-image-frame { width: 260px; height: 260px; }
  .footer { padding: 60px 30px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 500px) {
  .bestsellers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .product-info { padding: 14px; }
  .product-name { font-size: 15px; }
  .hero-headline { font-size: 36px; }
}

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-hero { padding: 140px 60px 100px; background: var(--cream); position: relative; overflow: hidden; }
.about-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner { max-width: 800px; margin: 0 auto; }
.about-headline { font-size: clamp(44px, 5vw, 72px); color: var(--forest); margin-bottom: 28px; line-height: 1.1; }
.about-hero-lede { font-size: 18px; color: var(--fg-muted); line-height: 1.75; max-width: 560px; font-family: var(--font-sans); font-size: 20px; }
.about-story { background: var(--cream); padding: 0 60px 100px; }
.about-section-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-section-headline { font-size: clamp(30px, 3.5vw, 46px); color: var(--forest); margin-bottom: 28px; line-height: 1.2; }
.about-body { font-size: 16px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 16px; font-family: var(--font-sans); font-size: 18px; }
.about-intro { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 48px; max-width: 600px; font-family: var(--font-sans); }
.about-story-visual { position: relative; width: 320px; height: 320px; display: flex; justify-content: center; align-items: center; margin: 0 auto; }
.about-circle { border-radius: 50%; position: absolute; }
.about-circle-1 { width: 260px; height: 260px; background: linear-gradient(135deg, #E8D4B0 0%, #c9a84c 100%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.about-circle-2 { width: 300px; height: 300px; background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.1)); top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(20deg); z-index: 2; }
.about-circle-3 { width: 320px; height: 320px; background: linear-gradient(135deg, rgba(26,58,42,0.05), rgba(201,168,76,0.05)); top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(35deg); z-index: 1; }
.about-ingredients { background: var(--cream-light); padding: var(--space-2xl) 60px; }
.about-ingredients-inner { max-width: 1200px; margin: 0 auto; }
.about-ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.about-ingredient-card { background: var(--ivory); padding: 32px 24px; border: 1px solid rgba(26,58,42,0.07); border-radius: var(--radius-md); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-ingredient-icon { margin-bottom: 16px; }
.about-ingredient-card h3 { font-family: var(--font-serif); font-size: 18px; color: var(--forest); margin-bottom: 10px; font-weight: 400; }
.about-ingredient-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.7; }
.about-promise { background: var(--forest); padding: var(--space-2xl) 60px; }
.about-promise-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.about-promise-quote { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 34px); color: var(--cream); line-height: 1.5; font-style: italic; margin: 32px 0 40px; }
.about-promise-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.badge-dark { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 8px 18px; border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light); border-radius: var(--radius-sm); }
.about-cta { background: var(--cream); padding: var(--space-2xl) 60px; text-align: center; }
.about-cta-inner { max-width: 600px; margin: 0 auto; }
.about-cta-headline { font-size: clamp(32px, 4vw, 52px); color: var(--forest); margin-bottom: 20px; line-height: 1.15; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-hero { padding: 140px 60px 80px; background: var(--cream); position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.contact-hero-inner { max-width: 700px; margin: 0 auto; }
.contact-headline { font-size: clamp(44px, 5vw, 72px); color: var(--forest); margin-bottom: 24px; line-height: 1.1; }
.contact-lede { font-size: 17px; color: var(--fg-muted); line-height: 1.75; font-family: var(--font-sans); font-size: 19px; }
.contact-main { background: var(--cream-light); padding: 0 60px 100px; }
.contact-main-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.contact-form-wrap { background: var(--ivory); padding: 48px; border: 1px solid rgba(26,58,42,0.07); border-radius: var(--radius-md); }
.contact-form-title { font-family: var(--font-serif); font-size: 26px; color: var(--forest); margin-bottom: 32px; font-weight: 400; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { background: var(--cream); border: 1px solid rgba(26,58,42,0.15); border-radius: var(--radius-sm); padding: 14px 18px; font-family: var(--font-body); font-size: 15px; color: var(--fg); transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group input.input-error, .form-group textarea.input-error { border-color: #c0392b; }
.form-group textarea { resize: vertical; }
.form-error { font-size: 12px; color: #c0392b; min-height: 16px; }
.form-success { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: rgba(26,58,42,0.06); border: 1px solid rgba(26,58,42,0.12); border-radius: var(--radius-sm); font-size: 14px; color: var(--forest); }
.form-error-global { padding: 12px 16px; background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2); border-radius: var(--radius-sm); font-size: 14px; color: #c0392b; }
.wholesale-note { margin-top: 28px; padding: 20px 24px; background: var(--cream-light); border-left: 3px solid var(--gold); display: flex; gap: 14px; align-items: flex-start; }
.wholesale-note-icon { flex-shrink: 0; margin-top: 2px; }
.wholesale-note p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.contact-info-card, .contact-social-card { background: var(--ivory); padding: 32px; border: 1px solid rgba(26,58,42,0.07); border-radius: var(--radius-md); }
.contact-info-title { font-family: var(--font-serif); font-size: 20px; color: var(--forest); margin-bottom: 24px; font-weight: 400; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 600; margin-bottom: 2px; }
.contact-info-value { font-size: 14px; color: var(--fg); }
a.contact-info-value { text-decoration: none; color: var(--gold); }
a.contact-info-value:hover { text-decoration: underline; }
.contact-social-links { display: flex; flex-direction: column; gap: 12px; }
.social-link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.social-link:hover { color: var(--forest); }

/* ===================================================================
   SHOP PAGE
   =================================================================== */
.shop-hero { background: var(--cream); padding: 140px 60px 40px; text-align: center; }
.shop-hero-headline { font-family: var(--font-serif); font-size: clamp(36px, 4vw, 60px); color: var(--forest); margin-bottom: 12px; line-height: 1.1; font-weight: 400; }
.shop-hero-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.6; font-family: var(--font-sans); font-size: 18px; }
.shop-tabs { display: flex; justify-content: center; gap: 6px; padding: 32px 60px; background: var(--cream); border-bottom: 1px solid rgba(26,58,42,0.07); }
.shop-tab { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 10px 24px; border: 1px solid transparent; border-radius: var(--radius-sm); color: var(--fg-muted); text-decoration: none; transition: all 0.2s; }
.shop-tab:hover { color: var(--forest); }
.shop-tab.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.shop-grid-wrap { background: var(--cream-light); padding: 60px; }
.shop-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shop-card { background: var(--ivory); border: 1px solid rgba(26,58,42,0.08); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; display: block; transition: transform var(--motion-slow) var(--ease-luxury), box-shadow var(--motion-slow) var(--ease-luxury), border-color var(--motion-base) ease; opacity: 0; animation: fadeUp var(--motion-slow) var(--ease-luxury) forwards; }
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.2); }
.shop-card-image { aspect-ratio: 1/1; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; }
.shop-card-info { padding: 20px; }
.shop-card-name { font-family: var(--font-serif); font-size: 17px; color: var(--forest); margin-bottom: 6px; font-weight: 400; line-height: 1.3; }
.shop-card-price { font-size: 14px; color: var(--fg-muted); font-weight: 500; }
.shop-card-price-3 { color: var(--fg-subtle); font-weight: 400; font-size: 13px; }
.shop-card-rating { display: flex; align-items: center; gap: 4px; margin-top: 6px; font-size: 12px; color: #B8860B; font-weight: 500; }
.shop-card-rating .stars { display: flex; gap: 1px; }
.shop-card-rating .stars svg { width: 12px; height: 12px; }
.shop-empty { text-align: center; padding: 80px 0; color: var(--fg-muted); font-size: 16px; }
.card-image-wrap { overflow: hidden; }

/* ===================================================================
   PRODUCT DETAIL PAGE
   =================================================================== */
.product-page { background: var(--cream); min-height: 100vh; }
.product-breadcrumb { padding: 120px 60px 0; font-size: 13px; color: var(--fg-muted); display: flex; gap: 8px; align-items: center; font-family: var(--font-body); }
.product-breadcrumb a { color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--forest); }
.product-breadcrumb span { color: var(--fg-muted); }
.product-main { max-width: 1200px; margin: 0 auto; padding: 0 60px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-visual { display: flex; justify-content: center; align-items: center; aspect-ratio: 1; background: var(--cream-light); border: 1px solid rgba(26,58,42,0.06); border-radius: var(--radius-md); padding: 40px; position: relative; }
.product-visual img { width: 100%; max-width: 360px; border-radius: var(--radius-sm); border: 1px solid rgba(26,58,42,0.06); }
.product-detail { display: flex; flex-direction: column; gap: 0; padding-top: 24px; }
.product-category-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.product-name { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px); color: var(--forest); margin-bottom: 20px; line-height: 1.1; font-weight: 400; }
.product-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.product-price-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(26,58,42,0.1); }
.product-price-main { font-size: 28px; color: var(--forest); font-weight: 500; font-family: var(--font-serif); }
.product-price-3pack { font-size: 14px; color: var(--fg-muted); }
.product-description { font-size: 16px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 32px; font-family: var(--font-sans); font-size: 18px; }
.product-ingredients-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--forest); font-weight: 600; margin-bottom: 12px; }
.product-ingredients { font-size: 14px; color: var(--fg-muted); line-height: 1.7; font-style: italic; margin-bottom: 40px; padding: 20px; background: var(--cream-light); border-radius: var(--radius-sm); }
.product-handmade-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 600; padding: 10px 18px; background: rgba(26,58,42,0.05); border: 1px solid rgba(26,58,42,0.1); border-radius: var(--radius-sm); margin-bottom: 40px; }
.product-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.product-back-link:hover { color: var(--forest); }

/* Reviews */
.reviews-section { border-top: 1px solid rgba(26,58,42,0.1); padding-top: 48px; margin-top: 48px; }
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.reviews-title { font-family: var(--font-serif); font-size: 28px; color: var(--forest); font-weight: 400; }
.reviews-summary { display: flex; align-items: center; gap: 16px; }
.reviews-big-stars { display: flex; gap: 3px; }
.reviews-big-stars svg { width: 24px; height: 24px; }
.reviews-count-text { font-size: 15px; color: var(--fg-muted); }
.review-card { background: var(--ivory); border: 1px solid rgba(26,58,42,0.07); border-radius: var(--radius-md); padding: 24px; margin-bottom: 16px; }
.review-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review-author { font-weight: 600; color: var(--forest); font-size: 14px; }
.review-date { font-size: 12px; color: var(--fg-subtle); }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars svg { width: 16px; height: 16px; }
.review-text { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.no-reviews { text-align: center; padding: 40px; color: var(--fg-muted); font-size: 15px; }
.no-reviews span { color: var(--gold); font-weight: 600; }

/* Write review form */
.write-review-section { margin-top: 48px; padding-top: 48px; border-top: 1px solid rgba(26,58,42,0.08); }
.write-review-title { font-family: var(--font-serif); font-size: 24px; color: var(--forest); margin-bottom: 24px; font-weight: 400; }
.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.review-form-group { display: flex; flex-direction: column; gap: 8px; }
.review-form-group.full-width { grid-column: 1 / -1; }
.review-form-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 600; }
.review-form-input, .review-form-textarea { padding: 14px 18px; border: 1px solid rgba(26,58,42,0.2); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--fg); background: var(--ivory); transition: border-color 0.2s, box-shadow 0.2s; width: 100%; box-sizing: border-box; }
.review-form-input:focus, .review-form-textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.review-form-textarea { resize: vertical; min-height: 120px; }
.star-picker { display: flex; gap: 8px; align-items: center; }
.star-picker-btn { background: none; border: none; padding: 0; cursor: pointer; transition: transform 0.1s; }
.star-picker-btn:hover { transform: scale(1.15); }
.star-picker-btn svg { width: 32px; height: 32px; }
.star-picker-label { font-size: 13px; color: var(--fg-muted); margin-left: 8px; }
.submit-review-btn { padding: 14px 32px; background: var(--forest); color: var(--cream); border: none; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; font-family: var(--font-body); border-radius: var(--radius-sm); }
.submit-review-btn:hover { background: var(--forest-deep); }
.submit-review-btn:disabled { background: #bbb; cursor: not-allowed; }
.review-form-error { color: #c0392b; font-size: 13px; margin-top: 8px; }
.review-form-success { color: #2d7a3a; font-size: 14px; margin-top: 16px; font-weight: 500; }
.review-submitted-card { background: rgba(26,58,42,0.05); border: 1px solid rgba(26,58,42,0.12); border-radius: var(--radius-md); padding: 20px; margin-top: 16px; }
.review-submitted-card p { font-size: 15px; color: var(--forest); margin: 0; }

/* Variant selector + add to cart */
.variant-selector { display: flex; gap: 12px; margin-bottom: 16px; }
.variant-btn { flex: 1; padding: 14px 16px; border: 1px solid rgba(26,58,42,0.15); background: var(--ivory); cursor: pointer; font-size: 14px; font-family: var(--font-body); color: var(--fg-muted); transition: all 0.15s; border-radius: var(--radius-sm); text-align: center; }
.variant-btn.selected { border-color: var(--forest); background: rgba(26,58,42,0.04); color: var(--forest); font-weight: 600; }
.variant-btn:hover { border-color: var(--forest); }
.variant-label { font-size: 11px; color: var(--fg-muted); margin-bottom: 4px; letter-spacing: 0.05em; }
.variant-price { font-size: 18px; color: var(--forest); font-weight: 500; font-family: var(--font-serif); }
.variant-save { font-size: 11px; color: var(--gold); font-weight: 600; }
.add-btn { width: 100%; padding: 18px; background: var(--forest); color: var(--cream); border: none; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: var(--font-body); border-radius: var(--radius-sm); }
.add-btn:hover { background: var(--forest-deep); transform: translateY(-1px); }
.add-btn.added { background: var(--gold); color: var(--forest); }

/* Sticky add to cart */
.sticky-atc { position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%); background: var(--forest); color: var(--cream); padding: 16px 32px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; z-index: 998; transition: bottom 0.4s var(--ease-luxury), transform 0.3s var(--ease-luxury), background 0.2s; display: none; align-items: center; gap: 10px; border: none; font-family: var(--font-body); }
.sticky-atc.visible { bottom: 28px; display: flex; }
.sticky-atc:hover { background: var(--gold); color: var(--forest); transform: translateX(-50%) translateY(-2px); }

/* ===================================================================
   CART PAGE
   =================================================================== */
.cart-page { background: var(--cream); min-height: 100vh; padding-top: 120px; }
.cart-hero { padding: 0 60px 40px; text-align: center; }
.cart-headline { font-family: var(--font-serif); font-size: clamp(36px, 4vw, 56px); color: var(--forest); margin-bottom: 8px; font-weight: 400; }
.cart-sub { font-size: 16px; color: var(--fg-muted); }
.cart-main { max-width: 1100px; margin: 0 auto; padding: 0 60px 100px; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.cart-items-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item { background: var(--ivory); border: 1px solid rgba(26,58,42,0.08); border-radius: var(--radius-md); padding: 24px; display: grid; grid-template-columns: 100px 1fr auto auto; gap: 20px; align-items: center; }
.cart-item-img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); background: var(--cream-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item-img .soap-visual, .cart-item-img .lotion-visual { width: 70%; }
.cart-item-name { font-family: var(--font-serif); font-size: 18px; color: var(--forest); font-weight: 400; margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--fg-subtle); text-transform: uppercase; letter-spacing: 0.08em; }
.cart-item-price { font-size: 16px; color: var(--fg-muted); font-weight: 500; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid rgba(26,58,42,0.15); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn { width: 36px; height: 36px; background: none; border: none; cursor: pointer; font-size: 18px; color: var(--forest); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qty-btn:hover { background: var(--cream-light); }
.qty-num { width: 40px; text-align: center; font-size: 16px; font-weight: 600; color: var(--forest); border-left: 1px solid rgba(26,58,42,0.1); border-right: 1px solid rgba(26,58,42,0.1); padding: 4px 0; font-family: var(--font-body); }
.cart-item-remove { color: var(--fg-subtle); transition: color 0.15s; cursor: pointer; padding: 8px; }
.cart-item-remove:hover { color: #c0392b; }
.cart-summary { background: var(--ivory); border: 1px solid rgba(26,58,42,0.08); border-radius: var(--radius-md); padding: 40px; position: sticky; top: 120px; }
.cart-summary-title { font-family: var(--font-serif); font-size: 22px; color: var(--forest); margin-bottom: 32px; font-weight: 400; }
.cart-line { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(26,58,42,0.07); font-size: 15px; }
.cart-line:last-of-type { border-bottom: none; }
.cart-line-label { color: var(--fg-muted); }
.cart-line-value { color: var(--fg); font-weight: 500; }
.cart-line-total { font-family: var(--font-serif); font-size: 22px; color: var(--forest); font-weight: 400; }
.cart-checkout-btn { width: 100%; margin-top: 28px; justify-content: center; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty p { font-size: 18px; color: var(--fg-muted); margin-bottom: 24px; }

/* ===================================================================
   CHECKOUT PAGE
   =================================================================== */
.checkout-page { background: var(--cream); min-height: 100vh; padding-top: 120px; }
.checkout-hero { padding: 0 60px 40px; }
.checkout-headline { font-family: var(--font-serif); font-size: clamp(36px, 4vw, 56px); color: var(--forest); margin-bottom: 8px; font-weight: 400; }
.checkout-main { max-width: 1100px; margin: 0 auto; padding: 0 60px 100px; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 32px; }
.checkout-section { background: var(--ivory); border: 1px solid rgba(26,58,42,0.08); border-radius: var(--radius-md); padding: 32px; }
.checkout-section-title { font-family: var(--font-serif); font-size: 20px; color: var(--forest); margin-bottom: 24px; font-weight: 400; }
.checkout-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkout-form-group { display: flex; flex-direction: column; gap: 8px; }
.checkout-form-group.full { grid-column: 1 / -1; }
.checkout-form-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 600; }
.checkout-form-input { padding: 14px 18px; border: 1px solid rgba(26,58,42,0.2); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--fg); background: var(--cream); transition: border-color 0.2s; width: 100%; box-sizing: border-box; }
.checkout-form-input:focus { outline: none; border-color: var(--gold); }

/* ===================================================================
   WHOLESALE PAGE
   =================================================================== */
.wholesale-page { background: var(--cream); min-height: 100vh; }
.wholesale-hero { padding: 140px 60px 80px; background: var(--cream); position: relative; overflow: hidden; }
.wholesale-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.wholesale-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.wholesale-headline { font-family: var(--font-serif); font-size: clamp(44px, 5vw, 72px); color: var(--forest); margin-bottom: 24px; line-height: 1.1; font-weight: 400; }
.wholesale-lede { font-size: 18px; color: var(--fg-muted); line-height: 1.75; font-family: var(--font-sans); font-size: 20px; max-width: 640px; margin: 0 auto 48px; }
.wholesale-catalog { background: var(--cream-light); padding: 0 60px 100px; }
.wholesale-catalog-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 60px; }
.wholesale-inquiry { background: var(--forest); padding: var(--space-2xl) 60px; }
.wholesale-inquiry-inner { max-width: 600px; margin: 0 auto; }
.wholesale-form-title { font-family: var(--font-serif); font-size: 32px; color: var(--cream); margin-bottom: 32px; font-weight: 400; text-align: center; }

/* ===================================================================
   BLOG PAGE
   =================================================================== */
.blog-page { background: var(--cream); min-height: 100vh; }
.blog-hero { padding: 140px 60px 80px; text-align: center; }
.blog-headline { font-family: var(--font-serif); font-size: clamp(44px, 5vw, 72px); color: var(--forest); margin-bottom: 16px; font-weight: 400; }
.blog-sub { font-size: 18px; color: var(--fg-muted); font-family: var(--font-sans); }
.blog-grid { padding: 0 60px var(--space-2xl); max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--ivory); border: 1px solid rgba(26,58,42,0.08); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; display: block; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-content { padding: 28px; }
.blog-card-date { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-serif); font-size: 22px; color: var(--forest); margin-bottom: 10px; font-weight: 400; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 16px; transition: gap 0.2s; }
.blog-card:hover .blog-read-more { gap: 10px; }

/* Blog post */
.blog-post-page { background: var(--cream); min-height: 100vh; }
.blog-post-hero { padding: 140px 60px 60px; max-width: 900px; margin: 0 auto; }
.blog-post-date { font-size: 11px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.blog-post-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 60px); color: var(--forest); line-height: 1.15; font-weight: 400; margin-bottom: 24px; }
.blog-post-content { max-width: 720px; margin: 0 auto; padding: 0 60px var(--space-2xl); }
.blog-post-content p { font-family: var(--font-sans); font-size: 18px; line-height: 1.85; color: var(--fg-muted); margin-bottom: 24px; }
.blog-post-content h2 { font-family: var(--font-serif); font-size: 28px; color: var(--forest); margin: 40px 0 16px; font-weight: 400; }
.blog-post-content h3 { font-family: var(--font-serif); font-size: 22px; color: var(--forest); margin: 32px 0 12px; font-weight: 400; }

/* ===================================================================
   QUIZ PAGE
   =================================================================== */
.quiz-page { background: var(--cream); min-height: 100vh; padding-top: 120px; }
.quiz-hero { padding: 0 60px 40px; text-align: center; }
.quiz-headline { font-family: var(--font-serif); font-size: clamp(36px, 4vw, 56px); color: var(--forest); margin-bottom: 12px; font-weight: 400; }
.quiz-sub { font-size: 17px; color: var(--fg-muted); font-family: var(--font-sans); font-size: 19px; }
.quiz-main { max-width: 700px; margin: 0 auto; padding: 0 60px 100px; }
.quiz-progress { display: flex; gap: 8px; margin-bottom: 40px; justify-content: center; }
.quiz-step-indicator { width: 40px; height: 3px; background: rgba(26,58,42,0.15); border-radius: 2px; transition: background 0.3s; }
.quiz-step-indicator.active { background: var(--gold); }
.quiz-step-indicator.done { background: rgba(26,58,42,0.4); }
.quiz-card { background: var(--ivory); border: 1px solid rgba(26,58,42,0.08); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.quiz-question { font-family: var(--font-serif); font-size: 28px; color: var(--forest); margin-bottom: 40px; font-weight: 400; line-height: 1.3; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quiz-option { padding: 24px; background: var(--cream-light); border: 1px solid rgba(26,58,42,0.1); border-radius: var(--radius-md); cursor: pointer; font-family: var(--font-body); font-size: 15px; color: var(--fg-muted); transition: all 0.2s; text-align: center; }
.quiz-option:hover { border-color: var(--gold); color: var(--forest); background: var(--ivory); }
.quiz-option.selected { border-color: var(--forest); background: rgba(26,58,42,0.04); color: var(--forest); font-weight: 600; }
.quiz-nav { display: flex; justify-content: center; margin-top: 40px; }

/* ===================================================================
   POLICY PAGES (shared)
   =================================================================== */
.policy-page { background: var(--cream); min-height: 100vh; }
.policy-hero { padding: 140px 60px 80px; text-align: center; }
.policy-headline { font-family: var(--font-serif); font-size: clamp(36px, 4vw, 56px); color: var(--forest); margin-bottom: 16px; font-weight: 400; }
.policy-sub { font-size: 17px; color: var(--fg-muted); font-family: var(--font-sans); }
.policy-content { max-width: 720px; margin: 0 auto; padding: 0 60px var(--space-2xl); }
.policy-content h2 { font-family: var(--font-serif); font-size: 24px; color: var(--forest); margin: 40px 0 16px; font-weight: 400; }
.policy-content p { font-family: var(--font-sans); font-size: 17px; line-height: 1.8; color: var(--fg-muted); margin-bottom: 20px; }
.policy-content ul { margin: 16px 0 24px 24px; }
.policy-content li { font-family: var(--font-sans); font-size: 17px; line-height: 1.8; color: var(--fg-muted); margin-bottom: 8px; }

/* ===================================================================
   UTILITY
   =================================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ===================================================================
   LUXURY MOTION — PERVASIVE SCROLL SYSTEM
   =================================================================== */

/* Scroll-reveal: all sections animate in */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.scroll-reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}
.scroll-reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.scroll-reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.scroll-reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.scroll-reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.scroll-reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.scroll-reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* Ambient botanical blobs — decorative backgrounds */
.botanical-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ambientPulse 4s ease-in-out infinite;
}
.botanical-bg.gold-blob {
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
}
.botanical-bg.forest-blob {
  background: radial-gradient(circle, rgba(26,58,42,0.08), transparent 70%);
}

/* Hover: image zoom (clipped) */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 0.5s var(--ease-luxury); }
a:hover .img-zoom img,
.img-zoom:hover img { transform: scale(1.04); }

/* Card lift on hover */
.card-lift {
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Gold shimmer on borders / accents */
.shimmer-gold {
  position: relative;
  overflow: hidden;
}
.shimmer-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.shimmer-gold:hover::after { animation-duration: 1.5s; }

/* Text link underline — gold */
.link-gold {
  color: var(--forest);
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.link-gold:hover { background-size: 100% 1px; }

/* Entrance animations for major sections */
@keyframes entranceFade {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.entrance-animate { animation: entranceFade 0.8s var(--ease-luxury) both; }
.entrance-delay-1 { animation-delay: 0.1s; }
.entrance-delay-2 { animation-delay: 0.2s; }
.entrance-delay-3 { animation-delay: 0.3s; }
.entrance-delay-4 { animation-delay: 0.4s; }
.entrance-delay-5 { animation-delay: 0.5s; }
.entrance-delay-6 { animation-delay: 0.6s; }

/* Subtle gold line expand on section headers */
.gold-line-expand {
  position: relative;
  padding-bottom: 16px;
}
.gold-line-expand::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.6s var(--ease-luxury) 0.3s;
}
.scroll-reveal.is-visible .gold-line-expand::after,
.gold-line-expand.visible::after { width: 60px; }

/* Floating accent animation (for icons / decorative elements) */
@keyframes floatAccent {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.float-accent { animation: floatAccent 5s ease-in-out infinite; }
.float-accent-1 { animation-delay: 0s; }
.float-accent-2 { animation-delay: 1.2s; }
.float-accent-3 { animation-delay: 2.4s; }

/* Ambient drift for decorative botanical elements */
@keyframes ambientDrift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(8px, -12px) rotate(3deg); }
  50%  { transform: translate(-5px, -20px) rotate(-2deg); }
  75%  { transform: translate(12px, -10px) rotate(4deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.ambient-drift { animation: ambientDrift 8s ease-in-out infinite; }

/* Page load: hero section — parallax layers */
.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

/* Reduced motion: disable animations */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal, .scroll-reveal-stagger > *, .entrance-animate,
  .float-accent, .ambient-drift, .botanical-bg, .shimmer-gold::after,
  .card-lift, .hero-float-card, .hero-botanical {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-reveal { opacity: 1; transform: none; }
}