/* ==========================================================
   DARAZSERUM — Soft Nude & Caramel Theme
   Palette: Warm Ivory · Caramel · Mocha · Muted Gold
   Typography: Cormorant Garamond + DM Sans
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Soft Nude & Caramel Palette */
  --cream:        #f7f2ee;
  --cream2:       #e8d5c4;
  --rose:         #c9956a;   /* caramel accent */
  --rose-dark:    #a0714f;   /* deep caramel */
  --rose-light:   #e8c4a0;   /* light caramel */
  --charcoal:     #2c1a0e;   /* dark mocha */
  --warm-gray:    #7a5c45;   /* mid mocha */
  --light-gray:   #d4bfaf;   /* soft linen */
  --white:        #ffffff;
  --caramel-pop:  #b8804f;   /* stronger caramel hover */
  --mocha-deep:   #1e1008;   /* deepest mocha */
  --linen-pale:   #faf6f2;   /* near-white */
  --gold:         #d4a853;   /* muted gold */
  --gold-light:   #f5e6c0;

  /* Semantic aliases */
  --bg-main:      #f7f2ee;
  --bg-section:   #f2ebe3;
  --bg-card:      #ffffff;
  --bg-card2:     #fdf8f4;
  --border:       rgba(160,113,79,0.25);
  --border-soft:  rgba(160,113,79,0.12);
  --text-main:    #2c1a0e;
  --text-sub:     #6b4a35;
  --text-muted:   #9c7560;

  /* Typography */
  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  /* Shadows — warm toned */
  --shadow-soft:   0 4px 24px rgba(44,26,14,0.08);
  --shadow-card:   0 8px 40px rgba(44,26,14,0.10);
  --shadow-lift:   0 20px 60px rgba(44,26,14,0.14);
  --shadow-caramel:0 6px 24px rgba(201,149,106,0.30);
  --shadow-gold:   0 6px 24px rgba(212,168,83,0.35);

  /* Spacing */
  --section-pad:    52px 8%;
  --section-pad-sm: 36px 6%;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; }

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }
@keyframes float     { 0%,100%{transform:translateY(0) rotate(-1deg);} 50%{transform:translateY(-10px) rotate(1deg);} }
@keyframes marquee   { from{transform:translateX(0);} to{transform:translateX(-50%);} }
@keyframes pulseRing { 0%,100%{transform:scale(1); opacity:0.6;} 50%{transform:scale(1.15); opacity:1;} }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  background: rgba(247,242,238,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.4s, background 0.4s, height 0.4s;
}
#main-nav.scrolled {
  background: rgba(247,242,238,0.97);
  box-shadow: 0 2px 32px rgba(44,26,14,0.10);
  height: 62px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex; align-items: center; gap: 4px;
}
.nav-logo span { color: var(--rose); font-weight: 300; }
.nav-logo::before {
  content: '✦';
  font-size: 10px; color: var(--gold);
  margin-right: 8px;
  animation: pulseRing 3.5s ease-in-out infinite;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.25s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }

.nav-links li { position: relative; }
.mega-dropdown {
  display: none;
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  min-width: 480px;
  box-shadow: var(--shadow-lift);
  grid-template-columns: repeat(3, 1fr);
  gap: 4px; z-index: 100;
}
.nav-links li:hover .mega-dropdown { display: grid; }
.mega-item {
  padding: 12px 16px; border-radius: 6px;
  text-decoration: none; display: block;
  transition: background 0.2s;
  color: var(--text-sub); font-size: 12px; letter-spacing: 0.05em;
}
.mega-item:hover { background: rgba(201,149,106,0.08); color: var(--rose); }
.mega-item strong { display: block; color: var(--text-main); font-size: 13px; margin-bottom: 2px; font-weight: 500; }

