:root {
  --brand-h: 266;
  --brand-s: 89%;
  --brand-l: 58%;
  --brand: hsl(var(--brand-h) var(--brand-s) var(--brand-l));
  --brand-rgb: 147, 51, 234;
  --brand-deep: hsl(262 83% 42%);
  --brand-glow: hsl(270 95% 70%);

  --ink-0: #07070c;
  --ink-1: #0b0b14;
  --ink-2: #11111f;
  --ink-3: #171728;
  --ink-4: #1f1f35;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);

  --text: #eeeef5;
  --text-dim: #b8b8c8;
  --text-mute: #8a8aa0;
  --cream: #f5f0e6;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(var(--brand-rgb), 0.06);
  --shadow-md:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 8px 24px rgba(var(--brand-rgb), 0.10),
    0 24px 48px rgba(0, 0, 0, 0.30);
  --shadow-lg:
    0 4px 12px rgba(0, 0, 0, 0.35),
    0 16px 40px rgba(var(--brand-rgb), 0.18),
    0 40px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow:
    0 0 0 1px rgba(var(--brand-rgb), 0.30),
    0 8px 32px rgba(var(--brand-rgb), 0.35),
    0 20px 60px rgba(var(--brand-rgb), 0.20);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, hsla(var(--brand-h), 70%, 50%, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 90%, hsla(280, 80%, 45%, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 55%, hsla(258, 70%, 40%, 0.06) 0%, transparent 60%),
    var(--ink-0);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

.display, h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--cream);
}

h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.02em; }
p  { color: var(--text-dim); }

a { color: inherit; text-decoration: none; }

.noise {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.035;
  z-index: 100;
  mix-blend-mode: overlay;
}

/* ---------- Container ---------- */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(7, 7, 12, 0.65);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
  color: var(--cream);
  transition: transform 300ms var(--ease-spring);
}
.brand:hover { transform: translateY(-1px); }
.brand:active { transform: scale(0.98); }
.brand:focus-visible { outline: 2px solid var(--brand); outline-offset: 6px; border-radius: 4px; }
.brand img { height: 44px; width: auto; display: block; filter: drop-shadow(0 0 12px rgba(var(--brand-rgb), 0.4)); }
.brand span small { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; color: var(--text-mute); text-transform: uppercase; margin-top: 2px; }

.nav-links { display: none; gap: 32px; align-items: center; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 8px 2px;
  transition: color 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 300ms var(--ease-spring);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--brand); outline-offset: 6px; border-radius: 2px; }
.nav-links a.active { color: var(--cream); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--cream);
  cursor: pointer;
  transition: transform 240ms var(--ease-spring), background 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.cart-btn:hover { transform: translateY(-2px); background: rgba(var(--brand-rgb), 0.12); border-color: rgba(var(--brand-rgb), 0.4); }
.cart-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.cart-btn:active { transform: translateY(0) scale(0.96); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 6px;
  background: var(--brand);
  color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.6);
  transform: scale(0); transition: transform 300ms var(--ease-spring);
}
.cart-count.visible { transform: scale(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: -0.005em;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 260ms var(--ease-spring), box-shadow 260ms var(--ease-out), background 260ms var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, hsl(270 95% 65%) 0%, hsl(262 85% 50%) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.55), 0 12px 32px rgba(var(--brand-rgb), 0.55), 0 24px 60px rgba(var(--brand-rgb), 0.30); }
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-primary:focus-visible { outline: 2px solid var(--brand-glow); outline-offset: 3px; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  border-color: var(--line-2);
}
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.07); border-color: rgba(var(--brand-rgb), 0.35); }
.btn-ghost:active { transform: translateY(0) scale(0.97); }
.btn-ghost:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

.btn-sm { padding: 10px 16px; font-size: 13px; border-radius: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 140px 0 120px; } }

.hero-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand-glow);
  padding: 8px 14px;
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--brand-glow); border-radius: 50%; box-shadow: 0 0 12px var(--brand-glow); }

