﻿:root {
  --bg: #05070d;
  --bg-raised: #090e1b;
  --bg-card: #0d1427;
  --bg-soft: #121b33;
  --line: rgba(255,204,0,0.16);
  --fg: #ffffff;
  --fg-muted: #b8c0d4;
  --amber: #ffcc00;
  --cyan: #1d2f68;
  --green: #6be28d;
  --rose: #ff6b8b;
  --violet: #9f7bff;
  --blue: #5d8cff;
  --orange: #ff8f3d;
  --nav-bg: rgba(5,7,13,0.9);
  --mobile-menu-bg: rgba(5,7,13,0.98);

  --shadow: 0 14px 36px rgba(0,0,0,0.28);
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.18);
  --shadow-lg: 0 22px 50px rgba(0,0,0,0.34);
  --shadow-inset: 0 0 0 1px var(--line);
  --shadow-inset-sm: 0 0 0 1px var(--line);

  --hero-wash: linear-gradient(135deg, rgba(255,204,0,0.1), transparent 36%), linear-gradient(225deg, rgba(29,47,104,0.34), transparent 46%), var(--bg);
  --hero-panel: linear-gradient(145deg, rgba(255,204,0,0.08), rgba(13,20,39,0.78)), var(--bg);
  --page-wash: linear-gradient(135deg, rgba(255,204,0,0.08), transparent 42%), linear-gradient(225deg, rgba(29,47,104,0.28), transparent 46%), var(--bg);
  --card-surface: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,204,0,0.025)), var(--bg-card);
  --soft-surface: rgba(255,255,255,0.055);
  --glow-amber: 0 0 24px rgba(255,204,0,0.24);
  --glow-cyan: 0 0 24px rgba(29,47,104,0.42);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #e8edf5;
  --bg-raised: #edf2f8;
  --bg-card: #e8edf5;
  --bg-soft: #dde4ef;
  --line: rgba(50,65,96,0.08);
  --fg: #1d2433;
  --fg-muted: #66718a;
  --amber: #c99100;
  --cyan: #2878d8;
  --green: #17875b;
  --rose: #c65470;
  --violet: #7257c9;
  --blue: #316bd6;
  --orange: #d86f26;
  --nav-bg: rgba(232,237,245,0.84);
  --mobile-menu-bg: rgba(232,237,245,0.98);

  --shadow: 0 14px 32px rgba(50,65,96,0.12);
  --shadow-sm: 0 8px 20px rgba(50,65,96,0.1);
  --shadow-lg: 0 22px 48px rgba(50,65,96,0.16);
  --shadow-inset: 0 0 0 1px var(--line);
  --shadow-inset-sm: 0 0 0 1px var(--line);

  --hero-wash: linear-gradient(135deg, rgba(255,255,255,0.62), transparent 38%), linear-gradient(225deg, rgba(40,120,216,0.08), transparent 44%), var(--bg);
  --hero-panel: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(210,219,233,0.24)), var(--bg);
  --page-wash: linear-gradient(135deg, rgba(255,255,255,0.58), transparent 40%), linear-gradient(225deg, rgba(23,135,91,0.08), transparent 44%), var(--bg);
  --card-surface: linear-gradient(145deg, rgba(255,255,255,0.48), rgba(210,219,233,0.18)), var(--bg-card);
  --soft-surface: rgba(30,42,80,0.035);
  --glow-amber: 0 0 24px rgba(201,148,0,0.18);
  --glow-cyan: 0 0 24px rgba(66,87,201,0.16);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  transition: background .25s ease, color .25s ease;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--amber); color: #0b0e14; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-style: normal;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.95em;
  line-height: 1;
}
i[data-lucide]::before { content: "*"; }
i[data-lucide="gamepad-2"]::before { content: "G"; font-weight: 700; }
i[data-lucide="menu"]::before { content: "="; font-weight: 700; }
i[data-lucide="x"]::before { content: "X"; font-weight: 700; }
i[data-lucide="arrow-right"]::before { content: ">"; font-weight: 700; }
i[data-lucide="arrow-left"]::before { content: "<"; font-weight: 700; }
i[data-lucide="check"]::before { content: "OK"; font-size: .7em; font-weight: 700; }
i[data-lucide="clock"]::before { content: "T"; font-weight: 700; }
i[data-lucide="users"]::before { content: "U"; font-weight: 700; }
i[data-lucide="trophy"]::before { content: "W"; font-weight: 700; }
i[data-lucide="printer"]::before { content: "P"; font-weight: 700; }
i[data-lucide="monitor"]::before { content: "M"; font-weight: 700; }
i[data-lucide="car"]::before { content: "R"; font-weight: 700; }
i[data-lucide="headset"]::before { content: "VR"; font-size: .7em; font-weight: 700; }
i[data-lucide="map-pin"]::before { content: "PIN"; font-size: .58em; font-weight: 700; }
i[data-lucide="phone"]::before { content: "PH"; font-size: .66em; font-weight: 700; }
i[data-lucide="message-circle"]::before { content: "MSG"; font-size: .55em; font-weight: 700; }
i[data-lucide="dumbbell"]::before { content: "DB"; font-size: .72em; font-weight: 700; }
i[data-lucide="shopping-bag"]::before { content: "B"; font-weight: 700; }
i[data-lucide="package"]::before { content: "P"; font-weight: 700; }
i[data-lucide="zap"]::before { content: "Z"; font-weight: 700; }
i[data-lucide="badge-percent"]::before { content: "%"; font-weight: 700; }
i[data-lucide="search"]::before { content: "S"; font-weight: 700; }
i[data-lucide="user"]::before { content: "U"; font-weight: 700; }
i[data-lucide="shopping-cart"]::before { content: "C"; font-weight: 700; }
i[data-lucide="award"]::before { content: "A"; font-weight: 700; }
i[data-lucide="truck"]::before { content: "T"; font-weight: 700; }
i[data-lucide="shield-check"]::before { content: "SC"; font-size: .6em; font-weight: 700; }
i[data-lucide="headphones"]::before { content: "H"; font-weight: 700; }
i[data-lucide="star"]::before { content: "*"; font-weight: 700; }
i[data-lucide="tags"]::before { content: "$"; font-weight: 700; }
i[data-lucide="medal"]::before { content: "M"; font-weight: 700; }

.display { font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif; font-weight: 700; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  border-bottom: none;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 19px; white-space: nowrap; }
.brand:has(.brand-logo) {
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #000000;
  box-shadow: var(--shadow-sm);
}
.brand-logo {
  display: block;
  width: 168px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.footer .brand-logo {
  width: 200px;
  max-height: none;
}
.brand .badge {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 12px;
  border: none;
  background: var(--bg);
  color: var(--amber);
  box-shadow: var(--shadow-sm);
}
.brand .amber { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--fg-muted); transition: color .15s, box-shadow .15s, background .15s;
  padding: 9px 12px; border-radius: 999px;
}
.nav-links a:hover { color: var(--fg); background: var(--soft-surface); }
.nav-links a.active { color: var(--amber); background: var(--bg); box-shadow: var(--shadow-inset-sm); }
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 86px;
  height: 42px;
  border: none;
  border-radius: 999px;
  padding: 4px 10px 4px 5px;
  background: var(--bg);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.theme-toggle .toggle-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-inset-sm);
}
.theme-toggle .toggle-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
:root[data-theme="light"] .theme-toggle .toggle-orb { color: var(--cyan); }
.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(150deg, #ffd96f, var(--amber));
  color: #171200; border: none;
  padding: 11px 22px; border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.03em;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: saturate(1.05); }
.btn-amber:active { transform: translateY(0); box-shadow: var(--shadow-inset); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); color: var(--fg); border: none;
  padding: 11px 22px; border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
  transition: color .15s, box-shadow .15s, transform .15s;
}
.btn-outline:hover { color: var(--amber); box-shadow: var(--shadow); transform: translateY(-2px); }
.menu-toggle { display: none; background: var(--bg); border: none; color: var(--fg); border-radius: 12px; padding: 9px; box-shadow: var(--shadow-sm); }
.mobile-menu { display: none; border-top: none; padding: 16px 24px 20px; flex-direction: column; gap: 6px; background: var(--mobile-menu-bg); }
.mobile-menu a {
  padding: 12px 14px; border-radius: 12px; font-family: 'JetBrains Mono', monospace; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted);
}
.mobile-menu a.active, .mobile-menu a:hover { color: var(--amber); background: var(--bg); box-shadow: var(--shadow-inset-sm); }
.mobile-menu.open { display: flex; }