.has-dropdown { position: relative; }
.shop-dropdown {
  display: none;
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
  padding: 8px; z-index: 200;
  animation: dropIn 0.2s cubic-bezier(.22,1,.36,1);
}
@keyframes dropIn {
  from { opacity:0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}
.has-dropdown:hover .shop-dropdown { display: block; }
.shop-dropdown-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.shop-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  text-decoration: none; color: var(--text-sub); transition: background 0.2s;
}
.shop-drop-item:hover { background: rgba(201,149,106,0.08); color: var(--text-main); }
.drop-icon { font-size: 20px; }
.drop-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--text-main); font-family: var(--serif); }
.drop-text small { font-size: 11px; color: var(--text-muted); }
.shop-drop-all {
  grid-column: 1/-1; display: block; text-align: center;
  padding: 10px; margin-top: 4px;
  border-top: 1px solid var(--border-soft);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose); text-decoration: none; transition: color 0.2s;
}
.shop-drop-all:hover { color: var(--rose-dark); }
.nav-chevron { transition: transform 0.3s; opacity: 0.6; }
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 0.9rem; }
.nav-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub); font-size: 16px;
  text-decoration: none; border-radius: 6px;
  transition: color 0.2s, background 0.2s; position: relative;
}
.nav-icon:hover { color: var(--rose); background: rgba(201,149,106,0.10); }
.cart-count {
  position: absolute; top: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--rose); color: #fff;
  font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.cart-count[data-count="0"] { display: none; }
.nav-cta {
  padding: 9px 22px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all 0.3s; border: 1px solid var(--charcoal);
}
.nav-cta:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  box-shadow: var(--shadow-caramel);
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; height: 1.5px; width: 26px; background: var(--text-main); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--bg-card); z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 1.2rem 6%; gap: 0;
  transform: translateY(-10px); opacity: 0;
  transition: all 0.3s ease; pointer-events: none;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-sub); text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--border-soft); transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--rose); }

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

.hero-left {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 6% 60px 8%;
  background: var(--bg-main);
  animation: fadeUp 1s cubic-bezier(.22,1,.36,1) 0.1s both;
}
.hero-left::before {
  content: '';
  position: absolute; top: 80px; left: 8%;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--rose), transparent);
}

.hero-tag {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 14px;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--rose); }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px); font-weight: 300;
  line-height: 1.05; color: var(--text-main);
  margin-bottom: 1.4rem; letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; font-weight: 400; color: var(--rose); display: block; }
.hero-headline strong { font-weight: 600; }

.hero-sub {
  font-size: 15.5px; font-weight: 300; color: var(--text-sub);
  max-width: 400px; margin-bottom: 2.2rem; line-height: 1.85;
}

.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  padding: 14px 34px;
  background: var(--charcoal); color: var(--cream);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all 0.3s; display: inline-block; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(44,26,14,0.25);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-caramel);
}

.btn-ghost {
  padding: 14px 34px; background: transparent; color: var(--text-main);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  border: 1px solid var(--border);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost::after { content: '→'; font-size: 14px; }
.btn-ghost:hover { background: rgba(201,149,106,0.08); border-color: var(--rose); color: var(--rose); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}
.stat-num {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--text-main); display: block; line-height: 1; letter-spacing: -0.02em;
}
.stat-num span { color: var(--gold); font-size: 18px; }
.stat-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 5px; display: block;
}

.hero-right { position: relative; overflow: hidden; animation: fadeIn 1.4s ease 0.3s both; }
.hero-img-wrap {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,149,106,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(212,168,83,0.12) 0%, transparent 55%),
    var(--cream2);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap::before {
  content: ''; position: absolute;
  width: 340px; height: 340px;
  border: 1px solid rgba(160,113,79,0.15); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.hero-img-wrap::after {
  content: ''; position: absolute;
  width: 440px; height: 440px;
  border: 1px solid rgba(160,113,79,0.08); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.hero-product-img {
  width: 68%; max-width: 380px; object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 28px 56px rgba(44,26,14,0.22));
  position: relative; z-index: 1;
}
.hero-badge {
  position: absolute; bottom: 10%; left: 7%;
  background: rgba(255,255,255,0.90); backdrop-filter: blur(12px);
  border-radius: 10px; padding: 14px 20px; box-shadow: var(--shadow-card);
  font-size: 11.5px; font-weight: 400; color: var(--text-sub);
  border: 1px solid var(--border); z-index: 2;
}
.hero-badge strong {
  display: block; font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--rose); margin-top: 2px;
}
.hero-badge-2 {
  position: absolute; top: 14%; right: 8%;
  background: linear-gradient(135deg, var(--gold), #b8892a);
  border-radius: 50%; width: 84px; height: 84px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; box-shadow: var(--shadow-gold); z-index: 2;
}
.hero-badge-2 span { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; opacity: 0.9; }
.hero-badge-2 strong { font-family: var(--serif); font-size: 17px; font-weight: 600; }

/* ─────────────────────────────────────────────────────────
   MARQUEE BAR
   ───────────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--charcoal);
  color: rgba(247,242,238,0.65);
  overflow: hidden; white-space: nowrap; padding: 14px 0;
  border-top: 1px solid rgba(44,26,14,0.15);
  border-bottom: 1px solid rgba(44,26,14,0.15);
}
.marquee-inner { display: inline-block; animation: marquee 28s linear infinite; }
.marquee-item {
  display: inline-block; margin: 0 2.5rem;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: rgba(247,242,238,0.70);
}
.marquee-dot { color: var(--gold); margin: 0 0.4rem; }

/* ─────────────────────────────────────────────────────────
   FEATURES STRIP
   ───────────────────────────────────────────────────────── */
.features-strip {
  background: var(--bg-card);
  padding: 0 8%; display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}
.feature-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 28px 20px; border-right: 1px solid var(--border-soft);
  transition: background 0.3s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(201,149,106,0.05); }
