/* ============================================================
   Smart Lot Electronics — Booth Theme
   Black + electric blue. Digital swap-meet. LED energy.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; font-family: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

:root {
  --bg: #02050C;
  --bg-2: #050913;
  --card: #0A0F1E;
  --card-hi: #111830;
  --line: rgba(0, 217, 255, 0.16);
  --line-hi: rgba(0, 217, 255, 0.42);
  --blue: #00D9FF;
  --blue-deep: #0066FF;
  --blue-soft: #4DA8FF;
  --white: #FFFFFF;
  --ink-soft: #C3CEE3;
  --gray: #8492AD;
  --gray-2: #5C6883;
  --yellow: #FFD60A;
  --red: #FF3B6B;

  --display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --glow-sm: 0 0 12px rgba(0, 217, 255, 0.25);
  --glow-md: 0 0 24px rgba(0, 217, 255, 0.35), 0 0 60px rgba(0, 102, 255, 0.18);
  --glow-lg: 0 0 40px rgba(0, 217, 255, 0.55), 0 0 100px rgba(0, 102, 255, 0.25);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --max: 1320px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* Circuit grid backdrop — sits behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 217, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 217, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
}
main, header, footer { position: relative; z-index: 1; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--display); color: var(--white); letter-spacing: -0.02em; line-height: 1.02; font-weight: 700; }
.h-display { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.95; font-weight: 700; letter-spacing: -0.04em; }
.h-1 { font-size: clamp(2.25rem, 5vw, 4rem); }
.h-2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0.4rem 0.85rem;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  text-shadow: 0 0 12px rgba(0, 217, 255, 0.6);
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--blue); border-radius: 999px; box-shadow: 0 0 8px var(--blue); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.5; transform: scale(0.85); } }

.glow-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #79DBFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(0, 217, 255, 0.45);
}
.blue { color: var(--blue); text-shadow: 0 0 20px rgba(0, 217, 255, 0.55); }
.muted { color: var(--gray); }
.lede { color: var(--ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 56ch; line-height: 1.55; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* LED divider — glowing horizontal line */
.led-bar {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 50%, transparent);
  box-shadow: 0 0 12px var(--blue), 0 0 24px rgba(0, 217, 255, 0.4);
  margin: 0 auto;
  max-width: 80%;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(2, 5, 12, 0.7);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.is-scrolled { background: rgba(2, 5, 12, 0.9); border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: 8px;
  display: grid; place-items: center;
  box-shadow: var(--glow-sm), inset 0 0 12px rgba(255,255,255,0.15);
  color: var(--bg);
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--white); letter-spacing: -0.01em; line-height: 1; }
.brand-name span { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em; color: var(--blue); font-weight: 500; margin-top: 3px; text-transform: uppercase; }

.nav-links { display: none; gap: 0.2rem; }
@media (min-width: 900px) { .nav-links { display: inline-flex; } }
.nav-links a {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); background: rgba(0,217,255,0.08); }
.nav-links a.is-active { color: var(--blue); background: rgba(0,217,255,0.1); }

