/* ═══════════════════════════════════════════════════════
   GEEKPIRE — STYLE SHEET  v4.1
   Vibe: Black, Gold & Green — stoner luxury. Bold but loose.
   Fonts:
     Bebas Neue  — display headlines (big & loud)
     Orbitron    — GEEKPIRE wordmark only
     DM Sans     — body, UI, descriptions
═══════════════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --gold:          #C9A227;
  --gold-light:    #E8C547;
  --gold-dim:      rgba(201,162,39,0.14);
  --gold-glow:     rgba(201,162,39,0.35);
  --green:         #39FF14;
  --green-dim:     rgba(57,255,20,0.1);
  --green-glow:    rgba(57,255,20,0.3);
  --bg:            #07090A;
  --bg-2:          #0C0F0D;
  --bg-card:       #111512;
  --bg-hover:      #181D18;
  --text:          #F2F0E8;
  --muted:         rgba(205,200,175,0.66);
  --border:        rgba(201,162,39,0.14);
  --border-hover:  rgba(201,162,39,0.48);
  --primary:       #C9A227;
  --primary-light: #E8C547;
  --primary-dim:   rgba(201,162,39,0.14);
  --secondary:     #39FF14;
  --primary-rgb:   201 162 39;
  --secondary-rgb: 232 197 71;
  --accent-rgb:    57 255 20;
  /* legacy aliases */
  --orange:        #C9A227;
  --amber:         #E8C547;
  --lime:          #39FF14;
  --bg-glass:      rgba(17,21,18,0.8);
  --bg-mid:        #0C0F0D;
}

[data-theme="purple"] {
  --gold:          #9B59FF;
  --gold-light:    #B57FFF;
  --gold-dim:      rgba(155,89,255,0.14);
  --gold-glow:     rgba(155,89,255,0.35);
  --green:         #C9A227;
  --green-dim:     rgba(201,162,39,0.12);
  --bg:            #07050E;
  --bg-2:          #0C0A16;
  --bg-card:       #11101E;
  --bg-hover:      #171528;
  --text:          #EDE8FF;
  --muted:         rgba(190,170,230,0.62);
  --border:        rgba(155,89,255,0.15);
  --border-hover:  rgba(155,89,255,0.5);
  --primary:       #9B59FF;
  --primary-light: #B57FFF;
  --primary-dim:   rgba(155,89,255,0.14);
  --secondary:     #C9A227;
  --primary-rgb:   155 89 255;
  --secondary-rgb: 181 127 255;
  --orange:        #9B59FF;
  --amber:         #B57FFF;
  --lime:          #C9A227;
  --bg-glass:      rgba(17,16,30,0.8);
  --bg-mid:        #0C0A16;
}

[data-theme="blue"] {
  --gold:          #4FC3F7;
  --gold-light:    #81D4FA;
  --gold-dim:      rgba(79,195,247,0.14);
  --gold-glow:     rgba(79,195,247,0.35);
  --green:         #39FF14;
  --green-dim:     rgba(57,255,20,0.12);
  --bg:            #060810;
  --bg-2:          #0A0D1A;
  --bg-card:       #0F1220;
  --bg-hover:      #151828;
  --text:          #E8F0FF;
  --muted:         rgba(160,185,230,0.62);
  --border:        rgba(79,195,247,0.15);
  --border-hover:  rgba(79,195,247,0.5);
  --primary:       #4FC3F7;
  --primary-light: #81D4FA;
  --primary-dim:   rgba(79,195,247,0.14);
  --secondary:     #39FF14;
  --primary-rgb:   79 195 247;
  --secondary-rgb: 129 212 250;
  --accent-rgb:    57 255 20;
  --orange:        #4FC3F7;
  --amber:         #81D4FA;
  --lime:          #39FF14;
  --bg-glass:      rgba(15,18,32,0.8);
  --bg-mid:        #0A0D1A;
}