.feature-icon {
  width: 46px; height: 46px; background: rgba(201,149,106,0.10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-item:hover .feature-icon { background: rgba(201,149,106,0.20); transform: scale(1.06); }
.feature-text h4 { font-size: 13.5px; font-weight: 600; color: var(--text-main); margin-bottom: 4px; }
.feature-text p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ─────────────────────────────────────────────────────────
   SHARED SECTION STYLES
   ───────────────────────────────────────────────────────── */
section { padding: var(--section-pad); }

.section-label {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 54px); font-weight: 300;
  line-height: 1.1; margin-bottom: 1.2rem; color: var(--text-main); letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-title strong { font-weight: 600; }
.section-sub { font-size: 15px; font-weight: 300; color: var(--text-sub); max-width: 520px; line-height: 1.85; }

/* ─────────────────────────────────────────────────────────
   CATEGORIES SECTION
   ───────────────────────────────────────────────────────── */
.categories-section { background: var(--bg-section); }
.categories-section .section-header { text-align: center; max-width: 540px; margin: 0 auto 2.4rem; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-card {
  background: var(--bg-card); border-radius: 10px; padding: 26px 18px 22px;
  text-align: center; text-decoration: none;
  border: 1px solid var(--border-soft);
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  display: block; position: relative; overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,149,106,0.06), rgba(212,168,83,0.04));
  opacity: 0; transition: opacity 0.4s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--border); }
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 52px; height: 52px; font-size: 22px;
  background: rgba(201,149,106,0.10); border-radius: 50%;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(160,113,79,0.18);
  transition: transform 0.3s, background 0.3s; position: relative; z-index: 1;
}
.category-card:hover .category-icon { background: rgba(201,149,106,0.20); transform: scale(1.08); }
.category-name {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--text-main); position: relative; z-index: 1;
  display: block; margin-bottom: 3px; letter-spacing: 0.02em;
}
.category-count { font-size: 11px; color: var(--rose); position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────
   PRODUCTS SECTION
   ───────────────────────────────────────────────────────── */
.products-section { background: var(--bg-main); }
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1rem;
}
.view-all-link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-sub); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border: 1px solid var(--border); border-radius: 3px; transition: all 0.3s;
}
.view-all-link:hover { background: rgba(201,149,106,0.08); color: var(--rose); border-color: var(--rose); }

.woocommerce ul.products,
.products-grid {
  display: grid !important; grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important; list-style: none !important; padding: 0 !important; margin: 0 !important;
}

