/* ============================================================
   Devon's Own — Design System
   Fonts: Bodoni Moda (display) + Jost (body)
   Brand pink: #ff479f = oklch(0.67 0.23 351)
   ============================================================ */


/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:           oklch(0.99 0 0);
  --surface:      oklch(0.98 0.004 351);
  --surface-2:    oklch(0.95 0.006 351);
  --border:       oklch(0.90 0.005 351);
  --border-2:     oklch(0.82 0.007 351);

  --dark:         oklch(0.10 0.015 330);
  --dark-2:       oklch(0.14 0.012 330);
  --dark-3:       oklch(0.19 0.009 330);
  --dark-border:  oklch(0.27 0.009 330);

  /* Brand pink: #ff479f */
  --gold:         oklch(0.67 0.23 351);
  --gold-hi:      oklch(0.76 0.19 351);
  --gold-lo:      oklch(0.48 0.24 351);
  --gold-bg:      oklch(0.96 0.03 351);
  --gold-dim:     oklch(0.67 0.23 351 / 0.13);

  --ink:          oklch(0.12 0.010 330);
  --ink-2:        oklch(0.36 0.007 330);
  --ink-3:        oklch(0.54 0.005 330);
  --ink-4:        oklch(0.70 0.003 330);

  --on-dark:      oklch(0.97 0.008 351);
  --on-dark-2:    oklch(0.76 0.06 351);
  --on-dark-3:    oklch(0.50 0.006 330);

  --rose:         oklch(0.67 0.23 351);
  --rose-bg:      oklch(0.96 0.03 351);
  --rose-border:  oklch(0.67 0.23 351 / 0.30);
  --success:      oklch(0.60 0.17 145);
  --error:        oklch(0.58 0.22 25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --t-xs:   clamp(0.72rem,  0.68rem  + 0.2vw,  0.82rem);
  --t-sm:   clamp(0.875rem, 0.84rem  + 0.18vw, 0.96rem);
  --t-base: clamp(1rem,     0.95rem  + 0.25vw, 1.06rem);
  --t-lg:   clamp(1.1rem,   1rem     + 0.5vw,  1.3rem);
  --t-xl:   clamp(1.25rem,  1.1rem   + 0.75vw, 1.6rem);
  --t-2xl:  clamp(1.6rem,   1.3rem   + 1.5vw,  2.4rem);
  --t-3xl:  clamp(2rem,     1.5rem   + 2.5vw,  3.5rem);
  --t-4xl:  clamp(2.8rem,   2rem     + 4vw,    5.5rem);

  --space-xs:  clamp(0.5rem,  0.4rem  + 0.5vw,  0.75rem);
  --space-sm:  clamp(0.75rem, 0.6rem  + 0.75vw, 1rem);
  --space-md:  clamp(1.25rem, 1rem    + 1.25vw, 2rem);
  --space-lg:  clamp(2rem,    1.5rem  + 2.5vw,  4rem);
  --space-xl:  clamp(3.5rem,  2.5rem  + 5vw,    7rem);
  --space-2xl: clamp(5rem,    3.5rem  + 7.5vw,  10rem);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --fast:  160ms;
  --mid:   320ms;
  --slow:  600ms;

  --z-header:  20;
  --z-overlay: 50;
  --z-drawer:  51;
  --z-toast:   100;

  --max-w:      1240px;
  --header-h:   68px;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
p { max-width: 65ch; text-wrap: pretty; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 2.5rem); }
.wrap--narrow { max-width: 800px; margin-inline: auto; padding-inline: clamp(1rem, 5vw, 2.5rem); }
section { padding-block: var(--space-xl); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  line-height: 1;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background var(--fast) var(--ease-out),
    border-color var(--fast) var(--ease-out),
    color var(--fast) var(--ease-out),
    box-shadow var(--fast) var(--ease-out),
    transform var(--fast) var(--ease-out);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: oklch(0.99 0 0);
}
.btn-gold:hover {
  background: var(--gold-lo);
  border-color: var(--gold-lo);
  box-shadow: 0 4px 20px oklch(0.67 0.23 351 / 0.40);
}
.btn-outline {
  background: transparent;
  border-color: var(--border-2);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lo); }
