/* ── Reset ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

img {
  display: block;
  max-width: 100%
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

ul {
  list-style: none
}

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --bg: #090909;
  --surface: #0F0F11;
  --surface-2: #161619;
  --border: rgba(255, 255, 255, .07);
  --accent: #C9A84C;
  --accent-l: #E8C96D;
  --accent-d: rgba(201, 168, 76, .12);
  --t1: #F0EDE8;
  --t2: #9B9693;
  --t3: #5A5755;
  --mx: 1280px;
  --px: clamp(1.5rem, 5vw, 5rem);
  --r: 6px;
  --rs: 3px;
  --success: #4CAF82;
  --warning: #E8A83A;
  --error: #E85A4C;
  --p1: #C9A84C;
  --tm: #5A5755;
}

/* ── Base ────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: var(--f-serif)
}

.mono {
  font-family: var(--f-mono)
}

.wrap {
  max-width: var(--mx);
  margin: 0 auto;
  padding: 0 var(--px)
}

.sec {
  padding: 6rem 0
}

/* ── Navbar ──────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: .75rem clamp(1.25rem, 7.5vw, 2.75rem);
  transition: background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}

#nav.stuck {
  background: rgba(9, 9, 9, .93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
}

.nav-logo {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .625rem;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, .35)) drop-shadow(0 0 28px rgba(201, 168, 76, .15));
  transition: filter .3s;
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 18px rgba(201, 168, 76, .6)) drop-shadow(0 0 36px rgba(201, 168, 76, .25));
}

.nav-logo .g {
  color: var(--accent)
}

.nav-left {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: calc(2.75rem * 3);
}

.nav-menu {
  display: flex;
  gap: 2.75rem
}

.nav-menu a {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t2);
  transition: color .2s;
}

.nav-menu a:hover {
  color: var(--t1)
}

.nav-r {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-self: end;
}

.nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  border-radius: var(--rs);
  transition: color .2s, background .2s;
}

.nav-btn:hover {
  color: var(--t1);
  background: var(--surface)
}

.cart-w {
  position: relative
}

.cart-n {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  color: #090909;
  border-radius: 50%;
  font-size: 7.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: var(--mx);
  margin: 0 auto;
  padding: calc(78px + 3rem) var(--px) 5rem;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 2.25rem;
  height: 1px;
  background: var(--accent)
}

.hero-h1 {
  font-family: var(--f-serif);
  font-size: clamp(3.25rem, 5.8vw, 5.25rem);
  font-weight: 400;
  line-height: 1.03;
  margin-bottom: 1.625rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--accent-l)
}

.hero-body {
  font-size: .975rem;
  line-height: 1.8;
  color: var(--t2);
  max-width: 420px;
  margin-bottom: 2.625rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.375rem
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.125rem;
  background: var(--accent);
  color: #090909;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--rs);
  transition: background .25s, transform .25s, box-shadow .25s;
}

.btn-g:hover {
  background: var(--accent-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, .3);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.125rem;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--t2);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--rs);
  transition: border-color .2s, color .2s;
}

.btn-o:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.hero-pills {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap
}

.pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .695rem;
  color: var(--t2);
}

.pdot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%
}

/* ── Box Art Engine ───────────────────────────────────── */
.box {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.625rem;
}

.box .s {
  /* shimmer */
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg,
      transparent 30%, rgba(255, 235, 170, .05) 50%, transparent 70%);
}

.box .d {
  /* dots */
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 55px 55px, 90px 90px;
  background-position: 0 0, 28px 28px;
}

.box .bc {
  position: relative;
  z-index: 2
}

.box-g {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .625rem;
}

.box-n {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: .3rem;
}

.box-t {
  font-size: .63rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, .42);
}

/* Top accent line */
.box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 3;
}

/* ── Gradient Palettes ─────────────────────────────────── */
.prismatic {
  background:
    radial-gradient(ellipse 65% 50% at 50% 32%, rgba(255, 190, 80, .38) 0%, rgba(220, 120, 255, .22) 45%, transparent 72%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(80, 120, 255, .18) 0%, transparent 55%),
    linear-gradient(168deg, #0d0820 0%, #16103a 40%, #0c0a2c 100%);
}

.prismatic::after {
  background: linear-gradient(90deg, #FFD700, #E87FFF, #6080FF)
}

.stellar {
  background:
    radial-gradient(ellipse 60% 50% at 50% 36%, rgba(60, 190, 255, .35) 0%, rgba(40, 220, 180, .18) 42%, transparent 70%),
    radial-gradient(ellipse 35% 28% at 75% 70%, rgba(80, 160, 255, .15) 0%, transparent 50%),
    linear-gradient(168deg, #030c18 0%, #071428 45%, #040c1c 100%);
}

.stellar::after {
  background: linear-gradient(90deg, #3ABEFF, #28DEB4)
}

.obsidian {
  background:
    radial-gradient(ellipse 60% 50% at 50% 32%, rgba(255, 100, 20, .42) 0%, rgba(255, 50, 10, .22) 45%, transparent 68%),
    radial-gradient(ellipse 40% 30% at 80% 68%, rgba(200, 40, 0, .18) 0%, transparent 50%),
    linear-gradient(168deg, #1e0600 0%, #2e0e00 40%, #180800 100%);
}

.obsidian::after {
  background: linear-gradient(90deg, #FF6414, #FF2200)
}

.onepiece {
  background:
    radial-gradient(ellipse 60% 48% at 50% 34%, rgba(230, 30, 50, .4) 0%, rgba(200, 20, 80, .22) 42%, transparent 68%),
    radial-gradient(ellipse 40% 30% at 18% 68%, rgba(0, 50, 180, .18) 0%, transparent 50%),
    linear-gradient(168deg, #1c0204 0%, #0c0c1e 50%, #08080e 100%);
}

.onepiece::after {
  background: linear-gradient(90deg, #E61E32, #0032B4)
}

.mtg {
  background:
    radial-gradient(ellipse 60% 48% at 50% 34%, rgba(140, 50, 255, .38) 0%, rgba(80, 20, 200, .22) 42%, transparent 68%),
    radial-gradient(ellipse 40% 30% at 75% 68%, rgba(200, 70, 255, .14) 0%, transparent 50%),
    linear-gradient(168deg, #0c0624 0%, #160a38 40%, #0a071e 100%);
}

.mtg::after {
  background: linear-gradient(90deg, #8C32FF, #C846FF)
}

.temporal {
  background:
    radial-gradient(ellipse 60% 48% at 50% 34%, rgba(50, 220, 255, .32) 0%, rgba(0, 170, 220, .18) 42%, transparent 68%),
    linear-gradient(168deg, #030c16 0%, #071422 45%, #040a10 100%);
}

.temporal::after {
  background: linear-gradient(90deg, #32DCFF, #00AAD4)
}

/* ── Hero Visual ──────────────────────────────────────── */
.hero-vis {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.hero-box {
  position: relative;
  width: min(410px, 100%);
}

.hero-box .box {
  box-shadow:
    0 70px 130px rgba(0, 0, 0, .65),
    0 0 90px rgba(201, 168, 76, .07),
    0 0 0 1px rgba(255, 255, 255, .05);
}

.price-tag {
  position: absolute;
  top: 1.375rem;
  right: -1.375rem;
  background: rgba(22, 22, 25, .96);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  padding: .875rem 1.125rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
}

.price-tag-l {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: .25rem
}

.price-tag-v {
  font-family: var(--f-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent)
}

.stock-tag {
  position: absolute;
  bottom: 1.375rem;
  right: -1.125rem;
  background: rgba(22, 22, 25, .96);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--rs);
  padding: .5rem .875rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  color: var(--t2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
}

.sdot {
  width: 6px;
  height: 6px;
  background: #4CAF82;
  border-radius: 50%
}

/* ── Marquee ──────────────────────────────────────────── */
.mbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: .9rem 0;
}

.mtrack {
  display: flex;
  width: max-content;
  animation: tick 32s linear infinite
}

.mitem {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--t2);
  white-space: nowrap;
}

.msep {
  color: var(--accent);
  font-size: .45rem
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── Section Header ───────────────────────────────────── */
.sh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem
}

.sk {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .625rem;
}

.st {
  font-family: var(--f-serif);
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 400;
  line-height: 1.1;
}

.va {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.va:hover {
  color: var(--accent);
  border-color: var(--accent)
}

.va svg {
  transition: transform .2s
}

.va:hover svg {
  transform: translateX(3px)
}

/* ── About Strip ──────────────────────────────────────── */
.about-sec {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}

.about-in {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.375rem;
}

.about-h2 em {
  font-style: italic;
  color: var(--accent-l)
}

.about-body {
  font-size: .9375rem;
  line-height: 1.85;
  color: var(--t2);
  margin-bottom: 2rem
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 168, 76, .3);
  padding-bottom: 2px;
  transition: border-color .2s;
}

.about-cta:hover {
  border-color: var(--accent)
}

.about-cta svg {
  transition: transform .2s
}

.about-cta:hover svg {
  transform: translateX(3px)
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem
}

.stat-box {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(201, 168, 76, .35);
  border-radius: var(--r);
  transition: border-top-color .25s, transform .25s;
}

.stat-box:hover {
  border-top-color: var(--accent);
  transform: translateY(-3px);
}

.stat-n {
  font-family: var(--f-serif);
  font-size: 2.375rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: .375rem;
  line-height: 1;
}

.stat-l {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t2)
}

/* ── Product Grid ─────────────────────────────────────── */
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.pc {
  display: flex;
  flex-direction: column
}

.pc-img {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--border);
  transition: box-shadow .3s;
}

.pc:hover .pc-img {
  box-shadow: 0 0 0 1px rgba(201, 168, 76, .3), 0 16px 48px rgba(0, 0, 0, .45);
}

.pc-img .box {
  transition: transform .55s cubic-bezier(.25, .46, .45, .94)
}

.pc:hover .pc-img .box {
  transform: scale(1.02)
}

.pc-ov {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.pc:hover .pc-ov {
  opacity: 1
}

.ov-btn {
  padding: .7rem 1.5rem;
  background: var(--accent);
  color: #090909;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--rs);
  transition: background .2s, transform .15s;
}

.ov-btn:hover {
  background: var(--accent-l);
  transform: scale(1.03)
}

.bgs {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  flex-direction: column;
  gap: .375rem
}

/* Badge base — dark opaque bg so readable on any background */
.bg {
  display: inline-block;
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .22rem .6rem;
  border-radius: 3px;
  background: rgba(8, 8, 10, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  line-height: 1;
}

/* Game badges — only text color changes */
.b-pk   { color: #FFD700; border-color: rgba(255,215,0,.28) }
.b-mg   { color: #B090FF; border-color: rgba(150,90,255,.28) }
.b-op   { color: #FF8888; border-color: rgba(255,70,70,.28) }
.b-db   { color: #FFA040; border-color: rgba(255,145,0,.28) }

/* Status badges */
.b-nw   { color: #FFD700; border-color: rgba(255,215,0,.28) }
.b-ht   { color: #FF7A50; border-color: rgba(255,90,40,.28) }
.b-lm   { color: #C090FF; border-color: rgba(160,60,255,.28) }
.b-hot  { color: #FF7A50; border-color: rgba(255,90,40,.28) }
.b-ltd  { color: #C090FF; border-color: rgba(160,60,255,.28) }
.b-tr   { color: #00D4BE; border-color: rgba(0,200,180,.28) }
.b-rs   { color: #4CAF82; border-color: rgba(80,190,120,.28) }
.b-sale { color: #F06060; border-color: rgba(232,90,76,.28) }
.b-prem {
  color: var(--accent);
  border-color: rgba(201,168,76,.45);
  font-weight: 800;
  letter-spacing: .15em;
}

.pn {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: .25rem;
  line-height: 1.35;
  transition: color .2s;
}

.pc:hover .pn {
  color: var(--accent-l)
}

.pt {
  font-size: .8rem;
  color: var(--t2);
  margin-bottom: .75rem
}

.pr-row {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.pr {
  font-family: var(--f-mono);
  font-size: .975rem;
  font-weight: 500;
  color: var(--accent)
}

.pc-cmp {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--t3);
  text-decoration: line-through;
  margin-left: .4rem
}

.psk {
  font-size: .67rem;
  color: var(--t3)
}

.psk.low {
  color: #FF7A50
}

/* ── Category Grid ────────────────────────────────────── */
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.cc {
  position: relative;
  aspect-ratio: 7/5;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.25, .46, .45, .94);
}

.cc:hover {
  transform: translateY(-5px)
}

.cc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 9, .88) 0%, rgba(9, 9, 9, .3) 55%, transparent 100%);
  z-index: 1;
}

.cc::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition: border-color .3s;
  z-index: 2;
  pointer-events: none;
}

.cc:hover::after {
  border-color: rgba(201, 168, 76, .45)
}

.cs {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 5.5rem;
  opacity: .13;
  z-index: 0;
  line-height: 1;
  transition: opacity .35s, transform .35s;
}

.cc:hover .cs {
  opacity: .2;
  transform: scale(1.08) rotate(-4deg);
}

.ci {
  position: relative;
  z-index: 3
}

.cn {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: .325rem;
}

.cct {
  font-size: .73rem;
  color: var(--t2);
  margin-bottom: .875rem
}

.cca {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .2s;
}

.cc:hover .cca {
  gap: .8rem
}

.cat-pk {
  background:
    radial-gradient(ellipse 75% 60% at 50% 38%, rgba(255, 195, 0, .28) 0%, rgba(255, 220, 80, .14) 40%, transparent 72%),
    radial-gradient(ellipse 40% 30% at 15% 75%, rgba(255, 160, 0, .1) 0%, transparent 50%),
    linear-gradient(168deg, #181000 0%, #281800 45%, #161000 100%);
}

.cat-mg {
  background:
    radial-gradient(ellipse 75% 60% at 50% 38%, rgba(130, 50, 255, .3) 0%, rgba(80, 20, 200, .18) 42%, transparent 72%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(200, 60, 255, .12) 0%, transparent 50%),
    linear-gradient(168deg, #0d0624 0%, #160a38 45%, #0a071e 100%);
}

.cat-op {
  background:
    radial-gradient(ellipse 75% 60% at 50% 38%, rgba(220, 28, 44, .3) 0%, rgba(180, 16, 60, .18) 42%, transparent 72%),
    radial-gradient(ellipse 40% 30% at 18% 70%, rgba(0, 40, 160, .14) 0%, transparent 50%),
    linear-gradient(168deg, #1a0204 0%, #0c0c1e 50%, #08080c 100%);
}

/* ── Featured ─────────────────────────────────────────── */
.feat-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.feat-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  align-items: center
}

.flabel {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.375rem;
}

.flabel::before {
  content: '✦';
  font-size: .58rem
}

.fh {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.5vw, 3.125rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: .5rem;
}

.fset {
  font-size: .85rem;
  color: var(--t2);
  margin-bottom: 1.625rem
}

.fdesc {
  font-size: .9375rem;
  line-height: 1.85;
  color: var(--t2);
  margin-bottom: 2.5rem
}

.fpr {
  display: flex;
  align-items: baseline;
  gap: .875rem;
  margin-bottom: 2rem
}

.fpv {
  font-family: var(--f-mono);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--accent)
}

.fpc {
  font-family: var(--f-mono);
  font-size: 1rem;
  color: var(--t3);
  text-decoration: line-through
}

.facts {
  display: flex;
  gap: 1rem
}

.fi .box {
  box-shadow:
    0 55px 110px rgba(0, 0, 0, .58),
    0 0 0 1px rgba(255, 255, 255, .04),
    0 0 80px rgba(201, 168, 76, .06);
}

/* ── Trust ────────────────────────────────────────────── */
.tr-bg {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.tr-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.tri {
  text-align: center;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
}

.tri:last-child {
  border-right: none
}

.ticon {
  font-size: 1.375rem;
  color: var(--accent);
  margin-bottom: 1.25rem
}

.tt {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: .5rem
}

.td {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--t2)
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  padding: 5rem 0 0
}

.fg {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.flogo {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.flogo .g {
  color: var(--accent)
}

.ftag {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--t2);
  max-width: 230px;
  margin-bottom: 1.75rem
}

.fsoc {
  display: flex;
  gap: .625rem
}

.sb {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--rs);
  color: var(--t2);
  font-size: .8rem;
  transition: border-color .2s, color .2s;
}

.sb:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.fct {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t1);
  margin-bottom: 1.25rem;
}

.fl {
  display: flex;
  flex-direction: column;
  gap: .625rem
}

.fl a {
  font-size: .85rem;
  color: var(--t2);
  transition: color .2s
}

.fl a:hover {
  color: var(--t1)
}

.fsubn {
  font-size: .85rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 1rem
}

.sf {
  display: flex
}

.si {
  flex: 1;
  padding: .75rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--rs) 0 0 var(--rs);
  color: var(--t1);
  font-size: .85rem;
  font-family: var(--f-sans);
  outline: none;
  transition: border-color .2s;
}

.si::placeholder {
  color: var(--t3)
}

.si:focus {
  border-color: var(--accent)
}

.sib {
  padding: .75rem 1.125rem;
  background: var(--accent);
  color: #090909;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 0 var(--rs) var(--rs) 0;
  transition: background .2s;
  white-space: nowrap;
}

.sib:hover {
  background: var(--accent-l)
}

.fb {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fc {
  font-size: .77rem;
  color: var(--t3)
}

.fps {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  color: var(--t3)
}

.ptag {
  padding: .25rem .5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .04em
}

/* ── Toast Notification ───────────────────────────────── */
.toast-stack {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.25rem;
  background: #141416;
  border: 1px solid rgba(201, 168, 76, .25);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04);
  max-width: 300px;
  min-width: 240px;
  pointer-events: all;
  animation: toast-in .38s cubic-bezier(.22, 1, .36, 1) both;
}

.toast-warn {
  border-color: rgba(232, 168, 58, .3);
  border-left-color: var(--warning);
}

@keyframes toast-in {
  from { transform: translateX(calc(100% + 2.5rem)); opacity: 0; }
  to   { transform: translateX(0);                  opacity: 1; }
}

.toast-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-d);
  border-radius: var(--rs);
  color: var(--accent);
  font-size: .875rem;
}

.toast-warn .toast-icon {
  background: rgba(232, 168, 58, .12);
  color: var(--warning);
}

.toast-body {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-size: .875rem;
  font-weight: 500;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-sub {
  font-size: .75rem;
  color: var(--t2);
  margin-top: .15rem;
}

.toast-price {
  font-size: .8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.toast-x {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: .7rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: color .2s;
  border-radius: 2px;
}

.toast-x:hover {
  color: var(--t1)
}

/* ── Cart badge pop ───────────────────────────────────── */
@keyframes badge-pop {
  0% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.7)
  }

  70% {
    transform: scale(.85)
  }

  100% {
    transform: scale(1)
  }
}

.cart-n.pop {
  animation: badge-pop .45s cubic-bezier(.36, .07, .19, .97) forwards
}

/* ── Fly particle ─────────────────────────────────────── */
.fly-dot {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent), 0 0 16px rgba(201, 168, 76, .5);
}

/* ── Dropdown ────────────────────────────────────────── */
.nav-item {
  position: relative
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t2);
  transition: color .2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-sans);
  padding: 0;
}

.nav-link:hover {
  color: var(--t1)
}

.drop-arrow {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94);
  color: var(--t3);
}

.nav-item:hover .drop-arrow,
.nav-item.open .drop-arrow {
  transform: rotate(180deg)
}

.nav-drop {
  position: absolute;
  top: calc(100% + .875rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #131315;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s, transform .22s, visibility .22s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .03);
  z-index: 300;
}

/* arrow tip */
.nav-drop::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: #131315;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item:hover .nav-drop,
.nav-item.open .nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop li {
  list-style: none
}

.nav-drop a {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .6rem 1.125rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--t2);
  transition: color .18s, background .18s;
  white-space: nowrap;
}

.nav-drop a:hover {
  color: var(--accent);
  background: rgba(201, 168, 76, .06)
}

.nav-drop .drop-sep {
  height: 1px;
  background: var(--border);
  margin: .375rem .75rem;
}

.drop-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Account Dropdown ────────────────────────────────── */
.acct-w {
  position: relative
}

.acct-drop {
  position: absolute;
  top: calc(100% + .875rem);
  right: 0;
  width: 236px;
  background: #131315;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s, transform .22s, visibility .22s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .03);
  z-index: 300;
}

.acct-drop::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 14px;
  width: 9px;
  height: 9px;
  background: #131315;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

.acct-drop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0)
}

.acct-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1rem;
}

.acct-avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-d);
  border: 1px solid rgba(201, 168, 76, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .8rem;
}

.acct-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: .15rem
}

.acct-sub {
  font-size: .7rem;
  color: var(--t3)
}

.acct-sep {
  height: 1px;
  background: var(--border)
}

.acct-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .625rem .75rem
}

.acct-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .6rem .75rem;
  background: var(--accent);
  color: #090909;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--rs);
  transition: background .2s;
}

.acct-login:hover {
  background: var(--accent-l)
}

.acct-reg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .6rem .75rem;
  border: 1px solid var(--border);
  color: var(--t2);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--rs);
  transition: border-color .2s, color .2s;
}

.acct-reg:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.acct-links {
  padding: .375rem 0 .5rem
}

.acct-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .55rem 1rem;
  font-size: .78rem;
  color: var(--t2);
  transition: color .18s, background .18s;
}

.acct-link svg {
  flex-shrink: 0;
  color: var(--t3)
}

.acct-link:hover {
  color: var(--t1);
  background: rgba(255, 255, 255, .04)
}

/* ── Hero Slideshow ──────────────────────────────────── */
.hero-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: var(--r)
}

.hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .75s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.hslide:first-child {
  position: relative
}

/* defines container height */
.hslide.active {
  opacity: 1;
  pointer-events: auto
}

.hslide .box {
  border-radius: 0
}

/* container handles radius */

/* Progress bar */
.slide-prog {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 168, 76, .6);
  z-index: 10;
  transition: none;
}

.slide-prog.run {
  width: 100%;
  transition: width 3.5s linear
}

/* Dot indicators */
.slide-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
}

.sdb {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .18);
  transition: background .25s, width .3s cubic-bezier(.4, 0, .2, 1), box-shadow .25s;
}

.sdb.active {
  background: var(--accent);
  width: 22px;
  box-shadow: 0 0 8px rgba(201, 168, 76, .5);
}

.sdb:hover:not(.active) {
  background: rgba(255, 255, 255, .35)
}

/* Price fade */
#heroPriceVal {
  transition: opacity .18s ease
}

/* ── Page bg glow ─────────────────────────────────────── */
.glow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 62% 42%, rgba(201, 168, 76, .045) 0%, transparent 72%),
    radial-gradient(ellipse 40% 35% at 15% 80%, rgba(100, 60, 200, .03) 0%, transparent 60%);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Media Queries
   Breakpoints: 1024px (tablet) · 768px (mobile) · 480px (small)
═══════════════════════════════════════════════════════════ */

/* ── Hamburger button (hidden on desktop) ─────────────── */
.nav-ham {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--t2);
  border-radius: var(--rs);
  transition: color .2s, background .2s;
  flex-shrink: 0;
}
.nav-ham:hover { color: var(--t1); background: var(--surface) }
.nav-ham .ham-close { display: none }
#nav.menu-open .nav-ham .ham-open  { display: none }
#nav.menu-open .nav-ham .ham-close { display: block }

/* ── 1024px — Tablet ──────────────────────────────────── */
@media (max-width: 1024px) {

  /* Product grid: 4 → 2 cols */
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Featured section: side-by-side → stacked */
  .feat-in {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .feat-in .fi .box {
    max-width: 360px;
    margin: 0 auto;
  }

  /* About: side-by-side → stacked */
  .about-in {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Hero: tighten gap */
  .hero {
    gap: 2rem;
  }

  /* Nav: tighten menu gap */
  .nav-menu { gap: 2rem }
  .nav-left  { gap: calc(2rem * 2.5) }
}

/* ── 768px — Mobile ───────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Navbar — hamburger layout ── */
  #nav {
    display: flex;
    justify-content: space-between;
    padding: .625rem 1.25rem;
    position: fixed;
  }

  .nav-left {
    gap: 0;
    grid-column: unset;
  }

  /* Menu: hidden by default, drops down when .menu-open */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(9, 9, 9, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: .5rem 0 1rem;
    z-index: 199;
  }

  #nav.menu-open .nav-menu {
    display: flex;
  }

  .nav-menu .nav-item {
    border-bottom: 1px solid var(--border);
  }
  .nav-menu .nav-item:last-child { border-bottom: none }

  .nav-link {
    width: 100%;
    padding: .85rem 1.5rem;
    justify-content: space-between;
    font-size: .8rem;
  }

  /* Dropdowns: static inside mobile menu */
  .nav-drop {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,.03);
    padding: 0 0 .5rem 1.5rem;
    min-width: unset;
    display: none;
  }
  .nav-drop::before { display: none }

  .nav-item.open .nav-drop { display: block }
  .nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: none }

  .nav-ham { display: flex }

  .nav-r { grid-column: unset; gap: .25rem }

  /* Hide search on small screens to save space */
  .nav-r > .nav-btn:first-child { display: none }

  /* ── Hero: 2 cols → 1 col stacked ── */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(70px + 2.5rem) var(--px) 4rem;
    text-align: center;
  }

  .hero-kicker { justify-content: center }
  .hero-kicker::before { display: none }

  .hero-body { max-width: 100%; margin-left: auto; margin-right: auto }

  .hero-ctas { justify-content: center }

  .hero-pills { justify-content: center }

  .hero-vis {
    align-items: center;
    order: -1; /* put product image above text */
  }

  .hero-box {
    width: min(320px, 85vw);
  }

  .price-tag {
    right: -0.5rem;
  }
  .stock-tag {
    right: -0.25rem;
  }

  /* ── Grids ── */
  .g4 { grid-template-columns: repeat(2, 1fr); gap: 1rem }
  .g3 { grid-template-columns: 1fr; gap: 1rem }

  /* ── Category cards ── */
  .cc { aspect-ratio: 16/7 }

  /* ── Hero: remove forced full-height on mobile ── */
  .hero { min-height: auto; padding-bottom: 3.5rem }

  /* ── About ── */
  .about-in { grid-template-columns: 1fr; gap: 2.5rem }
  .stat-grid { grid-template-columns: repeat(2, 1fr) }

  /* ── Trust strip ── */
  .tr-g { grid-template-columns: 1fr }
  .tri { border-right: none; border-bottom: 1px solid var(--border) }
  .tri:last-child { border-bottom: none }

  /* ── Featured ── */
  .feat-in { grid-template-columns: 1fr; gap: 2.5rem }

  /* ── Footer ── */
  .fg {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* ── Section padding ── */
  .sec { padding: 4rem 0 }
  .about-sec { padding: 4rem 0 }
}

/* ── 480px — Small Mobile ─────────────────────────────── */
@media (max-width: 480px) {

  /* Product grid → 2 cols (1 col is too tall for portrait cards) */
  .g4 { grid-template-columns: repeat(2, 1fr) }

  /* Stats → 2 cols */
  .stat-grid { grid-template-columns: repeat(2, 1fr) }

  /* Footer → 1 col */
  .fg { grid-template-columns: 1fr }

  /* Hero heading shrink */
  .hero-h1 { font-size: clamp(2.25rem, 9vw, 3.25rem) }

  /* Hero box smaller */
  .hero-box { width: min(280px, 80vw) }

  /* Section header stack */
  .sh { flex-direction: column; align-items: flex-start; gap: 1rem }

  /* Tighten section padding */
  .sec { padding: 3rem 0 }

  /* Nav logo slightly smaller */
  .nav-logo-img { height: 44px }
}

/* ══════════════════════════════════════════════════════════
   MISSING BOX ART + BADGE CLASSES
══════════════════════════════════════════════════════════ */