@media (max-width: 1080px) {
  .nav-links, .navbar .wrap > .btn-amber { display: none; }
  .menu-toggle { display: block; }
  .theme-toggle { margin-left: auto; min-width: 42px; padding: 4px; }
  .theme-toggle .toggle-text { display: none; }
  .brand-logo { width: 148px; max-height: 34px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  background: var(--hero-panel);
}
.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: .72;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(5,7,13,0.94) 34%, rgba(5,7,13,0.62) 66%, rgba(5,7,13,0.28) 100%);
  pointer-events: none;
}
:root:not([data-theme="light"]) .hero::after {
  background: linear-gradient(90deg, var(--bg) 0%, rgba(16,19,26,0.92) 34%, rgba(16,19,26,0.48) 68%, rgba(16,19,26,0.2) 100%);
}
.hero .wrap { position: relative; display: grid; gap: 48px; padding: 76px 24px 70px; }
.hero .wrap { z-index: 1; }
@media (min-width: 860px) { .hero .wrap { grid-template-columns: minmax(0, 620px); align-items: center; min-height: calc(100vh - 76px); padding: 88px 24px 82px; } }
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cyan); }
h1.headline {
  max-width: 680px;
  font-size: 52px; line-height: 0.98; margin: 16px 0 0; letter-spacing: 0;
}
@media (min-width: 860px) { h1.headline { font-size: 76px; } }
h1.headline .amber { color: var(--amber); }
h1.headline .amber {
  background: linear-gradient(90deg, var(--amber), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede { max-width: 420px; color: var(--fg-muted); margin-top: 20px; font-size: 18px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.platform-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--fg-muted);
}
.platform-row span:not(.dot) {
  border: none;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 7px 12px;
  border-radius: 999px;
}
.platform-row .dot { display: none; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(107,226,141,0.12);
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: var(--shadow-sm);
}

.hero-showcase {
  display: grid;
  gap: 14px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 18px;
  min-height: 118px;
  background: var(--card-surface);
  box-shadow: var(--shadow);
}

.showcase-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
}

.showcase-card span {
  display: block;
  margin-top: 6px;
  color: var(--fg-muted);
  font-size: 13px;
}

.showcase-card .price {
  margin-top: 16px;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.showcase-card.accent-game { border-left: 4px solid var(--cyan); }
.showcase-card.accent-gym { border-left: 4px solid var(--green); }
.showcase-card.accent-fuel { border-left: 4px solid var(--rose); }

/* ---------- STATION GRID ---------- */
.station-grid-box {
  position: relative;
  border: none;
  background: var(--card-surface);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.sg-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--fg-muted); margin: 8px 0 16px;
}
.sg-head .amber { color: var(--amber); }
.sg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.sg-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 74px;
  border: none; border-radius: 8px; padding: 12px 4px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  background: var(--bg);
  transition: transform .15s, box-shadow .15s;
}
.sg-cell:hover { transform: translateY(-2px); }
.sg-cell b { font-weight: 700; }
.sg-cell span { opacity: .8; }
.sg-cell.open { box-shadow: var(--shadow-sm); color: var(--green); }
.sg-cell.busy { box-shadow: var(--shadow-inset-sm); color: var(--fg-muted); opacity: .7; }
.sg-cell.soon { box-shadow: var(--shadow-sm); color: var(--cyan); }
.sg-legend {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--fg-muted);
}
.sg-legend span { display: flex; align-items: center; gap: 6px; }
.sg-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.sg-legend .lg-amber i { background: var(--green); }
.sg-legend .lg-cyan i { background: var(--cyan); }
.sg-legend .lg-muted i { background: rgba(154,161,178,0.4); }

/* ---------- STATS STRIP ---------- */
.stats-strip { border-bottom: 1px solid var(--line); background: var(--bg); }
.stats-strip .wrap { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; padding: 30px 24px; }
@media (min-width: 860px) { .stats-strip .wrap { grid-template-columns: repeat(4,1fr); } }
.stat-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: none; border-radius: 8px; background: var(--bg); box-shadow: var(--shadow-sm); }
.stat-item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.stat-item p { font-size: 14px; color: var(--fg-muted); margin: 0; }

/* ---------- SECTIONS ---------- */
.section { padding: 82px 24px; background: var(--bg); }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: 34px; margin: 8px 0 0; letter-spacing: 0; }
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  padding: 76px 24px 66px;
  background: var(--page-wash);
}
.page-hero h1 { font-size: 44px; line-height: 1.05; margin: 8px 0 0; letter-spacing: 0; }
@media (min-width: 860px) { .page-hero h1 { font-size: 48px; } }
.page-hero p { max-width: 560px; color: var(--fg-muted); margin-top: 16px; }

.cards-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .cards-grid.cols-4 { grid-template-columns: repeat(4,1fr); } .cards-grid.cols-3 { grid-template-columns: repeat(3,1fr); } }

.card {
  position: relative;
  overflow: hidden;
  border: none;
  background: var(--card-surface);
  border-radius: 8px; padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 18px; margin: 0; }
.card p { color: var(--fg-muted); font-size: 14px; margin: 8px 0 0; }
.card .view-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--amber);
}

/* games list */
.plat-card ul { list-style: none; margin: 16px 0 0; padding: 0; font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--fg-muted); }
.plat-card li { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.plat-card li i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); display: inline-block; }
.plat-card h2 { color: var(--amber); font-size: 18px; margin: 0; }

/* offers */
.offer-card { display: flex; gap: 20px; align-items: center; border: none; background: var(--card-surface); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.offer-card svg { color: var(--amber); flex-shrink: 0; }
.offer-top { display: flex; justify-content: space-between; align-items: center; }
.offer-code { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.offer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); margin-top: 12px; padding-top: 12px; }
.offer-price { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--cyan); }
.offer-note { font-size: 12px; color: var(--fg-muted); }

/* membership */
.plan-card { display: flex; flex-direction: column; border: none; background: var(--card-surface); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.plan-card.highlight { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,204,0,0.18) inset; transform: translateY(-6px); }
.plan-badge { align-self: flex-start; background: var(--amber); color: #171200; border-radius: 999px; padding: 4px 12px; font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-top: 12px; font-family: 'JetBrains Mono', monospace; }
.plan-price .amt { font-size: 30px; font-weight: 700; color: var(--amber); }
.plan-price .period { font-size: 14px; color: var(--fg-muted); }
.plan-card ul { list-style: none; padding: 0; margin: 24px 0; flex: 1; }
.plan-card li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--fg-muted); padding: 6px 0; }
.plan-card li svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.plan-btn { width: 100%; border-radius: 14px; padding: 12px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; border: none; background: var(--bg); color: var(--fg); box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.plan-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.plan-card.highlight .plan-btn { background: linear-gradient(150deg, #ffd96f, var(--amber)); color: #171200; box-shadow: var(--shadow-sm); }

.product-card {
  display: grid;
  gap: 14px;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.product-price {
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: var(--shadow-inset-sm);
}

.split-feature {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

@media (min-width: 860px) {
  .split-feature { grid-template-columns: .95fr 1.05fr; }
}

.business-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
}

@media (min-width: 860px) {
  .business-duo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.business-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  padding: 28px;
  background: var(--card-surface);
  box-shadow: var(--shadow-lg);
}

.business-panel h2 {
  margin: 14px 0 0;
  font-size: 28px;
}

.business-panel p {
  color: var(--fg-muted);
  margin: 10px 0 0;
}

.business-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--shadow-inset-sm);
}

.business-panel.game .business-icon { color: var(--cyan); }
.business-panel.gym .business-icon { color: var(--green); }

.business-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.business-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--fg-muted);
  box-shadow: var(--shadow-inset-sm);
}

.business-list strong {
  color: var(--fg);
  font-weight: 700;
}

.catalog-balance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 960px) {
  .catalog-balance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.catalog-balance .section-head {
  margin-bottom: 24px;
}

.catalog-balance .cards-grid {
  height: calc(100% - 88px);
}

/* ---------- PRODUCT LISTING ---------- */
.shop-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 980px) {
  .shop-shell { grid-template-columns: 270px minmax(0, 1fr); align-items: start; }
}

.shop-sidebar,
.shop-toolbar,
.product-tile {
  background: var(--card-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .shop-sidebar,
:root[data-theme="light"] .shop-toolbar,
:root[data-theme="light"] .product-tile {
  border-color: rgba(255,255,255,0.58);
}

.shop-sidebar {
  padding: 22px;
}

.filter-block + .filter-block {
  margin-top: 24px;
}

.filter-title {
  margin: 0 0 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-muted);
}

.filter-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-list label,
.filter-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--fg-muted);
  font-size: 13px;
  box-shadow: var(--shadow-inset-sm);
}

.filter-list input {
  accent-color: var(--green);
}

.shop-main {
  min-width: 0;
}

.shop-toolbar {
  display: grid;
  gap: 16px;
  padding: 18px;
  margin-bottom: 22px;
}

@media (min-width: 760px) {
  .shop-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--shadow-inset-sm);
}

.search-box input,
.sort-select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  font: inherit;
}

.sort-select {
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--shadow-inset-sm);
}

.shop-count {
  margin: 0 0 18px;
  color: var(--fg-muted);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1120px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
}

.discount-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: var(--shadow-sm);
}

.product-art {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 180px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--bg);
  box-shadow: var(--shadow-inset);
}

.pack {
  position: relative;
  width: 94px;
  height: 132px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(155deg, var(--pack-a), var(--pack-b));
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
}

.pack::before {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  top: -14px;
  height: 24px;
  border-radius: 12px 12px 7px 7px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(210,218,232,.75));
  box-shadow: var(--shadow-sm);
}

.pack::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 22px;
  padding: 10px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  color: #1d2433;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--green);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  box-shadow: var(--shadow-inset-sm);
}

.product-tile h3 {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.25;
}