/* ── BASE ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* subtle drifting grid + ambient glow */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 40s linear infinite;
  pointer-events: none; z-index: 0;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 72px 72px; }
}

/* ambient color blobs */
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 10% 5%, rgba(201,162,39,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 95%, rgba(57,255,20,0.05) 0%, transparent 45%);
  pointer-events: none; z-index: 0;
}

header, nav, main, section, article, footer,
.page-hero, .page-content, .showroom-content { position: relative; z-index: 2; }

/* ── THEME DOT ───────────────────────────────────────── */
.theme-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 0.65rem;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-right: 12px;
}
.theme-btn:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(8,8,8,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-brand {
  margin-right: auto; /* keeps theme dot + menu grouped on the right */
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-decoration: none;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  transition: text-shadow 0.3s;
}
.nav-brand:hover { text-shadow: 0 0 30px var(--gold-glow), 0 0 60px var(--gold-dim); }

.nav-menu { display: flex; list-style: none; gap: 0; }

.nav-link {
  display: block;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(245,242,236,0.45);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--green); text-shadow: 0 0 12px var(--green-glow); }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .navbar { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(8,8,8,0.99);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 24px; gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 14px 16px; }
}

/* ── HOMEPAGE HERO ───────────────────────────────────── */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 32px 80px;
  min-height: 94vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* gold + green smoke haze behind logo */
header::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(201,162,39,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 40%, rgba(57,255,20,0.05) 0%, transparent 55%);
  animation: hazeFloat 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hazeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(-20px) scale(1.05); opacity: 0.75; }
}

/* gold line under hero */
header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo {
  width: min(440px, 82vw);
  filter: drop-shadow(0 0 28px rgba(201,162,39,0.45));
  margin-bottom: 20px;
  animation: logoPulse 6s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(201,162,39,0.45)); }
  50%       { filter: drop-shadow(0 0 44px rgba(57,255,20,0.35)); }
}

.tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}

/* ── HERO TEXT ───────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-cta-group {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

.hero-divider {
  width: 1px; height: 64px;
  background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
  margin: 0 auto;
}

/* ── PRODUCTS (homepage featured) ────────────────────── */
.products {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.products h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 64px;
  color: var(--text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ── PRODUCT CARD (homepage featured) ────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 28px var(--green-dim);
}

.product-card .product-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--bg-2);
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-card .listing-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  padding: 18px 20px 5px;
  margin: 0;
}

.product-card .listing-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 20px 10px;
  margin: 0;
}

.product-card .listing-price {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--green);
  text-shadow: 0 0 10px var(--green-dim);
  padding: 0 20px 4px;
  margin: 0;
}

.product-card .shop-btn {
  margin: 10px 20px 20px !important;
  display: block !important;
  text-align: center !important;
}

/* ── SHOP SECTION ────────────────────────────────────── */
.shop {
  padding: 100px 48px;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.shop h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--text);
}

.shop-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 44px;
}

.shop-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── BUTTONS ─────────────────────────────────────────── */
.shop-btn {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(245,242,236,0.2);
  transition: all 0.22s;
  cursor: pointer;
}

.shop-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-2px);
}

.shop-btn.disabled { opacity: 0.2; pointer-events: none; }

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 32px var(--gold-glow);
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  text-align: center;
  padding: 100px 32px 72px;
  background: var(--bg);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), transparent);
}

.page-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1;
}

.page-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PAGE CONTENT ────────────────────────────────────── */
.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-label {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-block {
  margin-bottom: 14px;
  padding: 32px 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  transition: border-left-color 0.3s, box-shadow 0.3s;
}
.about-block:hover {
  border-left-color: var(--gold-light);
  box-shadow: -4px 0 20px var(--gold-dim);
}

.about-block p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245,242,236,0.72);
  margin-top: 8px;
}

/* ── SHOWROOM ────────────────────────────────────────── */
.showroom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 48px;
}