.btn-ghost-dark {
  background: transparent;
  border-color: var(--dark-border);
  color: var(--on-dark);
}
.btn-ghost-dark:hover { background: oklch(1 0 0 / 0.06); border-color: var(--on-dark-2); }
.btn-ghost-gold {
  background: var(--gold-bg);
  border-color: transparent;
  color: var(--gold-lo);
}
.btn-ghost-gold:hover { background: oklch(0.93 0.04 351); }
.btn--sm  { padding: 0.55rem 1.25rem; font-size: var(--t-xs); }
.btn--lg  { padding: 0.9rem 2.25rem; font-size: var(--t-base); }
.btn--full { width: 100%; justify-content: center; }

/* ── Tag / Badge ─────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: var(--t-xs); font-weight: 500;
  letter-spacing: 0.04em; line-height: 1.4;
}
.tag--gold { background: var(--gold-bg); color: var(--gold-lo); border: 1px solid oklch(0.67 0.23 351 / 0.25); }
.tag--dark { background: var(--dark); color: var(--on-dark); }
.tag--new  { background: oklch(0.93 0.06 145); color: oklch(0.42 0.17 145); border: 1px solid oklch(0.60 0.17 145 / 0.3); }
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--gold); color: oklch(0.99 0 0);
  font-size: 0.65rem; font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  transition:
    background var(--mid) var(--ease-out),
    box-shadow var(--mid) var(--ease-out),
    border-color var(--mid) var(--ease-out);
  background: oklch(0.99 0 0 / 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled {
  box-shadow: 0 1px 8px oklch(0 0 0 / 0.06);
}

.header-inner {
  position: relative;
  display: flex; align-items: center;
  height: 100%;
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}
.logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.logo--img { flex-direction: row; align-items: center; }
.logo-img {
  height: 46px; width: auto; display: block;
  object-fit: contain;
  transition: filter var(--mid) var(--ease-out);
}
.logo-text-fallback { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink);
  transition: color var(--fast);
}
.logo__mark { color: var(--gold); }
.logo__sub {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.18em; color: var(--ink-3);
  text-transform: uppercase; margin-top: 2px;
  transition: color var(--fast);
}
.logo-img { filter: none; }
.site-footer .logo-img { filter: invert(1) brightness(1.1); }
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-list { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  font-size: var(--t-sm); font-weight: 400;
  color: var(--ink-2);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0.875rem; right: 0.875rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--fast) var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.header-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  color: var(--ink-2); font-size: 0.95rem;
  transition: border-color var(--fast), color var(--fast);
  position: relative; flex-shrink: 0;
}
.header-icon:hover { border-color: var(--gold); color: var(--gold); }
.cart-icon .badge { position: absolute; top: -5px; right: -5px; }

.hamburger {
  display: none;
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
  flex-shrink: 0;
  transition: border-color var(--fast);
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform var(--mid) var(--ease-out), opacity var(--fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: calc(var(--z-header) - 1);
  padding: var(--space-md) clamp(1rem, 5vw, 2.5rem);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--mid) var(--ease-out);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a.nav-link-mob {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: color var(--fast);
}
.mobile-nav a.nav-link-mob:hover { color: var(--gold-lo); }
.mobile-nav .btn { margin-top: var(--space-md); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100svh;
  overflow: hidden;
}
.hero-left {
  background: var(--dark);
  display: flex; align-items: center; justify-content: flex-start;
  height: 100%;
  padding: var(--space-xl) clamp(1.5rem, 6vw, 4rem);
  padding-top: var(--space-xl);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 65%, oklch(0.67 0.23 351 / 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 10%, oklch(0.72 0.09 5 / 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 1; max-width: 520px; }
.hero-h1 {
  font-size: var(--t-4xl);
  font-weight: 500;
  font-style: italic;
  color: var(--on-dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: var(--space-md);
}
.hero-h1 em { font-style: normal; color: var(--gold-hi); }
.hero-sub {
  font-size: var(--t-lg);
  color: var(--on-dark-2);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 40ch;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-right { position: relative; overflow: hidden; background: var(--dark); height: 100%; }
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 25%);
  z-index: 1; pointer-events: none;
}

/* ── USP strip ───────────────────────────────────────────── */
.usp-strip { background: var(--dark-2); border-bottom: 1px solid var(--dark-border); }
.usp-list { display: flex; align-items: stretch; max-width: var(--max-w); margin-inline: auto; }
.usp-item {
  flex: 1; display: flex; align-items: center;
  gap: 0.75rem;
  padding: 1.1rem clamp(0.75rem, 3vw, 1.75rem);
  border-right: 1px solid var(--dark-border);
  transition: background var(--fast);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: oklch(1 0 0 / 0.03); }
