/* ===========================================================================
   VINYL REPUBLIC — design system
   Bold dark Americana. Deep navy-black, punchy red, electric blue, gold stars.
   Type: Anton (display) / Archivo (UI + body) / Space Mono (technical labels)
   =========================================================================== */

:root {
  /* surfaces */
  --bg:        #090d18;
  --bg-1:      #0e1426;
  --bg-2:      #131b30;
  --bg-3:      #1a2440;
  --panel:     #111a30;
  --line:      rgba(244,241,233,0.10);
  --line-2:    rgba(244,241,233,0.18);

  /* ink */
  --ink:       #f5f2ea;
  --ink-2:     rgba(245,242,234,0.66);
  --ink-3:     rgba(245,242,234,0.42);

  /* brand */
  --red:       #e22138;
  --red-deep:  #b3162a;
  --red-soft:  rgba(226,33,56,0.14);
  --blue:      #5d83e0;
  --blue-deep: #2b3f72;
  --blue-soft: rgba(93,131,224,0.14);
  --gold:      #e8b24a;

  /* radius + shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --sh-1: 0 2px 8px rgba(0,0,0,0.35);
  --sh-2: 0 14px 40px rgba(0,0,0,0.45);
  --sh-red: 0 10px 30px rgba(226,33,56,0.35);

  /* type */
  --f-display: 'Anton', 'Archivo', sans-serif;
  --f-ui: 'Archivo', system-ui, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, monospace;

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* background texture: faint star grid + vignette */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(93,131,224,0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(226,33,56,0.10), transparent 55%);
}
.page { position: relative; z-index: 1; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 44px 0; }
.row { display: flex; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.center { display: flex; align-items: center; gap: 12px; }
.grid { display: grid; gap: 22px; }
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }

/* ---------- type ---------- */
.kicker {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: 8px;
}
.kicker.blue { color: var(--blue); }
.kicker::before { content: ''; width: 22px; height: 2px; background: currentColor; display: inline-block; }

.display {
  font-family: var(--f-display); font-weight: 400;
  line-height: 0.92; letter-spacing: 0.005em; text-transform: uppercase;
  margin: 0;
}
h1.display { font-size: clamp(44px, 7vw, 104px); }
h2.display { font-size: clamp(34px, 4.4vw, 60px); }
h3.display { font-size: clamp(24px, 3vw, 38px); }
.h-ui { font-family: var(--f-ui); font-weight: 800; letter-spacing: -0.01em; }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-2); line-height: 1.55; }
.eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