.product-meta {
  margin: 8px 0 0;
  color: var(--fg-muted);
  font-size: 13px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.sale-price {
  color: var(--fg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
}

.mrp {
  color: var(--fg-muted);
  font-size: 12px;
  text-decoration: line-through;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.option-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--fg-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  box-shadow: var(--shadow-inset-sm);
}

/* services */
.service-card svg { color: var(--amber); }
.service-card h2 { font-size: 18px; margin: 16px 0 0; }
.service-card p { font-size: 14px; color: var(--fg-muted); margin: 8px 0 0; }
.service-cta { margin-top: 20px; background: none; border: none; padding: 0; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan); }
.service-cta:hover { text-decoration: underline; }

/* ---------- BOOKING FLOW ---------- */
.book-wrap { max-width: 640px; margin: 0 auto; }
.step-indicator { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.step-item { display: flex; flex: 1; align-items: center; }
.step-circle-col { display: flex; flex-direction: column; align-items: center; }
.step-circle {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--bg);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--fg-muted);
  box-shadow: var(--shadow-inset-sm);
}
.step-circle.active { color: var(--amber); box-shadow: var(--shadow-sm); }
.step-label { margin-top: 8px; font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.step-label.active { color: var(--amber); }
.step-connector { margin: 0 8px; height: 2px; flex: 1; background: var(--line); border-radius: 99px; }
.step-connector.done { background: var(--amber); }

.book-panel { border: none; background: var(--card-surface); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-lg); }
.book-panel h2 { font-size: 20px; margin: 0; }
.field-label { display: block; margin-top: 24px; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.field-input {
  width: 100%; margin-top: 8px; border: none; background: var(--bg);
  color: var(--fg); border-radius: 12px; padding: 12px 14px; font-size: 14px; outline: none;
  box-shadow: var(--shadow-inset-sm);
  transition: box-shadow .15s;
}
.field-input:focus { box-shadow: var(--shadow-inset-sm), 0 0 0 3px rgba(255,204,0,0.16); }

.station-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.station-opt {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  border: none; border-radius: 16px; padding: 16px; text-align: left;
  background: var(--bg); color: var(--fg); box-shadow: var(--shadow-sm);
  transition: box-shadow .15s, transform .15s;
}
.station-opt:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.station-opt.selected { box-shadow: var(--shadow-inset); transform: translateY(0); }
.station-opt svg { color: var(--fg-muted); }
.station-opt.selected svg { color: var(--amber); }
.station-opt .s-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; }
.station-opt .s-rate { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg-muted); }
.station-opt.selected .s-name, .station-opt.selected .s-rate { color: var(--amber); }

.slot-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 8px; }
.slot-btn {
  border: none; border-radius: 12px; padding: 10px 0; background: var(--bg);
  color: var(--fg-muted); font-family: 'JetBrains Mono', monospace; font-size: 12px;
  box-shadow: var(--shadow-sm); transition: box-shadow .15s;
}
.slot-btn:hover { box-shadow: var(--shadow); }
.slot-btn.selected { box-shadow: var(--shadow-inset-sm); color: var(--amber); }

.dur-row { display: flex; gap: 8px; margin-top: 8px; }
.dur-row .slot-btn { flex: 1; }

.summary-box { margin-top: 24px; border: none; border-radius: 16px; padding: 20px; font-family: 'JetBrains Mono', monospace; font-size: 14px; background: var(--bg); box-shadow: var(--shadow-inset); }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; }
.summary-row .label { color: var(--fg-muted); }

.book-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; }
.back-btn { display: flex; align-items: center; gap: 6px; background: none; border: none; color: var(--fg-muted); font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.back-btn[disabled] { opacity: 0; pointer-events: none; }
.next-btn, .confirm-btn {
  display: flex; align-items: center; gap: 8px; border: none; border-radius: 14px;
  background: linear-gradient(150deg, #ffd96f, var(--amber)); color: #171200; padding: 11px 24px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
}
.next-btn:hover, .confirm-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.next-btn[disabled] { opacity: 0.3; cursor: not-allowed; }

.confirmation-box { max-width: 480px; margin: 0 auto; text-align: center; border: none; background: var(--card-surface); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg); }
.confirmation-box .check-circle {
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: var(--bg); color: var(--amber); box-shadow: var(--shadow-sm);
}
.confirmation-box h2 { font-size: 24px; margin: 24px 0 0; }
.confirmation-box p { color: var(--fg-muted); font-size: 14px; margin: 12px 0 0; }
.confirmation-box .ticket {
  margin-top: 32px; text-align: left; border: none; border-radius: 12px;
  padding: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--fg-muted); background: var(--bg); box-shadow: var(--shadow-inset-sm);
}
.hidden { display: none !important; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer .wrap { display: grid; gap: 40px; padding: 56px 24px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .footer .wrap { grid-template-columns: repeat(4,1fr); } }
.footer .brand { margin-bottom: 4px; }
.footer p.tagline { max-width: 280px; font-size: 14px; color: var(--fg-muted); margin-top: 12px; }
.footer h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin: 0; }
.footer ul { list-style: none; padding: 0; margin: 12px 0 0; }
.footer li { padding: 4px 0; font-size: 14px; }
.footer li a:hover { color: var(--amber); }
.footer li.addr { display: flex; align-items: flex-start; gap: 8px; color: var(--fg-muted); }
.footer li.addr svg { margin-top: 2px; color: var(--amber); flex-shrink: 0; }
.footer .ig-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--amber); font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 24px; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .navbar .wrap { gap: 12px; }
  .brand-logo { width: 128px; max-height: 30px; }
  .footer .brand-logo { width: 170px; }
  .hero .wrap { padding: 56px 18px; }
  h1.headline { font-size: 42px; }
  body[data-page="book"] .section h1.display { font-size: 34px !important; line-height: 1.12; }
  .hero p.lede { font-size: 15px; }
  .section { padding: 58px 18px; }
  .page-hero { padding: 54px 18px 48px; }
  .page-hero h1 { font-size: 34px; }
  .stats-strip .wrap { grid-template-columns: 1fr; }
  .sg-grid { grid-template-columns: repeat(2, 1fr); }
  .station-picker, .slot-grid { grid-template-columns: 1fr; }
  .dur-row { flex-wrap: wrap; }
  .dur-row .slot-btn { min-width: calc(50% - 4px); }
  .book-panel { padding: 24px; }
  .step-label { display: none; }
}

/* ---------- FLAT UI POLISH ---------- */
.navbar {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.brand:has(.brand-logo),
.theme-toggle,
.menu-toggle,
.btn-outline,
.card,
.offer-card,
.plan-card,
.book-panel,
.confirmation-box,
.station-grid-box,
.business-panel,
.shop-sidebar,
.shop-toolbar,
.product-tile,
.stat-item {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.field-input,
.station-opt,
.slot-btn,
.summary-box,
.tag-row span,
.business-list li,
.search-box,
.sort-select,
.filter-list label,
.filter-chip,
.option-count,
.product-art,
.product-rating,
.theme-toggle .toggle-orb {
  border: 1px solid var(--line);
  box-shadow: none;
}

.nav-links a.active,
.mobile-menu a.active,
.station-opt.selected,
.slot-btn.selected {
  box-shadow: none;
  background: var(--soft-surface);
}

.btn-amber,
.next-btn,
.confirm-btn,
.add-btn {
  box-shadow: none;
}

.btn-amber:hover,
.btn-outline:hover,
.card:hover,
.station-opt:hover,
.slot-btn:hover,
.plan-btn:hover,
.next-btn:hover,
.confirm-btn:hover {
  box-shadow: var(--shadow);
}

.card,
.offer-card,
.plan-card,
.book-panel,
.confirmation-box,
.station-grid-box,
.business-panel,
.shop-sidebar,
.shop-toolbar,
.product-tile {
  border-radius: 12px;
}

.product-art {
  background: rgba(255,255,255,0.18);
}

:root[data-theme="light"] .product-art {
  background: #f4f7fb;
}

.pack,
.pack::before {
  box-shadow: 0 12px 24px rgba(50,65,96,0.18);
}

.firebase-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: 320px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: 12px 14px;
  background: #101010;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.firebase-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.firebase-toast.success {
  border-color: rgba(255,204,0,.55);
}

.firebase-toast.warning,
.firebase-toast.error {
  border-color: rgba(255,107,139,.55);
}

.admin-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.28));
}

body[data-page="admin"] {
  background: #050505;
}

.admin-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.admin-card {
  border-radius: 8px;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-card-head h2 {
  margin: 0;
  font-size: 24px;
}

.admin-fields,
.admin-small-fields,
.admin-product-simple-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-product-simple-form label {
  display: grid;
  gap: 7px;
}

.admin-wide-field {
  grid-column: 1 / -1;
}

.admin-small-fields {
  grid-template-columns: 1fr 1fr 140px;
  margin-top: 12px;
}

.admin-checks,
.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-checks {
  margin-top: 18px;
  color: var(--fg-muted);
  font-weight: 700;
}

.admin-product-list {
  display: grid;
  gap: 10px;
}

.admin-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 13px;
  background: #101010;
  color: #fff;
  text-align: left;
}

.admin-product-row:hover {
  border-color: rgba(255,204,0,.55);
}

