/* ================================================================
   Lucky Tech LLC — Refined cream-and-olive design system
   Warm off-white surfaces · deep olive primary · gold-brown accent
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--ink); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--primary-soft); color: var(--primary); }

/* ----- Tokens ----- */
:root {
  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F6F1E7;
  --bg-2: #EFE7D6;
  --bg-3: #E7DCC6;
  --card: #FFFFFF;
  --paper: #FFFFFF;
  --paper-2: #F6F1E7;
  --paper-3: #EFE7D6;

  /* Text — graphite */
  --ink: #1F1F1F;
  --ink-2: #3F3F3F;
  --ink-3: #6A6A6A;
  --muted: #999999;
  --muted-2: #C8BFA9;
  --line: #E8DFCC;
  --line-2: #F2EBD8;
  --line-soft: rgba(31,31,31,0.06);

  /* Brand — deep olive */
  --primary: #5B6342;
  --primary-bright: #6E7651;
  --primary-dark: #424A30;
  --primary-soft: #EDF0E2;
  --primary-glow: rgba(91,99,66,0.22);

  /* Accent — gold-brown (logo, dividers) */
  --accent: #B8915A;
  --accent-dark: #97744C;
  --accent-soft: #F5E8D0;
  --accent-bg: var(--accent-soft);

  /* Legacy aliases */
  --accent-red: var(--primary);
  --accent-red-2: var(--primary-dark);
  --accent-green: var(--primary);

  --gold: #C19A4F;
  --success: #6B7E4D;
  --danger: #C04F3D;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', sans-serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-serif: var(--font-display);
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-40: clamp(2rem, 4vw, 2.75rem);
  --fs-56: clamp(2.25rem, 5vw, 3.5rem);
  --fs-72: clamp(2.5rem, 5.5vw, 4rem);

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --r-xs: 4px; --r-sm: 6px; --r-md: 10px; --r-lg: 14px;
  --r-xl: 20px; --r-2xl: 28px; --r-full: 999px;

  --sh-sm: 0 1px 3px rgba(31,31,31,0.05);
  --sh-md: 0 4px 16px rgba(31,31,31,0.07), 0 2px 4px rgba(31,31,31,0.04);
  --sh-lg: 0 16px 48px rgba(31,31,31,0.09), 0 4px 12px rgba(31,31,31,0.04);
  --sh-hover: 0 20px 56px rgba(31,31,31,0.11), 0 6px 16px rgba(31,31,31,0.05);
  --sh-olive: 0 8px 22px rgba(91,99,66,0.28);
  --sh-glow: var(--sh-olive);
  --sh-blue: var(--sh-olive);

  --container: 1320px;
  --nav-h: 80px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: var(--fs-56); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
h2 { font-size: var(--fs-32); font-weight: 700; }
h3 { font-size: var(--fs-20); font-weight: 700; }
h4 { font-size: var(--fs-16); font-weight: 700; }
p  { color: var(--ink-3); }

em { font-style: normal; color: var(--primary); font-weight: inherit; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-11);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: var(--r-full);
}

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-16) 0; }
.section-tight { padding: var(--sp-12) 0; }
.rule, .rule-plain, .rule-thin { display: none; }

/* ----- Top promo bar ----- */
.topbar {
  background: var(--bg-soft);
  color: var(--ink-2);
  font-size: var(--fs-13);
  padding: 11px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: flex; justify-content: center; align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.topbar .item { display: inline-flex; align-items: center; gap: 6px; }
.topbar .item svg { color: var(--primary); flex-shrink: 0; }
.topbar a { color: var(--ink); text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--primary); }

/* ----- Navigation ----- */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-6);
}

/* Logo (LT badge + serif wordmark) */
.nav-logo {
  display: inline-flex; align-items: center; gap: 14px;
  flex-shrink: 0;
  color: var(--ink);
}
.nav-logo .mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-style: italic;
}
.nav-logo .mark::after { content: none; }
.nav-logo .accent {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-transform: none;
}
.nav-logo .sub { display: none; }