.woocommerce ul.products li.product,
.product-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-soft) !important; border-radius: 10px !important;
  overflow: visible !important;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s !important;
  cursor: pointer !important; margin: 0 !important; padding: 0 !important; position: relative !important;
}
.woocommerce ul.products li.product:hover,
.product-card:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-lift) !important; border-color: var(--border) !important; }

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.product-img-wrap {
  position: relative;
  background: linear-gradient(150deg, #f2ebe3 0%, var(--cream2) 100%);
  height: 220px; overflow: hidden;
  display: flex !important; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 10px 10px 0 0;
}
.woocommerce ul.products li.product img,
.product-img-wrap img {
  width: 74%; height: 86%; object-fit: contain !important;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1) !important;
  border: none !important; box-shadow: none !important; margin: 0 !important;
  filter: drop-shadow(0 8px 20px rgba(44,26,14,0.18));
  position: relative !important; z-index: 1 !important;
}
.woocommerce ul.products li.product:hover img,
.product-card:hover .product-img-wrap img { transform: scale(1.05) !important; }

.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale,
.product-badge {
  position: absolute !important; top: 10px !important; left: 10px !important; z-index: 20 !important;
  background: var(--charcoal) !important; color: var(--cream) !important;
  font-size: 9.5px !important; font-weight: 700 !important;
  letter-spacing: 0.12em !important; text-transform: uppercase !important;
  padding: 5px 11px !important; border-radius: 20px !important;
  font-family: var(--sans) !important; line-height: 1.5 !important;
  width: auto !important; height: auto !important; white-space: nowrap !important; display: inline-block !important;
}

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(44,26,14,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; z-index: 5;
  border-radius: 10px 10px 0 0;
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  padding: 11px 26px; background: var(--rose); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 3px; transition: background 0.2s; text-decoration: none;
}
.overlay-btn:hover { background: var(--rose-dark); }

.woocommerce ul.products li.product .product-info-wrap,
.product-info { padding: 16px 18px 18px; }

.product-category { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-name {
  font-family: var(--serif) !important; font-size: 17px !important; font-weight: 500 !important;
  color: var(--text-main) !important; margin-bottom: 8px !important; padding: 0 !important; line-height: 1.25 !important;
}
.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }

.woocommerce ul.products li.product .price,
.product-price { font-size: 15px !important; font-weight: 600 !important; color: var(--rose) !important; font-family: var(--sans) !important; }
.woocommerce ul.products li.product .price del { opacity: 0.4; font-size: 12px !important; font-weight: 400 !important; }
.product-stars { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; }

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: block !important; width: calc(100% - 36px) !important; margin: 0 18px 16px !important;
  padding: 11px 0 !important;
  background: rgba(201,149,106,0.10) !important; color: var(--rose-dark) !important;
  font-family: var(--sans) !important; font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 0.12em !important; text-transform: uppercase !important;
  border: 1px solid var(--border) !important; border-radius: 3px !important;
  cursor: pointer !important; text-align: center !important; text-decoration: none !important;
  transition: all 0.25s !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background: var(--charcoal) !important; color: var(--cream) !important; border-color: var(--charcoal) !important;
}
.woocommerce .star-rating { color: var(--gold) !important; }
.woocommerce .star-rating::before, .woocommerce .star-rating span::before { color: var(--gold) !important; }

/* ─────────────────────────────────────────────────────────
   SKINCARE ROUTINE
   ───────────────────────────────────────────────────────── */