/* Dragon Ball Super box art */
.dbs {
  background:
    radial-gradient(ellipse 60% 48% at 50% 34%, rgba(255, 145, 0, .45) 0%, rgba(255, 80, 0, .25) 42%, transparent 68%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(255, 200, 0, .2) 0%, transparent 50%),
    linear-gradient(168deg, #1e0800 0%, #2c1000 40%, #180800 100%);
}

.dbs::after {
  background: linear-gradient(90deg, #FF9100, #FFD700)
}

/* Lorcana badge */
.b-lc {
  background: rgba(160, 216, 255, .12);
  color: #A0D8FF;
  border: 1px solid rgba(160, 216, 255, .22)
}

/* Yu-Gi-Oh! badge */
.b-yg {
  background: rgba(201, 168, 76, .13);
  color: #E8C96D;
  border: 1px solid rgba(201, 168, 76, .22)
}

/* ══════════════════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════════════════ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  z-index: 390;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100vw);
  background: #131315;
  border-left: 1px solid var(--border);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .55);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header h2 {
  font-family: var(--f-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--t1);
}

.cart-close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 1.25rem;
  border-radius: var(--rs);
  transition: color .2s, background .2s;
}

.cart-close-btn:hover {
  color: var(--t1);
  background: rgba(255, 255, 255, .06);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.cart-items::-webkit-scrollbar { width: 3px }
.cart-items::-webkit-scrollbar-track { background: transparent }
.cart-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--t2);
  font-size: .9rem;
  padding: 3rem 1rem;
  gap: .5rem;
}

.cart-item {
  display: flex;
  gap: .875rem;
  padding: .875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .2s;
}

.cart-item:hover {
  border-color: rgba(201, 168, 76, .2);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--rs);
  flex-shrink: 0;
  overflow: hidden;
}

/* Make box art fill cart item thumbnail */
.cart-item-img.box {
  aspect-ratio: unset;
  width: 64px;
  height: 64px;
  padding: .5rem;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.cart-item-title {
  font-size: .875rem;
  font-weight: 500;
  color: var(--t1);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: var(--f-mono);
  font-size: .875rem;
  color: var(--accent);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .35rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .05);
  border-radius: var(--rs);
  padding: .2rem .5rem;
}

.cart-qty button {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  font-size: 1rem;
  transition: color .2s;
}

.cart-qty button:hover { color: var(--accent) }

.cart-qty span {
  min-width: 1.25rem;
  text-align: center;
  font-size: .8rem;
  color: var(--t1);
}

.cart-remove {
  font-size: .72rem;
  color: var(--t3);
  text-decoration: underline;
  transition: color .2s;
}

.cart-remove:hover { color: var(--error) }

.cart-footer {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .95rem;
  color: var(--t2);
}

.cart-tax-note {
  font-size: .72rem;
  color: var(--t3);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   SEARCH OVERLAY
══════════════════════════════════════════════════════════ */

.srch-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

.srch-modal {
  width: min(640px, calc(100vw - 2rem));
  background: #131315;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .04);
  overflow: hidden;
}

.srch-bar {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.srch-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--t1);
}

.srch-input::placeholder { color: var(--t3) }

.srch-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  border-radius: var(--rs);
  transition: color .2s, background .2s;
  flex-shrink: 0;
}

.srch-close:hover {
  color: var(--t1);
  background: rgba(255, 255, 255, .06);
}

.srch-body {
  max-height: 400px;
  overflow-y: auto;
  padding: .5rem 0;
}

.srch-hint {
  padding: 1.5rem 1.25rem;
  font-size: .875rem;
  color: var(--t3);
  text-align: center;
}

.srch-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  transition: background .18s;
  cursor: pointer;
}

.srch-result:hover { background: rgba(255, 255, 255, .04) }

.srch-result-info { flex: 1; min-width: 0 }

.srch-result-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srch-result-sub {
  font-size: .75rem;
  color: var(--t3);
  margin-top: .15rem;
}

.srch-result-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  flex-shrink: 0;
}

.srch-result-kind {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .15rem .45rem;
  background: var(--accent-d);
  color: var(--accent);
  border-radius: 2px;
}

.srch-result-price {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════ */

.pd-page {
  padding-top: 88px;
  min-height: 100vh;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  padding-top: 2.5rem;
}

.pd-left { position: sticky; top: 100px }

.pd-gallery { display: flex; flex-direction: column; gap: 1rem }

.pd-main-img {
  box-shadow:
    0 50px 100px rgba(0, 0, 0, .6),
    0 0 0 1px rgba(255, 255, 255, .05),
    0 0 80px rgba(201, 168, 76, .06);
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.pd-thumb {
  aspect-ratio: 3/4;
  border-radius: var(--rs);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s;
  padding: 0;
  background: none;
}

.pd-thumb.active { border-color: var(--accent) }
.pd-thumb:hover { border-color: rgba(201, 168, 76, .45) }

.pd-info { padding-bottom: 4rem }

.pd-breadcrumbs {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  color: var(--t3);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.pd-breadcrumbs a { transition: color .2s }
.pd-breadcrumbs a:hover { color: var(--accent) }

.pd-title {
  font-family: var(--f-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--t1);
  margin-bottom: .5rem;
}

.pd-subtitle {
  font-size: .9rem;
  color: var(--t2);
  margin-bottom: .5rem;
}

.pd-price-wrap {
  display: flex;
  align-items: baseline;
  gap: .875rem;
  margin-bottom: 1rem;
}

.pd-price {
  font-family: var(--f-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
}

.pd-old-price {
  font-family: var(--f-mono);
  font-size: 1.1rem;
  color: var(--t3);
  text-decoration: line-through;
}

.pd-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.pd-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--rs);
  overflow: hidden;
}

.pd-qty button {
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  font-size: 1.2rem;
  transition: color .2s, background .2s;
  background: none;
  border: none;
}

.pd-qty button:hover {
  color: var(--accent);
  background: rgba(201, 168, 76, .08);
}

.pd-qty input {
  width: 48px;
  text-align: center;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--t1);
  font-size: .95rem;
  height: 48px;
  outline: none;
  font-family: var(--f-sans);
}

.pd-add-btn {
  flex: 1;
  height: 48px;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-add-btn:disabled {
  background: var(--surface-2);
  color: var(--t3);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.pd-tabs { margin-top: 2rem }

.pd-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.pd-tab-btn {
  padding: .75rem 1.25rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--t3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: var(--f-sans);
}

.pd-tab-btn:hover { color: var(--t2) }
.pd-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent) }

.pd-tab-body { font-size: .9rem; color: var(--t2); line-height: 1.7 }

.pd-meta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.pd-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

.pd-meta-item span:first-child { color: var(--t3) }
.pd-meta-item span:last-child { color: var(--t1); font-weight: 500 }

@media (max-width: 1024px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pd-left { position: static }
}

/* ══════════════════════════════════════════════════════════
   WISHLIST PAGE
══════════════════════════════════════════════════════════ */

.wl-empty {
  text-align: center;
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.wl-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  margin-bottom: .5rem;
}

.wl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.wl-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}

.wl-card:hover {
  border-color: rgba(201, 168, 76, .3);
  transform: translateY(-3px);
}

.wl-card-vis { display: block; text-decoration: none }

.wl-box {
  border-radius: 0;
  aspect-ratio: 3/4;
}

.wl-card-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
  flex: 1;
}

.wl-name {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--t1);
  display: block;
  margin-bottom: .25rem;
  transition: color .2s;
  text-decoration: none;
}

.wl-name:hover { color: var(--accent-l) }

.wl-sub { font-size: .8rem; color: var(--t2); margin-bottom: .5rem }

.wl-price {
  font-family: var(--f-mono);
  font-size: .975rem;
  color: var(--accent);
}

.wl-actions {
  display: flex;
  gap: .625rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

.wl-add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1rem;
  background: var(--accent);
  color: #090909;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--rs);
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.wl-add-btn:hover { background: var(--accent-l) }

.wl-remove-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  border: 1px solid var(--border);
  border-radius: var(--rs);
  transition: color .2s, border-color .2s;
  background: none;
  cursor: pointer;
}

.wl-remove-btn:hover { color: var(--error); border-color: rgba(232, 90, 76, .35) }

/* Wishlist heart button on product cards */
.wl-heart {
  position: absolute;
  top: .625rem;
  right: .625rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 9, 9, .75);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--t3);
  z-index: 10;
  transition: color .2s, background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}

.wl-heart:hover, .wl-heart.active {
  color: #FF6B8A;
  background: rgba(255, 107, 138, .15);
  border-color: rgba(255, 107, 138, .35);
}

@media (max-width: 1024px) {
  .wl-grid { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 768px) {
  .wl-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem }
}

/* ══════════════════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════════════════ */

.shop-page { padding-top: 88px; min-height: 100vh }

.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2.5rem 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-sort { display: flex; align-items: center; gap: .75rem }

.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rs);
  color: var(--t1);
  font-size: .78rem;
  font-family: var(--f-sans);
  padding: .55rem .875rem;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}

.sort-select:focus { border-color: var(--accent) }

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 5rem;
}

.shop-left { position: sticky; top: 100px }

.shop-right { min-width: 0 }

.shop-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.shop-count {
  font-size: .78rem;
  color: var(--t3);
  letter-spacing: .05em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.shop-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--t2);
  font-size: .9rem;
}

/* Shop Sidebar */
.shop-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.sm-filter-btn { display: none }

.shead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--border);
}

.sclose {
  display: none;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 1.25rem;
  border-radius: var(--rs);
  transition: color .2s;
}

.sclose:hover { color: var(--t1) }

.filter-clear {
  font-size: .7rem;
  color: var(--accent);
  text-decoration: underline;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--f-sans);
  transition: color .2s;
  padding: 0;
}

.filter-clear:hover { color: var(--accent-l) }

.filter-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  padding-top: .625rem;
  border-top: 1px solid var(--border);
}

.f-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: .375rem;
}

.f-chk {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .82rem;
  color: var(--t2);
  cursor: pointer;
  padding: .2rem 0;
  transition: color .18s;
}

.f-chk:hover { color: var(--t1) }

.f-chk input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr }
  .shop-left { position: static }
  .shop-grid { grid-template-columns: repeat(3, 1fr) }

  .sm-filter-btn {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .6rem 1.125rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    font-size: .75rem;
    font-weight: 600;
    color: var(--t2);
    cursor: pointer;
    transition: border-color .2s, color .2s;
    margin-bottom: 1rem;
    font-family: var(--f-sans);
  }

  .sm-filter-btn:hover { border-color: var(--accent); color: var(--t1) }

  .shop-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 100vw);
    z-index: 500;
    border-radius: 0;
    overflow-y: auto;
  }

  .shop-sidebar.open { display: flex }

  .sclose { display: flex }
  .shead { position: sticky; top: 0; background: var(--surface); z-index: 1 }
}

@media (max-width: 768px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem }
}

/* ══════════════════════════════════════════════════════════
   NEW ARRIVALS PAGE
══════════════════════════════════════════════════════════ */

.na-hero {
  padding: 7rem var(--px) 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.na-title {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--t1);
  margin: .625rem 0 .875rem;
  line-height: 1.05;
}

.na-sub {
  font-size: .95rem;
  color: var(--t2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.na-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.na-highlight-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .25s;
}

.na-highlight-card:hover {
  border-color: rgba(201, 168, 76, .3);
  transform: translateY(-3px);
}

.na-box {
  width: 100px;
  flex-shrink: 0;
  border-radius: var(--rs);
}

.na-highlight-info { flex: 1; min-width: 0 }

.na-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.na-filter-btn {
  padding: .45rem .875rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--t2);
  cursor: pointer;
  background: none;
  font-family: var(--f-sans);
  transition: border-color .2s, color .2s, background .2s;
}

.na-filter-btn:hover { border-color: var(--accent); color: var(--accent) }

.na-filter-btn.active {
  border-color: var(--accent);
  background: var(--accent-d);
  color: var(--accent);
}

@media (max-width: 768px) {
  .na-highlights { grid-template-columns: 1fr }
  .na-highlight-card { flex-direction: column }
  .na-box { width: 100%; aspect-ratio: 3/2 }
}

/* ══════════════════════════════════════════════════════════
   DEALS PAGE
══════════════════════════════════════════════════════════ */

.deals-hero {
  padding: 7rem var(--px) 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.deals-hero-inner { max-width: 560px; margin: 0 auto }

.deals-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.deals-stat { text-align: center }

.deals-stat-n {
  font-family: var(--f-mono);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: .25rem;
}

.deals-stat-l {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t3);
}

.deals-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.deals-card-wrap {
  position: relative;
}

.deals-savings-badge {
  position: absolute;
  top: -.5rem;
  right: -.5rem;
  z-index: 10;
  background: var(--error);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: .25rem .5rem;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(232, 90, 76, .4);
}

/* ══════════════════════════════════════════════════════════
   PRE-ORDERS PAGE
══════════════════════════════════════════════════════════ */

.po-hero {
  padding: 7rem var(--px) 3.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.po-hero-inner { max-width: 620px; margin: 0 auto }

.po-h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--t1);
  margin: .625rem 0 .875rem;
  line-height: 1.05;
}

.po-sub {
  font-size: .95rem;
  color: var(--t2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.po-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.po-stat { text-align: center }

.po-stat-n {
  font-family: var(--f-mono);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: .25rem;
}

.po-stat-l {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t3);
}

.po-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.po-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.po-how-step { text-align: center }

.po-how-n {
  font-family: var(--f-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: .625rem;
  opacity: .5;
}

.po-how-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: .5rem;
}

.po-how-desc { font-size: .85rem; color: var(--t2); line-height: 1.65 }

.po-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.po-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.po-card:hover {
  border-color: rgba(201, 168, 76, .3);
  transform: translateY(-3px);
}

.po-card-closed { opacity: .65; filter: saturate(0.6) }

.po-vis { position: relative; flex-shrink: 0 }

.po-box {
  border-radius: 0;
  aspect-ratio: 3/2;
}

.po-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: 2px;
  z-index: 5;
}

.po-badge-soon { background: rgba(201, 168, 76, .2); color: var(--accent); border: 1px solid rgba(201, 168, 76, .3) }
.po-badge-near { background: rgba(232, 168, 58, .2); color: var(--warning); border: 1px solid rgba(232, 168, 58, .3) }
.po-badge-hot  { background: rgba(255, 90, 40, .18); color: #FF7A50; border: 1px solid rgba(255, 90, 40, .3) }
.po-badge-limited { background: rgba(160, 60, 255, .15); color: #C090FF; border: 1px solid rgba(160, 60, 255, .25) }
.po-badge-early { background: rgba(76, 175, 130, .15); color: var(--success); border: 1px solid rgba(76, 175, 130, .25) }
.po-badge-closed { background: rgba(255, 255, 255, .06); color: var(--t3); border: 1px solid var(--border) }

.po-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem }

.po-game-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.po-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.3;
}

.po-subtitle { font-size: .78rem; color: var(--t3) }

.po-note { font-size: .8rem; color: var(--t2); line-height: 1.6; flex: 1 }

.po-meta {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  padding: .875rem;
  background: rgba(255, 255, 255, .03);
  border-radius: var(--rs);
  border: 1px solid var(--border);
  margin-top: .25rem;
}

.po-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

.po-meta-label { color: var(--t3) }
.po-meta-val { font-family: var(--f-mono); color: var(--t1) }

.po-countdown {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--warning);
  margin-top: .25rem;
}