.nav-menu { display: flex; gap: var(--sp-6); align-items: center; }
.nav-menu a {
  font-size: var(--fs-15);
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color .15s var(--ease);
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a.active { color: var(--primary); font-weight: 600; }
.nav-menu a.active::after {
  content: '';
  position: absolute; left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-search {
  flex: 1; max-width: 340px;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  padding: 10px 18px;
  transition: all .15s var(--ease);
}
.nav-search:focus-within { background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.nav-search input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-size: var(--fs-14); color: var(--ink);
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search button {
  flex-shrink: 0;
  color: var(--ink-3);
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-search button:hover { color: var(--primary); }

.nav-tools { display: flex; align-items: center; gap: var(--sp-4); }
.nav-tool {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-2);
  font-size: var(--fs-13);
  font-weight: 500;
  padding: 8px 4px;
  position: relative;
  transition: color .15s var(--ease);
}
.nav-tool:hover { color: var(--primary); }
.nav-tool svg { flex-shrink: 0; }
.nav-tool .badge {
  position: absolute; top: 0; right: -8px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-mobile-toggle { display: none; padding: 8px; }

@media (max-width: 1024px) {
  .nav-search { max-width: 200px; }
  .nav-menu { gap: var(--sp-4); }
}
@media (max-width: 880px) {
  .nav-search { display: none; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0;
              background: var(--bg); flex-direction: column; padding: var(--sp-4) var(--sp-6);
              border-bottom: 1px solid var(--line); box-shadow: var(--sh-md); }
  .nav-menu.is-open { display: flex; gap: 4px; }
  .nav-menu a { padding: var(--sp-3) 0; width: 100%; border-bottom: 1px solid var(--line-2); }
  .nav-mobile-toggle { display: inline-flex; align-items: center; }
  .nav-tool span:not(.badge) { display: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: var(--fs-14);
  font-weight: 600;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: all .18s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--sh-olive); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--primary); color: var(--primary); box-shadow: var(--sh-sm); }
.btn-red { background: var(--danger); color: #fff; }
.btn-red:hover { background: #A8412E; }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--primary);
  padding: 0; background: transparent; cursor: pointer;
}
.btn-link::after { content: '→'; transition: transform .18s var(--ease); }
.btn-link:hover { color: var(--primary-dark); }
.btn-link:hover::after { transform: translateX(3px); }
.btn-sm { padding: 10px 20px; font-size: var(--fs-13); }
.btn-lg { padding: 16px 32px; font-size: var(--fs-15); }

/* ============================================================
   HERO — cream backdrop with full-bleed scene image on right
============================================================ */
.hero {
  background: var(--bg);
  padding: var(--sp-8) 0 var(--sp-10);
}
.hero-shell {
  position: relative;
  background:
    linear-gradient(90deg, rgba(246,241,231,0.96) 0%, rgba(246,241,231,0.55) 36%, rgba(246,241,231,0) 56%),
    url('../images/hero-scene.webp') center right / cover no-repeat,
    #F6F1E7;
  border-radius: var(--r-2xl);
  padding: var(--sp-20) var(--sp-16);
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-shell::before {
  /* Subtle slanted light wash from upper-right (matches the natural shadow in scene) */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 50%, rgba(255,255,255,0.10) 75%, transparent 90%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.hero-content .eyebrow { margin-bottom: var(--sp-5); }
.hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}
.hero-content h1 em { color: var(--primary); }
.hero-content .lead {
  font-size: var(--fs-16);
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
  max-width: 38ch;
}
.hero-content .actions {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-shell { padding: var(--sp-12); min-height: 460px; }
}
@media (max-width: 720px) {
  .hero-shell {
    padding: var(--sp-10) var(--sp-6) 360px;
    background:
      linear-gradient(180deg, rgba(246,241,231,0.96) 0%, rgba(246,241,231,0.55) 30%, rgba(246,241,231,0) 56%),
      url('../images/hero-scene.webp') bottom center / cover no-repeat,
      #F6F1E7;
    min-height: 720px;
  }
}

/* Legacy hero classes — hidden */
.hero-grid, .hero-stage, .hero-card, .hero-prod, .hero-badge, .hero-trust, .hero-thumbs, .hero-foot, .hero-figure, .hero-stats { display: none; }

/* ============================================================
   TRUST BAR — 4 quiet promises
============================================================ */
.trust-bar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 4px;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute; left: -12px; top: 12px; bottom: 12px;
  width: 1px; background: var(--line);
}
.trust-item .ico {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item .label {
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.trust-item .sub {
  font-size: var(--fs-12);
  color: var(--ink-3);
  margin-top: 2px;
}
@media (max-width: 880px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item + .trust-item::before { display: none; }
}
@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION HEAD
============================================================ */
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--sp-4); flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.sec-head .left .eyebrow { margin-bottom: var(--sp-3); }
.sec-head h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 4px;
  color: var(--ink);
}
.sec-head h2 em { color: var(--primary); }

/* ============================================================
   CATEGORIES — 5 cream cards with floating product photos
============================================================ */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}
.cat-tile {
  position: relative;
  display: block;
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  min-height: 170px;
  overflow: hidden;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--line); }
.cat-tile:hover .photo { transform: scale(1.06) translateY(-4px); }
.cat-tile .photo {
  position: absolute;
  right: -10%; bottom: -8%;
  width: 62%; height: 70%;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .35s var(--ease);
  filter: drop-shadow(0 6px 14px rgba(31,31,31,0.10));
}
.cat-tile .content {
  position: relative; z-index: 2;
  max-width: 62%;
}
.cat-tile .ico {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.7);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
}
.cat-tile h3 {
  font-size: var(--fs-17);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.cat-tile .sub {
  font-size: var(--fs-12);
  color: var(--ink-3);
  font-weight: 500;
  line-height: 1.4;
}
.cat-tile .arrow {
  position: absolute;
  right: var(--sp-4); bottom: var(--sp-4);
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: all .2s var(--ease);
}
.cat-tile:hover .arrow {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 1024px) {
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
}

.cat-feature { display: none; }

/* ============================================================
   PRODUCT CARD — clean white, olive accents
============================================================ */
.product-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .2s var(--ease);
  position: relative;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
  transform: translateY(-3px);
}
.product-card .img-wrap {
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: var(--sp-5);
  background: var(--bg-soft);
  transition: transform .4s var(--ease);
  mix-blend-mode: multiply;
}
.product-card:hover .img-wrap img { transform: scale(1.06); }

.product-card .badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--primary);
  color: #fff;
  z-index: 2;
}
.product-card .badge.badge-sale { background: var(--danger); }
.product-card .badge.badge-new { background: var(--accent); }
.product-card .badge.badge-stock {
  left: auto; right: var(--sp-3);
  background: rgba(255,255,255,0.95);
  color: var(--ink-3);
  border: 1px solid var(--line);
}