.admin-product-pick {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.admin-product-pick span {
  display: grid;
  gap: 2px;
}

.admin-product-pick small,
.admin-muted {
  color: var(--fg-muted);
}

.admin-row-delete {
  border: 1px solid rgba(255,107,139,.45);
  border-radius: 7px;
  padding: 8px 10px;
  background: rgba(255,107,139,.08);
  color: #ff9daf;
  font-weight: 900;
}

.catalog-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 24px;
  color: var(--fg-muted);
  text-align: center;
}

.admin-error {
  margin: 14px 0 0;
  border: 1px solid rgba(255,107,139,.45);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255,107,139,.08);
  color: #ff9daf;
  font-weight: 700;
}

body[data-page="admin"] {
  background:
    radial-gradient(circle at 84% 8%, rgba(255,204,0,.08), transparent 28%),
    linear-gradient(135deg, #050505 0%, #0b0d10 48%, #050505 100%);
  color: #f8f8f8;
}

.admin-dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid rgba(255,255,255,.12);
  padding: 22px 16px;
  background: rgba(5,5,5,.86);
  backdrop-filter: blur(18px);
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.admin-brand span span {
  color: var(--amber);
}

.admin-logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 3px solid var(--amber);
  color: var(--amber);
  font-size: 15px;
  clip-path: polygon(50% 0, 94% 24%, 94% 76%, 50% 100%, 6% 76%, 6% 24%);
}

.admin-side-nav {
  display: grid;
  gap: 6px;
}

.admin-side-nav a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

.admin-side-nav a:hover,
.admin-side-nav a.active {
  border-color: rgba(255,204,0,.48);
  background: linear-gradient(90deg, rgba(255,204,0,.18), rgba(255,255,255,.03));
  color: var(--amber);
}

.admin-side-nav svg,
.admin-topbar svg,
.admin-panel-head svg,
.admin-stat-card svg {
  width: 22px;
  height: 22px;
}

body[data-page="admin"] i[data-lucide] {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--amber);
  font-size: 0;
  font-style: normal;
}

body[data-page="admin"] i[data-lucide]::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.admin-side-card {
  margin-top: auto;
  border: 1px solid rgba(255,204,0,.24);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,204,0,.12), rgba(255,255,255,.03)),
    #0b0b0b;
}

.admin-side-card p {
  margin: 0 0 4px;
  color: var(--fg-muted);
}

.admin-side-card strong {
  display: block;
  margin-bottom: 16px;
  max-width: 150px;
  line-height: 1.15;
  text-transform: uppercase;
}

.admin-side-card .btn-amber {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  padding: 10px 12px;
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 44px minmax(220px, 420px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 12px 28px;
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(18px);
}

.admin-icon-btn,
.admin-mini-logout {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: #fff;
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 0 14px;
  min-height: 46px;
  background: rgba(255,255,255,.06);
}

.admin-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.admin-search input::placeholder {
  color: rgba(255,255,255,.46);
}

.admin-top-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-top-links a,
.admin-date-pill,
.admin-chip {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.8);
  font-weight: 800;
}

.admin-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.admin-user-pill strong,
.admin-user-pill small {
  display: block;
}

.admin-user-pill small {
  max-width: 150px;
  overflow: hidden;
  color: var(--fg-muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #fff1a8);
  color: #080808;
  font-weight: 900;
}

.admin-dashboard-content {
  display: grid;
  gap: 18px;
  padding: 24px 30px;
}

.admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-heading h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: 0;
}

.admin-heading p {
  margin: 4px 0 0;
  color: var(--fg-muted);
}

.admin-heading p span {
  color: var(--amber);
  font-weight: 800;
}

.admin-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.admin-login-panel,
.admin-panel,
.admin-stat-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #101113;
  box-shadow: 0 22px 50px rgba(0,0,0,.26);
}

.admin-login-panel,
.admin-panel {
  padding: 22px;
}

.admin-login-panel {
  max-width: 760px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-panel-head p {
  margin: 0 0 4px;
  color: var(--amber);
  font-size: 11px;
}

.admin-panel-head h2 {
  margin: 0;
  font-size: 20px;
}

.admin-panel-head > svg {
  color: var(--amber);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-stat-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  padding: 20px;
}

.admin-stat-card svg {
  grid-row: span 3;
  color: var(--amber);
}

.admin-stat-card i[data-lucide] {
  grid-row: span 3;
}

.admin-stat-card span,
.admin-stat-card small {
  color: var(--fg-muted);
}

.admin-stat-card strong {
  font-size: 28px;
  line-height: 1.1;
}

.admin-stat-card small {
  font-size: 12px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 18px;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
}

.admin-chart {
  min-height: 230px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 18px 8px 0;
}

.admin-chart span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--amber), rgba(255,204,0,.12));
  box-shadow: 0 0 22px rgba(255,204,0,.18);
}

.admin-chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  color: var(--fg-muted);
  font-size: 13px;
}

body[data-page="admin"] .field-input {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(0,0,0,.28);
  box-shadow: none;
}

body[data-page="admin"] .field-input:focus {
  border-color: rgba(255,204,0,.58);
  box-shadow: 0 0 0 3px rgba(255,204,0,.12);
}

body[data-page="admin"] .btn-amber,
body[data-page="admin"] .btn-outline {
  border-radius: 8px;
}

body[data-page="admin"] .btn-outline {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  box-shadow: none;
}

.cart-panel {
  border-radius: 8px;
}

.cart-head,
.cart-summary,
.cart-row,
.cart-qty {
  display: flex;
  align-items: center;
}

.cart-head,
.cart-summary {
  justify-content: space-between;
  gap: 16px;
}

.cart-head {
  margin-bottom: 18px;
}

.cart-head h2 {
  margin: 0;
  font-size: 26px;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  gap: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px;
  background: #0c0c0c;
}

.cart-row img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: contain;
  background: #111;
}

.cart-row div:nth-child(2) {
  flex: 1;
}

.cart-row h3,
.cart-row p {
  margin: 0;
}

.cart-row p,
.cart-empty {
  color: var(--fg-muted);
}

.cart-line-total {
  display: inline-block;
  margin-top: 5px;
  color: var(--amber);
  font-size: 14px;
}

.cart-qty {
  gap: 10px;
}

.cart-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.cart-summary {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 18px;
  padding-top: 18px;
}

.cart-total-box {
  display: grid;
  gap: 2px;
}

.cart-total-box span {
  color: var(--fg-muted);
  font-size: 13px;
}

.cart-total-box strong {
  color: var(--amber);
  font-size: 24px;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 81;
  width: min(390px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(180deg, rgba(22,22,22,.98), rgba(5,5,5,.98));
  color: #fff;
  box-shadow: -28px 0 60px rgba(0,0,0,.42);
  transform: translateX(104%);
  transition: transform .22s ease;
}

body.mini-cart-open .mini-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.mini-cart-open .mini-cart-drawer {
  transform: translateX(0);
}

.mini-cart-head,
.mini-cart-foot {
  padding: 18px;
}

.mini-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.mini-cart-head p,
.mini-cart-head h2 {
  margin: 0;
}

.mini-cart-head p {
  color: var(--amber);
  font-size: 11px;
  text-transform: uppercase;
}

.mini-cart-head h2 {
  font-size: 24px;
}

.mini-cart-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.mini-cart-list {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 16px;
}

.mini-cart-empty {
  margin: 0;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 18px;
  color: var(--fg-muted);
  text-align: center;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255,255,255,.04);
}

.mini-cart-item img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  background: #080808;
  object-fit: contain;
}

.mini-cart-item h3,
.mini-cart-item p {
  margin: 0;
}

.mini-cart-item h3 {
  font-size: 14px;
  line-height: 1.25;
}

.mini-cart-item p {
  margin-top: 4px;
  color: var(--amber);
  font-weight: 800;
}

.mini-cart-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
}

.mini-cart-qty button {
  min-width: 30px;
  min-height: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  background: #0b0b0b;
  color: #fff;
  font-weight: 800;
}

.mini-cart-qty button[data-mini-action="remove"] {
  padding: 0 9px;
  color: #ff9daf;
}

.mini-cart-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
}