.category-section { margin-bottom: 80px; }
.category-section:last-child { margin-bottom: 0; }

.category-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 18px;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--green), transparent);
}

/* ── CATEGORY CHIPS (showroom) ───────────────────────── */
.category-chips {
  position: sticky; top: 68px; z-index: 150;
  display: flex; gap: 8px;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 20px;
  background: rgba(8,10,9,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.category-chips::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.chip:hover { color: var(--gold-light); border-color: var(--gold); background: var(--gold-dim); }

.category-section { scroll-margin-top: 132px; }

@media (max-width: 768px) {
  .category-chips { justify-content: flex-start; }
}

/* ── LISTING CARD (showroom) ─────────────────────────── */
.listing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* "opens details" affordance */
.listing-card::after {
  content: '+';
  position: absolute; top: 10px; right: 10px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,162,39,0.5);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.05rem; line-height: 1;
  pointer-events: none;
  transition: background 0.2s, transform 0.2s;
}
.listing-card:hover::after { background: var(--gold); color: #000; transform: scale(1.1); }

.listing-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 28px var(--green-dim);
}

.product-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--bg-2);
  display: block;
  transition: transform 0.5s ease;
}
.listing-card:hover .product-img { transform: scale(1.04); }

.listing-info { padding: 18px 20px 22px; }

.listing-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.listing-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 14px;
}

.listing-price {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--green);
  text-shadow: 0 0 10px var(--green-dim);
}

.listing-btn { width: 100%; text-align: center; font-size: 0.75rem; padding: 10px 16px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  padding: 72px 48px 52px;
  text-align: center;
  background: var(--bg);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), transparent);
}

.footer-logo {
  max-width: min(320px, 65vw);
  max-height: 300px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 24px rgba(201,162,39,0.3));
}

footer p {
  font-family: 'DM Sans', sans-serif;
  color: rgba(210,200,170,0.48);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.footer-email {
  margin-top: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.footer-email a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
.footer-email a:hover { color: var(--text); }

/* ── SHOW OFF ────────────────────────────────────────── */
.submit-box {
  text-align: center;
  padding: 56px 40px;
  margin-bottom: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.submit-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; line-height: 1.75; color: var(--muted);
  margin: 14px 0 32px;
}

.showoff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 20px;
}

.showoff-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px; transition: border-color 0.25s, transform 0.25s;
}
.showoff-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.showoff-media {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 6px; display: block; background: var(--bg-2);
  cursor: zoom-in;
}

.showoff-date {
  font-weight: 400; font-size: 0.72rem;
  color: var(--muted); margin-left: 6px;
}

/* ── WALL LIGHTBOX ───────────────────────────────────── */
#wall-lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px; gap: 14px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
#wall-lightbox.visible { opacity: 1; pointer-events: all; }
.lightbox-stage { display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 82vh; }
.lightbox-stage img, .lightbox-stage video {
  max-width: min(920px, 100%); max-height: 82vh;
  border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute; top: 14px; right: 20px;
  background: none; border: none; color: var(--text);
  font-size: 2.2rem; line-height: 1; cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-caption {
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--muted); text-align: center; max-width: 640px;
}

.showoff-info { padding: 10px 0 4px; text-align: left; }

.showoff-user {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 4px;
}

.showoff-caption {
  font-family: 'DM Sans', sans-serif; font-size: 0.84rem; color: var(--muted); line-height: 1.5;
}

.wall-empty {
  grid-column: 1/-1; text-align: center;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--muted); padding: 64px 0;
}

.showoff-actions { display: flex; gap: 8px; margin-top: 10px; }