.nav-tools { display: inline-flex; align-items: center; gap: 0.5rem; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(10, 15, 30, 0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.icon-btn:hover { color: var(--blue); border-color: var(--line-hi); box-shadow: var(--glow-sm); }
.icon-btn .count {
  position: absolute; top: -3px; right: -3px;
  background: var(--blue); color: var(--bg);
  font-family: var(--mono); font-size: 0.62rem; font-weight: 700;
  padding: 2px 6px; border-radius: 999px;
  box-shadow: 0 0 8px var(--blue);
}
.nav-burger { display: inline-grid; }
@media (min-width: 900px) { .nav-burger { display: none; } }

.mobile-panel {
  position: fixed; inset: 0; z-index: 70;
  background: var(--bg);
  padding: 5rem var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.mobile-panel.is-open { transform: translateY(0); }
.mobile-panel a {
  font-family: var(--display); font-size: 1.85rem; font-weight: 700;
  color: var(--white); padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-panel .close { position: absolute; top: 1rem; right: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.3s, border-color 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--bg);
  box-shadow: var(--glow-sm), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { box-shadow: var(--glow-md), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost {
  background: rgba(0,217,255,0.04);
  color: var(--blue);
  border-color: var(--line-hi);
}
.btn-ghost:hover { background: rgba(0,217,255,0.1); box-shadow: var(--glow-sm); }
.btn-dark { background: var(--card); color: var(--white); border-color: var(--line); }
.btn-dark:hover { border-color: var(--line-hi); box-shadow: var(--glow-sm); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 6rem); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; left: 50%; top: -20%;
  width: 90vw; height: 90vw; max-width: 1200px; max-height: 1200px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 102, 255, 0.32), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 1.5rem 0;
}
.hero h1 .line { display: block; }
.hero h1 .line.gradient {
  background: linear-gradient(90deg, var(--blue) 0%, var(--white) 50%, var(--blue) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer { 50% { background-position: 100% 0; } }

.hero-sub { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 52ch; margin-bottom: 2rem; }
.hero-cta { display: inline-flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-meta {
  margin-top: 3rem;
  display: grid; gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 560px;
}
.hero-meta > div { background: var(--card); padding: 1.25rem; }
.hero-meta .val { font-family: var(--display); font-size: clamp(1.3rem, 2.2vw, 1.65rem); color: var(--blue); font-weight: 700; line-height: 1; }
.hero-meta .lbl { display: block; margin-top: 0.4rem; font-size: 0.75rem; color: var(--gray); }

/* Booth visual — stack of glowing product chips */
.booth {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
  display: grid; place-items: center;
}
.booth-frame {
  position: absolute; inset: 0;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(0, 217, 255, 0.08) 0%, rgba(0, 102, 255, 0.04) 100%);
  box-shadow: var(--glow-md), inset 0 0 40px rgba(0, 217, 255, 0.06);
}
.booth-frame::before, .booth-frame::after {
  content: ''; position: absolute;
  height: 1px; left: 10%; right: 10%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 8px var(--blue);
}
.booth-frame::before { top: 0; }
.booth-frame::after { bottom: 0; }
.booth-inner { position: relative; padding: 2rem; display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; width: 100%; }
.booth-chip {
  background: var(--card-hi);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.booth-chip:hover { border-color: var(--line-hi); box-shadow: var(--glow-sm); transform: translateY(-2px); }
.booth-chip svg { width: 40px; height: 40px; color: var(--blue); margin: 0 auto 0.6rem; filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.5)); }
.booth-chip .ttl { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); }
.booth-chip .price { font-family: var(--display); color: var(--white); font-size: 1.15rem; font-weight: 700; margin-top: 0.3rem; }
.booth-tag {
  position: absolute; top: -14px; right: -14px;
  background: var(--yellow); color: var(--bg);
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  padding: 0.4rem 0.7rem; border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 214, 10, 0.45);
  transform: rotate(8deg);
}

/* ---------- Marquee LED ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  background: rgba(0, 217, 255, 0.025);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.ticker-track .pip { color: var(--blue); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head .top { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: end; }
.section-head h2 { max-width: 18ch; margin-top: 0.9rem; }
.section-head p { max-width: 50ch; color: var(--ink-soft); }

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  position: relative;
  background: linear-gradient(180deg, var(--card) 0%, rgba(10, 15, 30, 0.4) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  min-height: 180px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(0,217,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-card:hover { border-color: var(--line-hi); box-shadow: var(--glow-sm); transform: translateY(-3px); }
.cat-card:hover::before { opacity: 1; }
.cat-card svg { width: 32px; height: 32px; color: var(--blue); filter: drop-shadow(0 0 6px rgba(0, 217, 255, 0.4)); position: relative; }
.cat-card .name { font-family: var(--display); font-weight: 700; color: var(--white); font-size: 1.05rem; position: relative; }
.cat-card .meta { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: auto; position: relative; }
.cat-card .arrow {
  position: absolute; bottom: 1.1rem; right: 1.1rem;
  color: var(--blue);
  opacity: 0; transform: translateX(-5px);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ---------- Bonus reward tiers ---------- */
.tiers {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-hi); box-shadow: var(--glow-md); }
.tier::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.4;
}
.tier.featured {
  background: linear-gradient(180deg, rgba(0,217,255,0.08) 0%, var(--card) 60%);
  border-color: var(--line-hi);
  box-shadow: var(--glow-sm);
}
.tier.featured::before { opacity: 1; box-shadow: 0 0 12px var(--blue); }
.tier .tier-num {
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
}
.tier .tier-title { font-family: var(--display); font-size: 1.75rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; line-height: 1.05; }
.tier .tier-reward {
  background: rgba(0, 217, 255, 0.06);
  border: 1px dashed var(--line-hi);
  border-radius: var(--r-md);
  padding: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.tier .tier-reward svg { color: var(--blue); width: 24px; height: 24px; filter: drop-shadow(0 0 6px rgba(0, 217, 255, 0.5)); flex-shrink: 0; }
.tier .tier-reward strong { color: var(--white); font-family: var(--display); font-weight: 600; font-size: 0.98rem; display: block; }
.tier .tier-reward small { font-size: 0.78rem; color: var(--gray); display: block; margin-top: 0.15rem; }
.tier .badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--yellow); color: var(--bg);
  font-family: var(--mono); font-size: 0.65rem; font-weight: 700;
  padding: 0.3rem 0.55rem; border-radius: 999px;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255, 214, 10, 0.4);
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.prod {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.prod:hover { transform: translateY(-4px); border-color: var(--line-hi); box-shadow: var(--glow-md); }
.prod-media {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--card-hi) 0%, var(--bg-2) 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.prod-media::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 130%, rgba(0,217,255,0.18), transparent 50%);
  pointer-events: none;
}
.prod-media svg { width: 50%; height: 50%; color: var(--blue); filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.4)); position: relative; z-index: 1; }
.prod-tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: var(--yellow); color: var(--bg);
  font-family: var(--mono); font-size: 0.66rem; font-weight: 700;
  padding: 0.3rem 0.55rem; border-radius: 999px;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2;
}
.prod-tag.blue { background: var(--blue); color: var(--bg); box-shadow: 0 0 12px var(--blue); }
.prod-tag.red { background: var(--red); color: var(--white); }
.prod-body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.prod-cat { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--gray); text-transform: uppercase; }
.prod-name { font-family: var(--display); font-weight: 600; color: var(--white); font-size: 1.02rem; line-height: 1.2; letter-spacing: -0.005em; }
.prod-foot { margin-top: auto; padding-top: 0.8rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.prod-price { display: flex; align-items: baseline; gap: 0.5rem; }
.prod-price .now { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--blue); }
.prod-price .was { font-family: var(--mono); font-size: 0.8rem; color: var(--gray); text-decoration: line-through; }
.prod-add {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid var(--line-hi);
  color: var(--blue);
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.prod-add:hover { background: var(--blue); color: var(--bg); box-shadow: var(--glow-sm); transform: scale(1.05); }
.prod-add svg { width: 18px; height: 18px; }

/* ---------- Why us / trust grid ---------- */
.why-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.why:hover { border-color: var(--line-hi); box-shadow: var(--glow-sm); transform: translateY(-2px); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid var(--line-hi);
  display: grid; place-items: center;
  color: var(--blue);
}
.why-icon svg { width: 24px; height: 24px; filter: drop-shadow(0 0 6px rgba(0, 217, 255, 0.5)); }
.why h3 { color: var(--white); font-size: 1.1rem; font-weight: 600; letter-spacing: -0.005em; }
.why p { color: var(--gray); font-size: 0.92rem; line-height: 1.5; }

/* ---------- Social / follow band ---------- */
.follow {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.12) 0%, rgba(0, 102, 255, 0.08) 100%);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-md);
}
.follow::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.18), transparent 50%);
  pointer-events: none;
  filter: blur(20px);
}
.follow * { position: relative; }
.follow h2 { color: var(--white); margin-bottom: 1rem; }
.follow p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 2rem; }
.socials { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.social {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line-hi);
  display: grid; place-items: center;
  color: var(--blue);
  transition: background 0.2s, color 0.2s, box-shadow 0.3s, transform 0.2s;
}
.social:hover { background: var(--blue); color: var(--bg); box-shadow: var(--glow-md); transform: translateY(-3px); }
.social svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.foot {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  margin-top: 4rem;
  position: relative;
}
.foot::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 12px var(--blue);
}
.foot-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot h4 { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; font-weight: 500; }
.foot a { color: var(--ink-soft); font-size: 0.92rem; padding: 0.25rem 0; display: inline-block; transition: color 0.2s; }
.foot a:hover { color: var(--blue); }
.foot ul { display: flex; flex-direction: column; gap: 0.15rem; }
.foot-brand p { max-width: 38ch; color: var(--gray); font-size: 0.94rem; margin-top: 1rem; }
.foot-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.foot-bottom .tag { color: var(--blue); }