.mini-cart-foot {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.mini-cart-foot div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-cart-foot span {
  color: var(--fg-muted);
}

.mini-cart-foot strong {
  font-size: 20px;
}

.mini-cart-foot .btn-amber {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .mini-cart-drawer {
    width: 100vw;
  }

  .mini-cart-head,
  .mini-cart-foot {
    padding: 14px;
  }

  .mini-cart-list {
    padding: 12px;
  }
}

@media (min-width: 980px) {
  .admin-simple {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  }

  #product-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .admin-dashboard-shell {
    display: block;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    padding: 14px;
  }

  .admin-brand {
    font-size: 22px;
  }

  .admin-side-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .admin-side-nav a {
    flex: 0 0 auto;
    min-width: 128px;
    scroll-snap-align: start;
  }

  .admin-side-card {
    display: none;
  }

  .admin-topbar {
    position: relative;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px 14px;
  }

  .admin-top-links {
    display: none;
  }

  .admin-user-pill {
    grid-column: 1 / -1;
    min-width: 0;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 10px;
  }

  .admin-user-pill small {
    max-width: 230px;
  }

  .admin-dashboard-content {
    gap: 14px;
    padding: 18px 14px;
  }

  .admin-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-date-pill {
    width: 100%;
    justify-content: center;
  }

  .admin-login-panel,
  .admin-panel {
    padding: 16px;
  }

  .admin-stat-grid,
  .admin-dashboard-grid,
  .admin-editor-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .admin-stat-card {
    min-height: 104px;
  }

  .admin-chart {
    min-height: 170px;
    gap: 8px;
  }

  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-card-head,
  .admin-actions,
  .admin-checks {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-fields,
  .admin-small-fields,
  .admin-product-simple-form {
    grid-template-columns: 1fr;
  }

  .cart-head,
  .cart-summary,
  .cart-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- MUSCLEHUB LANDING ---------- */
body[data-page="home"] {
  background: #000;
}

.mh-nav {
  background: rgba(0,0,0,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.mh-nav .wrap {
  max-width: 1330px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.mh-nav .brand:has(.brand-logo) {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mh-nav .brand-logo {
  width: 194px;
  max-height: 54px;
  border-radius: 0;
}

.mh-nav .nav-links {
  gap: 26px;
}

.mh-nav .nav-links a {
  padding: 0 0 12px;
  border-radius: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.mh-nav .nav-links a:hover,
.mh-nav .nav-links a.active {
  color: var(--amber);
  background: transparent;
  box-shadow: none;
}

.mh-nav .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--amber);
}

.mh-nav .wrap > .btn-amber {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-actions a {
  position: relative;
  display: inline-flex;
  color: #fff;
}

.cart-action span {
  position: absolute;
  top: -11px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
  font-size: 11px;
  font-weight: 800;
}

.mh-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.mh-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.78) 31%, rgba(0,0,0,0.18) 57%, #000 100%),
    radial-gradient(circle at 47% 46%, rgba(255,204,0,0.24), transparent 18%),
    radial-gradient(circle at 76% 50%, rgba(0,94,255,0.32), transparent 25%),
    linear-gradient(90deg, #050505 0 49%, transparent 49% 51%, #04050b 51% 100%);
}

.mh-hero-bg::before {
  content: "";
  position: absolute;
  left: 42%;
  top: 0;
  width: 19%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.12), transparent 58%),
    linear-gradient(180deg, transparent 0 20%, rgba(255,204,0,0.12) 20% 82%, transparent 82%);
  clip-path: polygon(28% 6%, 82% 6%, 64% 92%, 10% 92%);
}

.mh-hero-bg::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 9%;
  width: 42%;
  height: 78%;
  background:
    radial-gradient(circle at 24% 48%, #ffcc00 0 2.2%, transparent 2.3%),
    linear-gradient(90deg, transparent 0 52%, #ffcc00 52% 53%, transparent 53%),
    radial-gradient(ellipse at 28% 54%, rgba(255,204,0,0.95) 0 15%, transparent 15.4%),
    radial-gradient(ellipse at 30% 57%, #070707 0 25%, transparent 25.5%),
    linear-gradient(90deg, transparent 0 36%, #111 36% 54%, transparent 54%),
    linear-gradient(180deg, transparent 0 20%, #07070a 20% 72%, transparent 72%),
    radial-gradient(circle at 86% 38%, rgba(80,80,255,0.72), transparent 10%),
    radial-gradient(circle at 92% 54%, rgba(255,0,150,0.48), transparent 12%),
    linear-gradient(160deg, transparent 0 55%, rgba(0,80,255,0.22) 55% 75%, transparent 75%);
  filter: saturate(1.15);
}

.mh-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1330px;
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: 52px 24px 72px;
}

.mh-hero-copy {
  max-width: 530px;
}

.mh-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.mh-hero-copy h1 span {
  color: var(--amber);
}

.mh-hero-copy p {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 20px;
  line-height: 1.45;
}

.mh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.mh-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border-radius: 8px;
  padding: 0 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.mh-btn.primary {
  background: var(--amber);
  color: #000;
}

.mh-btn.secondary {
  border: 1px solid rgba(255,255,255,0.65);
  color: #fff;
}

.mh-benefits,
.mh-deal-strip {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1190px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(34,34,34,0.94), rgba(17,17,17,0.94));
  box-shadow: 0 20px 50px rgba(0,0,0,0.34);
}

.mh-benefits {
  grid-template-columns: repeat(4, 1fr);
  margin-top: -38px;
}

.mh-benefits div,
.mh-deal-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mh-benefits div:last-child,
.mh-deal-strip div:last-child {
  border-right: 0;
}

.mh-benefits i,
.mh-deal-strip i {
  grid-row: span 2;
  color: var(--amber);
}

.mh-benefits strong,
.mh-deal-strip strong {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mh-benefits span,
.mh-deal-strip span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.mh-section {
  padding: 28px 24px 0;
}

.mh-section-title {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 auto 14px;
  text-align: center;
}

.mh-section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.mh-section-title h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
}

.mh-section-title p {
  margin: 2px 0 0;
  color: rgba(255,255,255,0.72);
}

.mh-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mh-collection {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 14px;
  background: #080808;
}

.mh-collection::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .95;
}

.mh-collection.gym::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94), rgba(0,0,0,0.44), rgba(0,0,0,0.72)),
    radial-gradient(circle at 68% 54%, #ffcc00 0 13%, transparent 13.4%),
    radial-gradient(circle at 79% 52%, #0a0a0a 0 15%, transparent 15.4%),
    linear-gradient(90deg, transparent 0 48%, #151515 48% 56%, transparent 56%),
    radial-gradient(circle at 62% 58%, rgba(255,255,255,0.38), transparent 17%),
    linear-gradient(135deg, rgba(255,204,0,0.22), transparent 46%);
}

.mh-collection.gaming::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.42), rgba(0,0,0,0.78)),
    radial-gradient(circle at 70% 54%, rgba(0,117,255,0.9), transparent 15%),
    radial-gradient(circle at 82% 58%, rgba(255,0,190,0.7), transparent 12%),
    linear-gradient(90deg, transparent 0 54%, rgba(70,30,255,0.32) 54% 78%, transparent 78%);
}

.collection-content {
  position: relative;
  z-index: 1;
  max-width: 300px;
  padding: 32px;
}

.collection-content i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
}

.collection-content h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 29px;
  line-height: .95;
  text-transform: uppercase;
}

.collection-content h3 span {
  display: block;
  color: var(--amber);
}

.collection-content p {
  margin: 14px 0 0;
  color: #fff;
}

.collection-content b {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 6px;
  padding: 12px 22px;
  background: var(--amber);
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
}

.mh-deal-strip {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
  margin-bottom: 42px;
}

@media (max-width: 1080px) {
  .nav-actions { display: none; }
  .mh-benefits,
  .mh-deal-strip { grid-template-columns: repeat(2, 1fr); }
  .mh-benefits div:nth-child(2),
  .mh-deal-strip div:nth-child(2) { border-right: 0; }
}

@media (max-width: 720px) {
  .mh-hero { min-height: 640px; }
  .mh-hero-grid { align-items: start; min-height: 640px; padding-top: 44px; }
  .mh-hero-bg::after { opacity: .42; right: -24%; width: 90%; }
  .mh-benefits,
  .mh-deal-strip,
  .mh-collections { grid-template-columns: 1fr; }
  .mh-benefits div,
  .mh-deal-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .mh-benefits div:last-child,
  .mh-deal-strip div:last-child { border-bottom: 0; }
  .mh-section-title { grid-template-columns: 1fr; }
  .mh-section-title span { display: none; }
}

/* ---------- EXACT HOME REFERENCE ---------- */
.top-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 34px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.top-strip b {
  color: var(--amber);
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-strip span:last-child {
  justify-content: flex-end;
}

.exact-hero {
  position: relative;
  min-height: 470px;
  background: #000;
}

.exact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.5) 32%, rgba(0,0,0,.05) 62%, rgba(0,0,0,.16));
}

.exact-hero .mh-hero-grid {
  min-height: 470px;
  max-width: 1500px;
  padding-top: 50px;
  padding-bottom: 58px;
  padding-left: 56px;
  align-items: center;
}

.exact-hero .mh-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-left: 0;
  transform: translateY(8px);
}

.exact-hero .mh-hero-copy h1 {
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.08;
  max-width: 540px;
}

.exact-hero .mh-hero-copy p {
  max-width: 420px;
  margin-top: 16px;
  font-size: 17px;
}

.exact-hero .mh-hero-actions {
  margin-top: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.category-grid a {
  display: flex;
  flex-direction: column;
  min-height: 206px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: #0b0b0b;
}

.category-grid img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.category-grid strong {
  padding: 10px 14px 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.category-grid em {
  margin-top: auto;
  padding: 8px 14px 14px;
  color: #fff;
  font-size: 11px;
  font-style: normal;
}

.category-grid em::after {
  content: "  +";
  color: var(--amber);
}

.home-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.promo-card {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card.yellow img {
  object-position: 62% center;
}

.promo-card.yellow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,204,0,.98) 0%, rgba(255,204,0,.88) 34%, rgba(255,204,0,.26) 56%, rgba(255,204,0,0) 100%);
}