.po-registered {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--success);
  padding: .6rem;
  background: rgba(76, 175, 130, .1);
  border-radius: var(--rs);
  border: 1px solid rgba(76, 175, 130, .2);
  margin-top: .25rem;
}

.po-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .7rem 1rem;
  background: var(--accent);
  color: #090909;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--rs);
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
  font-family: var(--f-sans);
}

.po-btn:hover { background: var(--accent-l) }

.po-btn-closed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  color: var(--t3);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--rs);
  text-decoration: none;
  transition: border-color .2s, color .2s;
  margin-top: .5rem;
}

.po-btn-closed:hover { border-color: var(--accent); color: var(--accent) }

.po-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}

.po-filter-btn {
  padding: .4rem .875rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--t2);
  cursor: pointer;
  background: none;
  font-family: var(--f-sans);
  transition: border-color .2s, color .2s, background .2s;
}

.po-filter-btn:hover { border-color: var(--accent); color: var(--accent) }

.po-filter-btn.active {
  border-color: var(--accent);
  background: var(--accent-d);
  color: var(--accent);
}

.po-cta-box {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  border-left: 3px solid var(--accent);
}

.po-cta-icon { font-size: 2rem; flex-shrink: 0; line-height: 1 }

@media (max-width: 1024px) {
  .po-grid { grid-template-columns: repeat(2, 1fr) }
  .po-how { grid-template-columns: 1fr }
}
@media (max-width: 768px) {
  .po-grid { grid-template-columns: 1fr }
}

/* ══════════════════════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════════════════════ */

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item[open] { border-color: rgba(201, 168, 76, .25) }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--t1);
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}

.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s;
}

.faq-item[open] .faq-q::after {
  content: '−';
}

.faq-q::-webkit-details-marker { display: none }

.faq-a {
  padding: 0 1.375rem 1.25rem;
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ══════════════════════════════════════════════════════════
   ACCESSORIES CARD
══════════════════════════════════════════════════════════ */

.acc-img {
  background: var(--surface-2);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--acc-color, var(--accent));
}

.acc-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.acc-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 0 16px var(--acc-color, var(--accent)));
}

.acc-brand {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t3);
}

/* ══════════════════════════════════════════════════════════
   BUYLIST PAGE
══════════════════════════════════════════════════════════ */

.bl-hero {
  padding: 7rem var(--px) 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.bl-title {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--t1);
  margin: .625rem 0 .875rem;
}

.bl-sub {
  font-size: .95rem;
  color: var(--t2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.bl-how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bl-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.bl-step-n {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  color: var(--accent);
  opacity: .45;
  margin-bottom: .75rem;
  display: block;
}

.bl-step-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: .4rem;
}

.bl-step-desc { font-size: .82rem; color: var(--t2); line-height: 1.6 }

.bl-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.bl-tab {
  padding: .5rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--t2);
  cursor: pointer;
  background: none;
  font-family: var(--f-sans);
  transition: border-color .2s, color .2s, background .2s;
}

.bl-tab:hover { border-color: var(--accent); color: var(--accent) }

.bl-tab.active {
  border-color: var(--accent);
  background: var(--accent-d);
  color: var(--accent);
}

.bl-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.bl-table th {
  background: var(--surface-2);
  padding: .875rem 1.25rem;
  text-align: left;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--t3);
  border-bottom: 1px solid var(--border);
}

.bl-table td {
  padding: .875rem 1.25rem;
  font-size: .875rem;
  color: var(--t2);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  vertical-align: middle;
}

.bl-table tr:last-child td { border-bottom: none }

.bl-table tr:hover td { background: rgba(255, 255, 255, .02) }

.bl-price {
  font-family: var(--f-mono);
  font-size: .95rem;
  color: var(--success);
  font-weight: 500;
}

@media (max-width: 768px) {
  .bl-how { grid-template-columns: repeat(2, 1fr) }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */

.about-hero {
  padding: 7rem var(--px) 4rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, .07) 0%, transparent 70%);
}

.about-hero h1 em {
  font-style: italic;
  color: var(--accent-l);
}

/* ══════════════════════════════════════════════════════════
   ADDITIONAL RESPONSIVE FIXES
══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .po-how { grid-template-columns: 1fr }
  .deals-stats { gap: 1.5rem }
  .po-stats { gap: 1.5rem }
  .bl-how { grid-template-columns: 1fr }
}

/* ══════════════════════════════════════════════════════════
   ACCESSORY DETAIL PAGE
══════════════════════════════════════════════════════════ */

.acc-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  padding-top: 2rem;
}

.acc-detail-vis { position: sticky; top: 100px }

.acc-detail-img {
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--acc-color, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5), 0 0 80px rgba(201, 168, 76, .06);
}

.acc-detail-info { padding-bottom: 3rem }

.pd-desc {
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--t2);
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .acc-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .acc-detail-vis { position: static }
}

/* ══════════════════════════════════════════════════════════
   ACCESSORIES LISTING PAGE
══════════════════════════════════════════════════════════ */

.acc-hero {
  padding: 7rem var(--px) 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.acc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.acc-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .875rem;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .25s;
  border-top: 2px solid transparent;
}

.acc-cat-card:hover {
  border-color: rgba(201, 168, 76, .3);
  border-top-color: var(--acc-color, var(--accent));
  transform: translateY(-3px);
}

.acc-cat-icon { font-size: 2.5rem; line-height: 1 }

.acc-cat-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
}

.acc-cat-count {
  font-size: .75rem;
  color: var(--t3);
}

@media (max-width: 768px) {
  .acc-cat-grid { grid-template-columns: repeat(2, 1fr) }
}

.acc-cat-card {
  align-items: flex-start;
  flex-direction: row;
  gap: 1.25rem;
  padding: 1.5rem;
}

.acc-cat-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px var(--acc-color, var(--accent)));
}

.acc-cat-info { flex: 1; min-width: 0 }

.acc-cat-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: .25rem;
}

.acc-cat-desc {
  font-size: .8rem;
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: .4rem;
}

.acc-cat-count {
  font-size: .7rem;
  color: var(--t3);
}

.acc-cat-arrow {
  color: var(--t3);
  flex-shrink: 0;
  transition: transform .2s, color .2s;
  margin-top: .125rem;
}

.acc-cat-card:hover .acc-cat-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.acc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.acc-trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.acc-trust-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: .875rem;
}

.acc-trust-title {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  color: var(--t1);
  margin-bottom: .5rem;
}

.acc-trust-body { font-size: .85rem; color: var(--t2); line-height: 1.65 }

.acc-other-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.acc-other-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--t2);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.acc-other-chip:hover { border-color: var(--acc-color, var(--accent)); color: var(--t1) }

@media (max-width: 768px) {
  .acc-trust-grid { grid-template-columns: 1fr }
}

/* ══════════════════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════════════════ */

.co-page {
  min-height: 100vh;
  background: var(--bg);
}

.co-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8rem var(--px) 5rem;
}

/* ── Back link ── */
.co-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: color .2s;
  letter-spacing: .02em;
}
.co-back:hover { color: var(--accent) }

/* ── Header ── */
.co-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.co-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--t1);
  line-height: 1;
}

/* ── Progress stepper ── */
.co-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: .25rem;
}

.co-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}

.co-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--t3);
  transition: all .25s;
  background: transparent;
}

.co-step.active .co-step-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(201,168,76,.3);
}

.co-step.done .co-step-dot {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
  box-shadow: 0 0 12px rgba(76,175,130,.35);
}

.co-step-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  transition: color .2s;
}
.co-step.active .co-step-label { color: var(--accent) }
.co-step.done .co-step-label { color: var(--success) }

.co-step-line {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0 .5rem;
  margin-bottom: 1.1rem;
  transition: background .25s;
  flex-shrink: 0;
}
.co-step-line.done { background: rgba(76,175,130,.4) }

/* ── Layout ── */
.co-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.co-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Card ── */
.co-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.co-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.co-card-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--t1);
  letter-spacing: .02em;
}

.co-num {
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  padding: .2rem .45rem;
  border-radius: 4px;
  line-height: 1;
}

.co-badge {
  margin-left: auto;
  font-size: .7rem;
  color: var(--t2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  border-radius: 999px;
}

.co-card-body {
  padding: 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Form fields ── */
.co-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.co-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.co-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--t2);
  letter-spacing: .02em;
}

.co-required { color: var(--error) }

.co-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .875rem;
  color: var(--t1);
  font-family: var(--f-sans);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.co-input::placeholder { color: var(--t3) }
.co-input:focus {
  border-color: rgba(201,168,76,.45);
  box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}
.co-input--err {
  border-color: rgba(232,90,76,.5);
}
.co-input--err:focus {
  box-shadow: 0 0 0 3px rgba(232,90,76,.08);
}

.co-select {
  cursor: pointer;
  padding-right: 2.25rem;
}
.co-select option { background: #111113 }

.co-select-wrap {
  position: relative;
}
.co-select-arrow {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--t3);
  pointer-events: none;
}

.co-textarea {
  resize: none;
  min-height: 88px;
}

.co-error {
  font-size: .73rem;
  color: var(--error);
}

/* ── Step 2 items ── */
.co-items {
  display: flex;
  flex-direction: column;
}

.co-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s;
}
.co-item:last-child { border-bottom: none }
.co-item:hover { background: rgba(255,255,255,.015) }

.co-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: unset !important;
}

.co-item-info { flex: 1; min-width: 0 }

.co-item-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--t1);
  line-height: 1.35;
}

.co-item-sub {
  font-size: .75rem;
  color: var(--t3);
  margin-top: .2rem;
}

.co-item-qty {
  font-size: .75rem;
  color: var(--t2);
  margin-top: .35rem;
}
.co-item-qty strong { color: var(--t1) }

.co-item-price {
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Delivery card ── */
.co-delivery {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  overflow: visible;
}

.co-delivery-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.co-delivery-info { flex: 1; min-width: 0 }

.co-delivery-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: .4rem;
}

.co-delivery-addr {
  font-size: .875rem;
  color: var(--t1);
  line-height: 1.5;
}

.co-delivery-meta {
  font-size: .75rem;
  color: var(--t2);
  margin-top: .3rem;
}

.co-edit-btn {
  font-size: .75rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color .2s;
}
.co-edit-btn:hover { color: var(--accent-l) }

/* ── Payment methods ── */
.co-payments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: 1.125rem 1.5rem;
}

.co-pay {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.co-pay:hover { border-color: rgba(201,168,76,.3) }
.co-pay.selected {
  border-color: rgba(201,168,76,.55);
  background: rgba(201,168,76,.06);
}

.co-pay-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s;
}
.co-pay-dot.selected { border-color: var(--accent) }

.co-pay-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.co-pay-icon { font-size: 1.2rem; flex-shrink: 0 }

.co-pay-text { flex: 1; min-width: 0 }

.co-pay-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.3;
  transition: color .2s;
}
.co-pay-label.selected { color: var(--accent) }

.co-pay-note {
  font-size: .7rem;
  color: var(--t3);
  margin-top: .2rem;
  line-height: 1.4;
}

/* ── Total bar (step 2) ── */
.co-total-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  color: var(--t2);
}

.co-free {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--success);
}

.co-total-final {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: .875rem;
  margin-top: .25rem;
  font-weight: 600;
  color: var(--t1);
}

.co-total-amount {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
}

/* ── Actions row ── */
.co-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
}

.co-btn-back {
  font-size: .8rem;
  padding: .6rem 1.1rem;
}

.co-confirm-btn {
  padding: .7rem 1.75rem;
}

.co-confirm-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.co-confirm-error {
  background: rgba(232, 90, 76, .08);
  border: 1px solid rgba(232, 90, 76, .25);
  color: var(--error);
  font-size: .8125rem;
  padding: .6rem 1rem;
  border-radius: var(--r);
  margin-bottom: .75rem;
}

@keyframes co-spin {
  to { transform: rotate(360deg); }
}
.co-spinner {
  animation: co-spin .8s linear infinite;
  flex-shrink: 0;
}

/* ── Sidebar / Order summary ── */
.co-aside {
  position: sticky;
  top: 6rem;
}

.co-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.co-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(201,168,76,.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.co-summary-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--t1);
}

.co-summary-count {
  font-size: .72rem;
  color: var(--t2);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  padding: .2rem .55rem;
  border-radius: 999px;
}

.co-summary-items {
  padding: .875rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-height: 220px;
  overflow-y: auto;
}

.co-summary-item {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.co-summary-img {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: unset !important;
}

.co-summary-info { flex: 1; min-width: 0 }

.co-summary-name {
  font-size: .75rem;
  font-weight: 500;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.co-summary-qty {
  font-size: .68rem;
  color: var(--t3);
  margin-top: .15rem;
}

.co-summary-price {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.co-summary-totals {
  border-top: 1px solid var(--border);
  padding: .875rem 1.25rem;
  background: rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.co-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--t2);
}

.co-summary-final {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
  margin-top: .25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--t1);
}

.co-summary-final .mono {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.co-trust {
  border-top: 1px solid var(--border);
  padding: .875rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.co-trust-item {
  display: flex;
  align-items: center;
  gap: .625rem;
}

.co-trust-icon {
  font-size: .875rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  opacity: .7;
}

.co-trust-text {
  font-size: .72rem;
  color: var(--t3);
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .co-layout {
    grid-template-columns: 1fr;
  }
  .co-aside {
    position: static;
    order: -1;
  }
  .co-summary-items { max-height: 160px }
}

@media (max-width: 600px) {
  .co-wrap { padding-top: 6.5rem }
  .co-title { font-size: 2rem }
  .co-header { flex-direction: column; align-items: flex-start; gap: 1.25rem }
  .co-step-line { width: 32px }
  .co-grid-2 { grid-template-columns: 1fr }
  .co-payments { grid-template-columns: 1fr }
  .co-actions { gap: .75rem }
}

/* ══════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════ */

.cr-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ── Empty state ── */
.cr-empty {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 10rem var(--px) 6rem;
}

.cr-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--t3);
}

.cr-empty-title {
  font-size: 1.875rem;
  color: var(--t1);
  margin-bottom: .75rem;
}

.cr-empty-sub {
  font-size: .9rem;
  color: var(--t2);
  margin-bottom: 2rem;
}

/* ── Wrapper ── */
.cr-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem var(--px) 5rem;
}

/* ── Header ── */
.cr-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.25rem;
  gap: 1rem;
}

.cr-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--t1);
  line-height: 1;
  margin-bottom: .4rem;
}

.cr-sub {
  font-size: .8rem;
  color: var(--t2);
}