.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--brand-glow) 0%, var(--cream) 50%, var(--brand-glow) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { font-size: 18px; max-width: 56ch; margin-bottom: 36px; color: var(--text-dim); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: none;
}
@media (min-width: 1024px) { .hero-visual { display: block; } }
.hero-visual-card {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, #ffffff 0%, #f3f0e6 60%, #e5e0d0 100%);
  border: 1px solid var(--line-2);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-card img { width: 88%; height: auto; filter: drop-shadow(0 30px 44px rgba(20, 14, 40, 0.22)); transform: translateY(0); transition: transform 800ms var(--ease-out); }
.hero-visual-card:hover img { transform: translateY(-6px); }
.hero-visual-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 70%, rgba(var(--brand-rgb), 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  padding: 12px 16px;
  background: rgba(12, 12, 22, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  font-size: 12px; color: var(--cream);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
}
.hero-badge.b1 { top: 24px; left: -12px; }
.hero-badge.b2 { bottom: 32px; right: -18px; }
.hero-badge strong { display: block; font-family: 'Space Grotesk'; font-size: 14px; letter-spacing: -0.02em; color: var(--cream); }
.hero-badge small { color: var(--text-mute); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-badge .pulse { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 10px #4ade80; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) { .hero-stats { gap: 24px; margin-top: 56px; padding-top: 40px; } }
.hero-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; letter-spacing: -0.03em; color: var(--cream);
  margin-bottom: 6px;
}
@media (min-width: 640px) { .hero-stat strong { font-size: 28px; } }
.hero-stat span { hyphens: auto; overflow-wrap: break-word; }
.hero-stat span { font-size: 12px; color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Section ---------- */
.section { position: relative; padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { font-size: 17px; margin-top: 16px; }

/* ---------- Product grid ---------- */
.products { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products { grid-template-columns: repeat(3, 1fr); } }

.product {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease-out), border-color 400ms var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--brand-rgb), 0.30);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 38%, #ffffff 0%, #f3f1ea 55%, #e6e3d7 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-media img {
  width: 88%;
  height: auto;
  transition: transform 600ms var(--ease-spring);
  filter: drop-shadow(0 18px 28px rgba(20, 14, 40, 0.22));
}
.product:hover .product-media img { transform: translateY(-4px) scale(1.04); }
.product-media::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 70%, rgba(var(--brand-rgb), 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.product-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(11, 11, 20, 0.14) 100%);
  pointer-events: none;
}
.product-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Space Grotesk'; font-size: 10px; font-weight: 600;
  padding: 6px 10px;
  background: rgba(var(--brand-rgb), 0.18);
  color: var(--brand-glow);
  border: 1px solid rgba(var(--brand-rgb), 0.32);
  border-radius: 999px;
  letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-body { padding: 24px; }
.product-title {
  font-family: 'Space Grotesk'; font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--cream);
  margin-bottom: 4px;
}
.product-desc { font-size: 13px; color: var(--text-mute); margin-bottom: 16px; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price {
  font-family: 'Space Grotesk'; font-size: 22px; font-weight: 700;
  color: var(--cream); letter-spacing: -0.02em;
}
.product-price .currency { font-size: 14px; color: var(--text-mute); margin-right: 2px; }

.size-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.size-chip {
  font-family: 'Space Grotesk'; font-size: 11px; font-weight: 600;
  padding: 6px 10px;
  border-radius: 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2);
  color: var(--text-dim);
  cursor: pointer;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 200ms var(--ease-out), color 200ms var(--ease-out);
}
.size-chip:hover { transform: translateY(-1px); color: var(--cream); border-color: rgba(var(--brand-rgb), 0.35); }
.size-chip:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.size-chip.selected { background: rgba(var(--brand-rgb), 0.22); color: var(--cream); border-color: rgba(var(--brand-rgb), 0.55); }

.add-btn {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Inter'; font-weight: 600; font-size: 13px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 240ms var(--ease-spring), background 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.add-btn:hover { transform: translateY(-2px); background: rgba(var(--brand-rgb), 0.15); border-color: rgba(var(--brand-rgb), 0.45); }
.add-btn:active { transform: translateY(0) scale(0.98); }
.add-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.add-btn svg { width: 14px; height: 14px; }

/* ---------- Trust strip ---------- */
.trust {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  padding: 36px;
  margin-top: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
}
@media (min-width: 768px) { .trust { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ico {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  border-radius: 10px;
  color: var(--brand-glow);
}
.trust-item .ico svg { width: 18px; height: 18px; }
.trust-item strong { display: block; font-family: 'Space Grotesk'; font-size: 14px; color: var(--cream); letter-spacing: -0.01em; }
.trust-item span { font-size: 12px; color: var(--text-mute); }

/* ---------- Featured band ---------- */
.featured {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  padding: 48px;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, hsla(var(--brand-h), 75%, 55%, 0.25) 0%, transparent 55%),
    linear-gradient(160deg, var(--ink-4) 0%, var(--ink-2) 100%);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 900px) { .featured { grid-template-columns: 1.1fr 1fr; padding: 72px; align-items: center; } }
.featured h2 { margin-bottom: 20px; }
.featured p { font-size: 16px; margin-bottom: 28px; max-width: 52ch; }
.featured-visual { position: relative; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; background: radial-gradient(ellipse 70% 55% at 50% 35%, #ffffff 0%, #f3f0e6 60%, #e5e0d0 100%); display: flex; align-items: center; justify-content: center; }
.featured-visual img { width: 85%; filter: drop-shadow(0 24px 36px rgba(20, 14, 40, 0.22)); }

/* ---------- Footer ---------- */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--line); margin-top: 80px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }
.footer-brand p { font-size: 13px; margin-top: 16px; max-width: 34ch; }
.footer-col h4 {
  font-family: 'Space Grotesk'; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--text-mute); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-dim); transition: color 200ms var(--ease-out); }