.like-btn {
  background: none; border: 1px solid var(--border); border-radius: 10px;
  padding: 5px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  font-weight: 500; color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.like-btn:hover { border-color: var(--gold); color: var(--gold); }
.like-btn.liked { border-color: var(--gold); color: var(--gold); }

.comment-toggle-btn {
  background: none; border: 1px solid var(--border); border-radius: 10px;
  padding: 5px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  font-weight: 500; color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.comment-toggle-btn:hover { border-color: var(--secondary); color: var(--secondary); }

.comment-section { margin-top: 12px; border-top: 1px solid var(--border); padding-top: 10px; }
.comment-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; max-height: 200px; overflow-y: auto; }
.comment-item { font-size: 0.84rem; line-height: 1.6; }
.comment-username { font-family: 'DM Sans', sans-serif; color: var(--gold-light); font-weight: 600; margin-right: 6px; }
.comment-content { font-family: 'DM Sans', sans-serif; color: rgba(245,242,236,0.72); }
.comment-empty { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--muted); text-align: center; padding: 8px 0; }
.comment-input-wrap { display: flex; gap: 8px; }
.comment-input {
  flex: 1; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 12px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--text); outline: none; transition: border-color 0.2s;
}
.comment-input::placeholder { color: var(--muted); }
.comment-input:focus { border-color: var(--gold-dim); }
.comment-submit {
  background: none; border: 1px solid var(--border); border-radius: 10px; padding: 8px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
  color: var(--gold-light); cursor: pointer; transition: all 0.2s;
}
.comment-submit:hover { border-color: var(--gold); background: var(--gold-dim); color: var(--gold-light); }

/* ── EVENTS ──────────────────────────────────────────── */
.event-card {
  display: flex; gap: 28px; padding: 32px 36px; margin-bottom: 14px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  align-items: flex-start; transition: border-color 0.25s, transform 0.25s;
}
.event-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.event-date-block {
  display: flex; flex-direction: column; align-items: center;
  min-width: 68px; padding: 14px 10px;
  background: var(--gold-dim); border: 1px solid var(--border); border-radius: 10px;
}
.event-month {
  font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light);
}
.event-day {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.6rem; font-weight: 400; color: var(--text); line-height: 1.05;
}
.event-name {
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.event-meta {
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--gold-light); margin-bottom: 12px;
}
.event-desc {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; line-height: 1.75;
  color: var(--muted); margin-bottom: 22px;
}
@media (max-width: 500px) { .event-card { flex-direction: column; } }

/* ghost card while no events exist */
.event-ghost {
  text-align: center;
  padding: 56px 32px;
  margin-bottom: 14px;
  border: 1px dashed rgba(201,162,39,0.3);
  border-radius: 10px;
  background: rgba(201,162,39,0.03);
}
.event-ghost-mark {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 3rem; line-height: 1; color: var(--gold-dim);
  -webkit-text-stroke: 1px rgba(201,162,39,0.4);
  margin-bottom: 12px;
}
.event-ghost-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--text); margin-bottom: 8px;
}
.event-ghost-sub { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--muted); }

/* booking invite */
.event-invite {
  text-align: center;
  padding: 48px 32px;
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.event-invite-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--text); margin-bottom: 8px;
}
.event-invite-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--muted); margin-bottom: 28px;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(201,162,39,0.3); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text); cursor: pointer; list-style: none; transition: color 0.2s; user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-left: 16px; font-family: 'DM Sans', sans-serif; font-weight: 300; }
.faq-item[open] .faq-question { color: var(--gold-light); border-bottom: 1px solid var(--border); }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 20px 28px 26px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; line-height: 1.8; color: var(--muted);
}