/* ---------- Cart drawer ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(420px, 100vw);
  background: var(--card);
  border-left: 1px solid var(--line-hi);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--display); font-size: 1.35rem; color: var(--white); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.drawer-empty { color: var(--gray); padding: 3rem 0; text-align: center; }
.drawer-empty p { margin-bottom: 1rem; }
.cart-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-thumb { aspect-ratio: 1; background: var(--card-hi); border-radius: var(--r-md); display: grid; place-items: center; color: var(--blue); }
.cart-item strong { font-family: var(--display); font-weight: 600; color: var(--white); font-size: 0.95rem; }
.cart-item small { display: block; color: var(--gray); font-size: 0.78rem; margin-top: 0.15rem; }
.cart-item .qty { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.45rem; font-family: var(--mono); font-size: 0.78rem; color: var(--ink-soft); }
.cart-item .qty button { width: 24px; height: 24px; border-radius: 999px; background: var(--card-hi); color: var(--blue); display: grid; place-items: center; }
.cart-item .qty button:hover { background: var(--blue); color: var(--bg); }
.cart-item .line-total { font-family: var(--display); font-weight: 700; color: var(--blue); font-size: 1rem; }
.drawer-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 0.85rem; }
.drawer-foot .total { display: flex; justify-content: space-between; align-items: baseline; }
.drawer-foot .total strong { font-family: var(--display); font-size: 1.4rem; color: var(--blue); }
.drawer-foot small { color: var(--gray); font-size: 0.8rem; }
.drawer-foot .btn { width: 100%; justify-content: center; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.reveal.d-3 { transition-delay: 0.24s; }

/* ---------- EVERY PURCHASE WINS banner ---------- */
.win-banner {
  background: var(--card);
  border: 2px solid var(--blue);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  box-shadow: var(--glow-md), inset 0 0 60px rgba(0, 217, 255, 0.05);
  overflow: hidden;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.win-banner::before, .win-banner::after {
  content: ''; position: absolute; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 12px var(--blue);
}
.win-banner::before { top: 0; }
.win-banner::after { bottom: 0; }
.win-banner h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
}
.win-banner h2 .win { color: var(--blue); text-shadow: 0 0 30px rgba(0, 217, 255, 0.7); }
.win-pillars {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 720px) {
  .win-pillars { grid-template-columns: repeat(3, 1fr); }
  .win-pillar + .win-pillar { border-left: 1px solid var(--line-hi); }
}
.win-pillar { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; padding: 0 1rem; }
.win-pillar .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid var(--line-hi);
  display: grid; place-items: center;
  color: var(--blue);
  box-shadow: var(--glow-sm);
}
.win-pillar .icon svg { width: 30px; height: 30px; filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6)); }
.win-pillar strong { font-family: var(--display); font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--white); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.win-pillar small { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--mono); }