.footer-col a:hover { color: var(--cream); }
.footer-col a:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 2px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  margin-top: 60px; padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--text-mute);
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 360ms var(--ease-out);
  z-index: 200;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background:
    radial-gradient(ellipse 80% 30% at 50% 0%, hsla(var(--brand-h), 70%, 40%, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink-1) 100%);
  border-left: 1px solid var(--line-2);
  transform: translateX(100%);
  transition: transform 460ms var(--ease-spring);
  z-index: 210;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: 'Space Grotesk'; font-size: 20px; color: var(--cream); }
.cart-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2); color: var(--cream);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 220ms var(--ease-spring), background 220ms var(--ease-out);
}
.cart-close:hover { background: rgba(255,255,255,0.09); transform: rotate(90deg); }
.cart-close:active { transform: scale(0.94); }
.cart-close:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-mute); font-size: 14px; }
.cart-empty svg { width: 44px; height: 44px; opacity: 0.35; margin-bottom: 14px; }

.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden;
  background: radial-gradient(ellipse at center, #fff 0%, #ece8db 100%);
  display: flex; align-items: center; justify-content: center;
}
.cart-thumb img { width: 85%; }
.cart-item-title { font-family: 'Space Grotesk'; font-size: 13px; color: var(--cream); font-weight: 600; }
.cart-item-meta { font-size: 11px; color: var(--text-mute); margin-top: 2px; letter-spacing: 0.05em; text-transform: uppercase; }
.cart-item-price { font-family: 'Space Grotesk'; font-size: 14px; color: var(--cream); font-weight: 600; }
.cart-remove {
  font-size: 11px; color: var(--text-mute); background: none; border: 0; cursor: pointer;
  padding: 2px 0; margin-top: 4px;
  transition: color 200ms var(--ease-out);
}
.cart-remove:hover { color: var(--brand-glow); }
.cart-remove:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 2px; }

.cart-foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.cart-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dim); margin-bottom: 8px; }
.cart-row.total { font-family: 'Space Grotesk'; font-size: 18px; color: var(--cream); font-weight: 700; margin: 12px 0 18px; }
.checkout-btn { width: 100%; padding: 16px 22px; }

/* ---------- Legal / content pages ---------- */
.page {
  padding: 80px 0 40px;
}
.page-head { max-width: 720px; margin-bottom: 48px; }
.page-body { max-width: 780px; color: var(--text-dim); font-size: 15px; line-height: 1.8; }
.page-body h2 { font-size: 22px; color: var(--cream); margin-top: 36px; margin-bottom: 12px; letter-spacing: -0.02em; }
.page-body h3 { font-size: 16px; color: var(--cream); margin-top: 24px; margin-bottom: 8px; }
.page-body p { margin-bottom: 14px; color: var(--text-dim); }
.page-body ul { padding-left: 20px; margin-bottom: 14px; }
.page-body li { margin-bottom: 6px; color: var(--text-dim); }
.page-body strong { color: var(--cream); }
.page-body a { color: var(--brand-glow); border-bottom: 1px solid rgba(var(--brand-rgb), 0.4); transition: border-color 200ms var(--ease-out); }
.page-body a:hover { border-color: var(--brand-glow); }

.meta-chip {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: 'Space Grotesk'; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 12px;
}

/* ---------- Form ---------- */
.form { display: flex; flex-direction: column; gap: 18px; max-width: 560px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-family: 'Space Grotesk'; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute); font-weight: 500;
}
.form-row input, .form-row textarea {
  font-family: 'Inter'; font-size: 15px; color: var(--cream);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
  font-family: inherit;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-mute); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: rgba(var(--brand-rgb), 0.55); background: rgba(255,255,255,0.05); }
.form-row textarea { min-height: 140px; resize: vertical; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-spring); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  border-radius: 10px; color: var(--cream);
  cursor: pointer;
}
@media (min-width: 900px) { .mobile-toggle { display: none; } }
.mobile-menu { display: none; padding: 16px 24px 24px; border-bottom: 1px solid var(--line); background: var(--ink-1); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; color: var(--text-dim); font-size: 15px; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