.cr-continue {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: color .2s;
  padding-bottom: .2rem;
}
.cr-continue:hover { color: var(--accent) }

/* ── Layout ── */
.cr-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.75rem;
  align-items: start;
}

/* ── Product list ── */
.cr-items {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ── Product card ── */
.cr-card {
  display: flex;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.125rem 1.25rem;
  align-items: center;
  transition: border-color .2s;
}
.cr-card:hover { border-color: rgba(201,168,76,.2) }

.cr-thumb {
  width: 72px !important;
  height: 72px !important;
  border-radius: 10px;
  flex-shrink: 0;
  aspect-ratio: unset !important;
  overflow: hidden;
}

.cr-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.cr-name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--t1);
  line-height: 1.35;
}

.cr-subtitle {
  font-size: .75rem;
  color: var(--t3);
}

.cr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .25rem;
}

/* ── Qty control ── */
.cr-qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.cr-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .15s, background .15s;
  flex-shrink: 0;
}
.cr-qty-btn:hover {
  color: var(--accent);
  background: rgba(201,168,76,.08);
}

.cr-qty-val {
  min-width: 2rem;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--t1);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 32px;
}

.cr-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cr-price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.cr-remove {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  background: none;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  flex-shrink: 0;
}
.cr-remove:hover {
  color: var(--error);
  border-color: rgba(232,90,76,.25);
  background: rgba(232,90,76,.06);
}

/* ── Sidebar ── */
.cr-aside {
  position: sticky;
  top: 6rem;
}

.cr-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.cr-summary-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(201,168,76,.07) 0%, transparent 100%);
}

.cr-summary-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--t1);
}

.cr-summary-body {
  padding: 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.cr-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--t2);
}

.cr-free {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--success);
}

.cr-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  font-weight: 600;
  font-size: .9rem;
  color: var(--t1);
  background: rgba(0,0,0,.12);
}

.cr-total-amt {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.cr-summary-actions {
  padding: 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  border-top: 1px solid var(--border);
}

.cr-checkout-btn {
  width: 100%;
  justify-content: center;
  gap: .5rem;
}

.cr-shop-btn {
  width: 100%;
  justify-content: center;
  font-size: .8rem;
  padding: .55rem 1rem;
}

.cr-trust {
  padding: .875rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.cr-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cr-trust-icon {
  font-size: .8rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  opacity: .65;
}

.cr-trust-text {
  font-size: .72rem;
  color: var(--t3);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .cr-layout {
    grid-template-columns: 1fr;
  }
  .cr-aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 520px) {
  .cr-wrap { padding-top: 6.5rem }
  .cr-title { font-size: 2rem }
  .cr-header { flex-direction: column; align-items: flex-start; gap: .5rem }
  .cr-card { padding: .875rem 1rem; gap: 1rem }
  .cr-thumb { width: 60px !important; height: 60px !important }
  .cr-row { flex-wrap: wrap }
}

/* ═══════════════════════════════════════════════════════
   ADMIN PANEL  (.adm-*)
══════════════════════════════════════════════════════════ */

/* ── Shell layout ── */
.adm-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
  background: var(--bg);
}

.adm-side {
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.adm-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem .5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.adm-logo-mark {
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.adm-logo-name { font-size: .875rem; font-weight: 600; color: var(--t1); }
.adm-logo-sub  { font-size: .7rem;   color: var(--t3);  margin-top: 1px; }

.adm-nav { display: flex; flex-direction: column; gap: .25rem; flex: 1; }

.adm-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .6rem .875rem;
  border-radius: var(--r);
  font-size: .8125rem;
  color: var(--t2);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.adm-link:hover { background: rgba(201,168,76,.07); color: var(--t1); }
.adm-link-icon  { font-size: .9rem; }

.adm-side-foot { padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: auto; }
.adm-back-site {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--t3);
  text-decoration: none;
  padding: .5rem .875rem;
  border-radius: var(--r);
  transition: color .15s;
}
.adm-back-site:hover { color: var(--accent); }

/* ── Main content ── */
.adm-main { overflow-x: auto; }

.adm-content {
  padding: 2.5rem 2rem;
  max-width: 1080px;
}

/* ── Page header ── */
.adm-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.adm-page-title { font-size: 2rem; color: var(--t1); font-weight: 400; }
.adm-page-sub   { font-size: .8125rem; color: var(--t3); margin-top: .25rem; }

/* ── Back link ── */
.adm-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--t3);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color .15s;
}
.adm-back:hover { color: var(--accent); }

/* ── Stats grid ── */
.adm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.adm-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.adm-stat--alert { border-color: rgba(232,168,58,.3); background: rgba(232,168,58,.05); }
.adm-stat-icon  { font-size: 1.5rem; margin-bottom: .5rem; }
.adm-stat-val   { font-size: 1.75rem; font-weight: 600; color: var(--t1); line-height: 1; }
.adm-stat-label { font-size: .75rem; color: var(--t3); margin-top: .4rem; }

/* ── Section ── */
.adm-section { margin-top: 2rem; }
.adm-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.adm-section-title { font-size: 1rem; font-weight: 600; color: var(--t1); }
.adm-view-all { font-size: .8rem; color: var(--accent); text-decoration: none; }
.adm-view-all:hover { text-decoration: underline; }

.adm-empty {
  text-align: center;
  color: var(--t3);
  padding: 3rem;
  font-size: .875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

/* ── Table ── */
.adm-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow-x: auto;
}
.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8125rem;
}
.adm-table th {
  text-align: left;
  padding: .75rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--t3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.adm-table td {
  padding: .875rem 1rem;
  color: var(--t2);
  border-bottom: 1px solid rgba(42,42,50,.5);
  vertical-align: middle;
}
.adm-table tbody tr:last-child td { border-bottom: none; }
.adm-table tbody tr:hover td { background: rgba(201,168,76,.03); }

.adm-order-num  { color: var(--accent); font-size: .8rem; }
.adm-customer   { color: var(--t1); font-weight: 500; }
.adm-phone      { color: var(--t3); font-size: .75rem; margin-top: 2px; }
.adm-addr, .adm-qty, .adm-pay, .adm-date { color: var(--t3); font-size: .75rem; }

.adm-detail-btn {
  font-size: .75rem;
  color: var(--accent);
  text-decoration: none;
  padding: .3rem .75rem;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--r);
  transition: background .15s;
  white-space: nowrap;
}
.adm-detail-btn:hover { background: rgba(201,168,76,.1); }

/* ── Status badges ── */
.adm-badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .625rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}
.adm-badge-lg { padding: .35rem 1rem; font-size: .8rem; }

.adm-badge-pending   { background: rgba(232,168,58,.12); color: #E8A83A; border: 1px solid rgba(232,168,58,.3); }
.adm-badge-confirmed { background: rgba(96,165,250,.1);  color: #60A5FA; border: 1px solid rgba(96,165,250,.3); }
.adm-badge-shipped   { background: rgba(167,139,250,.1); color: #A78BFA; border: 1px solid rgba(167,139,250,.3); }
.adm-badge-delivered { background: rgba(76,175,130,.1);  color: #4CAF82; border: 1px solid rgba(76,175,130,.3); }
.adm-badge-cancelled { background: rgba(232,90,76,.1);   color: #E85A4C; border: 1px solid rgba(232,90,76,.3); }

/* ── Filter tabs ── */
.adm-tabs {
  display: flex;
  gap: .375rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.adm-tab {
  padding: .4rem .875rem;
  border-radius: 999px;
  font-size: .78rem;
  color: var(--t3);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all .15s;
}
.adm-tab:hover { color: var(--t1); border-color: rgba(201,168,76,.3); }
.adm-tab.active {
  background: rgba(201,168,76,.12);
  color: var(--accent);
  border-color: rgba(201,168,76,.4);
}

/* ── Detail page grid ── */
.adm-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

/* ── Cards ── */
.adm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.adm-card-title {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--t3);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

/* ── Info rows ── */
.adm-info-rows { display: flex; flex-direction: column; gap: .625rem; }
.adm-info-row  { display: flex; gap: 1rem; font-size: .8125rem; }
.adm-info-key  { color: var(--t3); min-width: 90px; flex-shrink: 0; }
.adm-info-val  { color: var(--t1); }
.adm-note      { color: var(--t2); font-style: italic; }
.adm-total-highlight { color: var(--accent); font-size: 1rem; font-weight: 600; }

/* ── Status form ── */
.adm-field-label { display: block; font-size: .75rem; color: var(--t3); margin-bottom: .625rem; }
.adm-status-row  { display: flex; gap: .75rem; }
.adm-select {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--t1);
  padding: .55rem .875rem;
  font-size: .8125rem;
  font-family: var(--f-sans);
  outline: none;
  cursor: pointer;
}
.adm-select:focus { border-color: rgba(201,168,76,.5); }
.adm-save-btn {
  padding: .55rem 1.25rem;
  background: var(--accent);
  color: #0A0A0B;
  border: none;
  border-radius: var(--r);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.adm-save-btn:hover    { background: var(--accent-l); }
.adm-save-btn:disabled { opacity: .6; cursor: not-allowed; }
.adm-form-msg { font-size: .78rem; color: var(--success); margin-top: .625rem; }

/* ── Order items ── */
.adm-order-items { display: flex; flex-direction: column; gap: .875rem; }
.adm-order-item  {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid rgba(42,42,50,.5);
}
.adm-order-item:last-child { border-bottom: none; padding-bottom: 0; }
.adm-item-thumb {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  flex-shrink: 0;
}
.adm-item-info     { flex: 1; min-width: 0; }
.adm-item-name     { font-size: .8125rem; color: var(--t1); font-weight: 500; }
.adm-item-qty      { font-size: .75rem; color: var(--t3); margin-top: 2px; }
.adm-item-price    { text-align: right; font-size: .8rem; color: var(--t2); }
.adm-item-total    { color: var(--t1); font-weight: 600; margin-top: 2px; }
.adm-items-footer  {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: .5rem;
  border-top: 1px solid var(--border);
  font-size: .8125rem;
  color: var(--t2);
}

/* ── Admin responsive ── */
@media (max-width: 900px) {
  .adm-shell  { grid-template-columns: 1fr; }
  .adm-side   { position: static; height: auto; flex-direction: row; flex-wrap: wrap; }
  .adm-stats  { grid-template-columns: repeat(2, 1fr); }
  .adm-detail-grid { grid-template-columns: 1fr; }
  .adm-content { padding: 1.5rem 1rem; }
}

/* ── AUTH PAGES (.auth-*) ───────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem var(--px) 4rem;
}
.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.auth-logo {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.auth-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .375rem;
}
.auth-sub {
  color: var(--t2);
  font-size: .875rem;
  margin-bottom: 2rem;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.auth-field { display: flex; flex-direction: column; gap: .375rem; }
.auth-label { font-size: .75rem; color: var(--t2); letter-spacing: .04em; text-transform: uppercase; }
.auth-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .625rem .875rem;
  color: var(--t1);
  font-size: .9375rem;
  outline: none;
  transition: border-color .2s;
}
.auth-input:focus { border-color: var(--accent); }
.auth-submit {
  margin-top: .5rem;
  width: 100%;
  padding: .75rem;
  font-size: .9375rem;
  cursor: pointer;
  border: none;
}
.auth-submit:disabled { opacity: .6; cursor: not-allowed; }
.auth-error {
  background: rgba(232,90,76,.12);
  border: 1px solid rgba(232,90,76,.3);
  color: #E85A4C;
  border-radius: 4px;
  padding: .625rem .875rem;
  font-size: .875rem;
}
.auth-switch {
  margin-top: 1.5rem;
  font-size: .875rem;
  color: var(--t2);
}
.auth-switch a { color: var(--accent); text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* ── ACCOUNT PAGES (.acct-page-*) ──────────────────────────────── */
.acct-page { padding: 6rem var(--px) 4rem; min-height: 100vh; }
.acct-page-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.acct-page-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent);
  flex-shrink: 0;
}
.acct-page-name  { font-size: 1.375rem; margin-bottom: .125rem; }
.acct-page-email { font-size: .875rem; color: var(--t2); }
.acct-page-grid  { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
.acct-page-card  { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; }
.acct-page-sec-title { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; }
.acct-page-empty { color: var(--t2); font-size: .9375rem; }
.acct-page-breadcrumb { margin-bottom: 1.5rem; }
.acct-page-breadcrumb a { color: var(--t2); font-size: .875rem; text-decoration: none; }
.acct-page-breadcrumb a:hover { color: var(--accent); }
.acct-page-h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0; }

.acct-orders-list { display: flex; flex-direction: column; gap: .75rem; }
.acct-order-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--t1);
  transition: border-color .2s;
}
.acct-order-row:hover { border-color: var(--accent); }
.acct-order-row-full { align-items: flex-start; }
.acct-order-num  { font-size: .875rem; color: var(--accent); margin-bottom: .125rem; }
.acct-order-date { font-size: .75rem; color: var(--t3); }
.acct-order-items-preview { font-size: .8125rem; color: var(--t2); margin-top: .25rem; }
.acct-order-total { font-size: .9375rem; color: var(--t1); }
.acct-view-all { display: block; text-align: center; color: var(--accent); font-size: .875rem; padding: .625rem; text-decoration: none; margin-top: .25rem; }
.acct-view-all:hover { text-decoration: underline; }

.acct-info-row { display: flex; justify-content: space-between; align-items: center; padding: .625rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.acct-info-row:last-of-type { border-bottom: none; }
.acct-info-label { color: var(--t2); }
.acct-info-val   { color: var(--t1); }
.acct-signout    { width: 100%; padding: .625rem; cursor: pointer; font-size: .875rem; }

@media (max-width: 768px) {
  .acct-page-grid { grid-template-columns: 1fr; }
  .acct-page-header { flex-direction: column; text-align: center; }
}

/* ── PRODUCT CARD — real image support ─────────────────────────── */
/* next/image fill collapses height without explicit dimensions */
.pc-img { position: relative; aspect-ratio: 3/4; }
.pc-real-img {
  object-fit: contain !important;
  background: var(--surface);
}
.pd-main-img--real {
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}

/* Hero real image slide */
.hero-real-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
}

/* ── ADMIN PRODUCT FORM (.pf-*) ─────────────────────────────────── */
.pf-form { display: flex; flex-direction: column; gap: 1.5rem; }
.pf-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.pf-section-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  font-weight: 600;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.pf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pf-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pf-field  { display: flex; flex-direction: column; gap: .375rem; }
.pf-label  { font-size: .75rem; color: var(--t2); text-transform: uppercase; letter-spacing: .04em; }
.pf-input  {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .5rem .75rem;
  color: var(--t1);
  font-size: .9rem;
  outline: none;
  width: 100%;
  transition: border-color .2s;
}
.pf-input:focus { border-color: var(--accent); }
.pf-textarea { min-height: 90px; resize: vertical; font-family: inherit; }

.pf-type-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.pf-radio    { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; }
.pf-radio input[type="radio"] { accent-color: var(--accent); width: 15px; height: 15px; }

.pf-badge-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pf-badge-btn {
  padding: .3rem .75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: transparent;
  color: var(--t2);
  font-size: .8125rem;
  cursor: pointer;
  transition: all .2s;
}
.pf-badge-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(201,168,76,.1); }
.pf-badge-preview { display: flex; gap: .5rem; flex-wrap: wrap; min-height: 24px; align-items: center; }

.pf-img-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.pf-img-thumb {
  position: relative;
  width: 80px; height: 80px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.pf-img-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pf-img-del {
  position: absolute; top: 3px; right: 3px;
  background: rgba(0,0,0,.7);
  color: #fff;
  border: none; border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  cursor: pointer; line-height: 18px; text-align: center; padding: 0;
}
.pf-img-add {
  width: 80px; height: 80px;
  border: 1px dashed var(--border);
  border-radius: 4px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .25rem;
  cursor: pointer;
  color: var(--t3);
  font-size: 1.25rem;
  transition: border-color .2s;
}
.pf-img-add:hover { border-color: var(--accent); color: var(--accent); }
.pf-img-add span  { font-size: .6875rem; }
.pf-hint { font-size: .75rem; color: var(--t3); }

.pf-actions { display: flex; justify-content: flex-end; gap: 1rem; padding-top: .5rem; }
.pf-submit  { min-width: 140px; }
.pf-msg { padding: .75rem 1rem; border-radius: 4px; font-size: .875rem; }
.pf-msg--err { background: rgba(232,90,76,.12); border: 1px solid rgba(232,90,76,.3); color: #E85A4C; }
.pf-msg--ok  { background: rgba(76,175,130,.12); border: 1px solid rgba(76,175,130,.3); color: #4CAF82; }

/* Admin product list extras */
.adm-action-btn {
  background: var(--accent); color: #000;
  padding: .5rem 1.25rem;
  border-radius: 4px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.adm-search-bar   { display: flex; gap: .75rem; margin-bottom: 1.5rem; align-items: center; }
.adm-search-input { flex: 1; max-width: 360px; }
.adm-search-input { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: .5rem .875rem; color: var(--t1); font-size: .9rem; outline: none; }
.adm-search-input:focus { border-color: var(--accent); }
.adm-search-btn   { background: var(--surface-2); border: 1px solid var(--border); color: var(--t1); padding: .5rem 1rem; border-radius: 4px; cursor: pointer; font-size: .875rem; }
.adm-search-clear { color: var(--t3); font-size: .875rem; text-decoration: none; }
.adm-search-clear:hover { color: var(--error); }
.adm-kind-badge   { padding: .2rem .5rem; border-radius: 3px; font-size: .75rem; font-weight: 600; }
.adm-kind-tcg     { background: rgba(201,168,76,.15); color: var(--accent); }
.adm-kind-accessory { background: rgba(100,160,255,.12); color: #79b8ff; }
.adm-kind-pre-order { background: rgba(150,90,255,.12); color: #c396ff; }
.adm-del-btn {
  background: rgba(232,90,76,.1);
  border: 1px solid rgba(232,90,76,.25);
  color: #E85A4C;
  padding: .25rem .625rem;
  border-radius: 3px;
  font-size: .8125rem;
  cursor: pointer;
  transition: background .2s;
}
.adm-del-btn:hover { background: rgba(232,90,76,.2); }
.adm-del-btn:disabled { opacity: .5; cursor: not-allowed; }
.adm-page-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; gap: 1rem; }

@media (max-width: 768px) {
  .pf-grid-2, .pf-grid-3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ADMIN DASHBOARD — Phase 1 (.adm-kpi-*, .adm-dash-*, .adm-chart-*,
   .adm-qa-*, .adm-low-*, .adm-card-h, .adm-link.active)
═══════════════════════════════════════════════════════════════ */

/* Active nav link */
.adm-link.active {
  color: var(--accent);
  background: rgba(201,168,76,.08);
  border-left-color: var(--accent);
}

/* ── KPI Grid ── */
.adm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.adm-kpi-link { text-decoration: none; display: block; }
.adm-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.375rem;
  transition: border-color .2s, background .2s;
}
.adm-kpi-link:hover .adm-kpi { border-color: rgba(201,168,76,.4); }
.adm-kpi--hl {
  border-top: 2px solid var(--accent);
  background: rgba(201,168,76,.04);
}
.adm-kpi--alert {
  border-top: 2px solid var(--warning);
  background: rgba(232,168,58,.04);
}
.adm-kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}
.adm-kpi-label {
  font-size: .6875rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
.adm-kpi-icon        { color: var(--t3); line-height: 1; }
.adm-kpi--hl .adm-kpi-icon    { color: var(--accent); }
.adm-kpi--alert .adm-kpi-icon { color: var(--warning); }
.adm-kpi-val {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.15;
}
.adm-kpi--hl .adm-kpi-val { color: var(--accent); }

/* ── Dashboard 2-column layout ── */
.adm-dash-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.25rem;
}
.adm-dash-right { display: flex; flex-direction: column; gap: 1.25rem; }

/* ── Card header ── */
.adm-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.125rem;
}
.adm-card-h {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.3;
}
.adm-card-sub { font-size: .8125rem; color: var(--t2); margin-top: .2rem; }
.adm-card--warn {
  border-color: rgba(232,168,58,.3);
  background: rgba(232,168,58,.03);
}

/* ── Revenue SVG chart ── */
.adm-chart-wrap { display: flex; flex-direction: column; gap: .875rem; }
.adm-chart-svg  { width: 100%; height: 80px; overflow: visible; }
.adm-chart-days {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}
.adm-chart-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  min-width: 0;
}
.adm-chart-weekday { font-size: .625rem; color: var(--t3); text-transform: uppercase; letter-spacing: .04em; }
.adm-chart-date    { font-size: .6875rem; color: var(--t2); font-weight: 600; }

/* ── Quick actions ── */
.adm-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.adm-qa-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .625rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--t2);
  text-decoration: none;
  font-size: .75rem;
  transition: all .2s;
  position: relative;
}
.adm-qa-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(201,168,76,.05); }
.adm-qa-icon  { font-size: .9375rem; line-height: 1; flex-shrink: 0; }
.adm-qa-label { flex: 1; line-height: 1.3; }
.adm-qa-badge {
  background: var(--warning);
  color: #000;
  font-size: .5625rem;
  font-weight: 700;
  border-radius: 9999px;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  padding: 0 4px;
  flex-shrink: 0;
}