.routine-section {
  background: var(--charcoal); position: relative; overflow: hidden;
}
.routine-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,149,106,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(212,168,83,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.routine-section .section-label { color: var(--rose-light); }
.routine-section .section-label::before { background: linear-gradient(90deg, var(--rose), var(--gold)); }
.routine-section .section-title { color: var(--cream); }
.routine-section .section-title em { color: var(--rose-light); }
.routine-section .section-sub { color: rgba(247,242,238,0.60); font-size: 15px; }

.routine-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 2.5rem;
  border: 1px solid rgba(201,149,106,0.25); border-radius: 12px; overflow: hidden;
}
.routine-step {
  padding: 40px 36px; background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(201,149,106,0.12);
  position: relative; transition: background 0.4s;
}
.routine-step:last-child { border-right: none; }
.routine-step:hover { background: rgba(201,149,106,0.07); }
.routine-step::before {
  content: attr(data-num); position: absolute; top: 24px; right: 24px;
  font-family: var(--serif); font-size: 64px; font-weight: 300;
  color: rgba(201,149,106,0.08); line-height: 1; pointer-events: none; letter-spacing: -0.04em;
}
.step-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 12px; }
.step-title { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--cream); margin-bottom: 14px; line-height: 1.2; }
.step-desc { font-size: 14px; font-weight: 300; color: rgba(247,242,238,0.72); line-height: 1.8; margin-bottom: 22px; }
.step-product {
  font-size: 12px; color: rgba(247,242,238,0.45);
  border-top: 1px solid rgba(201,149,106,0.18); padding-top: 16px;
}
.step-product a { color: var(--rose-light); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.step-product a:hover { color: var(--gold-light); }

/* ─────────────────────────────────────────────────────────
   INGREDIENTS SECTION
   ───────────────────────────────────────────────────────── */
.ingredients-section { background: var(--bg-section); }
.ingredients-header { margin-bottom: 2.8rem; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ingredient-card {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 8px;
  padding: 28px; display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}
.ingredient-card:hover { background: var(--linen-pale); border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ingredient-icon {
  font-size: 22px; flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(201,149,106,0.10); border-radius: 10px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: transform 0.3s;
}
.ingredient-card:hover .ingredient-icon { transform: scale(1.08); }
.ingredient-body h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--text-main); margin-bottom: 4px; }
.ingredient-benefit { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.ingredient-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ─────────────────────────────────────────────────────────
   STORY / ABOUT — Skin Types
   ───────────────────────────────────────────────────────── */
.story-section { background: var(--bg-main); padding: 52px 8%; }
.story-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.story-tagline { font-size: 15px; color: var(--text-sub); line-height: 1.7; margin-top: 0.8rem; font-weight: 300; }

.story-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 40px; margin-bottom: 3rem; box-shadow: var(--shadow-soft);
}
.story-stat { flex: 1; text-align: center; }
.sstat-num { display: block; font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--rose); line-height: 1; letter-spacing: -0.02em; }
.sstat-num sup { font-size: 18px; font-weight: 400; vertical-align: super; color: var(--gold); }
.sstat-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.story-stat-div { width: 1px; height: 52px; background: var(--border-soft); flex-shrink: 0; margin: 0 8px; }

.story-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.story-col-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.story-col-label::before { content: ''; width: 20px; height: 1px; background: var(--rose); }

.skin-type-visual-grid { display: flex; flex-direction: column; gap: 10px; }
.stv-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px;
  padding: 16px 20px; cursor: default; transition: all 0.3s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden;
}
.stv-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--rose), var(--gold));
  border-radius: 12px 0 0 12px; opacity: 0; transition: opacity 0.3s;
}
.stv-card:hover { background: var(--linen-pale); border-color: var(--border); transform: translateX(4px); }
.stv-card:hover::before { opacity: 1; }
.stv-icon-wrap {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(201,149,106,0.10); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.stv-card:hover .stv-icon-wrap { background: rgba(201,149,106,0.20); transform: scale(1.08); }
.stv-body strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--text-main); margin-bottom: 3px; }
.stv-body span { font-size: 12.5px; color: var(--text-muted); line-height: 1.4; }
.stv-arrow { font-size: 16px; color: var(--rose); opacity: 0; transform: translateX(-4px); transition: opacity 0.3s, transform 0.3s; flex-shrink: 0; }
.stv-card:hover .stv-arrow { opacity: 1; transform: translateX(0); }

.story-promise-stack { display: flex; flex-direction: column; gap: 12px; }
.promise-card {
  display: grid; grid-template-columns: 36px 44px 1fr; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px;
  padding: 18px 20px; transition: all 0.3s;
}
.promise-card:hover { background: var(--linen-pale); border-color: var(--border); box-shadow: var(--shadow-card); }
.promise-num { font-family: var(--serif); font-size: 28px; font-weight: 300; color: rgba(160,113,79,0.22); line-height: 1; text-align: center; }
.promise-card:hover .promise-num { color: rgba(160,113,79,0.45); }
.promise-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,149,106,0.10); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: transform 0.3s, background 0.3s;
}
.promise-card:hover .promise-icon { transform: scale(1.08); background: rgba(201,149,106,0.18); }
.promise-body strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--text-main); margin-bottom: 4px; }
.promise-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─────────────────────────────────────────────────────────
   WHY CHOOSE US
   ───────────────────────────────────────────────────────── */