.usp-glyph {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-hi);
  transition: all var(--fast);
}
.usp-item:hover .usp-glyph {
  background: var(--gold-lo);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 71, 159, 0.2);
}
.usp-glyph.icon {
  width: 32px; height: 32px;
}
.usp-copy strong {
  display: block; font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.03em; color: var(--on-dark); margin-bottom: 1px;
}
.usp-copy span { font-size: 0.68rem; color: var(--on-dark-3); font-weight: 300; }

/* ══════════════════════════════════════════════════════════
   CATEGORY GRID
══════════════════════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); cursor: pointer; display: block;
}
.cat-card--span2 { grid-column: span 2; }
.cat-card--tall  { grid-row: span 2; }

.cat-img {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-img--armbanden  { background: linear-gradient(145deg, oklch(0.18 0.12 351), oklch(0.40 0.20 351)); }
.cat-img--chokers    { background: linear-gradient(145deg, oklch(0.18 0.06 240), oklch(0.38 0.14 240)); }
.cat-img--kettingen  { background: linear-gradient(145deg, oklch(0.18 0.10 351), oklch(0.38 0.18 330)); }
.cat-img--oorbellen  { background: linear-gradient(145deg, oklch(0.20 0.06 330), oklch(0.40 0.14 330)); }
.cat-img--enkelbanden{ background: linear-gradient(145deg, oklch(0.18 0.06 195), oklch(0.38 0.14 195)); }
.cat-img--koorden    { background: linear-gradient(145deg, oklch(0.18 0.08 355), oklch(0.40 0.14 355)); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.05 0.01 55 / 0.82) 0%, oklch(0.05 0.01 55 / 0.18) 50%, transparent 100%);
}
.cat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
}
.cat-name {
  font-family: var(--font-display);
  font-size: var(--t-xl); font-weight: 400;
  color: var(--on-dark); display: block; margin-bottom: 0.15rem;
}
.cat-sub { font-size: var(--t-xs); color: var(--on-dark-2); font-weight: 300; letter-spacing: 0.04em; }
.cat-arrow {
  position: absolute; top: 1rem; right: 1rem;
  width: 30px; height: 30px; border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--on-dark);
  opacity: 0; transform: translate(3px, -3px);
  transition: opacity var(--fast), transform var(--fast);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translate(0, 0); }

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition:
    border-color var(--fast) var(--ease-out),
    box-shadow var(--fast) var(--ease-out),
    transform var(--fast) var(--ease-out);
}
.product-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.09);
  transform: translateY(-4px);
}
.product-img {
  position: relative; aspect-ratio: 1; overflow: hidden;
}
.product-img-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-img-bg { transform: scale(1.05); }
.product-img-bg img { width: 100%; height: 100%; object-fit: cover; }

/* jewel-toned gradients */
.pg-gold    { background: linear-gradient(145deg, oklch(0.22 0.12 351), oklch(0.46 0.20 351)); }
.pg-blue    { background: linear-gradient(145deg, oklch(0.18 0.05 240), oklch(0.38 0.13 240)); }
.pg-ocean   { background: linear-gradient(145deg, oklch(0.18 0.05 195), oklch(0.38 0.13 195)); }
.pg-beige   { background: linear-gradient(145deg, oklch(0.22 0.04 65), oklch(0.40 0.11 65)); }
.pg-rose    { background: linear-gradient(145deg, oklch(0.20 0.06 355), oklch(0.40 0.14 355)); }
.pg-shell   { background: linear-gradient(145deg, oklch(0.20 0.03 55), oklch(0.38 0.09 55)); }
.pg-steel   { background: linear-gradient(145deg, oklch(0.18 0.03 255), oklch(0.34 0.07 255)); }
.pg-candy   { background: linear-gradient(145deg, oklch(0.20 0.06 330), oklch(0.40 0.14 330)); }
.pg-daisy   { background: linear-gradient(145deg, oklch(0.20 0.06 95), oklch(0.40 0.14 95)); }
.pg-pearl   { background: linear-gradient(145deg, oklch(0.20 0.07 290), oklch(0.40 0.13 290)); }
.pg-dark    { background: linear-gradient(145deg, oklch(0.12 0.02 260), oklch(0.22 0.06 260)); }
.pg-gift    { background: linear-gradient(145deg, oklch(0.20 0.06 50), oklch(0.42 0.16 50)); }
.pg-rainbow { background: linear-gradient(145deg, oklch(0.20 0.09 355), oklch(0.40 0.13 240)); }
.pg-lucky   { background: linear-gradient(145deg, oklch(0.20 0.07 75), oklch(0.42 0.14 75)); }
.pg-tropical{ background: linear-gradient(145deg, oklch(0.18 0.07 195), oklch(0.38 0.14 195)); }
.pg-silver  { background: linear-gradient(145deg, oklch(0.20 0.04 270), oklch(0.38 0.10 270)); }