/* ── Low stock list ── */
.adm-low-list { display: flex; flex-direction: column; gap: .5rem; }
.adm-low-row  { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; }
.adm-stock-pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.adm-stock-pip.low { background: var(--warning); }
.adm-stock-pip.out { background: var(--error);   }
.adm-low-name {
  flex: 1;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.adm-low-count     { color: var(--warning); font-size: .75rem; font-weight: 600; flex-shrink: 0; }
.adm-low-count.out { color: var(--error); }

/* ── Responsive dashboard ── */
@media (max-width: 1100px) {
  .adm-kpi-grid  { grid-template-columns: repeat(3, 1fr); }
  .adm-dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .adm-kpi-grid  { grid-template-columns: repeat(2, 1fr); }
  .adm-kpi-val   { font-size: 1.375rem; }
}
@media (max-width: 480px) {
  .adm-kpi-grid  { grid-template-columns: 1fr 1fr; }
  .adm-qa-grid   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   PHASE 2 — Orders Enhancement
   ═══════════════════════════════════════════════════ */

/* ── Filter row (search + date) ── */
.adm-filters-row {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.adm-search-input {
  flex: 1;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--t1);
  font-size: .8125rem;
  padding: .5rem .75rem;
  outline: none;
  transition: border-color .2s;
}
.adm-search-input:focus { border-color: var(--accent); }
.adm-search-input::placeholder { color: var(--t3); }
.adm-date-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--t1);
  font-size: .8125rem;
  padding: .5rem .625rem;
  outline: none;
  transition: border-color .2s;
  width: 140px;
}
.adm-date-input:focus { border-color: var(--accent); }
.adm-filter-btn {
  background: var(--accent);
  color: #0a0a0b;
  border: none;
  border-radius: 6px;
  font-size: .8125rem;
  font-weight: 600;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: background .2s;
}
.adm-filter-btn:hover { background: var(--accent-light); }
.adm-filter-clear {
  font-size: .8125rem;
  color: var(--t2);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  white-space: nowrap;
}
.adm-filter-clear:hover { color: var(--t1); }

/* ── Export button ── */
.adm-export-btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--t2);
  font-size: .8125rem;
  padding: .45rem .875rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.adm-export-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Checkbox ── */
.adm-chk {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
  border-radius: 3px;
}
.adm-row-selected { background: rgba(201,168,76,.06); }

/* ── Bulk action floating bar ── */
.adm-bulk-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .625rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  z-index: 200;
  white-space: nowrap;
}
.adm-bulk-count {
  font-size: .8125rem;
  color: var(--t2);
  flex-shrink: 0;
}
.adm-bulk-actions { display: flex; gap: .5rem; }
.adm-bulk-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--t1);
  font-size: .8rem;
  padding: .35rem .75rem;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.adm-bulk-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.adm-bulk-btn:disabled { opacity: .5; cursor: not-allowed; }
.adm-bulk-clear {
  background: none;
  border: none;
  color: var(--t3);
  font-size: .9rem;
  cursor: pointer;
  padding: 0 .25rem;
  line-height: 1;
  flex-shrink: 0;
}
.adm-bulk-clear:hover { color: var(--t1); }

/* ── Feedback toast ── */
.adm-feedback {
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 6px;
  color: var(--accent-light);
  font-size: .8125rem;
  padding: .5rem .875rem;
  margin-bottom: .75rem;
}

/* ── Responsive Phase 2 ── */
@media (max-width: 768px) {
  .adm-filters-row { gap: .5rem; }
  .adm-date-input  { width: 120px; }
  .adm-bulk-bar    { left: 1rem; right: 1rem; transform: none; bottom: 1rem; }
  .adm-bulk-actions { flex-wrap: wrap; gap: .375rem; }
}

/* ═══════════════════════════════════════════════════
   PHASE 3 — Inventory Management
   ═══════════════════════════════════════════════════ */

/* ── Stock badges ── */
.adm-stock-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 4px;
  white-space: nowrap;
}
.adm-stock-badge.ok  { background: rgba(76,175,130,.14); color: #4caf82; }
.adm-stock-badge.low { background: rgba(232,168,58,.14);  color: var(--warning); }
.adm-stock-badge.out { background: rgba(232,90,76,.14);   color: var(--error); }

/* ── Inventory table ── */
.adm-inv-name { font-size: .875rem; color: var(--t1); font-weight: 500; }
.adm-inv-sub  { font-size: .75rem;  color: var(--t2); margin-top: .1rem; }
.adm-inv-type { font-size: .75rem;  color: var(--t2); }
.adm-inv-slug { font-size: .75rem;  color: var(--t3); }

.adm-inv-edit-cell {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.adm-inv-count-input {
  width: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--t1);
  font-size: .875rem;
  padding: .35rem .5rem;
  outline: none;
  text-align: center;
  transition: border-color .2s;
}
.adm-inv-count-input:focus { border-color: var(--accent); }
.adm-inv-save-btn {
  background: var(--accent);
  color: #0a0a0b;
  border: none;
  border-radius: 5px;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .65rem;
  cursor: pointer;
  transition: background .15s;
}
.adm-inv-save-btn:hover:not(:disabled) { background: var(--accent-light); }
.adm-inv-save-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Highlight dirty rows */
.adm-inv-dirty { background: rgba(201,168,76,.04); }
.adm-inv-dirty td:first-child { border-left: 2px solid var(--accent); }

/* ── Alert/warn inline ── */
.adm-inv-alert { color: var(--error);   font-weight: 600; }
.adm-inv-warn  { color: var(--warning); font-weight: 600; }

/* ── Tab badges ── */
.adm-tab-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0 5px;
  margin-left: .3rem;
  line-height: 1.5;
}
.adm-tab-badge--err  { background: rgba(232,90,76,.18);  color: var(--error); }
.adm-tab-badge--warn { background: rgba(232,168,58,.18); color: var(--warning); }

/* ── Import button row ── */
.adm-import-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.adm-import-status {
  font-size: .8125rem;
  color: var(--t2);
  white-space: nowrap;
}

/* ── Responsive Phase 3 ── */
@media (max-width: 768px) {
  .adm-inv-slug { display: none; }
  .adm-inv-count-input { width: 60px; }
}

/* ═══════════════════════════════════════════════════
   PHASE 4 — Statistics & Analytics (.adm-st-*)
   ═══════════════════════════════════════════════════ */

/* ── KPI row ── */
.adm-st-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.adm-st-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}
.adm-st-kpi-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--t3);
  margin-bottom: .5rem;
}
.adm-st-kpi-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .25rem;
}
.adm-st-kpi-sub {
  font-size: .8125rem;
  color: var(--t2);
}

/* ── Generic stat card ── */
.adm-st-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.adm-st-card-head {
  display: flex;
  align-items: baseline;
  gap: .625rem;
  margin-bottom: .875rem;
}
.adm-st-card-title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--t1);
}
.adm-st-card-sub {
  font-size: .75rem;
  color: var(--t3);
}

/* ── SVG chart containers ── */
.adm-st-chart-scroll { overflow-x: auto; }
.adm-st-line-svg {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  min-height: 100px;
}
.adm-st-bar-svg {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  min-height: 100px;
}

/* ── Middle row: bar + donuts ── */
.adm-st-mid-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.adm-st-bar-card { margin-bottom: 0; }
.adm-st-donuts   { display: flex; flex-direction: column; gap: 1.25rem; }
.adm-st-donut-card { margin-bottom: 0; flex: 1; }

/* ── Donut chart ── */
.adm-st-donut-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.adm-st-donut {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adm-st-donut::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface);
}
.adm-st-donut-center {
  position: relative;
  z-index: 1;
  text-align: center;
}
.adm-st-donut-num {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.1;
}
.adm-st-donut-lbl {
  font-size: .625rem;
  color: var(--t3);
}