/* ── BADGES ──────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 4px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--secondary); color: var(--secondary); border-radius: 10px; margin-bottom: 16px;
}
.listings-note { text-align: center; margin-bottom: 56px; }
.listings-note p { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ── AUTH NAV ─────────────────────────────────────────── */
.nav-auth-item {
  display: flex; align-items: center;
  margin-left: 16px; padding-left: 20px; border-left: 1px solid var(--border);
}
.nav-auth-btn { font-family: 'DM Sans', sans-serif; background: none; color: var(--secondary); cursor: pointer; border-color: rgba(57,255,20,0.3); font-weight: 600; }
.nav-auth-btn:hover { background: var(--green-dim); color: #fff; border-color: var(--secondary); }
.auth-user-pill { display: flex; align-items: center; gap: 8px; }
.auth-avatar { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); object-fit: cover; }
.auth-name-text { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--secondary); }
.nav-auth-signout { font-family: 'DM Sans', sans-serif; background: none; border-color: transparent; color: var(--muted); cursor: pointer; }
.nav-auth-signout:hover { color: var(--text); background: none; border-color: transparent; }
@media (max-width: 860px) { .nav-auth-item { border-left: none; margin-left: 0; padding-left: 16px; } }

/* ── AUTH MODAL ───────────────────────────────────────── */
#auth-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
#auth-overlay.visible { opacity: 1; pointer-events: all; }
.auth-modal {
  position: relative; width: min(420px, 92vw);
  background: var(--bg-card);
  border: 1px solid rgba(201,162,39,0.3); border-radius: 4px;
  padding: 44px 40px 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  transform: translateY(12px); transition: transform 0.25s;
}
#auth-overlay.visible .auth-modal { transform: translateY(0); }
.auth-modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.auth-modal-close:hover { color: var(--text); }
.auth-modal-title { font-family: 'Bebas Neue', Impact, sans-serif; font-size: 2rem; font-weight: 400; letter-spacing: 0.1em; text-align: center; color: var(--gold); margin-bottom: 4px; }
.auth-modal-sub { font-family: 'DM Sans', sans-serif; text-align: center; font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }
.auth-tabs { display: flex; gap: 4px; margin-bottom: 28px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 4px; }
.auth-tab { flex: 1; background: none; border: none; border-radius: 10px; padding: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.auth-tab.active { background: var(--gold-dim); color: var(--gold-light); }
.auth-field { margin-bottom: 18px; }
.auth-field label { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.auth-field input { width: 100%; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s; }
.auth-field input::placeholder { color: var(--muted); }
.auth-field input:focus { border-color: rgba(201,162,39,0.4); }
.auth-message { min-height: 20px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; line-height: 1.6; text-align: center; margin-bottom: 16px; }
.auth-message--error { color: #F87171; }
.auth-message--success { color: var(--secondary); }
.auth-submit { width: 100%; text-align: center; margin-top: 4px; }
.auth-submit:disabled { opacity: 0.4; pointer-events: none; }

/* ── UPLOAD FORM ──────────────────────────────────────── */
.upload-picker { width: 100%; }
.upload-drop-zone { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 48px 24px; border: 1px dashed rgba(201,162,39,0.25); border-radius: 10px; cursor: pointer; text-align: center; transition: border-color 0.2s, background 0.2s; }
.upload-drop-zone:hover { border-color: rgba(201,162,39,0.5); background: var(--gold-dim); }
.upload-drop-zone input[type="file"] { display: none; }
.upload-drop-icon { font-size: 2rem; line-height: 1; color: var(--gold); }
.upload-drop-text { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.upload-drop-sub { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--muted); }
.upload-preview-media { width: 100%; max-height: 320px; object-fit: contain; border-radius: 10px; border: 1px solid var(--border); background: #000; display: block; }
.upload-clear-btn { display: block; margin: 12px auto 0; background: none; border: 1px solid var(--border); border-radius: 10px; padding: 6px 18px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; color: var(--muted); cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.upload-clear-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.upload-char-count { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--muted); float: right; }
.upload-submit-btn { width: 100%; text-align: center; margin-top: 8px; }
.upload-submit-btn:disabled { opacity: 0.4; pointer-events: none; }

/* ── ADMIN ───────────────────────────────────────────── */
.admin-gate { max-width: 440px; margin: 0 auto 56px; text-align: center; padding: 48px 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; }
.admin-gate-form { display: flex; gap: 12px; margin-top: 24px; }
.admin-pass-input { flex: 1; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; padding: 12px 16px; outline: none; }
.admin-pass-input:focus { border-color: rgba(201,162,39,0.4); }
.admin-pass-error { font-family: 'DM Sans', sans-serif; color: #F87171; font-size: 0.88rem; margin-top: 12px; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; margin-top: 32px; }
.admin-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color 0.2s; }
.admin-card--approved { border-color: var(--secondary); }
.admin-card--rejected { border-color: #F87171; opacity: 0.5; }
.admin-media { width: 100%; max-height: 280px; object-fit: cover; display: block; }
.admin-card-info { padding: 16px; }
.admin-card-user { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.admin-card-caption { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }
.admin-card-date { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: rgba(210,200,170,0.28); margin-bottom: 14px; }
.admin-card-actions { display: flex; gap: 10px; }
.admin-approve-btn, .admin-reject-btn { flex: 1; padding: 10px; border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: opacity 0.2s; }
.admin-approve-btn { background: var(--secondary); color: #000; }
.admin-reject-btn { background: #F87171; color: #fff; }
.admin-approve-btn:hover, .admin-reject-btn:hover { opacity: 0.8; }
.admin-approve-btn:disabled, .admin-reject-btn:disabled { opacity: 0.4; cursor: default; }
.admin-card-status { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--muted); margin-top: 10px; min-height: 1em; }
.admin-error { font-family: 'DM Sans', sans-serif; color: #F87171; font-size: 0.88rem; text-align: center; grid-column: 1/-1; }

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  header { padding: 64px 20px 56px; min-height: auto; }
  .logo { width: min(300px, 80vw); }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero p { font-size: 0.95rem; }
  .products { padding: 64px 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card .listing-name { font-size: 0.8rem; padding: 14px 14px 4px; }
  .product-card .listing-desc { font-size: 0.78rem; padding: 0 14px 8px; }
  .product-card .listing-price { font-size: 1.2rem; padding: 0 14px 4px; }
  .product-card .shop-btn { margin: 8px 14px 16px !important; font-size: 0.7rem !important; }
  .shop { padding: 64px 20px; }
  .showroom-content { padding: 48px 20px; }
  .category-section { margin-bottom: 56px; }
  .category-title { font-size: 1.7rem; }
  .listing-info { padding: 14px 16px 18px; }
  .listing-name { font-size: 0.84rem; }
  .listing-desc {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .listing-price { font-size: 1.3rem; }
  .page-hero { padding: 72px 20px 52px; }
  .page-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .page-content { padding: 48px 20px; }
  .about-block { padding: 24px 22px; }
  footer { padding: 56px 20px 40px; }
  .submit-box { padding: 36px 20px; }
  /* comfortable touch targets */
  .theme-btn { width: 38px; height: 38px; font-size: 0.8rem; }
  .like-btn, .comment-toggle-btn { padding: 9px 16px; font-size: 0.82rem; }
  .comment-submit { padding: 10px 16px; }
  /* admin sign-in: stack fields instead of squeezing into one row */
  .admin-gate-form { flex-direction: column; }
  .auth-modal { padding: 34px 24px 30px; }
}

/* ── ACCESSIBILITY ───────────────────────────────────── */
/* visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 4px;
}

/* respect OS-level reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before, header::before, .logo { animation: none !important; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* small phones */
@media (max-width: 480px) {
  /* homepage featured pieces read better as one bold column */
  .products .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card .listing-name { font-size: 0.92rem; padding: 18px 20px 5px; }
  .product-card .listing-desc { font-size: 0.85rem; padding: 0 20px 10px; }
  .product-card .listing-price { font-size: 1.5rem; padding: 0 20px 4px; }
  .product-card .shop-btn { margin: 10px 20px 20px !important; font-size: 0.78rem !important; }
  /* hero buttons: full-width stack, easier to tap */
  .hero-cta-group { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-cta-group .shop-btn { width: 100%; text-align: center; padding: 15px 36px; }
}