.product-card .heart-btn {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all .15s var(--ease);
  z-index: 3;
}
.product-card:hover .heart-btn { opacity: 1; }
.product-card .heart-btn:hover { color: var(--danger); border-color: var(--danger); }
.product-card .heart-btn.is-saved { color: var(--danger); border-color: var(--danger); opacity: 1; }

.product-card .body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
}
.product-card .meta {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.product-card .name {
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.product-card .price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.product-card .price {
  font-size: var(--fs-18);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.product-card .price-old {
  font-size: var(--fs-13);
  color: var(--muted);
  text-decoration: line-through;
}
.product-card .rating {
  display: flex; align-items: center; gap: 6px;
  font-size: var(--fs-12);
  color: var(--ink-3);
}
.product-card .stars, .product-card .stars-text { color: var(--gold); letter-spacing: 1px; }

/* ============================================================
   GRIDS
============================================================ */
.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-asym-3, .grid-asym-4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-asym-3, .grid-asym-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   SALE BANNER
============================================================ */
.sale-banner {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-10);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-6);
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sale-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: 15%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(184,145,90,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.sale-banner .copy { position: relative; z-index: 2; max-width: 60ch; }
.sale-banner .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.sale-banner h2 {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.sale-banner h2 em { color: var(--accent); font-style: normal; }
.sale-banner .desc {
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.sale-banner .btn-white {
  background: #fff;
  color: var(--primary);
  border: 0;
  position: relative; z-index: 2;
}
.sale-banner .btn-white:hover { background: var(--accent-soft); }
@media (max-width: 720px) {
  .sale-banner { grid-template-columns: 1fr; text-align: left; }
}

/* ============================================================
   WHY / Promises (used on About)
============================================================ */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.why-card {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  transition: all .2s var(--ease);
  text-align: left;
}
.why-card:hover { background: var(--primary-soft); }
.why-card .ico {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: #fff;
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
}
.why-card h4 { font-size: var(--fs-15); font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.why-card p { font-size: var(--fs-13); color: var(--ink-3); line-height: 1.5; }
@media (max-width: 720px) { .why-strip { grid-template-columns: 1fr 1fr; } }

.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
}
.promise {
  background: var(--bg-soft);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
}
.promise .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-13);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: var(--sp-3);
}
.promise h4 { font-family: var(--font-sans); font-size: var(--fs-15); font-weight: 700; margin-bottom: 4px; }
.promise p { font-family: var(--font-sans); font-size: var(--fs-13); color: var(--ink-3); line-height: 1.5; }
@media (max-width: 720px) { .promises { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.85);
  padding: var(--sp-16) 0 var(--sp-6);
}
.footer * { color: inherit; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
.footer-brand .logo {
  display: inline-flex; align-items: center; gap: 14px;
}
.footer-brand .logo .mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(184,145,90,0.15);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}
.footer-brand .logo .mark::after { content: none; }
.footer-brand .logo .accent {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  text-transform: none;
}
.footer-brand .tagline {
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-top: var(--sp-3);
  max-width: 34ch;
}
.footer-brand .meta {
  margin-top: var(--sp-5);
  font-size: var(--fs-13);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.footer-brand .meta strong {
  display: block;
  font-weight: 700;
  font-size: var(--fs-11);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: var(--sp-4) 0 6px;
}
.footer-brand .meta strong:first-child { margin-top: 0; }
.footer-brand .meta a { color: rgba(255,255,255,0.85); }
.footer-brand .meta a:hover { color: var(--accent); }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-12);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-4);
}
.footer-col ul li { margin-bottom: var(--sp-2); }
.footer-col a {
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.55);
  transition: color .15s var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-5);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-bottom .copyright {
  font-size: var(--fs-13);
  color: rgba(255,255,255,0.45);
}
.footer-bottom .pays { display: flex; gap: var(--sp-2); align-items: center; }
.footer-bottom .pay {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 4px 8px;
  height: 30px; min-width: 46px;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-bottom .pay svg { height: 16px; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PAGE HEAD
============================================================ */
.page-head {
  padding: var(--sp-12) 0 var(--sp-8);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.page-head .breadcrumb {
  font-size: var(--fs-12);
  color: var(--ink-3);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.page-head .breadcrumb a { color: var(--ink-3); }
.page-head .breadcrumb a:hover { color: var(--primary); }
.page-head h1 { font-size: var(--fs-40); font-weight: 700; letter-spacing: -0.025em; margin-bottom: var(--sp-3); }
.page-head h1 em { color: var(--primary); }
.page-head .lead { font-size: var(--fs-16); color: var(--ink-3); max-width: 60ch; line-height: 1.6; }

/* ============================================================
   PROSE / Legal pages
============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: var(--fs-24); margin-top: var(--sp-10); margin-bottom: var(--sp-4); }
.prose h3 { font-size: var(--fs-18); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose p { font-size: var(--fs-15); line-height: 1.75; margin-bottom: var(--sp-4); color: var(--ink-2); }
.prose ul, .prose ol { margin: 0 0 var(--sp-5) var(--sp-6); }
.prose li { font-size: var(--fs-15); line-height: 1.75; margin-bottom: var(--sp-2); color: var(--ink-2); }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { color: var(--primary); font-style: normal; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--primary-dark); }
.prose .updated {
  display: inline-block;
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-style: normal;
  font-weight: 700;
  margin-bottom: var(--sp-5);
}

/* ============================================================
   COLLECTION FILTERS
============================================================ */
.collection-bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4); flex-wrap: wrap;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-6);
}
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-size: var(--fs-13); font-weight: 500;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: var(--r-full);
  transition: all .15s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.pill:hover { background: var(--primary-soft); color: var(--primary); }
.pill.is-active { background: var(--primary); color: #fff; }
.pill-count { font-size: 11px; font-weight: 600; color: var(--muted); }
.pill.is-active .pill-count { color: rgba(255,255,255,0.7); }
.sort-select {
  font-size: var(--fs-13); font-weight: 500;
  padding: 8px 32px 8px 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  color: var(--ink); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235B6342' stroke-width='2.5'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.sort-select:focus, .sort-select:hover { background-color: var(--primary-soft); outline: none; }

/* ============================================================
   PDP
============================================================ */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); padding: var(--sp-8) 0; align-items: start; }
.pdp-gallery-wrap { position: sticky; top: 96px; align-self: start; }
.pdp-gallery {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.pdp-gallery img { width: 100%; height: 100%; object-fit: contain; padding: var(--sp-6); background: var(--bg-soft); mix-blend-mode: multiply; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-2); margin-top: var(--sp-3); }
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer; overflow: hidden; padding: 0;
  transition: all .15s var(--ease);
}
.pdp-thumb:hover { border-color: var(--primary); }
.pdp-thumb.is-active { border: 2px solid var(--primary); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; background: var(--bg-soft); mix-blend-mode: multiply; }