.stripe-text { color: var(--red); }
.stripe-text .b { color: var(--blue); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-ui); font-weight: 800; font-size: 14px;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 14px 24px; border-radius: var(--r-pill);
  background: var(--bg-3); color: var(--ink);
  border: 1px solid var(--line-2);
  transition: transform .14s ease, background .18s ease, box-shadow .18s ease, border-color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn-red:hover { background: #f02a42; }
.btn-blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--line-2); }
.btn-light { background: var(--ink); color: #0c1120; border-color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-lg { padding: 17px 32px; font-size: 15px; }
.btn-sm { padding: 10px 16px; font-size: 12px; }
.btn-block { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ---------- badges / chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--bg-3); color: var(--ink-2); border: 1px solid var(--line);
}
.badge-sale { background: var(--red); color: #fff; border-color: var(--red); }
.badge-new  { background: var(--blue); color: #fff; border-color: var(--blue); }
.badge-hot  { background: var(--gold); color: #1a1205; border-color: var(--gold); }
.badge-ghost{ background: rgba(0,0,0,0.4); backdrop-filter: blur(6px); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line-2); background: var(--bg-2);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: all .15s ease; white-space: nowrap;
}
.chip:hover { color: var(--ink); border-color: var(--ink-3); }
.chip.active { background: var(--ink); color: #0c1120; border-color: var(--ink); }

/* ---------- placeholder imagery (striped) ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--r);
  background-color: #0c1428;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(93,131,224,0.10) 0 14px,
    rgba(226,33,56,0.07) 14px 28px
  );
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  isolation: isolate;
}
.ph::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,0.05), transparent 60%);
}
.ph-label {
  position: relative; z-index: 2;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,242,234,0.7);
  background: rgba(9,13,24,0.62); backdrop-filter: blur(3px);
  padding: 7px 12px; border-radius: var(--r-pill); border: 1px solid var(--line);
  text-align: center; max-width: 80%;
}
.ph-1x1 { aspect-ratio: 1/1; }
.ph-4x3 { aspect-ratio: 4/3; }
.ph-16x9 { aspect-ratio: 16/9; }
.ph-wide { aspect-ratio: 21/9; }

/* ---------- cards ---------- */
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.product-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--sh-2); }
.product-card .media { position: relative; }
.product-card .media .ph { border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.product-card .media .badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 3; }
.product-card .media .wish { position: absolute; top: 10px; right: 10px; z-index: 3; }
.product-card .body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .cat { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.product-card .name { font-weight: 700; font-size: 16px; line-height: 1.25; }
.product-card .pricerow { display: flex; align-items: baseline; gap: 9px; margin-top: auto; }
.price { font-family: var(--f-display); font-size: 22px; letter-spacing: 0.01em; }
.price-was { color: var(--ink-3); text-decoration: line-through; font-size: 14px; font-family: var(--f-ui); }
.price-save { color: var(--red); font-size: 12px; font-weight: 800; font-family: var(--f-mono); }

/* wishlist heart */
.wish-btn {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(9,13,24,0.6); backdrop-filter: blur(6px); border: 1px solid var(--line);
  transition: all .15s ease; color: var(--ink-2);
}
.wish-btn:hover { color: var(--red); border-color: var(--red); transform: scale(1.08); }
.wish-btn.on { color: #fff; background: var(--red); border-color: var(--red); }
.wish-btn svg { width: 18px; height: 18px; }

/* ---------- star rating ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.stars.sm svg { width: 13px; height: 13px; }
.stars .empty { color: var(--line-2); }
.rate-row { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); }
.input, .select, textarea.input {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  background: var(--bg-1); border: 1px solid var(--line-2); color: var(--ink);
  font-size: 15px; transition: border-color .15s, box-shadow .15s;
}
.input::placeholder { color: var(--ink-3); }
.input:focus, .select:focus, textarea.input:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft);
}
.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23f5f2ea' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

/* ---------- divider / misc ---------- */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.flag-rule { height: 4px; border-radius: 2px; background:
  linear-gradient(90deg, var(--red) 0 33%, var(--ink) 33% 66%, var(--blue) 66% 100%); }
.pill-note {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: var(--r-pill); background: var(--bg-2); border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }

/* ---------- responsive helpers ---------- */
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .cols-4, .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .cols-2 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .hide-mobile { display: none !important; }
}
@media (max-width: 480px) {
  .cols-4 { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================================
   SITE CHROME — promo bar, header/nav, mobile, footer, cart drawer, toast
   =========================================================================== */
.promo {
  background: var(--red); color: #fff; text-align: center;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 11px 16px; position: relative; z-index: 40;
}
.promo b { font-weight: 700; }

.header { position: sticky; top: 0; z-index: 35; background: rgba(9,13,24,0.86);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-in { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo .mark { width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  display: grid; place-items: center; font-family: var(--f-display); font-size: 20px;
  color: #fff; box-shadow: 0 6px 18px rgba(226,33,56,0.35); }
.logo .nm { font-family: var(--f-display); font-size: 21px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 0.82; }
.logo .nm small { display: block; font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 0.32em; color: var(--ink-3); }
.nav-links { display: flex; gap: 26px; font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.nav-links a { color: var(--ink-2); transition: color 0.15s; position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--red); }
.nav-icons { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2);
  background: transparent; display: grid; place-items: center; color: var(--ink); position: relative;
  transition: background 0.15s, border-color 0.15s; }
.icon-btn:hover { background: rgba(255,255,255,0.06); border-color: var(--line); }
.icon-btn .count { position: absolute; top: -3px; right: -3px; min-width: 18px; height: 18px;
  border-radius: 9px; background: var(--red); color: #fff; font-size: 10px; font-weight: 800;
  display: grid; place-items: center; font-family: var(--f-mono); padding: 0 4px; border: 2px solid var(--bg); }
.icon-btn .count.blue { background: var(--blue); }
.burger { display: none; }

/* search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(5,8,16,0.82);
  backdrop-filter: blur(8px); display: none; align-items: flex-start; justify-content: center; padding-top: 14vh; }
.search-overlay.open { display: flex; }
.search-box { width: min(640px, 90vw); }
.search-box .field-wrap { position: relative; }
.search-box input { width: 100%; padding: 20px 22px 20px 56px; font-size: 19px; border-radius: var(--r);
  background: var(--bg-1); border: 1px solid var(--line-2); color: var(--ink); }
.search-box input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.search-box .si { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--ink-3); }
.search-sugg { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 9px; }

/* cart drawer */
.drawer-scrim { position: fixed; inset: 0; z-index: 70; background: rgba(5,8,16,0.6);
  opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 71;
  background: var(--bg-1); border-left: 1px solid var(--line-2); transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 22px 22px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-head h3 { margin: 0; font-family: var(--f-display); font-size: 24px; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; display: flex; flex-direction: column; gap: 14px; }
.drawer-foot { padding: 20px 22px 24px; border-top: 1px solid var(--line); background: var(--bg-2); }
.drawer-empty { text-align: center; color: var(--ink-3); padding: 60px 20px; }
.line-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 13px; align-items: start; }
.line-item .li-media { width: 64px; height: 64px; border-radius: var(--r-sm); }
.line-item .li-name { font-weight: 700; font-size: 14px; line-height: 1.25; }
.line-item .li-meta { font-family: var(--f-mono); font-size: 10.5px; color: var(--ink-3); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
.line-item .li-price { font-family: var(--f-display); font-size: 16px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink-2); font-size: 16px; }
.qty button:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.qty span { min-width: 30px; text-align: center; font-weight: 700; font-size: 13px; }
.li-remove { font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
.li-remove:hover { color: var(--red); }

/* footer */
.footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: var(--bg-1); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--ink-2); font-size: 13.5px; }
.footer ul a:hover { color: var(--ink); }
.footer .sub-row { display: flex; gap: 8px; margin-top: 12px; }
.footer .sub-row input { flex: 1; padding: 11px 14px; border-radius: var(--r-sm); background: var(--bg-2); border: 1px solid var(--line-2); color: var(--ink); font-size: 13px; }
.footer-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; gap: 16px; flex-wrap: wrap; }
.pay-row { display: flex; gap: 7px; flex-wrap: wrap; }
.pay-row span { font-family: var(--f-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 5px; padding: 5px 8px; text-transform: uppercase; }

/* toast */
.toast-wrap { position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 90; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast { display: flex; align-items: center; gap: 11px; background: var(--ink); color: #0c1120; padding: 13px 18px;
  border-radius: var(--r-pill); font-weight: 800; font-size: 13.5px; box-shadow: var(--sh-2);
  animation: toastIn 0.3s cubic-bezier(0.2,0.8,0.2,1); }
.toast .ti { width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* marquee strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-1); overflow: hidden; }
.strip-in { display: flex; gap: 40px; padding: 15px 0; font-family: var(--f-display); font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-3); white-space: nowrap; justify-content: center; flex-wrap: wrap; }
.strip-in .x { color: var(--red); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .logo .nm { font-size: 18px; }
}

/* ===========================================================================
   HERO (homepage)
   =========================================================================== */
.hero { position: relative; padding: 64px 0 60px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(680px 360px at 78% 30%, rgba(93,131,224,0.20), transparent 60%),
              radial-gradient(560px 320px at 8% 80%, rgba(226,33,56,0.16), transparent 60%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(48px, 6.4vw, 80px); line-height: 1.0; }
.hero h1 .o { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.hero h1 .r { color: var(--red); }
.hero-sub { color: var(--ink-2); font-size: 17px; line-height: 1.55; max-width: 440px; margin: 26px 0 30px; }
.hero-stats { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--f-display); font-size: 30px; line-height: 1; }
.hero-stat .l { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }
.hero-art { position: relative; aspect-ratio: 4/3.5; }
.hero-art .ph { position: absolute; inset: 0; border-radius: var(--r-lg); }
.hero-art .float-badge { position: absolute; top: 16px; right: 16px; z-index: 3; background: var(--gold); color: #1a1205;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 12px; border-radius: var(--r-pill); }
.hero-art .price-tag { position: absolute; bottom: 16px; left: 16px; z-index: 3; background: var(--ink); color: #0c1120; border-radius: var(--r); padding: 11px 15px; }
.hero-art .price-tag .t { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
.hero-art .price-tag .p { font-family: var(--f-display); font-size: 24px; line-height: 0.9; }

/* section heads */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 30px; gap: 16px; flex-wrap: wrap; }
.sec-head .kicker.blue { margin-bottom: 12px; display: block; }

/* category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-tile { position: relative; aspect-ratio: 1/0.74; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  display: flex; align-items: flex-end; padding: 20px; cursor: pointer; transition: transform 0.18s, border-color 0.18s; }
.cat-tile .ph { position: absolute; inset: 0; border-radius: 0; border: none; }
.cat-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(9,13,24,0.86)); z-index: 1; }
.cat-tile:hover { transform: translateY(-4px); border-color: var(--line-2); }
.cat-tile .ct { position: relative; z-index: 2; }
.cat-tile .ct .n { font-family: var(--f-display); font-size: 23px; text-transform: uppercase; line-height: 0.95; }
.cat-tile .ct .c { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-top: 5px; }
.cat-tile .arr { position: absolute; top: 18px; right: 18px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(9,13,24,0.5); backdrop-filter: blur(4px); border: 1px solid var(--line-2); display: grid; place-items: center; }

/* feature band */
.band { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 42px 0; }
.feat { display: flex; gap: 13px; align-items: flex-start; }
.feat .fi { width: 40px; height: 40px; border-radius: 10px; background: var(--red); display: grid; place-items: center; flex-shrink: 0; color: #fff; }
.feat .fi.b { background: var(--blue); }
.feat .ft { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; }
.feat .fd { font-size: 12.5px; color: var(--ink-2); margin-top: 3px; line-height: 1.4; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feats { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } .feats { grid-template-columns: 1fr; } }

/* ===========================================================================
   PRODUCT GRID + cards add-to-cart row
   =========================================================================== */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-grid.g3 { grid-template-columns: repeat(3, 1fr); }
.product-card .add-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.mini-add { padding: 9px 15px; font-size: 12px; }
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .prod-grid, .prod-grid.g3 { grid-template-columns: repeat(2, 1fr); } }

/* ===========================================================================
   BREADCRUMB
   =========================================================================== */
.crumb { display: flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); padding: 22px 0; }
.crumb a:hover { color: var(--ink); }
.crumb .sep { opacity: 0.5; }

/* ===========================================================================
   SHOP LISTING — sidebar filters + toolbar
   =========================================================================== */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }
.filters { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.filter-group { border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.filter-group h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; }
.filter-opt { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.filter-opt:hover { color: var(--ink); }
.filter-opt .box { width: 18px; height: 18px; border-radius: 5px; border: 1px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; transition: all 0.15s; }
.filter-opt.on .box { background: var(--red); border-color: var(--red); }
.filter-opt.on { color: var(--ink); }
.filter-opt .box svg { width: 12px; height: 12px; opacity: 0; }
.filter-opt.on .box svg { opacity: 1; }
.filter-opt .cnt { margin-left: auto; font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.shop-toolbar .count-txt { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.filter-toggle { display: none; }
@media (max-width: 860px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.open { display: flex; }
  .filter-toggle { display: inline-flex; }
}

/* ===========================================================================
   PRODUCT DETAIL
   =========================================================================== */
.pdp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; }
.pdp-gallery { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 12px; }
.pdp-main { position: relative; aspect-ratio: 1/1; border-radius: var(--r-lg); }
.pdp-main .badges { position: absolute; top: 14px; left: 14px; z-index: 3; display: flex; gap: 7px; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pdp-thumb { aspect-ratio: 1/1; border-radius: var(--r-sm); cursor: pointer; border: 2px solid transparent; }
.pdp-thumb.active { border-color: var(--red); }
.pdp-info h1 { font-family: var(--f-display); font-size: clamp(32px, 4vw, 46px); text-transform: uppercase; line-height: 1.0; margin: 8px 0 0; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.pdp-price .now { font-family: var(--f-display); font-size: 38px; }
.pdp-desc { color: var(--ink-2); line-height: 1.6; font-size: 15px; }
.opt-block { margin-top: 24px; }
.opt-block .opt-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.opt-block .opt-head .lab { font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); }
.opt-block .opt-head .val { font-size: 13px; color: var(--ink); font-weight: 700; }
.opt-row { display: flex; flex-wrap: wrap; gap: 9px; }
.opt { padding: 11px 16px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--bg-1);
  font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.15s; display: flex; flex-direction: column; gap: 2px; min-width: 64px; }
.opt:hover { border-color: var(--ink-3); }
.opt.on { border-color: var(--red); background: var(--red-soft); }
.opt .sub { font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); font-weight: 400; }
.opt.on .sub { color: var(--red); }
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 38px; height: 38px; border-radius: 50%; cursor: pointer; border: 2px solid var(--line-2); position: relative; }
.swatch.on { border-color: var(--ink); box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ink); }
.buy-bar { display: flex; gap: 12px; margin-top: 28px; align-items: stretch; }
.qty-lg { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill); }
.qty-lg button { width: 46px; height: 100%; display: grid; place-items: center; font-size: 20px; color: var(--ink-2); }
.qty-lg button:hover { color: var(--ink); }
.qty-lg span { min-width: 40px; text-align: center; font-weight: 800; }
.price-strip { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-radius: var(--r);
  background: var(--bg-1); border: 1px solid var(--line); margin-top: 22px; }
.price-strip .lab { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.price-strip .amt { font-family: var(--f-display); font-size: 30px; }
.trust-mini { display: flex; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.trust-mini .tm { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-2); }
.trust-mini .tm svg { color: var(--blue); }

/* see it on your ride */
.ride-preview { margin-top: 16px; }
.ride-tabs { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.ride-stage { position: relative; aspect-ratio: 16/10; border-radius: var(--r); overflow: hidden; }
.ride-stage .decal-overlay { position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%) rotate(-3deg);
  width: 42%; aspect-ratio: 5/3; border-radius: 6px; background: rgba(226,33,56,0.18); border: 1.5px dashed rgba(245,242,234,0.6);
  display: grid; place-items: center; font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); text-align: center; }

/* accordion */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; font-weight: 700; font-size: 15px; }
.acc-head .pm { color: var(--ink-3); transition: transform 0.2s; }
.acc-item.open .acc-head .pm { transform: rotate(45deg); color: var(--red); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.acc-item.open .acc-body { max-height: 320px; padding-bottom: 18px; }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 28px; }
  .pdp-gallery { position: static; }
}

/* ===========================================================================
   CART PAGE
   =========================================================================== */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.cart-list { display: flex; flex-direction: column; }
.cart-row { display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart-row .cr-media { width: 110px; height: 110px; border-radius: var(--r); }
.cart-row .cr-name { font-weight: 800; font-size: 17px; }
.cart-row .cr-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.cart-row .cr-actions { display: flex; align-items: center; gap: 16px; margin-top: 14px; }
.cart-row .cr-price { font-family: var(--f-display); font-size: 22px; text-align: right; }
.summary { position: sticky; top: 96px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.summary h3 { margin: 0 0 18px; font-family: var(--f-display); font-size: 24px; text-transform: uppercase; }
.summary-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: 14px; color: var(--ink-2); }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-size: 16px; color: var(--ink); font-weight: 800; }
.summary-row.total .amt { font-family: var(--f-display); font-size: 30px; font-weight: 400; }
@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } }

/* ===========================================================================
   CONFIRMATION
   =========================================================================== */
.confirm-wrap { max-width: 720px; margin: 0 auto; text-align: center; padding: 40px 0; }
.confirm-check { width: 86px; height: 86px; border-radius: 50%; background: var(--blue-soft); border: 1px solid var(--blue);
  display: grid; place-items: center; margin: 0 auto 26px; color: var(--blue); }
.confirm-num { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 13px;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 10px 18px; margin: 18px 0; }
.confirm-num b { color: var(--ink); }
.confirm-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; text-align: left; margin-top: 30px; }
.track-steps { display: flex; justify-content: space-between; margin-top: 26px; position: relative; }
.track-steps::before { content: ''; position: absolute; top: 17px; left: 8%; right: 8%; height: 2px; background: var(--line); }
.track-step { position: relative; z-index: 1; text-align: center; flex: 1; }
.track-step .dot { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3); border: 2px solid var(--line-2);
  display: grid; place-items: center; margin: 0 auto 10px; color: var(--ink-3); }
.track-step.done .dot { background: var(--red); border-color: var(--red); color: #fff; }
.track-step .tl { font-size: 12px; font-weight: 700; }
.track-step .td { font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); margin-top: 3px; }

/* ===========================================================================
   CUSTOMIZER
   =========================================================================== */