.promo-card div {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.promo-card.yellow {
  color: #000;
}

.promo-card.gaming {
  color: #fff;
}

.promo-card h2 {
  margin: 5px 0 0;
  font-size: 38px;
  line-height: .94;
  text-transform: uppercase;
}

.promo-card p,
.promo-card span {
  font-weight: 800;
  text-transform: uppercase;
}

.promo-card b {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 6px;
  padding: 11px 19px;
  background: #000;
  color: #ffcc00;
  font-size: 12px;
  text-transform: uppercase;
}

.promo-card.gaming b {
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  color: #fff;
}

.home-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-tabs button {
  border: 0;
  border-radius: 8px;
  padding: 11px 24px;
  background: var(--amber);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-row {
  position: relative;
  display: grid;
  grid-template-columns: auto repeat(5, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.featured-row article {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: #0b0b0b;
  color: #fff;
}

.featured-row article img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.featured-row article h3,
.featured-row article p,
.featured-row article span {
  margin: 0;
  padding: 0 14px;
}

.featured-row article h3 {
  margin-top: 13px;
  min-height: 42px;
  font-size: 14px;
}

.featured-row article p {
  margin-top: 10px;
  font-weight: 800;
}

.featured-row article span {
  display: block;
  margin-top: 8px;
  color: var(--amber);
  font-size: 12px;
}

.featured-row article b {
  display: block;
  margin: 13px 14px 14px;
  border-radius: 6px;
  padding: 11px;
  background: var(--amber);
  color: #000;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
}

.slide-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
  font-size: 24px;
  font-weight: 900;
}

.choose-strip {
  margin-top: 38px;
}

.brand-row {
  padding: 10px 24px 28px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  font-size: 24px;
  font-style: italic;
}

.testimonials {
  padding: 10px 24px 28px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(28,28,28,.95), rgba(8,8,8,.95));
}

.testimonial-grid article {
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.testimonial-grid article:last-child {
  border-right: 0;
}

.testimonial-grid strong {
  color: #fff;
}

.testimonial-grid span {
  display: block;
  color: var(--amber);
  margin-top: 6px;
}

.testimonial-grid p {
  color: rgba(255,255,255,.72);
}

.newsletter {
  display: grid;
  grid-template-columns: 360px minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--amber);
  color: #000;
  margin-top: 8px;
  padding: 0 34px 0 0;
}

.newsletter img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: 42% center;
}

.newsletter h2 {
  margin: 0;
  text-transform: uppercase;
}

.newsletter p {
  max-width: 560px;
  font-weight: 700;
}

.newsletter form {
  display: flex;
  gap: 8px;
}

.newsletter input {
  width: min(360px, 100%);
  border: 0;
  border-radius: 6px;
  padding: 14px;
}

.newsletter button {
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  background: #000;
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter ul {
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.home-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
  padding: 48px 24px 38px;
  color: rgba(255,255,255,.72);
}

body:not([data-page="home"]) {
  background: #000;
}

body:not([data-page="home"]) .page-hero,
body:not([data-page="home"]) .section {
  background: #000;
}

body:not([data-page="home"]) .page-hero {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 70px 24px 58px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.72)),
    radial-gradient(circle at 78% 42%, rgba(255,204,0,.16), transparent 28%),
    radial-gradient(circle at 18% 0, rgba(255,204,0,.08), transparent 28%),
    #000;
}

body:not([data-page="home"]) .page-hero .wrap {
  max-width: 1280px;
}

body:not([data-page="home"]) .page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  text-transform: uppercase;
}

body:not([data-page="home"]) .page-hero p {
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

body:not([data-page="home"]) .eyebrow {
  color: var(--amber);
  font-family: Inter, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
}

body:not([data-page="home"]) .section {
  max-width: 1280px;
}

body:not([data-page="home"]) .section-head {
  text-align: center;
}

body:not([data-page="home"]) .section-head h2 {
  color: #fff;
  text-transform: uppercase;
}

body:not([data-page="home"]) .card,
body:not([data-page="home"]) .offer-card,
body:not([data-page="home"]) .plan-card,
body:not([data-page="home"]) .book-panel,
body:not([data-page="home"]) .confirmation-box,
body:not([data-page="home"]) .shop-sidebar,
body:not([data-page="home"]) .shop-toolbar,
body:not([data-page="home"]) .product-tile {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(28,28,28,.95), rgba(8,8,8,.95));
  box-shadow: none;
}

body:not([data-page="home"]) .card:hover,
body:not([data-page="home"]) .product-tile:hover {
  border-color: rgba(255,204,0,.55);
  transform: translateY(-3px);
}

body:not([data-page="home"]) .btn-amber,
body:not([data-page="home"]) .plan-btn,
body:not([data-page="home"]) .next-btn,
body:not([data-page="home"]) .confirm-btn,
body:not([data-page="home"]) .add-btn {
  border: 0;
  border-radius: 7px;
  background: var(--amber);
  color: #000;
  box-shadow: none;
  font-weight: 900;
}

body:not([data-page="home"]) .btn-outline {
  border: 1px solid rgba(255,255,255,.65);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

body:not([data-page="home"]) .field-input,
body:not([data-page="home"]) .search-box,
body:not([data-page="home"]) .sort-select,
body:not([data-page="home"]) .filter-list label,
body:not([data-page="home"]) .filter-chip,
body:not([data-page="home"]) .station-opt,
body:not([data-page="home"]) .slot-btn,
body:not([data-page="home"]) .summary-box {
  border: 1px solid rgba(255,255,255,.14);
  background: #090909;
  color: #fff;
  box-shadow: none;
}

body:not([data-page="home"]) .category-strip {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(28,28,28,.95), rgba(8,8,8,.95));
  box-shadow: none;
}

body:not([data-page="home"]) .category-chip.active {
  background: var(--amber);
  color: #000;
  box-shadow: none;
}

body:not([data-page="home"]) .product-art {
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
}

.home-footer .brand {
  color: #fff;
}

.home-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
}

.home-footer a,
.home-footer p {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.72);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px 34px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

/* ---------- EXACT SHOP PAGE ---------- */
body[data-page="products"] {
  background: #050505;
  color: #fff;
}

body[data-page="products"] .top-strip,
body[data-page="products"] .home-footer,
body[data-page="products"] .copyright {
  display: none;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 230px minmax(560px, 1fr) minmax(200px, 300px) auto auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 16px 22px;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(18px);
}

.shop-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 25px;
  font-weight: 900;
  white-space: nowrap;
}

.shop-brand span span,
.shop-nav a.active,
.shop-category-panel a.active,
.shop-breadcrumb,
.shop-filter-card h3 {
  color: var(--amber);
}

.shop-logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--amber);
  color: var(--amber);
  font-size: 14px;
  clip-path: polygon(50% 0, 94% 24%, 94% 76%, 50% 100%, 6% 76%, 6% 24%);
}

.shop-nav {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  min-width: 0;
}

.shop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.shop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  border-radius: 99px;
  background: var(--amber);
}

.shop-nav svg,
.shop-header-search svg,
.shop-header-actions svg,
.shop-category-panel svg,
.shop-view-btn svg,
.shop-breadcrumb svg {
  width: 18px;
  height: 18px;
}

body[data-page="products"] i[data-lucide] {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  font-size: 0;
  font-style: normal;
}

body[data-page="products"] i[data-lucide]::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.shop-header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  min-height: 42px;
  padding: 0 13px;
  background: rgba(255,255,255,.05);
}

.shop-header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.shop-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shop-header-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.shop-header-actions b,
.cart-action span {
  position: absolute;
  top: -12px;
  left: 12px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  padding: 0 5px;
  background: var(--amber);
  color: #000;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.shop-header-actions em {
  font-style: normal;
}

.shop-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.shop-page-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 20px 36px;
}

.shop-category-panel,
.shop-filter-card,
.shop-hero-banner,
.shop-product-grid .product-tile,
.shop-view-btn,
body[data-page="products"] .sort-select {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22,22,22,.96), rgba(7,7,7,.96));
}

.shop-category-panel {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 14px;
}

.shop-category-panel h2,
.shop-filter-card h2,
.shop-listing-head h2 {
  margin: 0;
  font-size: 18px;
}

.shop-category-panel > h2,
.shop-filter-card h2 {
  margin-bottom: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.shop-category-panel a,
.shop-filter-card label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 10px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

.shop-category-panel a.active,
.shop-category-panel a:hover {
  background: rgba(255,255,255,.08);
}

.shop-filter-card {
  margin-top: 14px;
  padding: 14px;
}

.shop-price-range {
  display: grid;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.shop-price-range input {
  width: 100%;
  accent-color: var(--amber);
}

.shop-price-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 14px;
}

.shop-price-fields span {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 8px 10px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
}

.shop-filter-card h3 {
  margin: 16px 0 8px;
  font-size: 13px;
}

.shop-filter-card label {
  grid-template-columns: auto minmax(0, 1fr);
  padding: 7px 0;
  color: rgba(255,255,255,.72);
}

.shop-filter-card input {
  accent-color: var(--amber);
}

.shop-content {
  min-width: 0;
}

.shop-hero-banner {
  position: relative;
  min-height: 235px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 32px 38px;
  background:
    linear-gradient(90deg, #080808 0%, rgba(8,8,8,.88) 38%, rgba(8,8,8,.2) 100%),
    #101010;
}

.shop-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 68% 56%, rgba(255,204,0,.18), transparent 26%);
  pointer-events: none;
}