.product-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px oklch(0 0 0 / 0.3));
  user-select: none; pointer-events: none;
}
.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.product-wish {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px;
  border-radius: var(--radius-full);
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--ink-3);
  cursor: pointer;
  transition: all var(--fast); opacity: 0; z-index: 2;
}
.product-card:hover .product-wish { opacity: 1; }
.product-wish:hover { border-color: var(--rose); color: var(--rose); background: var(--rose-bg); }
.product-wish.is-wished { opacity: 1; color: var(--rose); border-color: var(--rose-border); background: var(--rose-bg); }

.quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem;
  background: var(--dark); color: var(--on-dark);
  font-size: var(--t-xs); font-weight: 500; letter-spacing: 0.06em;
  text-align: center; cursor: pointer;
  transform: translateY(100%);
  transition: transform var(--mid) var(--ease-out), background var(--fast);
  z-index: 2; border: none;
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--gold-lo); }

.product-info {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1; display: flex; flex-direction: column; gap: 0.3rem;
}
.product-cat-label {
  font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--ink-4);
}
.product-name {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 400;
  color: var(--ink); line-height: 1.3; flex: 1;
}
.product-name a:hover { color: var(--gold-lo); }
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 0.5rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500; color: var(--gold-lo);
}
.add-to-cart-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: var(--gold); color: oklch(0.99 0 0);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: background var(--fast), transform var(--fast);
  padding: 0;
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--gold-lo); transform: scale(1.1); }
.add-to-cart-btn.is-added { background: var(--success); }
.add-to-cart-btn .add-icon {
  width: 20px; height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════════════════ */
.page-banner {
  background: var(--dark);
  padding-block-start: calc(var(--header-h) + var(--space-lg));
  padding-block-end: var(--space-lg);
  border-bottom: 1px solid var(--dark-border);
}
.page-banner h1 {
  font-size: var(--t-3xl); color: var(--on-dark);
  font-weight: 500; font-style: italic; margin-bottom: 0.5rem;
}
.page-banner p { color: var(--on-dark-2); font-weight: 300; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem; font-size: var(--t-xs); color: var(--on-dark-3);
}
.breadcrumb a { color: var(--on-dark-3); transition: color var(--fast); }
.breadcrumb a:hover { color: var(--gold-hi); }

.shop-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: var(--space-lg); align-items: start;
}
.shop-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.filter-panel {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 0.75rem;
}
.filter-panel-head {
  padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.1em; color: var(--ink-2);
}
.filter-list { padding: 0.5rem 0; }
.filter-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1.25rem; font-size: var(--t-sm); color: var(--ink-2);
  cursor: pointer; transition: background var(--fast), color var(--fast);
}
.filter-item:hover { background: var(--surface); color: var(--ink); }
.filter-item.is-active { background: var(--gold-bg); color: var(--gold-lo); font-weight: 500; }
.filter-count {
  font-size: 0.64rem; color: var(--ink-4);
  background: var(--surface); padding: 1px 6px; border-radius: var(--radius-full);
}
.filter-item.is-active .filter-count { background: oklch(0.93 0.04 351); color: var(--gold-lo); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap;
}
.shop-count { font-size: var(--t-sm); color: var(--ink-3); }
.shop-count strong { color: var(--ink); }
.sort-select {
  padding: 0.6rem 2rem 0.6rem 0.875rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: var(--t-sm); color: var(--ink);
  background: var(--bg); cursor: pointer; outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center;
  transition: border-color var(--fast);
}
.sort-select:focus { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   ABOUT SPLIT
══════════════════════════════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }

.about-photo {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--dark-2), var(--dark));
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.about-float {
  position: absolute; bottom: 1.5rem; right: -1.25rem;
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 1rem 1.25rem; box-shadow: 0 8px 32px oklch(0 0 0 / 0.12);
  display: flex; align-items: center; gap: 0.875rem; min-width: 180px;
}
.about-float-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.about-float-text strong {
  display: block; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
}
.about-float-text span { font-size: var(--t-xs); color: var(--ink-3); }

.about-text h2 {
  font-size: var(--t-3xl); font-weight: 500; font-style: italic;
  margin-bottom: var(--space-sm); text-align: left;
}
.about-text h2 em { font-style: normal; color: var(--gold); }
.about-lead {
  font-size: var(--t-lg); color: var(--ink-2);
  line-height: 1.7; font-weight: 300; margin-bottom: var(--space-md);
}
.values-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: var(--space-md); }
.value-item { display: flex; gap: 0.875rem; align-items: flex-start; }
.value-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; margin-top: 1px;
}
.value-text strong {
  display: block; font-size: var(--t-sm);
  font-weight: 600; color: var(--ink); margin-bottom: 1px;
}
.value-text span { font-size: var(--t-sm); color: var(--ink-3); font-weight: 300; }

/* ── Collections strip ───────────────────────────────────── */
.collections-strip {
  background: var(--dark); padding-block: var(--space-xl); text-align: center;
  position: relative; overflow: hidden;
}
.collections-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, oklch(0.67 0.23 351 / 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.collections-strip > * { position: relative; z-index: 1; }
.collections-strip h2 {
  font-size: var(--t-3xl); font-style: italic; font-weight: 500;
  color: var(--on-dark); margin-bottom: var(--space-sm);
}
.collections-strip p {
  color: var(--on-dark-2); font-weight: 300;
  margin-inline: auto; margin-bottom: var(--space-md);
}
.collection-pills {
  display: flex; gap: 0.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: var(--space-md);
}
.pill {
  padding: 0.45rem 1rem;
  border: 1px solid var(--dark-border); border-radius: var(--radius-full);
  font-size: var(--t-xs); color: var(--on-dark-2); font-weight: 400;
  transition: border-color var(--fast), color var(--fast);
}
.pill:hover { border-color: var(--gold); color: var(--gold-hi); }

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: border-color var(--fast), box-shadow var(--fast), transform var(--fast);
}
.review-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 4px 20px oklch(0 0 0 / 0.07);
  transform: translateY(-3px);
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; font-size: 0.85rem; }
.review-text {
  font-size: var(--t-sm); color: var(--ink-2); line-height: 1.7;
  font-weight: 300; font-style: italic; flex: 1; margin-bottom: 1.25rem;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 34px; height: 34px; border-radius: var(--radius-full);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem;
  color: var(--gold-lo); flex-shrink: 0;
}
.review-who strong { display: block; font-size: var(--t-sm); font-weight: 500; color: var(--ink); }
.review-who span { font-size: var(--t-xs); color: var(--ink-4); }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter {
  background: var(--dark); padding-block: var(--space-xl);
  text-align: center; position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, oklch(0.67 0.23 351 / 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; }
.newsletter h2 {
  font-size: var(--t-3xl); font-style: italic; font-weight: 500;
  color: var(--on-dark); margin-bottom: 0.5rem;
}
.newsletter-desc { color: var(--on-dark-2); font-weight: 300; margin-inline: auto; margin-bottom: var(--space-md); }
.newsletter-form {
  display: flex; max-width: 420px; margin-inline: auto;
  border: 1px solid var(--dark-border); border-radius: var(--radius-full); overflow: hidden;
  transition: border-color var(--fast);
}
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-input {
  flex: 1; padding: 0.875rem 1.25rem;
  background: oklch(1 0 0 / 0.06); border: none;
  color: var(--on-dark); font-size: var(--t-sm); outline: none;
}
.newsletter-input::placeholder { color: var(--on-dark-3); }
.newsletter-submit {
  padding: 0.875rem 1.5rem; background: var(--gold);
  border: none; color: oklch(0.99 0 0);
  font-family: var(--font-body); font-size: var(--t-xs); font-weight: 600;
  cursor: pointer; letter-spacing: 0.05em;
  transition: background var(--fast); white-space: nowrap;
}
.newsletter-submit:hover { background: var(--gold-hi); }
.newsletter-note { font-size: var(--t-xs); color: var(--on-dark-3); margin-top: 0.875rem; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: oklch(0.07 0.012 330); padding-block-start: var(--space-xl); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-block-end: var(--space-lg);
  border-bottom: 1px solid var(--dark-border);
}
.footer-brand .logo__name { color: var(--on-dark); }
.footer-brand .logo__sub { color: var(--on-dark-3); }
.footer-brand-desc {
  font-size: var(--t-sm); color: var(--on-dark-3); font-weight: 300;
  line-height: 1.7; margin-block: 1.25rem; max-width: 26ch;
}
.social-row { display: flex; gap: 0.5rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--on-dark-3); cursor: pointer;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer-col-head {
  font-size: var(--t-xs); font-weight: 600; letter-spacing: 0.15em;
  color: var(--on-dark); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link {
  font-size: var(--t-sm); color: var(--on-dark-3); font-weight: 300;
  transition: color var(--fast);
}
.footer-link:hover { color: var(--gold-hi); }
.footer-contact-row {
  display: flex; gap: 0.75rem; font-size: var(--t-sm);
  color: var(--on-dark-3); margin-bottom: 0.875rem; font-weight: 300;
}
.footer-contact-row span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-row a { color: var(--on-dark-3); transition: color var(--fast); }
.footer-contact-row a:hover { color: var(--gold-hi); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.25rem; font-size: var(--t-xs); color: var(--on-dark-3);
  gap: 1rem; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: var(--on-dark-3); transition: color var(--fast); }
.footer-legal a:hover { color: var(--on-dark); }
.payment-marks { display: flex; gap: 0.5rem; align-items: center; }
.payment-mark {
  background: var(--dark-border); border-radius: var(--radius-sm);
  padding: 3px 8px; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--on-dark-3);
}

/* ══════════════════════════════════════════════════════════
   MINI CART
══════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: oklch(0 0 0 / 0.4);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-overlay); opacity: 0; pointer-events: none;
  transition: opacity var(--mid);
}
.cart-overlay.is-open { opacity: 1; pointer-events: all; }
.mini-cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--bg); z-index: var(--z-drawer);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--mid) var(--ease-out);
  box-shadow: -8px 0 40px oklch(0 0 0 / 0.15);
}
.mini-cart.is-open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-head-title {
  font-family: var(--font-display); font-size: var(--t-xl);
  font-weight: 500; color: var(--ink);
}
.cart-close-btn {
  width: 34px; height: 34px; border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink-3); cursor: pointer;
  transition: border-color var(--fast), color var(--fast);
  background: none;
}
.cart-close-btn:hover { border-color: var(--ink); color: var(--ink); }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 68px; height: 68px; border-radius: var(--radius);
  flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; overflow: hidden;
}
.cart-item-meta { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display); font-size: 0.88rem;
  font-weight: 400; color: var(--ink); margin-bottom: 0.2rem; line-height: 1.3;
}
.cart-item-price { font-size: var(--t-sm); font-weight: 600; color: var(--gold-lo); }
.cart-qty-row { display: flex; align-items: center; gap: 0.625rem; margin-top: 0.5rem; }
.qty-btn {
  width: 22px; height: 22px; border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--ink-2); cursor: pointer;
  transition: border-color var(--fast), color var(--fast); background: none;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: var(--t-sm); font-weight: 500; min-width: 18px; text-align: center; }
.cart-remove {
  background: none; border: none; cursor: pointer; color: var(--ink-4);
  font-size: 0.85rem; padding: 4px; transition: color var(--fast);
  align-self: flex-start; margin-left: auto;
}
.cart-remove:hover { color: var(--error); }
.cart-empty-state {
  text-align: center; padding: 3rem 1.5rem; color: var(--ink-3);
}
.cart-empty-state-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.cart-empty-state p { font-size: var(--t-sm); line-height: 1.65; }
.cart-foot {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
  background: var(--surface);
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.35rem;
}
.cart-subtotal span { font-size: var(--t-sm); color: var(--ink-3); }
.cart-subtotal strong {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 500; color: var(--ink);
}
.cart-shipping-note { font-size: 0.72rem; color: var(--success); margin-bottom: 1rem; }

/* ── Cart page ──────────────────────────────────────────── */
.cart-page { padding-block-end: var(--space-2xl); }
.cart-split {
  display: grid; grid-template-columns: 1fr 320px;
  gap: var(--space-md); align-items: start;
}
.cart-table { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cart-table-head {
  display: grid; grid-template-columns: 1fr 100px 100px 70px;
  padding: 0.875rem 1.5rem; background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: var(--t-xs); font-weight: 600; letter-spacing: 0.08em; color: var(--ink-3);
}
.cart-table-row {
  display: grid; grid-template-columns: 1fr 100px 100px 70px;
  align-items: center; padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border); gap: 1rem;
}
.cart-table-row:last-child { border-bottom: none; }
.cart-row-product { display: flex; align-items: center; gap: 1rem; }
.cart-row-img {
  width: 60px; height: 60px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.cart-row-name { font-family: var(--font-display); font-size: 0.88rem; font-weight: 400; color: var(--ink); }
.cart-row-price, .cart-row-total { font-weight: 600; color: var(--gold-lo); font-family: var(--font-display); }
.order-summary-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.summary-title {
  font-family: var(--font-display); font-size: var(--t-xl); font-weight: 500;
  margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; font-size: var(--t-sm); color: var(--ink-3);
}
.summary-row.total {
  border-top: 1px solid var(--border); margin-top: 0.5rem;
  padding-top: 1rem; font-size: 1rem; font-weight: 600; color: var(--ink);
}
.summary-row.total span:last-child { color: var(--gold-lo); font-family: var(--font-display); font-size: var(--t-lg); }
.coupon-row { display: flex; gap: 0.5rem; margin-block: 1rem; }
.coupon-input {
  flex: 1; padding: 0.6rem 0.875rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: var(--t-sm); outline: none;
  transition: border-color var(--fast);
}
.coupon-input:focus { border-color: var(--gold); }

/* ── Contact ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: start; }
.contact-info-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-md);
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-weight: 600; font-size: var(--t-sm); color: var(--ink); margin-bottom: 2px; }
.contact-detail-text span { font-size: var(--t-sm); color: var(--ink-3); font-weight: 300; }
.contact-form-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block; font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.08em; color: var(--ink-2); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: var(--t-sm); color: var(--ink);
  background: var(--surface); outline: none;
  transition: border-color var(--fast), background var(--fast), box-shadow var(--fast);
}
.form-control:focus { border-color: var(--gold); background: var(--bg); box-shadow: 0 0 0 3px var(--gold-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
details.faq-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--fast);
}
details.faq-item[open] { border-color: var(--border-2); }
details.faq-item summary {
  padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 500;
  font-size: var(--t-sm); color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center; user-select: none;
}
details.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.1rem; font-weight: 300; flex-shrink: 0; }
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-body {
  padding: 0 1.25rem 1.25rem; font-size: var(--t-sm);
  color: var(--ink-3); line-height: 1.7; font-weight: 300;
}

/* ── Toast ──────────────────────────────────────────────── */
.toast-container {
  position: fixed; top: calc(var(--header-h) + 0.875rem); right: 1.25rem;
  z-index: var(--z-toast);
  display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: var(--dark); border: 1px solid var(--dark-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius); font-size: var(--t-sm); color: var(--on-dark);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.2);
  pointer-events: all;
  transform: translateX(calc(100% + 1.5rem)); opacity: 0;
  transition: transform var(--mid) var(--ease-out), opacity var(--mid);
  max-width: 280px;
}
.toast.is-visible { transform: translateX(0); opacity: 1; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--slow) var(--ease-out), transform var(--slow) var(--ease-out);
}
.js-reveal.is-visible { opacity: 1; transform: none; }
.js-reveal.delay-1 { transition-delay: 80ms; }
.js-reveal.delay-2 { transition-delay: 160ms; }
.js-reveal.delay-3 { transition-delay: 240ms; }
.js-reveal.delay-4 { transition-delay: 320ms; }

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