.customizer { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.cz-stage { position: sticky; top: 96px; }
.cz-canvas { position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; display: grid; place-items: center; }
.cz-canvas .uploaded { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.cz-decal-text { position: absolute; font-family: var(--f-display); text-transform: uppercase; pointer-events: none; }
.cz-drop { border: 2px dashed var(--line-2); border-radius: var(--r); padding: 36px; text-align: center; cursor: pointer; transition: all 0.15s; background: var(--bg-1); }
.cz-drop:hover, .cz-drop.drag { border-color: var(--blue); background: var(--blue-soft); }
.cz-panel { display: flex; flex-direction: column; gap: 22px; }
.cz-tools { display: flex; gap: 8px; position: absolute; top: 14px; right: 14px; z-index: 3; }
.cz-tool { width: 36px; height: 36px; border-radius: 8px; background: rgba(9,13,24,0.7); backdrop-filter: blur(6px); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-2); }
.cz-tool:hover { color: var(--ink); }
@media (max-width: 900px) { .customizer { grid-template-columns: 1fr; } .cz-stage { position: static; } }

/* ===========================================================================
   SUPPORT
   =========================================================================== */
.support-tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 32px; flex-wrap: wrap; }
.support-tab { padding: 14px 20px; font-weight: 700; font-size: 14px; color: var(--ink-3); border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; transition: color 0.15s; }
.support-tab:hover { color: var(--ink-2); }
.support-tab.active { color: var(--ink); border-bottom-color: var(--red); }
.support-panel { display: none; }
.support-panel.active { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.step-card { display: flex; gap: 18px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.step-card .sn { font-family: var(--f-display); font-size: 40px; color: var(--red); line-height: 0.8; flex-shrink: 0; }
.step-card h4 { margin: 0 0 7px; font-size: 16px; font-weight: 800; }
.step-card p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 1/1; border-radius: var(--r); position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:hover .gi-cap { opacity: 1; }
.gi-cap { position: absolute; inset: 0; background: rgba(9,13,24,0.7); display: grid; place-items: center; opacity: 0; transition: opacity 0.2s; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.faq-list { max-width: 760px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-card .ci { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-3); display: grid; place-items: center; color: var(--red); flex-shrink: 0; }
@media (max-width: 760px) { .steps-grid, .gallery-grid, .contact-grid { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: 1fr 1fr; } }

/* utility */
.hidden { display: none !important; }
.spacer-sm { height: 16px; } .spacer { height: 32px; } .spacer-lg { height: 64px; }
.text-center { text-align: center; }
.mt-rule { margin-top: 16px; }