.pdp-info .brand-tag {
  display: inline-block;
  font-size: var(--fs-11);
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 5px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.pdp-info h1 { font-size: var(--fs-32); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.pdp-info .rating-row { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-3); font-size: var(--fs-13); color: var(--ink-3); }
.pdp-info .rating-row .stars { color: var(--gold); font-size: var(--fs-15); letter-spacing: 1px; }
.pdp-info .price-row { display: flex; align-items: baseline; gap: var(--sp-3); margin-top: var(--sp-4); }
.pdp-info .price { font-size: var(--fs-32); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.pdp-info .price-old { font-size: var(--fs-18); color: var(--muted); text-decoration: line-through; }
.pdp-info .save-badge { background: var(--danger); color: #fff; padding: 4px 10px; font-size: var(--fs-11); font-weight: 700; border-radius: var(--r-sm); text-transform: uppercase; letter-spacing: 0.06em; }
.pdp-info .stock-row {
  display: flex; align-items: center; gap: 10px;
  padding: var(--sp-3) var(--sp-4);
  margin-top: var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--r-md);
  font-size: var(--fs-14); color: var(--ink-2);
}
.pdp-info .stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }
.pdp-info .stock-dot.out { background: var(--muted-2); box-shadow: none; }
.pdp-info .cta-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.pdp-info .cta-row .btn { flex: 1; }
.pdp-info .desc { margin-top: var(--sp-6); font-size: var(--fs-15); line-height: 1.65; color: var(--ink-2); }
.pdp-info .desc h3, .pdp-info .specs h3 {
  font-size: var(--fs-11);
  font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: var(--sp-3);
}
.pdp-info .specs { margin-top: var(--sp-6); }
.pdp-info .specs dl { background: var(--bg-soft); border-radius: var(--r-md); padding: 4px var(--sp-4); }
.pdp-info .specs .row { display: grid; grid-template-columns: 160px 1fr; padding: var(--sp-3) 0; border-bottom: 1px solid var(--line); font-size: var(--fs-14); }
.pdp-info .specs .row:last-child { border-bottom: 0; }
.pdp-info .specs .k { font-size: var(--fs-12); color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.pdp-info .specs .v { color: var(--ink); }
.pdp-info .specs .v.mono { font-family: var(--font-mono); font-size: var(--fs-12); word-break: break-all; }

@media (max-width: 880px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery-wrap { position: static; }
  .pdp-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews { padding: var(--sp-8) 0; border-top: 1px solid var(--line); }
.review { padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); }
.review .top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-2); }
.review .name { font-size: var(--fs-14); font-weight: 600; color: var(--ink); }
.review .date { font-size: var(--fs-12); color: var(--ink-3); }
.review .stars { color: var(--gold); font-size: var(--fs-14); letter-spacing: 1px; }
.review p { font-size: var(--fs-14); line-height: 1.6; color: var(--ink-2); }