/* ── Legend ── */
.adm-st-legend {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .375rem;
  flex: 1;
  min-width: 0;
}
.adm-st-legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .775rem;
}
.adm-st-legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.adm-st-legend-name {
  flex: 1;
  color: var(--t2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.adm-st-legend-val {
  color: var(--t1);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ── Progress bar ── */
.adm-st-prog-bar {
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  height: 6px;
  overflow: hidden;
}
.adm-st-prog-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  min-width: 2px;
  transition: width .4s ease;
}

/* ── Responsive Phase 4 ── */
@media (max-width: 960px) {
  .adm-st-kpi-row  { grid-template-columns: repeat(2, 1fr); }
  .adm-st-mid-row  { grid-template-columns: 1fr; }
  .adm-st-donuts   { flex-direction: row; }
}
@media (max-width: 640px) {
  .adm-st-kpi-row  { grid-template-columns: 1fr; }
  .adm-st-donuts   { flex-direction: column; }
  .adm-st-kpi-val  { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════
   PHASE 5 — Customers (.adm-cust-*)
   ═══════════════════════════════════════════════════ */

.adm-cust-name {
  font-size: .875rem;
  color: var(--t1);
  font-weight: 500;
}

/* Type badges */
.adm-cust-type-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.adm-cust-type-registered {
  background: rgba(201,168,76,.14);
  color: var(--accent);
}
.adm-cust-type-guest {
  background: rgba(255,255,255,.07);
  color: var(--t3);
}

/* Avatar on detail page */
.adm-cust-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--f-serif);
}

/* Stats row on detail page */
.adm-cust-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.adm-cust-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
}
.adm-cust-stat-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: .25rem;
}
.adm-cust-stat-lbl {
  font-size: .75rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Back link */
.adm-back-link {
  font-size: .8125rem;
  color: var(--t2);
  text-decoration: none;
  transition: color .2s;
}
.adm-back-link:hover { color: var(--accent); }

/* ── Responsive Phase 5 ── */
@media (max-width: 768px) {
  .adm-cust-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   PHASE 6 — Categories (.adm-cat-*)
   ═══════════════════════════════════════════════════ */

.adm-cat-section-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .875rem;
}

.adm-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .875rem;
  margin-bottom: .5rem;
}

.adm-cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 2rem 1fr;
  grid-template-rows: auto auto;
  column-gap: .875rem;
  row-gap: .625rem;
  align-items: start;
}

.adm-cat-icon {
  font-size: 1.375rem;
  line-height: 1;
  grid-row: 1;
  grid-column: 1;
  padding-top: .1rem;
}

.adm-cat-info {
  grid-row: 1;
  grid-column: 2;
}

.adm-cat-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: .25rem;
}

.adm-cat-counts {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.adm-cat-count-main {
  font-size: .8125rem;
  color: var(--t2);
  font-variant-numeric: tabular-nums;
}

.adm-cat-count-pre {
  font-size: .75rem;
  color: var(--warning);
  background: rgba(232,168,58,.12);
  padding: .1rem .4rem;
  border-radius: 3px;
}

.adm-cat-bar-wrap {
  grid-row: 2;
  grid-column: 1 / -1;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  height: 4px;
  overflow: hidden;
}

.adm-cat-bar-fill {
  height: 100%;
  border-radius: 3px;
  min-width: 2px;
  opacity: .75;
  transition: width .4s ease;
}

.adm-cat-type-key {
  font-size: .775rem;
  color: var(--accent);
  background: rgba(201,168,76,.1);
  padding: .15rem .45rem;
  border-radius: 3px;
}

/* ── Responsive Phase 6 ── */
@media (max-width: 768px) {
  .adm-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .adm-cat-grid { grid-template-columns: 1fr; }
}

/* ── Skeleton / Shimmer ──────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skel-box,
.skel-line {
  background: linear-gradient(90deg,
    var(--surface) 25%,
    var(--surface-2) 50%,
    var(--surface) 75%
  );
  background-size: 1200px 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: 4px;
}
.pc-skel { pointer-events: none; }
.pcs-img { aspect-ratio: 3/4; width: 100%; border-radius: 4px; }
.pc-skel .pc-info { padding: .75rem .25rem; display: flex; flex-direction: column; gap: 6px; }

/* ── Shop empty state ────────────────────────────────────────── */
.shop-empty { text-align: center; padding: 5rem 1rem; }
.shop-empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .4; }
.shop-empty-text { color: var(--t2); margin-bottom: 1.5rem; }

/* ── Admin Content Editor ────────────────────────────────────── */
.adm-content-page { max-width: 780px; }
.adm-content-form { display: flex; flex-direction: column; gap: 1.5rem; }
.adm-content-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.adm-content-card-hd { display: flex; align-items: center; gap: .6rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.adm-content-card-hd h2 { font-size: .95rem; font-weight: 600; color: var(--t1); margin: 0; }
.adm-content-icon { font-size: 1.1rem; }
.adm-field-group { display: flex; flex-direction: column; gap: .4rem; }
.adm-field-row { display: flex; gap: .75rem; }
.adm-label { font-size: .78rem; font-weight: 500; color: var(--t2); text-transform: uppercase; letter-spacing: .04em; }
.adm-input { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: .5rem .75rem; color: var(--t1); font-size: .875rem; width: 100%; transition: border-color .15s; }
.adm-input:focus { outline: none; border-color: var(--accent); }
.adm-textarea { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: .5rem .75rem; color: var(--t1); font-size: .875rem; width: 100%; resize: vertical; font-family: inherit; transition: border-color .15s; }
.adm-textarea:focus { outline: none; border-color: var(--accent); }
.adm-stats-edit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.adm-trust-edit-item { border-top: 1px solid var(--border); padding-top: .75rem; display: flex; flex-direction: column; gap: .4rem; }
.adm-trust-edit-item:first-of-type { border-top: none; padding-top: 0; }
.adm-content-actions { display: flex; justify-content: flex-end; padding-top: .5rem; }
.adm-btn-save { background: var(--accent); color: #0a0a0b; border: none; border-radius: 4px; padding: .6rem 1.5rem; font-size: .875rem; font-weight: 600; cursor: pointer; transition: background .15s; }
.adm-btn-save:hover { background: var(--accent-l); }
@media (max-width: 600px) {
  .adm-stats-edit-grid { grid-template-columns: repeat(2, 1fr); }
  .adm-field-row { flex-direction: column; }
}
.adm-content-toast { padding: .75rem 1rem; border-radius: 6px; font-size: .875rem; font-weight: 500; }
.adm-content-toast.ok  { background: rgba(76,175,130,.12); border: 1px solid #4caf82; color: #4caf82; }
.adm-content-toast.err { background: rgba(232,90,76,.12);  border: 1px solid #e85a4c; color: #e85a4c; }

/* ── ADMIN GAMES PAGE ────────────────────────────────────────────── */
.adm-games-wrap { display: flex; flex-direction: column; gap: 1rem; }
.adm-games-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 768px) { .adm-games-cols { grid-template-columns: 1fr; } }

.adm-games-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.adm-games-panel-hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 1rem; background: var(--surface-2);
  font-size: .8125rem; font-weight: 600; color: var(--t2);
  border-bottom: 1px solid var(--border);
}
.adm-games-hint { font-weight: 400; color: var(--t3); font-size: .75rem; }
.adm-games-empty { padding: 1.5rem 1rem; text-align: center; color: var(--t3); font-size: .875rem; }

.adm-game-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem; border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.adm-game-row:last-child { border-bottom: none; }
.adm-game-row:hover { background: var(--surface-2); }
.adm-game-row.active { background: rgba(201,168,76,.04); }

.adm-game-icon { font-size: 1.25rem; width: 1.75rem; text-align: center; flex-shrink: 0; }
.adm-game-info { flex: 1; min-width: 0; }
.adm-game-label { font-size: .875rem; font-weight: 500; color: var(--t1); }
.adm-game-slug { font-size: .75rem; color: var(--t3); margin-top: .1rem; }

.adm-game-actions { display: flex; gap: .375rem; flex-shrink: 0; }
.adm-game-ord {
  width: 28px; height: 28px; border-radius: 4px; font-size: .875rem;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--t2);
  cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: center;
}
.adm-game-ord:hover:not(:disabled) { background: var(--border); color: var(--t1); }
.adm-game-ord:disabled { opacity: .3; cursor: not-allowed; }
.adm-game-rm {
  width: 28px; height: 28px; border-radius: 4px; font-size: .8rem;
  background: rgba(232,90,76,.1); border: 1px solid rgba(232,90,76,.25); color: #e85a4c;
  cursor: pointer; transition: all .15s;
}
.adm-game-rm:hover { background: rgba(232,90,76,.2); }
.adm-game-add {
  padding: .3rem .75rem; border-radius: 4px; font-size: .8125rem; font-weight: 600;
  background: rgba(76,175,130,.12); border: 1px solid rgba(76,175,130,.3); color: #4caf82;
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.adm-game-add:hover { background: rgba(76,175,130,.2); }

/* ── Image Uploader (admin) ───────────────────────────────── */
.img-uploader { display: flex; flex-direction: column; gap: .4rem; }
.img-uploader-body { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.img-uploader-preview {
  position: relative;
  width: 140px;
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.img-uploader-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.img-uploader-drop {
  width: 140px;
  height: 88px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--t3);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  font-size: .8rem;
  transition: border-color .2s, color .2s;
}
.img-uploader-drop:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.img-uploader-plus { font-size: 1.5rem; line-height: 1; }
.img-uploader-change {
  padding: .35rem .875rem;
  font-size: .78rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--t2);
  cursor: pointer;
  transition: border-color .15s;
}
.img-uploader-change:hover { border-color: var(--accent); color: var(--t1); }

/* ── About Landing Page ───────────────────────────────────── */

/* Hero — base */
.ab-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}
.ab-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.ab-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.ab-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #f0ede8 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ab-hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--t2);
  max-width: 520px;
  line-height: 1.6;
}
.ab-hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; }

/* Stagger fade-in */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ab-hero-inner .sk        { animation: hero-fade-up .6s ease both; animation-delay: .1s; }
.ab-hero-inner .ab-hero-title   { animation: hero-fade-up .7s ease both; animation-delay: .3s; }
.ab-hero-inner .ab-hero-tagline { animation: hero-fade-up .7s ease both; animation-delay: .5s; }
.ab-hero-inner .ab-hero-ctas    { animation: hero-fade-up .7s ease both; animation-delay: .7s; }

/* Layout 1 — Background */
.ab-hero--bg { padding: 0; min-height: 0; align-items: stretch; flex-direction: column; }
.ab-hero-bg-img {
  display: block; width: 100%; height: auto; position: relative; z-index: 0;
  animation: hero-zoom-out 9s ease-out forwards;
  transform-origin: center center;
}
@keyframes hero-zoom-out {
  from { transform: scale(1.05); }
  to   { transform: scale(0.95); }
}
.ab-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(10,10,11,.8) 35%, rgba(10,10,11,.25) 100%);
  pointer-events: none;
}
.ab-hero--bg .ab-hero-inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
}

/* Layout 2 & 3 — Split */
.ab-hero--split {
  display: flex;
  flex-direction: row;
  min-height: 70vh;
  padding: 0;
}
.ab-hero--split-rev { flex-direction: row-reverse; }
.ab-hero-split-img {
  flex: 0 0 50%;
  position: relative;
  min-height: 420px;
}
.ab-hero-split-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
}
.ab-hero-split-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem clamp(2rem, 5vw, 5rem);
}

/* Layout 4 — Slideshow */
.ab-hero--slideshow { padding: 5rem var(--px) 5rem; }
.ab-hero-slide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: slide-img-exit 4s ease forwards;
}
.ab-hero-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,.4);
}
.ab-hero-slide-text {
  opacity: 0;
  animation: slide-text-enter 1s ease forwards;
  animation-delay: 2.8s;
}
@keyframes slide-img-exit {
  0%   { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes slide-text-enter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Admin — layout picker */
.ab-layout-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.ab-layout-opt {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .15s;
}
.ab-layout-opt:hover { border-color: var(--accent-d); }
.ab-layout-opt.active { border-color: var(--accent); background: rgba(201,168,76,.06); }
.ab-layout-opt-label { font-size: .8rem; font-weight: 600; color: var(--t1); }
.ab-layout-opt-desc  { font-size: .72rem; color: var(--t3); line-height: 1.4; }
@media (max-width: 600px) { .ab-layout-picker { grid-template-columns: 1fr 1fr; } }

/* Split responsive */
@media (max-width: 768px) {
  .ab-hero--split, .ab-hero--split-rev { flex-direction: column; }
  .ab-hero-split-img { flex: none; width: 100%; min-height: 280px; }
  .ab-hero-split-content { padding: 3rem var(--px); }
}

/* Section header */
.ab-sec-hd { margin-bottom: 2.5rem; }
.ab-sec-hd .st { margin-top: .5rem; }

/* Story */
.ab-story-sec { background: var(--surface); }
.ab-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.ab-story-h { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.15; margin: .75rem 0 1.25rem; }
.ab-story-p { color: var(--t2); line-height: 1.8; font-size: 1rem; }
.ab-story-p + .ab-story-p { margin-top: 1rem; }

/* Story right column */
.ab-story-right { display: flex; flex-direction: column; gap: 2rem; }

/* Story slideshow carousel */
.ssc-wrap  { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.ssc-track { position: relative; width: 100%; height: 100%; }
.ssc-card  {
  position: absolute;
  top: 0; left: 10%;
  width: 80%; height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  will-change: transform, opacity;
}

/* Arrows */
.ssc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(10,10,11,.7);
  color: var(--t1); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.ssc-arrow:hover { background: var(--accent); border-color: var(--accent); color: #000; }
.ssc-arrow--l { left: 4px; }
.ssc-arrow--r { right: 4px; }

/* Dots */
.ssc-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.ssc-dot  { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.3); cursor: pointer; padding: 0; transition: background .25s, transform .25s; }
.ssc-dot.active { background: var(--accent); transform: scale(1.3); }
.ssc-dot:hover  { background: rgba(255,255,255,.6); }

/* Admin slideshow grid */
.adm-slideshow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* Legit */
.ab-legit-sec { }
.ab-legit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.ab-legit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: border-color .2s, transform .2s;
}
.ab-legit-card:hover { border-color: var(--accent-d); transform: translateY(-3px); }
.ab-legit-icon { font-size: 1.5rem; color: var(--accent); }
.ab-legit-title { font-size: .95rem; font-weight: 600; color: var(--t1); }
.ab-legit-desc { font-size: .85rem; color: var(--t2); line-height: 1.65; }

/* Contact */
.ab-contact-sec { background: var(--surface); }
.ab-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ab-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.ab-contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.ab-contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.ab-contact-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--t3); margin-bottom: .2rem; }
.ab-contact-val { font-size: .9rem; color: var(--t1); line-height: 1.6; }