.why-section { background: var(--bg-section); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 14px; margin-top: 2rem; }
.why-feature {
  display: flex; align-items: flex-start; gap: 18px; padding: 20px 24px;
  border: 1px solid var(--border-soft); border-radius: 8px; transition: all 0.3s;
  background: var(--bg-card);
}
.why-feature:hover { background: var(--linen-pale); border-color: var(--border); transform: translateX(5px); }
.why-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,149,106,0.10); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
  transition: transform 0.3s;
}
.why-feature:hover .why-icon { transform: scale(1.08); }
.why-feature h4 { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--text-main); margin-bottom: 4px; }
.why-feature p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

.why-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.why-visual-inner {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(ellipse at 40% 40%, rgba(201,149,106,0.20) 0%, rgba(232,213,196,0.5) 60%, var(--bg-section) 100%);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative; overflow: hidden;
}
.why-visual-stats { position: absolute; display: flex; flex-direction: column; gap: 12px; right: -20px; top: 50%; transform: translateY(-50%); }
.why-stat-pill {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 40px;
  padding: 10px 18px; box-shadow: var(--shadow-card); text-align: center; white-space: nowrap;
}
.why-stat-pill .num { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--rose); display: block; line-height: 1; }
.why-stat-pill .lbl { font-size: 9.5px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────── */
.reviews-section { background: var(--bg-main); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3rem; }
.review-card {
  background: var(--bg-card); border-radius: 10px; padding: 32px 28px;
  border: 1px solid var(--border-soft); transition: all 0.4s cubic-bezier(.22,1,.36,1); position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--border); }
.review-card::before {
  content: '\201C'; position: absolute; top: 20px; right: 26px;
  font-family: var(--serif); font-size: 72px; line-height: 1;
  color: rgba(201,149,106,0.10); pointer-events: none;
}
.review-stars { font-size: 13px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-family: var(--serif); font-size: 15.5px; font-weight: 300; font-style: italic; line-height: 1.72; color: var(--text-sub); margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream2); border: 2px solid var(--border);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; color: var(--rose);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-size: 13.5px; font-weight: 600; color: var(--text-main); }
.review-location { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 2px; }
.review-product { font-size: 10.5px; color: var(--rose); letter-spacing: 0.05em; margin-top: 2px; font-style: italic; }