/* ============================================================
   FORM
============================================================ */
.form-group { margin-bottom: var(--sp-4); }
.form-group label {
  display: block;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: var(--fs-14);
  transition: all .15s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:hover, .form-group textarea:hover, .form-group select:hover { border-color: var(--muted-2); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   MODAL
============================================================ */
.wm-modal { position: fixed; inset: 0; z-index: 9998; display: flex; align-items: flex-start; justify-content: center; padding: 80px var(--sp-4) var(--sp-4); opacity: 0; pointer-events: none; transition: opacity .2s var(--ease); }
.wm-modal.is-open { opacity: 1; pointer-events: auto; }
.wm-modal-backdrop { position: absolute; inset: 0; background: rgba(31,31,31,0.5); backdrop-filter: blur(4px); }
.wm-modal-card {
  position: relative; max-width: 440px; width: 100%;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 32px 28px;
  text-align: center;
  transform: scale(0.96) translateY(8px);
  transition: transform .25s var(--ease);
  box-shadow: var(--sh-lg);
}
.wm-modal.is-open .wm-modal-card { transform: scale(1) translateY(0); }
.wm-modal-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: var(--r-md); display: inline-flex; align-items: center; justify-content: center; color: var(--ink-3); }
.wm-modal-close:hover { background: var(--bg-soft); color: var(--ink); }
.wm-modal-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--sp-4);
  border-radius: var(--r-full);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.wm-modal-card h3 { font-size: var(--fs-20); margin-bottom: var(--sp-2); }