.shop-hero-banner div {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.shop-hero-banner h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}

.shop-hero-banner h1 span {
  color: var(--amber);
}

.shop-hero-banner p {
  margin: 14px 0 20px;
  max-width: 360px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
}

.shop-hero-banner img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58%, 760px);
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 4px 10px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.shop-listing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 4px 16px;
}

.shop-listing-head h2 {
  font-size: 26px;
}

.shop-listing-head .shop-count {
  margin: 4px 0 0;
}

.shop-sort-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
}

body[data-page="products"] .sort-select {
  min-width: 132px;
  padding: 12px 14px;
  color: #fff;
  box-shadow: none;
}

.shop-view-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
}

.shop-view-btn.active {
  border-color: rgba(255,204,0,.65);
  background: rgba(255,204,0,.16);
  color: var(--amber);
}

.shop-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.shop-product-grid .product-tile {
  min-height: 296px;
  padding: 12px;
  box-shadow: none;
}

.shop-product-grid .product-tile:hover {
  border-color: rgba(255,204,0,.55);
  transform: translateY(-2px);
}

.shop-product-grid .discount-badge {
  top: 12px;
  left: 12px;
  border-radius: 4px;
  padding: 5px 8px;
  background: #159344;
  color: #fff;
}

.shop-product-grid .discount-badge:empty {
  display: none;
}

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.shop-product-grid .product-art {
  height: 150px;
  margin-bottom: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.shop-product-grid .admin-product-img {
  object-fit: contain;
  max-width: 96%;
  max-height: 148px;
}

.product-brand {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.shop-product-grid .product-tile h3 {
  margin: 2px 0 0;
  min-height: 36px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.shop-product-grid .product-rating {
  display: block;
  margin: 4px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--amber);
  font-family: Inter, sans-serif;
  font-size: 13px;
  box-shadow: none;
}

.shop-product-grid .product-rating small {
  color: rgba(255,255,255,.68);
}

.shop-product-grid .product-meta {
  display: none;
}

.shop-product-grid .price-row {
  margin-top: 6px;
  gap: 7px;
}

.shop-product-grid .sale-price {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.shop-product-grid .mrp {
  font-size: 13px;
}

.shop-product-grid .product-actions {
  grid-template-columns: 1fr;
  margin-top: 10px;
}

.shop-product-grid .add-btn {
  width: 100%;
  min-height: 34px;
  border: 1px solid var(--amber);
  border-radius: 6px;
  background: transparent;
  color: var(--amber);
  font-size: 12px;
  text-transform: none;
}

.shop-product-grid .add-btn:hover {
  background: var(--amber);
  color: #000;
}

body[data-page="products"] .catalog-empty {
  border-color: rgba(255,255,255,.2);
  background: #101010;
}

@media (min-width: 1540px) {
  .shop-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .shop-header {
    grid-template-columns: 220px minmax(500px, 1fr) minmax(170px, 260px) auto;
  }

  .shop-nav {
    gap: 14px;
  }

  .shop-nav a {
    font-size: 13px;
  }

  .shop-header-actions a span,
  .shop-header-actions a em {
    display: none;
  }

  .shop-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .shop-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .shop-nav,
  .shop-header-actions {
    display: none;
  }

  .shop-menu-toggle {
    display: grid;
  }

  .shop-header .mobile-menu {
    grid-column: 1 / -1;
  }

  .shop-page-shell {
    grid-template-columns: 1fr;
  }

  .shop-category-panel {
    position: relative;
    top: auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x proximity;
  }

  .shop-category-panel h2,
  .shop-filter-card {
    display: none;
  }

  .shop-category-panel a {
    flex: 0 0 auto;
    min-width: 148px;
    scroll-snap-align: start;
  }

  .shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  body[data-page="products"] .shop-header {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px) auto;
    gap: 12px;
  }

  body[data-page="products"] .shop-brand {
    font-size: 22px;
  }

  body[data-page="products"] .shop-logo-mark {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }

  body[data-page="products"] .shop-nav {
    display: none;
  }

  body[data-page="products"] .shop-header-actions {
    gap: 10px;
  }

  body[data-page="products"] .shop-header-actions a {
    font-size: 0;
  }

  body[data-page="products"] .shop-menu-toggle {
    display: grid;
  }

  body[data-page="products"] .shop-page-shell {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
  }

  body[data-page="products"] .shop-category-panel a {
    font-size: 13px;
  }

  body[data-page="products"] .shop-hero-banner {
    min-height: 220px;
  }

  body[data-page="products"] .shop-hero-banner h1 {
    font-size: 34px;
  }

  body[data-page="products"] .shop-hero-banner p {
    font-size: 15px;
  }

  body[data-page="products"] .shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shop-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .shop-brand {
    font-size: 21px;
  }

  .shop-logo-mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .shop-header-search {
    grid-column: 1 / -1;
    order: 4;
  }

  .shop-page-shell {
    gap: 14px;
    padding: 14px;
  }

  .shop-hero-banner {
    min-height: 310px;
    align-items: flex-start;
    padding: 24px 18px;
  }

  .shop-hero-banner img {
    width: 100%;
    height: 55%;
    opacity: .62;
  }

  .shop-hero-banner p {
    max-width: 290px;
    font-size: 15px;
  }

  .shop-listing-head {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .shop-sort-row {
    width: 100%;
    flex-wrap: wrap;
  }

  body[data-page="products"] .sort-select {
    flex: 1 1 150px;
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .shop-product-grid .product-tile {
    min-height: 272px;
    padding: 10px;
  }

  .shop-product-grid .product-art {
    height: 124px;
  }

  .shop-product-grid .product-tile h3 {
    font-size: 13px;
  }

  .shop-product-grid .sale-price {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .shop-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .category-grid,
  .featured-row { grid-template-columns: repeat(3, 1fr); }
  .slide-arrow { display: none; }
  .newsletter,
  .home-footer { grid-template-columns: 1fr; padding: 24px; }
}

@media (max-width: 760px) {
  .top-strip { grid-template-columns: 1fr; padding: 10px 18px; text-align: center; }
  .top-strip span,
  .top-strip span:last-child { justify-content: center; }
  .category-grid,
  .promo-grid,
  .home-shop-grid,
  .featured-row,
  .testimonial-grid { grid-template-columns: 1fr; }
  .exact-hero .mh-hero-grid { min-height: 560px; padding: 38px 18px 48px; align-items: center; }
  .exact-hero .mh-hero-copy { transform: none; max-width: 430px; }
  .exact-hero-img { opacity: .52; object-position: 58% center; }
  .home-tabs { flex-wrap: wrap; gap: 12px; }
}

/* ---------- MOBILE POLISH ---------- */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar .wrap {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand:has(.brand-logo) {
    max-width: calc(100vw - 84px);
    padding: 5px 8px 5px 5px;
  }

  .brand-logo {
    width: 132px;
    max-height: 32px;
  }

  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
    border-radius: 8px;
  }

  .mobile-menu {
    padding: 12px 16px 16px;
  }

  .mobile-menu a,
  .mobile-menu .btn-amber {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .page-hero {
    padding: 42px 0 34px;
  }

  .page-hero h1,
  body:not([data-page="home"]) .page-hero h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .page-hero p,
  body:not([data-page="home"]) .page-hero p {
    font-size: 15px;
  }

  .section {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .shop-shell {
    gap: 18px;
  }

  .shop-sidebar {
    display: none;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .search-box,
  .sort-select,
  .field-input {
    min-height: 46px;
    border-radius: 8px;
    font-size: 16px;
  }

  .category-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x proximity;
  }

  .category-chip {
    flex: 0 0 auto;
    min-height: 40px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .product-grid {
    gap: 14px;
  }

  .product-tile {
    padding: 14px;
    border-radius: 8px;
  }

  .product-art {
    height: 150px;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .product-tile h3 {
    font-size: 16px;
  }

  .product-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .add-btn,
  .btn-amber,
  .btn-outline,
  .next-btn,
  .confirm-btn {
    min-height: 44px;
    justify-content: center;
    border-radius: 8px;
    white-space: normal;
    text-align: center;
  }

  .option-count {
    min-height: 34px;
  }

  .admin-simple {
    gap: 16px;
  }

  .admin-card {
    padding: 16px;
  }

  .admin-card-head {
    gap: 10px;
  }

  .admin-card-head h2 {
    font-size: 21px;
  }

  .admin-product-simple-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .admin-product-row,
  .admin-product-pick {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-row-delete {
    width: 100%;
    min-height: 40px;
  }

  .cart-row {
    gap: 12px;
  }

  .cart-row img {
    width: 88px;
    height: 88px;
  }

  .cart-qty {
    width: 100%;
    justify-content: space-between;
  }

  .cart-qty button {
    width: 42px;
    height: 38px;
  }

  .promo-card {
    min-height: 220px;
    border-radius: 8px;
  }

  .promo-card img {
    max-width: 54%;
    max-height: 190px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    min-height: 46px;
  }

  .brand-logos {
    justify-content: center;
    font-size: 18px;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-logo {
    width: 116px;
  }

  .page-hero h1,
  body:not([data-page="home"]) .page-hero h1 {
    font-size: 27px;
  }

  .exact-hero .mh-hero-copy h1 {
    font-size: 38px;
  }

  .exact-hero .mh-hero-copy p {
    font-size: 16px;
  }

  .mh-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .mh-btn {
    width: 100%;
    justify-content: center;
  }

  .product-art {
    height: 136px;
  }
}

/* ---------- SHOP MOBILE FINAL OVERRIDES ---------- */
@media (max-width: 760px) {
  body[data-page="products"] {
    font-size: 14px;
  }

  body[data-page="products"] .shop-header {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px;
    padding: 10px 12px;
  }

  body[data-page="products"] .shop-brand {
    min-width: 0;
    font-size: 19px;
    line-height: 1;
  }

  body[data-page="products"] .shop-logo-mark {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: 11px;
  }

  body[data-page="products"] .shop-menu-toggle {
    width: 38px;
    height: 38px;
  }

  body[data-page="products"] .shop-header-search {
    grid-column: 1 / -1;
    min-height: 40px;
    padding: 0 11px;
  }

  body[data-page="products"] .shop-header-search input {
    font-size: 14px;
  }

  body[data-page="products"] i[data-lucide],
  body[data-page="products"] .shop-nav svg,
  body[data-page="products"] .shop-header-search svg,
  body[data-page="products"] .shop-header-actions svg,
  body[data-page="products"] .shop-category-panel svg,
  body[data-page="products"] .shop-view-btn svg,
  body[data-page="products"] .shop-breadcrumb svg {
    width: 16px;
    height: 16px;
  }

  body[data-page="products"] .mobile-menu.open {
    display: grid;
    gap: 7px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 10px 0 2px;
    background: transparent;
  }

  body[data-page="products"] .mobile-menu a {
    min-height: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    font-size: 13px;
  }

  body[data-page="products"] .shop-page-shell {
    gap: 12px;
    padding: 12px;
  }

  body[data-page="products"] .shop-category-panel {
    gap: 7px;
    margin: 0 -12px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 8px 12px;
  }

  body[data-page="products"] .shop-category-panel a {
    grid-template-columns: 16px minmax(0, auto);
    min-width: auto;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  body[data-page="products"] .shop-category-panel a i:last-child {
    display: none;
  }

  body[data-page="products"] .shop-hero-banner {
    min-height: 220px;
    padding: 20px 16px;
  }

  body[data-page="products"] .shop-hero-banner h1 {
    max-width: 310px;
    font-size: 28px;
    line-height: 1.04;
  }

  body[data-page="products"] .shop-hero-banner p {
    max-width: 260px;
    margin: 10px 0 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  body[data-page="products"] .shop-hero-banner .btn-amber {
    min-height: 38px;
    padding: 9px 16px;
    font-size: 13px;
  }

  body[data-page="products"] .shop-hero-banner img {
    right: -38px;
    width: 70%;
    height: 58%;
    opacity: .5;
  }

  body[data-page="products"] .shop-breadcrumb {
    margin: 10px 0 8px;
    font-size: 12px;
  }

  body[data-page="products"] .shop-listing-head h2 {
    font-size: 22px;
  }

  body[data-page="products"] .shop-count {
    font-size: 12px;
  }

  body[data-page="products"] .shop-sort-row {
    gap: 8px;
    font-size: 12px;
  }

  body[data-page="products"] .sort-select {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 13px;
  }

  body[data-page="products"] .shop-view-btn {
    width: 38px;
    height: 38px;
  }

  body[data-page="products"] .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="products"] .shop-product-grid .product-tile {
    min-height: 236px;
    padding: 9px;
  }

  body[data-page="products"] .shop-product-grid .product-art {
    height: 104px;
    margin-bottom: 8px;
  }

  body[data-page="products"] .shop-product-grid .admin-product-img {
    max-height: 102px;
  }

  body[data-page="products"] .shop-product-grid .discount-badge {
    top: 9px;
    left: 9px;
    padding: 4px 6px;
    font-size: 9px;
  }

  body[data-page="products"] .wishlist-btn {
    top: 8px;
    right: 8px;
    font-size: 18px;
  }

  body[data-page="products"] .product-brand {
    font-size: 11px;
  }

  body[data-page="products"] .shop-product-grid .product-tile h3 {
    min-height: 32px;
    font-size: 12px;
    line-height: 1.25;
  }

  body[data-page="products"] .shop-product-grid .product-rating {
    font-size: 11px;
  }

  body[data-page="products"] .shop-product-grid .price-row {
    margin-top: 4px;
  }

  body[data-page="products"] .shop-product-grid .sale-price {
    font-size: 14px;
  }

  body[data-page="products"] .shop-product-grid .mrp {
    font-size: 11px;
  }

  body[data-page="products"] .shop-product-grid .add-btn {
    min-height: 32px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  body[data-page="products"] .shop-product-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="products"] .shop-product-grid .product-art {
    height: 118px;
  }
}

/* ---------- ADMIN FINAL OVERRIDES ---------- */
body[data-page="admin"] {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(255,204,0,.08), transparent 28%),
    #050505;
}

body[data-page="admin"] .admin-dashboard-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
}

body[data-page="admin"] .admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  min-width: 0;
  overflow-y: auto;
}

body[data-page="admin"] .admin-main,
body[data-page="admin"] .admin-dashboard-content,
body[data-page="admin"] .admin-panel,
body[data-page="admin"] .admin-login-panel {
  min-width: 0;
}

body[data-page="admin"] .admin-topbar {
  grid-template-columns: 44px minmax(220px, 420px) minmax(0, 1fr) auto;
}

body[data-page="admin"] .admin-top-links {
  justify-self: end;
}

body[data-page="admin"] .admin-login-panel.hidden {
  display: none !important;
}

body[data-page="admin"] .admin-secure.hidden {
  display: none !important;
}

body[data-page="admin"] .admin-dashboard-grid,
body[data-page="admin"] .admin-editor-grid,
body[data-page="admin"] .admin-stat-grid {
  min-width: 0;
}

body[data-page="admin"] .admin-product-simple-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="admin"] .admin-wide-field {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  body[data-page="admin"] .admin-dashboard-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  body[data-page="admin"] .admin-sidebar {
    padding: 16px 12px;
  }

  body[data-page="admin"] .admin-brand {
    font-size: 22px;
  }

  body[data-page="admin"] .admin-side-nav a {
    gap: 9px;
    padding: 10px;
    font-size: 14px;
  }

  body[data-page="admin"] .admin-topbar {
    grid-template-columns: 42px minmax(180px, 340px) minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 18px;
  }

  body[data-page="admin"] .admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="admin"] .admin-dashboard-grid,
  body[data-page="admin"] .admin-editor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="admin"] {
    font-size: 14px;
  }

  body[data-page="admin"] .admin-dashboard-shell {
    display: block;
  }

  body[data-page="admin"] .admin-sidebar {
    position: relative;
    height: auto;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 12px;
  }

  body[data-page="admin"] .admin-logo-mark {
    width: 36px;
    height: 36px;
    border-width: 2px;
    font-size: 12px;
  }

  body[data-page="admin"] .admin-brand {
    font-size: 20px;
  }

  body[data-page="admin"] .admin-side-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  body[data-page="admin"] .admin-side-nav a {
    flex: 0 0 auto;
    grid-template-columns: 18px minmax(0, auto);
    min-height: 38px;
    min-width: auto;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  body[data-page="admin"] .admin-side-nav svg,
  body[data-page="admin"] i[data-lucide] {
    width: 16px;
    height: 16px;
  }

  body[data-page="admin"] .admin-side-card {
    display: none;
  }

  body[data-page="admin"] .admin-topbar {
    position: relative;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: auto;
    gap: 10px;
    padding: 12px;
  }

  body[data-page="admin"] .admin-icon-btn,
  body[data-page="admin"] .admin-mini-logout {
    width: 38px;
    height: 38px;
  }

  body[data-page="admin"] .admin-search {
    min-height: 40px;
    padding: 0 10px;
  }

  body[data-page="admin"] .admin-search input,
  body[data-page="admin"] .field-input {
    font-size: 14px;
  }

  body[data-page="admin"] .admin-user-pill {
    grid-column: 1 / -1;
    min-width: 0;
    padding-top: 10px;
  }

  body[data-page="admin"] .admin-top-links {
    display: none;
  }

  body[data-page="admin"] .admin-dashboard-content {
    gap: 12px;
    padding: 16px 12px;
  }

  body[data-page="admin"] .admin-heading h1 {
    font-size: 28px;
  }

  body[data-page="admin"] .admin-date-pill {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    font-size: 13px;
  }

  body[data-page="admin"] .admin-login-panel,
  body[data-page="admin"] .admin-panel {
    padding: 14px;
  }

  body[data-page="admin"] .admin-panel-head h2 {
    font-size: 18px;
  }

  body[data-page="admin"] .admin-product-simple-form,
  body[data-page="admin"] .admin-stat-grid,
  body[data-page="admin"] .admin-dashboard-grid,
  body[data-page="admin"] .admin-editor-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="admin"] .admin-stat-card {
    min-height: 96px;
    padding: 14px;
  }

  body[data-page="admin"] .admin-stat-card strong {
    font-size: 24px;
  }

  body[data-page="admin"] .admin-chart {
    min-height: 150px;
  }
}