/* ══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════ */
.product-detail {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 3rem;
  padding: var(--space-lg) 0;
  align-items: start;
}
.product-image {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-img-box {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 1rem;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-badge {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold-lo);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: var(--t-xs);
  font-weight: 600;
}
.product-title {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.product-cat {
  font-size: var(--t-sm);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.price-now {
  font-size: var(--t-3xl);
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-display);
}
.price-old {
  font-size: var(--t-base);
  color: var(--ink-3);
  text-decoration: line-through;
}
.product-desc {
  font-size: var(--t-base);
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}
.product-specs {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--t-sm);
}
.spec-label {
  color: var(--ink-3);
  font-weight: 500;
}
.spec-value {
  color: var(--ink);
  font-weight: 500;
}
.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.qty-control {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
}
.qty-btn {
  flex: 0 0 44px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--fast);
}
.qty-btn:hover { background: var(--border-2); }
.qty-input {
  flex: 0 0 60px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--ink);
}
.qty-input:focus { outline: none; }
.product-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--gold-bg);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: var(--t-sm);
  color: var(--ink);
}
.product-trust div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-share {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.share-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--fast);
}
.share-btn:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   HERO SLIDESHOW
══════════════════════════════════════════════════════════ */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Slides fade in/out */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Navigation dots */
.slide-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--fast), transform var(--fast), width var(--fast);
}
.slide-dot:hover { background: oklch(1 0 0 / 0.75); }
.slide-dot.is-active {
  background: var(--gold);
  width: 22px;
}