/* ---------- Tier color variants ---------- */
.tier.tier-blue { border-color: rgba(0, 217, 255, 0.4); }
.tier.tier-blue::before { background: linear-gradient(90deg, transparent, var(--blue), transparent); box-shadow: 0 0 12px var(--blue); opacity: 1; }
.tier.tier-blue .tier-num { color: var(--blue); }

.tier.tier-purple { border-color: rgba(180, 100, 255, 0.4); }
.tier.tier-purple::before { background: linear-gradient(90deg, transparent, #B464FF, transparent); box-shadow: 0 0 12px #B464FF; opacity: 1; }
.tier.tier-purple .tier-num { color: #C99CFF; }
.tier.tier-purple .tier-reward { background: rgba(180, 100, 255, 0.06); border-color: rgba(180, 100, 255, 0.42); }
.tier.tier-purple .tier-reward svg { color: #C99CFF; filter: drop-shadow(0 0 6px rgba(180, 100, 255, 0.55)); }
.tier.tier-purple.featured { background: linear-gradient(180deg, rgba(180,100,255,0.1) 0%, var(--card) 60%); box-shadow: 0 0 24px rgba(180, 100, 255, 0.3); }
.tier.tier-purple .badge { background: #B464FF; color: var(--white); box-shadow: 0 0 16px rgba(180, 100, 255, 0.55); }

.tier.tier-gold { border-color: rgba(255, 200, 60, 0.4); }
.tier.tier-gold::before { background: linear-gradient(90deg, transparent, #FFC83C, transparent); box-shadow: 0 0 12px #FFC83C; opacity: 1; }
.tier.tier-gold .tier-num { color: #FFD96B; }
.tier.tier-gold .tier-reward { background: rgba(255, 200, 60, 0.06); border-color: rgba(255, 200, 60, 0.42); }
.tier.tier-gold .tier-reward svg { color: #FFD96B; filter: drop-shadow(0 0 6px rgba(255, 200, 60, 0.55)); }

/* ---------- Bonus items strip inside tier ---------- */
.bonus-items {
  display: grid; gap: 0.45rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.25rem;
}
.bonus-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.85rem 0.4rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.bonus-item svg { width: 26px; height: 26px; color: var(--blue); }
.bonus-item span { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); line-height: 1.15; }
.tier-purple .bonus-item svg { color: #C99CFF; }
.tier-gold .bonus-item svg { color: #FFD96B; }

/* ---------- Anti-flash for JS-injected layout ---------- */
body[data-layout]:not([data-layout="ready"]) .nav,
body[data-layout]:not([data-layout="ready"]) .foot { visibility: hidden; }

/* ---------- Page header (inner pages) ---------- */
.page-head {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-head .crumbs { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 1.25rem; }
.page-head .crumbs a:hover { color: var(--blue); }
.page-head .crumbs span { margin: 0 0.55rem; opacity: 0.5; }
.page-head h1 { font-family: var(--display); font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 700; color: var(--white); letter-spacing: -0.025em; max-width: 18ch; line-height: 1; }
.page-head p { margin-top: 1.25rem; color: var(--ink-soft); max-width: 60ch; font-size: clamp(1rem, 1.3vw, 1.15rem); }

/* ---------- Filter bar ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding: clamp(1.5rem, 3vw, 2rem) 0 1rem;
}
.chip {
  padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink-soft);
  font-size: 0.88rem;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.chip:hover { color: var(--white); border-color: var(--line-hi); }
.chip.is-active { background: var(--blue); color: var(--bg); border-color: var(--blue); box-shadow: var(--glow-sm); }

.results-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray);
}
.results-bar [data-count] { color: var(--blue); }
.results-bar select {
  background: var(--card); color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.9rem; font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
}

/* ---------- PDP ---------- */
.pdp { display: grid; gap: 2.5rem; padding-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.15fr 1fr; gap: 3.5rem; } }
.pdp-gallery { display: grid; gap: 0.75rem; }
.pdp-hero {
  position: relative;
  background: linear-gradient(135deg, var(--card-hi) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-lg);
  aspect-ratio: 1;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--glow-sm);
}
.pdp-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 130%, rgba(0,217,255,0.25), transparent 55%);
}
.pdp-hero svg { width: 55%; height: 55%; color: var(--blue); filter: drop-shadow(0 0 18px rgba(0,217,255,0.7)); position: relative; z-index: 1; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.pdp-thumb {
  background: var(--card-hi);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  aspect-ratio: 1;
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pdp-thumb:hover { border-color: var(--line-hi); box-shadow: var(--glow-sm); transform: translateY(-2px); }
.pdp-thumb svg { width: 60%; height: 60%; color: var(--blue); opacity: 0.85; }

.pdp-info { display: flex; flex-direction: column; gap: 1.25rem; }
.pdp-info .sub { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.pdp-info h1 { font-family: var(--display); font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1.05; }
.pdp-price {
  font-family: var(--display); font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 700;
  display: flex; align-items: baseline; gap: 0.85rem; color: var(--blue);
  text-shadow: 0 0 18px rgba(0,217,255,0.4);
}
.pdp-price s { color: var(--gray); font-size: 0.55em; text-shadow: none; }
.pdp-price .save { background: var(--yellow); color: var(--bg); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.55rem; border-radius: 999px; text-shadow: none; font-weight: 700; }

.pdp-info ul.bullets { display: grid; gap: 0.6rem; padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pdp-info ul.bullets li { padding-left: 1.5rem; position: relative; color: var(--ink-soft); font-size: 0.96rem; }
.pdp-info ul.bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

.pdp-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.qty-stepper { display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid var(--line-hi); border-radius: 999px; padding: 0.45rem 0.55rem; background: var(--card); }
.qty-stepper button { width: 28px; height: 28px; border-radius: 999px; background: rgba(0,217,255,0.08); color: var(--blue); display: grid; place-items: center; transition: background 0.2s, color 0.2s; }
.qty-stepper button:hover { background: var(--blue); color: var(--bg); }
.qty-stepper span { font-family: var(--mono); min-width: 1.8ch; text-align: center; color: var(--white); font-weight: 700; }

.pdp-trust { display: grid; gap: 0.65rem; margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.pdp-trust div { display: flex; align-items: center; gap: 0.7rem; font-size: 0.92rem; color: var(--ink-soft); }
.pdp-trust svg { color: var(--blue); flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(0,217,255,0.5)); }

.pdp-why {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem;
}
.pdp-why h3 { font-family: var(--display); font-size: 1.05rem; color: var(--white); margin-bottom: 0.85rem; font-weight: 600; }
.pdp-why ul { display: grid; gap: 0.6rem; }
.pdp-why li { padding-left: 1.5rem; position: relative; color: var(--ink-soft); font-size: 0.92rem; }
.pdp-why li::before { content: '◆'; position: absolute; left: 0; color: var(--blue); }

/* FAQ accordion */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-weight: 600; color: var(--white);
  font-size: 1rem; padding: 0.4rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--blue); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; padding-top: 0.6rem; }

/* Mobile sticky purchase bar */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(2, 5, 12, 0.92);
  border-top: 1px solid var(--line-hi);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem var(--gutter);
  display: flex; align-items: center; gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}
.sticky-buy.is-on { transform: translateY(0); }
@media (min-width: 900px) { .sticky-buy { display: none; } }
.sticky-buy .info { flex: 1; min-width: 0; }
.sticky-buy .info strong { display: block; font-family: var(--display); color: var(--white); font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .info small { color: var(--blue); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; font-weight: 700; }
.sticky-buy .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }

/* ---------- Form ---------- */
.form { display: grid; gap: 1rem; max-width: 560px; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.field input, .field textarea, .field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: var(--glow-sm);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ---------- Article (policy + rewards content) ---------- */
.article { max-width: 720px; margin: 0 auto; padding-top: 2rem; }
.article p, .article ul, .article ol { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1.1rem; }
.article ul, .article ol { padding-left: 1.5rem; }
.article ul li { list-style: disc; margin-bottom: 0.4rem; }
.article ol li { list-style: decimal; margin-bottom: 0.4rem; }
.article h2 { font-family: var(--display); color: var(--white); font-size: clamp(1.6rem, 3vw, 2rem); margin: 2.5rem 0 1rem; letter-spacing: -0.015em; }
.article h3 { font-family: var(--display); color: var(--white); font-size: 1.25rem; margin: 1.75rem 0 0.7rem; }
.article a { color: var(--blue); }
.article a:hover { text-decoration: underline; }
.article strong { color: var(--white); }

/* ---------- Order tracker ---------- */
.tracker {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.tracker-steps { display: grid; gap: 0; margin-top: 2rem; }
.t-step { display: grid; grid-template-columns: 40px 1fr auto; gap: 1rem; padding: 1rem 0; align-items: center; border-bottom: 1px solid var(--line); }
.t-step:last-child { border-bottom: 0; }
.t-step .icon {
  width: 38px; height: 38px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--card-hi); color: var(--gray-2);
  border: 1px solid var(--line);
}
.t-step.done .icon { background: rgba(0,217,255,0.12); color: var(--blue); border-color: var(--line-hi); box-shadow: var(--glow-sm); }
.t-step.active .icon { background: var(--blue); color: var(--bg); border-color: var(--blue); box-shadow: var(--glow-md); animation: pulse 2s ease-in-out infinite; }
.t-step strong { color: var(--white); font-family: var(--display); display: block; font-size: 0.98rem; }
.t-step small { color: var(--gray); font-size: 0.82rem; }
.t-step .ts { font-family: var(--mono); font-size: 0.75rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }
.t-step.done .ts { color: var(--blue); }

/* ---------- Countdown deal banner ---------- */
.countdown {
  position: relative;
  background: linear-gradient(90deg, rgba(255, 59, 107, 0.18) 0%, rgba(0, 217, 255, 0.12) 100%);
  border-top: 1px solid rgba(255, 59, 107, 0.4);
  border-bottom: 1px solid var(--line-hi);
  padding: 0.75rem var(--gutter);
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 5;
}
.countdown .bolt { color: var(--yellow); font-size: 1rem; }
.countdown strong { color: var(--white); font-family: var(--display); font-size: 0.92rem; letter-spacing: 0.04em; margin: 0 0.4rem; }
.countdown .time {
  color: var(--red); font-family: var(--display); font-weight: 700;
  letter-spacing: 0.05em; padding: 0.15rem 0.55rem;
  background: rgba(255, 59, 107, 0.15);
  border: 1px solid rgba(255, 59, 107, 0.4);
  border-radius: 6px;
  margin-left: 0.4rem;
}

/* ---------- Card variants ---------- */
.prod { position: relative; }

/* Standard already styled — variant overrides below */
.prod-labels {
  display: flex; flex-wrap: wrap; gap: 0.3rem;
}
.lbl-chip {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.22rem 0.5rem; border-radius: 4px;
  border: 1px solid var(--line); color: var(--gray); font-weight: 600;
}
.lbl-chip.bonus { color: var(--blue); border-color: var(--line-hi); background: rgba(0,217,255,0.06); }
.lbl-chip.bundle-eligible { color: #C99CFF; border-color: rgba(180,100,255,0.4); background: rgba(180,100,255,0.06); }
.lbl-chip.low { color: var(--red); border-color: rgba(255, 59, 107, 0.4); background: rgba(255, 59, 107, 0.08); }

.stars {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--yellow); font-size: 0.85rem; letter-spacing: 0.05em;
}
.stars .count { color: var(--gray); font-family: var(--mono); font-size: 0.7rem; }

/* FEATURED GLOW CARD */
.prod.v-glow {
  border-color: var(--line-hi);
  box-shadow: 0 0 0 1px var(--line-hi), var(--glow-md);
}
.prod.v-glow::after {
  content: ''; position: absolute; inset: -2px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(0,217,255,0.5) 0%, transparent 50%, rgba(0,217,255,0.5) 100%);
  z-index: -1; opacity: 0.6; animation: glow-pulse 3s ease-in-out infinite;
}
.prod.v-glow:hover::after { opacity: 1; }
@keyframes glow-pulse { 50% { opacity: 0.3; } }
.prod.v-glow .prod-media { background: linear-gradient(135deg, rgba(0,217,255,0.18) 0%, var(--bg-2) 70%); }
.prod.v-glow .prod-media svg { filter: drop-shadow(0 0 18px rgba(0, 217, 255, 0.7)); }

/* BUNDLE PICK CARD */
.prod.v-bundle {
  border-color: rgba(180, 100, 255, 0.45);
}
.prod.v-bundle:hover { box-shadow: 0 0 24px rgba(180,100,255,0.4); border-color: rgba(180, 100, 255, 0.7); }
.prod.v-bundle .prod-tag { background: #B464FF; color: var(--white); box-shadow: 0 0 12px rgba(180,100,255,0.6); }
.prod.v-bundle .prod-media { background: linear-gradient(135deg, rgba(180,100,255,0.15) 0%, var(--bg-2) 70%); }
.prod.v-bundle .prod-media::after { background: radial-gradient(circle at 50% 130%, rgba(180,100,255,0.25), transparent 50%); }
.bundle-stack {
  display: flex; gap: 0.4rem; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.bundle-stack > svg { width: 56px; height: 56px; color: var(--blue); filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5)); }
.bundle-plus { color: #C99CFF; font-size: 1.8rem; font-weight: 700; line-height: 1; filter: drop-shadow(0 0 8px rgba(180,100,255,0.6)); }
.prod.v-bundle .prod-price .now { color: #C99CFF; }
.prod.v-bundle .prod-add { background: rgba(180,100,255,0.1); border-color: rgba(180,100,255,0.5); color: #C99CFF; }
.prod.v-bundle .prod-add:hover { background: #B464FF; color: var(--white); box-shadow: 0 0 16px rgba(180,100,255,0.5); }
.bundle-save {
  display: inline-block;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
  color: #C99CFF; text-transform: uppercase; font-weight: 700;
  background: rgba(180,100,255,0.1);
  border: 1px solid rgba(180,100,255,0.4);
  padding: 0.2rem 0.5rem; border-radius: 4px;
  margin-top: 0.3rem;
}

/* LIMITED STOCK CARD */
.prod.v-limited { border-color: rgba(255, 59, 107, 0.45); }
.prod.v-limited:hover { box-shadow: 0 0 24px rgba(255,59,107,0.4); border-color: rgba(255, 59, 107, 0.75); }
.prod.v-limited .prod-tag { background: var(--red); color: var(--white); animation: pulse-red 2s ease-in-out infinite; }
@keyframes pulse-red { 50% { box-shadow: 0 0 16px rgba(255,59,107,0.7); } }
.stock-bar { height: 5px; background: rgba(255,59,107,0.15); border-radius: 3px; overflow: hidden; }
.stock-bar > div { height: 100%; background: linear-gradient(90deg, var(--red), #FF7B9C); box-shadow: 0 0 8px var(--red); }
.stock-text {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--red); text-transform: uppercase; font-weight: 700;
  display: flex; justify-content: space-between; margin-top: 0.4rem;
}

/* ---------- Under $20 Finds section ---------- */
.under-banner {
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
  border: 1px dashed rgba(255, 214, 10, 0.5);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  display: flex; gap: 1.5rem; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.under-banner .left { display: flex; flex-direction: column; gap: 0.5rem; }
.under-banner strong { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--yellow); letter-spacing: -0.01em; text-shadow: 0 0 16px rgba(255, 214, 10, 0.4); }
.under-banner small { color: var(--ink-soft); font-size: 0.9rem; }

.deal-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .deal-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .deal-grid { grid-template-columns: repeat(5, 1fr); } }
.mini-prod {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.mini-prod:hover { transform: translateY(-3px); border-color: var(--line-hi); box-shadow: var(--glow-sm); }
.mini-prod .mini-media {
  aspect-ratio: 1; background: var(--card-hi);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.mini-prod .mini-media svg { width: 50%; height: 50%; color: var(--blue); filter: drop-shadow(0 0 8px rgba(0,217,255,0.4)); }
.mini-prod .price-tag {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: var(--yellow); color: var(--bg);
  font-family: var(--display); font-weight: 700; font-size: 0.85rem;
  padding: 0.2rem 0.5rem; border-radius: 6px;
}
.mini-prod .mini-body { padding: 0.7rem 0.75rem 0.85rem; }
.mini-prod .mini-name { font-family: var(--display); font-weight: 600; color: var(--white); font-size: 0.85rem; line-height: 1.2; margin-bottom: 0.35rem; }
.mini-prod .mini-add {
  display: block; width: 100%;
  background: rgba(0,217,255,0.08);
  border: 1px solid var(--line-hi);
  color: var(--blue);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  padding: 0.45rem; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mini-prod .mini-add:hover { background: var(--blue); color: var(--bg); }

/* ---------- Reward progress in cart drawer ---------- */
.reward-prog {
  padding: 1rem 1.5rem 1.1rem;
  background: linear-gradient(90deg, rgba(0,217,255,0.06) 0%, rgba(180,100,255,0.04) 50%, rgba(255,200,60,0.06) 100%);
  border-bottom: 1px solid var(--line);
}
.reward-prog .label {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.reward-prog .label .msg {
  font-family: var(--display); font-size: 0.92rem; color: var(--white);
  font-weight: 600; letter-spacing: -0.005em; line-height: 1.2;
}
.reward-prog .label strong { color: var(--blue); font-family: var(--mono); font-size: 0.85rem; flex-shrink: 0; }
.reward-prog .bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.reward-prog .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, #B464FF 50%, #FFC83C 100%);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
  transition: width 0.4s ease;
  width: 0%;
}
.reward-prog .marks {
  display: flex; justify-content: space-between; margin-top: 0.6rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
}
.reward-prog .marks span { display: inline-flex; align-items: center; gap: 0.3rem; }
.reward-prog .marks .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(255,255,255,0.1);
}
.reward-prog .marks .t1 .dot { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.reward-prog .marks .t2 .dot { background: #B464FF; box-shadow: 0 0 6px #B464FF; }
.reward-prog .marks .t3 .dot { background: #FFC83C; box-shadow: 0 0 6px #FFC83C; }
.reward-prog .marks .active { color: var(--white); }

/* ---------- Real logo image ---------- */
.brand-logo { height: 44px; width: auto; display: block; }
@media (min-width: 720px) { .brand-logo { height: 50px; } }
.brand-logo.foot-logo { height: 88px; max-width: 280px; }

/* ---------- Real booth photo in hero ---------- */
.hero-booth {
  position: relative;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--glow-md);
  max-width: 560px;
  margin: 0 auto;
}
.hero-booth::before, .hero-booth::after {
  content: '';
  position: absolute;
  height: 2px; left: 6%; right: 6%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 12px var(--blue);
  z-index: 3;
  pointer-events: none;
}
.hero-booth::before { top: 0; }
.hero-booth::after { bottom: 0; }
.hero-booth .booth-photo {
  width: 100%; height: auto; display: block;
  position: relative; z-index: 1;
}
.hero-booth .booth-tag {
  position: absolute;
  top: -14px; right: -10px;
  z-index: 4;
  background: var(--yellow); color: var(--bg);
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 214, 10, 0.5);
  transform: rotate(6deg);
}

/* ---------- Social handle ---------- */
.handle {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-top: 1.5rem;
  text-shadow: 0 0 14px rgba(0, 217, 255, 0.55);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ticker-track { animation: none; }
}