.ab-social-row { display: flex; flex-wrap: wrap; gap: .625rem; padding-top: .5rem; }
.ab-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--t2);
  font-size: .825rem;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.ab-social-btn:hover { border-color: var(--accent); color: var(--accent); }

.ab-map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--bg);
}
.ab-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
  gap: 1rem;
  color: var(--t3);
  font-size: .875rem;
  text-align: center;
}
.ab-map-placeholder span { font-size: 2.5rem; }

/* Events */
.ab-events-sec { }
.ab-events-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.ab-event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  transition: border-color .2s;
}
.ab-event-card:hover { border-color: var(--accent-d); }
.ab-event-img-wrap {
  position: relative;
  flex: 0 0 260px;
  aspect-ratio: unset;
  min-height: 160px;
  border-radius: 0;
  overflow: hidden;
}
.ab-event-card-body {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
@media (max-width: 600px) {
  .ab-event-card { flex-direction: column; }
  .ab-event-img-wrap { flex: none; width: 100%; min-height: 180px; }
}
.ab-event-date { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); }
.ab-event-title { font-size: 1.05rem; font-weight: 600; color: var(--t1); }
.ab-event-loc { font-size: .8rem; color: var(--t2); }
.ab-event-desc { font-size: .85rem; color: var(--t2); line-height: 1.65; flex: 1; }
.ab-event-link { font-size: .825rem; color: var(--accent); text-decoration: none; margin-top: .25rem; font-weight: 500; }
.ab-event-link:hover { text-decoration: underline; }

/* Admin events */
.ab-ev-form { display: flex; flex-direction: column; gap: .75rem; }
.ab-ev-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
}
.ab-ev-row:last-child { border-bottom: none; }
.ab-ev-row-main { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; flex: 1; min-width: 0; }
.ab-ev-row-date { font-size: .75rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.ab-ev-row-title { font-size: .9rem; font-weight: 500; color: var(--t1); }
.ab-ev-row-loc { font-size: .775rem; color: var(--t3); }

/* Responsive */
@media (max-width: 768px) {
  .ab-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab-contact-grid { grid-template-columns: 1fr; }
  .ab-map-wrap { min-height: 240px; }
  .adm-slideshow-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   LANDING PAGE — Scrollytelling
═══════════════════════════════════════ */
.ld-page { overflow-x: hidden; }

/* ── Shared sticky shell ── */
.ld-sticky-shell {
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  display: flex; align-items: center;
  padding: 3rem clamp(1.5rem,5vw,5rem);
  overflow: hidden;
}

/* ── Section 1: Hero ── */
.ld-hero-scroll { position: relative; height: 160vh; }
.ld-hero-sticky {
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
}
.ld-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center center; will-change: transform;
}
.ld-hero-img--empty { background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%); }
.ld-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(10,10,11,.82) 30%, rgba(10,10,11,.15) 100%);
  will-change: opacity;
}
/* Bottom fade to blend into next section */
.ld-hero-sticky::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; z-index: 3;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.ld-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 1.5rem;
  padding: 2rem clamp(1.5rem,5vw,5rem);
  will-change: opacity, transform;
}
.ld-hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem); line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(135deg, #f0ede8 40%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ld-hero-tagline { font-size: clamp(1rem,2.2vw,1.15rem); color: var(--t2); max-width: 480px; line-height: 1.7; }
.ld-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

@keyframes ld-fade-up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.ld-fade-1 { animation: ld-fade-up .55s ease both .15s; }
.ld-fade-2 { animation: ld-fade-up .65s ease both .35s; }
.ld-fade-3 { animation: ld-fade-up .65s ease both .55s; }
.ld-fade-4 { animation: ld-fade-up .65s ease both .75s; }

/* ── Section 2: Story ── */
.ld-story-scroll { position: relative; height: 240vh; background: var(--surface); }
.ld-story-sticky {
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 3rem clamp(1.5rem,5vw,5rem);
  overflow: hidden;
}
/* Top fade from hero */
.ld-story-scroll::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px; z-index: 10;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}
.ld-story-left { display: flex; flex-direction: column; }
.ld-story-kicker { margin-bottom: .5rem; will-change: opacity, transform; }
.ld-story-h { font-size: clamp(1.75rem,4vw,2.6rem); line-height: 1.2; margin: .75rem 0 1.5rem; will-change: opacity, transform; }
.ld-story-p { color: var(--t2); line-height: 1.85; font-size: .975rem; will-change: opacity, transform; }
.ld-story-p + .ld-story-p { margin-top: 1.1rem; }

.ld-story-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: .875rem;
  align-content: center;
}
.ld-slide { border-radius: 10px; overflow: hidden; box-shadow: 0 12px 32px rgba(0,0,0,.5); will-change: opacity, transform; }
.ld-slide img { display: block; width: 100%; height: 190px; object-fit: cover; }
.ld-sl-0 { margin-top: -16px; }
.ld-sl-1 { margin-top:  16px; }
.ld-sl-2 { margin-top: -16px; }
.ld-sl-3 { margin-top:  16px; }

/* ── Section 3: Legit ── */
.ld-legit-scroll { position: relative; height: 200vh; background: var(--bg); }
.ld-legit-sticky {
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem clamp(1.5rem,5vw,5rem);
}
.ld-legit-hd { margin-bottom: 2.5rem; will-change: opacity, transform; }
.ld-legit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.ld-legit-grid .ab-legit-card {
  border-top: 2px solid var(--accent);
  background: var(--surface);
  padding: 1.75rem; border-radius: 6px;
  will-change: opacity, transform;
}

/* ── Section 4: Contact ── */
.ld-contact-scroll { position: relative; height: 160vh; background: var(--surface); }
.ld-contact-sticky {
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem clamp(1.5rem,5vw,5rem);
}
.ld-contact-hd { margin-bottom: 2rem; will-change: opacity, transform; }
.ld-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.ld-contact-info { will-change: opacity, transform; }
.ld-contact-map {
  will-change: opacity, transform;
  min-height: 380px; border-radius: 10px;
  overflow: hidden; border: 1px solid var(--border);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ld-hero-title { font-size: clamp(2.5rem,10vw,3.5rem); }
  .ld-story-sticky  { grid-template-columns: 1fr; }
  .ld-story-right   { display: none; }
  .ld-legit-grid    { grid-template-columns: 1fr; }
  .ld-contact-grid  { grid-template-columns: 1fr; }
  .ld-contact-map   { min-height: 240px; }
}

/* ══════════════════════════════════════════════════
   LANDING V2 — New sections
   ══════════════════════════════════════════════════ */

/* ── Hero Slideshow ─────────────────────────────── */
.ld2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
/* Slide Layers (Cross-fade & Ken Burns) */
.ld2-slide-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  overflow: hidden;
}
.ld2-slide-layer--in { opacity: 1; z-index: 1; }
.ld2-slide-layer--out { opacity: 1; z-index: 0; }
.ld2-slide-layer--in.fading { opacity: 0; }

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

@keyframes ken-burns {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.ld2-slide-img--kb {
  animation: ken-burns 6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.ld2-slide-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(10,10,11,0.95) 0%, rgba(10,10,11,0.85) 30%, rgba(10,10,11,0.4) 60%, transparent 100%),
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(201,168,76,.06) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}
.ld2-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem clamp(1.5rem,5vw,5rem) 8rem;
  max-width: 780px;
}
.ld2-hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #f0ede8 35%, var(--accent-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ld2-hero-body {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--t2);
  max-width: 500px;
  line-height: 1.75;
}
.ld2-hero-pills { display: flex; gap: .625rem; flex-wrap: wrap; }
.ld2-hero-ctas  { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats row (slide 3) */
.ld2-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.ld2-stat {}
.ld2-stat-n {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--accent);
}
.ld2-stat-l {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t2);
  margin-top: .25rem;
}

/* Trust list (slide 4) */
.ld2-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ld2-trust-list li {
  font-size: .95rem;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: .625rem;
}

/* Progress bar */
.ld2-prog-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.08);
  z-index: 10;
}
.ld2-prog-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  animation: ld2-prog 5.5s linear forwards;
}
@keyframes ld2-prog { from { width: 0 } to { width: 100% } }

/* Dots */
.ld2-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.ld2-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.ld2-dot.active { background: var(--accent); transform: scale(1.4); }
.ld2-dot:hover  { background: rgba(255,255,255,.55); }

/* Arrows */
.ld2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,11,.6);
  backdrop-filter: blur(8px);
  color: var(--t1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.ld2-arrow:hover { background: var(--accent); border-color: var(--accent); color: #000; transform: translateY(-50%) scale(1.08); }
.ld2-arrow--l { left: 1.5rem; }
.ld2-arrow--r { right: 1.5rem; }

/* Slide text animations */
@keyframes ld-fade-up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.ld-fade-1 { animation: ld-fade-up .5s ease both .1s; }
.ld-fade-2 { animation: ld-fade-up .6s ease both .28s; }
.ld-fade-3 { animation: ld-fade-up .6s ease both .46s; }
.ld-fade-4 { animation: ld-fade-up .6s ease both .64s; }

/* ── News Section ───────────────────────────────── */
.ld2-news-sec { background: var(--surface); }
.ld2-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ld2-news-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.ld2-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.ld2-news-img { aspect-ratio: 16/9; overflow: hidden; }
.ld2-news-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ld2-news-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .625rem; flex: 1; }
.ld2-news-tag {
  display: inline-flex;
  align-items: center;
  padding: .2rem .625rem;
  border: 1px solid;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  width: fit-content;
}
.ld2-news-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.45;
}
.ld2-news-excerpt { font-size: .84rem; color: var(--t2); line-height: 1.65; flex: 1; }
.ld2-news-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.ld2-news-date   { font-size: .72rem; color: var(--t3); }
.ld2-news-read   { font-size: .72rem; color: var(--accent); font-weight: 500; }

/* ── Events Section ─────────────────────────────── */
.ld2-events-sec { background: var(--bg); }
.ld2-ev-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ld2-ev-scroll::-webkit-scrollbar { height: 4px; }
.ld2-ev-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 4px; }
.ld2-ev-scroll::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }
.ld2-ev-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.ld2-ev-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-3px); }
.ld2-ev-img { aspect-ratio: 16/9; overflow: hidden; }
.ld2-ev-img img { width: 100%; height: 100%; object-fit: cover; }
.ld2-ev-img--empty { aspect-ratio: 16/9; }
.ld2-ev-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.ld2-ev-status {}
.ld2-ev-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .625rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.ld2-ev-badge--up   { background: rgba(232,200,58,.12); color: #E8C83A; }
.ld2-ev-badge--live { background: rgba(76,175,130,.12); color: #4caf82; }
.ld2-ev-title { font-size: 1rem; font-weight: 600; color: var(--t1); line-height: 1.4; }
.ld2-ev-loc   { font-size: .8rem; color: var(--t2); }
.ld2-ev-desc  { font-size: .84rem; color: var(--t2); line-height: 1.65; flex: 1; }
.ld2-ev-countdown {
  display: flex;
  gap: .75rem;
  padding: .875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: .25rem;
}
.ld2-ev-cd-unit { display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.ld2-ev-cd-n {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.ld2-ev-cd-l { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; color: var(--t3); }
.ld2-ev-link { font-size: .82rem; color: var(--accent); font-weight: 500; margin-top: .25rem; }
.ld2-ev-link:hover { text-decoration: underline; }

/* Empty state */
.ld2-ev-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.ld2-ev-empty-icon  { font-size: 3rem; margin-bottom: 1rem; opacity: .4; }
.ld2-ev-empty-title { font-size: 1.05rem; font-weight: 600; color: var(--t1); margin-bottom: .5rem; }
.ld2-ev-empty-body  { font-size: .875rem; color: var(--t2); margin-bottom: 1.5rem; }

/* ── Store Location ─────────────────────────────── */
.ld2-store-sec { background: var(--surface); }
.ld2-store-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.ld2-store-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ld2-open-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid;
  width: fit-content;
}
.ld2-open-badge--open   { background: rgba(76,175,130,.1); border-color: rgba(76,175,130,.3); color: #4caf82; }
.ld2-open-badge--closed { background: rgba(232,90,76,.08); border-color: rgba(232,90,76,.25); color: #e85a4c; }
.ld2-open-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:.35; } }
.ld2-hours { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem 1.5rem; }
.ld2-hours-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .625rem; }
.ld2-hours-val { font-size: .9rem; color: var(--t1); line-height: 1.8; }
.ld2-directions-btn { margin-top: .5rem; }

/* ── Contact Section ────────────────────────────── */
.ld2-contact-sec { background: var(--bg); }
.ld2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.ld2-contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
.ld2-contact-intro { font-size: .95rem; color: var(--t2); line-height: 1.75; }
.ld2-contact-intro strong { color: var(--accent); }
.ld2-contact-quick {}

/* Contact Form */
.ld2-cf-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ld2-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ld2-cf-field { display: flex; flex-direction: column; gap: .375rem; }
.ld2-cf-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--t3); }
.ld2-cf-input,
.ld2-cf-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .75rem 1rem;
  color: var(--t1);
  font-size: .9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.ld2-cf-input:focus,
.ld2-cf-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.ld2-cf-textarea { resize: vertical; min-height: 130px; }
.ld2-cf-submit { align-self: flex-start; }
.ld2-cf-toast {
  padding: .875rem 1.125rem;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 500;
  border: 1px solid;
}
.ld2-cf-toast--ok  { background: rgba(76,175,130,.1); border-color: rgba(76,175,130,.3); color: #4caf82; }
.ld2-cf-toast--err { background: rgba(232,90,76,.08); border-color: rgba(232,90,76,.25); color: #e85a4c; }

/* ── Responsive Landing V2 ───────────────────────── */
@media (max-width: 900px) {
  .ld2-news-grid { grid-template-columns: 1fr 1fr; }
  .ld2-store-grid { grid-template-columns: 1fr; }
  .ld2-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .ld2-hero-content { padding: 2.5rem 1.25rem 7rem; }
  .ld2-news-grid { grid-template-columns: 1fr; }
  .ld2-arrow { display: none; }
  .ld2-cf-row { grid-template-columns: 1fr; }
  .ld2-stats-row { gap: 1.25rem; }
}