/* Prev / Next arrows */
.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: oklch(0 0 0 / 0.30);
  border: 1px solid oklch(1 0 0 / 0.20);
  color: var(--on-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--fast), background var(--fast);
}
.hero-slideshow:hover .slide-prev,
.hero-slideshow:hover .slide-next { opacity: 1; }
.slide-prev:hover,
.slide-next:hover { background: oklch(0 0 0 / 0.55); }
.slide-prev { left: 0.875rem; }
.slide-next { right: 0.875rem; }

/* Progress bar at bottom of slideshow */
.slide-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: oklch(1 0 0 / 0.15);
  z-index: 3;
  overflow: hidden;
}
.slide-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
  .slide-dot, .slide-prev, .slide-next { transition: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1020px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-right { display: none; }
  .hero-left { min-height: 100svh; }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-card--span2 { grid-column: span 1; }
  .cat-card--tall  { grid-row: span 1; }
  .about-split { grid-template-columns: 1fr; gap: var(--space-md); }
  .about-split.reverse { direction: ltr; }
  .about-float { right: 0; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-split { grid-template-columns: 1fr; }
  .cart-table-head { display: none; }
  .cart-table-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card { height: 155px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .usp-list { flex-direction: column; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--dark-border); }
  .usp-item:last-child { border-bottom: none; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); }
  .newsletter-input { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .newsletter-submit { border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 0.875rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   ICONS
══════════════════════════════════════════════════════════ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  color: inherit;
  fill: currentColor;
  stroke: currentColor;
}

.icon-xs { width: 0.875em; height: 0.875em; }
.icon-sm { width: 1rem; height: 1rem; }

.usp-glyph {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.usp-glyph.icon {
  flex-shrink: 0;
}

.value-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.value-icon.icon {
  color: var(--gold);
}

.contact-detail-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-icon.icon {
  color: #000;
}

.footer-contact-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--on-dark-3);
}
.footer-contact-row .icon {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--on-dark-2);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--ink-3);
  transition: color var(--fast), background var(--fast);
}
.icon-btn:hover {
  color: var(--gold);
  background: var(--gold-bg);
}

.social-btn.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--on-dark-2);
  background: transparent;
}
.social-btn.icon-btn:hover {
  color: var(--on-dark);
  background: oklch(1 0 0 / 0.10);
}

.cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  height: auto;
  border: none !important;
  border-radius: 0 !important;
}
.cart-icon:hover {
  border-color: transparent !important;
}
.cart-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ink);
}

.product-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: var(--t-sm);
  color: var(--ink-3);
}
.product-trust div {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.product-trust .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.share-btn.icon-btn {
  padding: 0.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.share-btn.icon-btn .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.icon.inline {
  display: inline;
  vertical-align: -0.15em;
}