.wm-modal-card > p { color: var(--ink-3); margin-bottom: var(--sp-5); font-size: var(--fs-14); }
.wm-modal-actions { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.wm-modal-actions .btn { flex: 1; }
.wm-modal-foot { font-size: var(--fs-13); color: var(--ink-3); padding-top: var(--sp-4); border-top: 1px solid var(--line); }
.wm-modal-foot a, .wm-modal-foot button { color: var(--primary); text-decoration: underline; background: none; border: 0; padding: 0; cursor: pointer; font-size: inherit; font-weight: 600; }

.policy-link-inline { background: none; border: 0; padding: 0; color: inherit; text-decoration: underline; cursor: pointer; font: inherit; }
.policy-link-inline:hover { color: var(--primary); }

/* ============================================================
   EMPTY STATE
============================================================ */
.empty { padding: var(--sp-16) var(--sp-6); text-align: center; border-radius: var(--r-lg); background: var(--bg-soft); }
.empty .ico { font-size: 48px; margin-bottom: var(--sp-4); color: var(--muted-2); }
.empty h3 { font-size: var(--fs-20); font-weight: 700; margin-bottom: var(--sp-2); }
.empty p { color: var(--ink-3); margin-bottom: var(--sp-5); font-size: var(--fs-14); }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

.text-center { text-align: center; }
.hidden { display: none; }

/* Account stat cards (used in /account) */
.acc-stat.acc-stat-feat {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: 0; border-radius: var(--r-lg);
  padding: 24px;
  min-height: 110px;
}
.acc-stat.acc-stat-feat::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.acc-stat.acc-stat-feat::after {
  content: ''; position: absolute; bottom: -50px; left: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(184,145,90,0.30) 0%, transparent 70%);
  pointer-events: none;
}
.acc-stat.acc-stat-feat .acc-stat-eyebrow { color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
.acc-stat.acc-stat-feat .acc-stat-num { color: #fff; position: relative; z-index: 1; }
.acc-stat.acc-stat-feat .acc-stat-sub { color: rgba(255,255,255,0.85); position: relative; z-index: 1; }
.acc-stat.acc-stat-feat .acc-stat-ico {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; z-index: 2; backdrop-filter: blur(8px);
}