/* ─────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-section); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { margin-bottom: 2.8rem; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 8px; overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; gap: 16px;
}
.faq-question:hover { background: rgba(201,149,106,0.05); }
.faq-question span:first-child { font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--text-main); line-height: 1.4; }
.faq-icon { font-size: 20px; font-weight: 300; color: var(--rose); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; font-weight: 300; color: var(--text-sub); line-height: 1.78; }
.faq-cta { margin-top: 2.5rem; text-align: center; display: flex; align-items: center; gap: 1.5rem; justify-content: center; }
.faq-cta p { color: var(--text-muted); font-size: 14px; }

/* ─────────────────────────────────────────────────────────
   NEWSLETTER
   ───────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--cream2); padding: 72px 8%;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-soft);
}
.newsletter-section::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,149,106,0.14) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.newsletter-section::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.08) 0%, transparent 70%);
  bottom: -60px; left: 10%; pointer-events: none;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
}
.newsletter-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose); padding: 6px 16px; border: 1px solid var(--border); border-radius: 20px;
  margin-bottom: 1.2rem; background: rgba(201,149,106,0.08);
}
.newsletter-left h2 { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 48px); font-weight: 300; line-height: 1.1; color: var(--text-main); margin-bottom: 1rem; }
.newsletter-left h2 em { font-style: italic; color: var(--rose); }
.newsletter-left > p { font-size: 15px; color: var(--text-sub); line-height: 1.8; margin-bottom: 1.4rem; }
.newsletter-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.newsletter-perks li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-sub); }
.perk-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(201,149,106,0.15); border: 1px solid var(--border);
  color: var(--rose); font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.newsletter-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 32px; box-shadow: var(--shadow-card);
}
.nl-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-sub); margin-bottom: 8px; }
.nl-input-wrap {
  display: flex; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  background: var(--linen-pale); margin-bottom: 10px;
}
.nl-input-wrap input { flex: 1; padding: 14px 18px; background: transparent; border: none; color: var(--text-main); font-family: var(--sans); font-size: 14px; outline: none; }
.nl-input-wrap input::placeholder { color: var(--text-muted); }
.nl-input-wrap button { padding: 14px 24px; background: var(--charcoal); color: var(--cream); border: none; cursor: pointer; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s; white-space: nowrap; }
.nl-input-wrap button:hover { background: var(--rose-dark); }
.nl-note { font-size: 11.5px; color: var(--text-muted); margin-bottom: 1.4rem; }
.nl-stats { display: flex; align-items: center; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.nl-stat { text-align: center; flex: 1; }
.nl-stat strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--rose); line-height: 1; }
.nl-stat span { font-size: 10.5px; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 3px; display: block; }
.nl-divider { width: 1px; height: 36px; background: var(--border-soft); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.ds-footer {
  background: var(--charcoal); color: rgba(247,242,238,0.45);
  padding: 64px 8% 0; position: relative;
}
.ds-footer::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,149,106,0.4), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .logo {
  font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--cream);
  letter-spacing: 0.04em; text-decoration: none; display: inline-block; margin-bottom: 1.2rem;
}
.footer-brand .logo span { color: var(--rose-light); font-weight: 300; }
.footer-brand p { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(247,242,238,0.35); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(201,149,106,0.25);
  display: flex; align-items: center; justify-content: center; color: rgba(247,242,238,0.40);
  font-size: 11px; font-weight: 600; text-decoration: none; transition: all 0.3s;
}
.social-link:hover { background: var(--rose); border-color: var(--rose); color: var(--bg-main); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--serif); font-size: 16px; font-weight: 500; color: var(--cream); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; font-weight: 300; color: rgba(247,242,238,0.35); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,149,106,0.15); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 12px; color: rgba(247,242,238,0.25); letter-spacing: 0.04em; }
.trust-badges { display: flex; gap: 8px; }
.trust-badge {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(247,242,238,0.25); padding: 5px 12px; border: 1px solid rgba(201,149,106,0.18); border-radius: 20px;
}

/* ─────────────────────────────────────────────────────────
   WOOCOMMERCE GLOBAL OVERRIDES
   ───────────────────────────────────────────────────────── */
.woocommerce-message, .woocommerce-info {
  border-top-color: var(--rose) !important; background: var(--bg-card) !important; color: var(--text-main) !important;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--charcoal) !important; color: var(--cream) !important;
  border-radius: 3px !important; font-family: var(--sans) !important; font-weight: 600 !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--rose-dark) !important; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { gap: 50px; }
  .why-visual-stats { right: -10px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 44px 6%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .ds-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-left { padding: 48px 6%; order: 2; }
  .hero-left::before { display: none; }
  .hero-right { min-height: 50vw; order: 1; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--border-soft); border-top: 1px solid var(--border-soft); }
  .feature-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border-soft); }
  .woocommerce ul.products, .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .story-bottom { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .routine-steps { grid-template-columns: 1fr; }
  .routine-step { border-right: none; border-bottom: 1px solid rgba(201,149,106,0.12); }
  .routine-step:last-child { border-bottom: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-stats { padding: 22px 20px; }
  .sstat-num { font-size: 28px; }
}
@media (max-width: 600px) {
  :root { --section-pad: 40px 5%; }
  .hero-headline { font-size: clamp(36px, 9.5vw, 52px); }
  .hero-stats { gap: 1.4rem; }
  .stat-num { font-size: 24px; }
  .features-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid var(--border-soft); }
  .feature-item:last-child { border-bottom: none; }
  .woocommerce ul.products, .products-grid { grid-template-columns: 1fr !important; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .trust-badges { flex-wrap: wrap; }
  .routine-step { padding: 32px 22px; }
  .step-title { font-size: 22px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .story-stats { flex-wrap: wrap; gap: 20px; }
  .story-stat-div { display: none; }
  .story-stat { min-width: calc(50% - 10px); }
  .nl-input-wrap { flex-direction: column; }
  .nl-input-wrap button { border-radius: 0 0 8px 8px; }
}
@media (min-width: 1600px) {
  :root { --section-pad: 72px 10%; }
  body { font-size: 16px; }
  .ds-hero { min-height: 68vh; }
}

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
