/* Mic Drop K-Pop Shop — Shared Stylesheet */

/* =========================================
   THEME VARIABLES
   ========================================= */

/* Blossom (Light) */
[data-theme="blossom"] {
  --bg: #FFF8F5;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFF0EB;
  --accent: #E86B9E;
  --accent-glow: rgba(232,107,158,0.12);
  --secondary: #8768AF;
  --secondary-glow: rgba(135,104,175,0.10);
  --gold: #FFB347;
  --text: #2A2433;
  --text-muted: #6B5F7A;
  --text-dim: #9E94AD;
  --border: rgba(155,124,196,0.15);
  --shadow: rgba(232,107,158,0.08);
  --nav-bg: rgba(255,248,245,0.92);
  --btn-text: #FFFFFF;
  --footer-bg: #FFF0EB;
}

/* Stage Lights (Dark) */
[data-theme="stage-lights"] {
  --bg: #0E0B13;
  --bg-card: #16121E;
  --bg-elevated: #1E1929;
  --accent: #E86B9E;
  --accent-glow: rgba(232,107,158,0.12);
  --secondary: #876AA6;
  --secondary-glow: rgba(135,106,166,0.15);
  --gold: #FFD93D;
  --text: #EEEAF3;
  --text-muted: #9890A6;
  --text-dim: #6B6280;
  --border: rgba(176,143,212,0.15);
  --shadow: rgba(0,0,0,0.3);
  --nav-bg: rgba(14,11,19,0.92);
  --btn-text: #FFFFFF;
  --footer-bg: #16121E;
}

/* Peach Dream (Warm) */
[data-theme="peach-dream"] {
  --bg: #FEF6EE;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFF2E8;
  --accent: #F5A882;
  --accent-glow: rgba(245,168,130,0.12);
  --secondary: #A76175;
  --secondary-glow: rgba(167,97,117,0.10);
  --gold: #FFB347;
  --text: #2D1F15;
  --text-muted: #6B5648;
  --text-dim: #A69588;
  --border: rgba(212,132,154,0.15);
  --shadow: rgba(245,168,130,0.08);
  --nav-bg: rgba(254,246,238,0.92);
  --btn-text: #FFFFFF;
  --footer-bg: #FFF2E8;
}

/* Ocean Blue (Light Blue) */
[data-theme="ocean-blue"] {
  --bg: #EFF5FB;
  --bg-card: #FFFFFF;
  --bg-elevated: #E3EDF7;
  --accent: #E86B9E;
  --accent-glow: rgba(232,107,158,0.12);
  --secondary: #497AA4;
  --secondary-glow: rgba(73,122,164,0.12);
  --gold: #FFB347;
  --text: #1A2A3A;
  --text-muted: #4E6478;
  --text-dim: #8A9EB0;
  --border: rgba(91,141,184,0.15);
  --shadow: rgba(91,141,184,0.08);
  --nav-bg: rgba(239,245,251,0.92);
  --btn-text: #FFFFFF;
  --footer-bg: #E3EDF7;
}

/* Lavender (Light Purple) */
[data-theme="lavender"] {
  --bg: #F3EEFA;
  --bg-card: #FFFFFF;
  --bg-elevated: #EAE0F5;
  --accent: #E86B9E;
  --accent-glow: rgba(232,107,158,0.12);
  --secondary: #7B5AAE;
  --secondary-glow: rgba(123,90,174,0.12);
  --gold: #FFB347;
  --text: #241D33;
  --text-muted: #5E5270;
  --text-dim: #9A8FB0;
  --border: rgba(123,90,174,0.15);
  --shadow: rgba(123,90,174,0.08);
  --nav-bg: rgba(243,238,250,0.92);
  --btn-text: #FFFFFF;
  --footer-bg: #EAE0F5;
}

/* Midnight (Dark Blue) */
[data-theme="midnight"] {
  --bg: #0C1525;
  --bg-card: #12203A;
  --bg-elevated: #182842;
  --accent: #E86B9E;
  --accent-glow: rgba(232,107,158,0.15);
  --secondary: #537A9A;
  --secondary-glow: rgba(83,122,154,0.15);
  --gold: #FFD93D;
  --text: #E0E8F0;
  --text-muted: #8A9BB0;
  --text-dim: #5A6E85;
  --border: rgba(123,172,212,0.15);
  --shadow: rgba(0,0,0,0.3);
  --nav-bg: rgba(12,21,37,0.92);
  --btn-text: #FFFFFF;
  --footer-bg: #12203A;
}

/* =========================================
   BASE
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
a { color: var(--secondary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* =========================================
   THEME PICKER (preview bar)
   ========================================= */
.theme-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--text);
  color: var(--bg);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}
.theme-bar span { margin-right: 0.5rem; opacity: 0.7; }

.theme-btn {
  padding: 0.35rem 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  background: transparent;
  color: inherit;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.theme-btn:hover { border-color: rgba(255,255,255,0.6); }
.theme-btn.active {
  background: rgba(255,255,255,0.9);
  color: #1a1a1a;
  border-color: transparent;
}

/* =========================================
   NAV
   ========================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  transition: background 0.4s;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}
.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
}
.nav-brand strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--secondary-glow); }
.nav-links a.active { color: var(--text); background: var(--secondary-glow); }

.theme-toggle {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  font-size: 1.1rem; padding: 0.35rem 0.65rem; border-radius: 6px;
  cursor: pointer; transition: all 0.2s; line-height: 1;
}
.theme-toggle:hover { color: var(--text); background: var(--secondary-glow); }

.cart-icon {
  position: relative; display: flex; align-items: center;
  padding: 0.45rem 0.85rem; color: var(--text-muted);
  font-size: 0.92rem; font-weight: 500; border-radius: 6px;
  cursor: pointer; transition: all 0.2s; gap: 0.35rem;
}
.cart-icon:hover { color: var(--text); background: var(--secondary-glow); }
.cart-badge {
  background: var(--accent); color: #fff; font-size: 0.6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 2px; right: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* =========================================
   HERO (Brochure — full viewport)
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--accent-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--secondary-glow) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.logo-wrap {
  margin-bottom: 1.8rem;
  display: inline-block;
}
.logo-wrap img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--secondary);
  box-shadow: 0 0 40px var(--secondary-glow), 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.logo-wrap img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px var(--secondary-glow), 0 8px 30px var(--shadow);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.15rem;
}

[data-theme="stage-lights"] .hero h1 {
  background: linear-gradient(135deg, var(--text) 0%, #B99ADF 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.award {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,179,71,0.08);
  border: 1px solid rgba(255,179,71,0.25);
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  margin-bottom: 2.2rem;
}
.award svg { width: 14px; height: 14px; }

[data-theme="stage-lights"] .award {
  color: #FFD93D;
  background: rgba(255,217,61,0.08);
  border-color: rgba(255,217,61,0.25);
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.hero-info a { color: var(--text-muted); }
.hero-info a:hover { color: var(--accent); }

.hero-divider {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  margin: 0.7rem auto;
  border-radius: 1px;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.hero-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-cta .btn-outline:hover {
  background: var(--secondary);
  color: var(--btn-text);
  box-shadow: 0 0 18px var(--secondary-glow);
  transform: translateY(-1px);
}
.hero-cta .btn-outline svg { width: 13px; height: 13px; }

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.2;
  color: var(--secondary);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { opacity: 0.15; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(5px); }
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  padding: 4rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-elevated);
  transition: background 0.4s;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.25rem;
}
.section-head p {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* =========================================
   CATEGORIES
   ========================================= */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.3rem 0.8rem;
  text-align: center;
}
.cat:hover {
  border-color: var(--border);
}
.cat-icon { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.cat-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================================
   INFO CARDS (Hours, Location, Pre-Orders)
   ========================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: rgba(155,124,196,0.25);
  box-shadow: 0 4px 20px var(--shadow);
}

.card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; }
.hours-time { color: var(--text-muted); }
.hours-closed { color: var(--accent); font-weight: 500; }

.loc-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.loc-row svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--accent);
  margin-top: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.65rem 1.4rem;
  background: var(--secondary);
  color: var(--btn-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 18px var(--secondary-glow);
  cursor: pointer;
}
.btn:hover {
  background: var(--accent);
  color: var(--btn-text);
  box-shadow: 0 0 22px var(--accent-glow);
  transform: translateY(-1px);
}
.btn svg { width: 13px; height: 13px; }

/* =========================================
   MAP
   ========================================= */
.map-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 30px var(--shadow);
}
.map-frame iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}
[data-theme="stage-lights"] .map-frame iframe {
  filter: invert(90%) hue-rotate(180deg) saturate(60%) brightness(120%) contrast(85%);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* =========================================
   SOCIAL
   ========================================= */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--secondary);
  background: var(--bg-elevated);
  color: var(--text);
}
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link.ig:hover { border-color: #E1306C; }
.social-link.ig:hover svg { color: #E1306C; }
.social-link.tt:hover { border-color: #00f2ea; }
.social-link.tt:hover svg { color: #00f2ea; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  font-style: italic;
}
.testimonial-source {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  font-family: 'Space Grotesk', sans-serif;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-top: 0.4rem;
}

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter {
  max-width: 420px;
  margin: 1.2rem auto 0;
}
.newsletter-form {
  display: flex;
  gap: 0.4rem;
}
.newsletter-input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: var(--secondary); }
.newsletter-submit {
  padding: 0.6rem 1.1rem;
  background: var(--secondary);
  color: var(--btn-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.newsletter-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
  text-align: center;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: background 0.4s;
}
.site-footer strong {
  color: var(--secondary);
  font-family: 'Space Grotesk', sans-serif;
}
.footer-store-info {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-store-info a { color: var(--accent); font-weight: 600; }

/* =========================================
   SHOP PAGE — Demo Banner
   ========================================= */
.demo-banner {
  background: var(--gold);
  color: #2A2433;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
}
.demo-banner a { color: #2A2433; text-decoration: underline; font-weight: 700; }
body.has-demo-banner .site-nav { top: 34px; }

/* =========================================
   SHOP PAGE — Hero (compact)
   ========================================= */
.shop-hero {
  padding: 5.5rem 1.5rem 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.shop-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, var(--accent-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--secondary-glow) 0%, transparent 50%);
  pointer-events: none;
}
.shop-hero-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.shop-hero h1 { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 0.3rem; }
.shop-hero .tagline {
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.6rem;
}
.shop-hero .logo-wrap { margin-bottom: 1.2rem; }
.shop-hero .logo-wrap img { width: 120px; height: 120px; }
.shop-hero .award { margin-bottom: 1rem; }
.shop-hero p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   SHOP PAGE — BOPIS Banner (above products)
   ========================================= */
.bopis-banner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.bopis-inner {
  background: var(--bg-card);
  border: 1.5px solid var(--secondary);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}
.bopis-inner .bopis-icon { font-size: 1.4rem; flex-shrink: 0; }
.bopis-inner p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.5;
}
.bopis-inner p strong { color: var(--text); }

/* =========================================
   SHOP PAGE — Search + Sort Bar
   ========================================= */
.shop-toolbar {
  max-width: 960px; margin: 1.5rem auto 0;
  padding: 0 1.5rem;
  display: flex; gap: 0.6rem; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.search-wrap {
  position: relative; flex: 1; max-width: 360px;
}
.search-input {
  width: 100%;
  padding: 0.5rem 0.9rem 0.5rem 2.2rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-input::placeholder { color: var(--text-dim); }
.search-input:focus { border-color: var(--secondary); }
.search-icon {
  position: absolute; left: 0.75rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim); pointer-events: none;
}
.sort-select {
  padding: 0.5rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  cursor: pointer; outline: none;
  transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--secondary); }

/* =========================================
   SHOP PAGE — Featured Spotlight
   ========================================= */
.spotlight {
  max-width: 960px; margin: 0 auto;
  padding: 0 1.5rem 1.5rem;
}
.spotlight-card {
  background: var(--bg-card);
  border: 1.5px solid var(--secondary);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.spotlight-img {
  width: 200px; flex-shrink: 0;
  overflow: hidden;
}
.spotlight-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.spotlight-content {
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.spotlight-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.4rem;
}
.spotlight-content h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem;
  text-transform: none; letter-spacing: -0.3px; color: var(--text);
}
.spotlight-content p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}

/* =========================================
   BROCHURE — Instagram CTA
   ========================================= */
.ig-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 520px;
  margin: 0 auto;
}
.ig-cta-icon {
  flex-shrink: 0;
}
.ig-cta-icon svg { width: 40px; height: 40px; color: var(--accent); }
.ig-cta-text p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}
.ig-cta-text a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.85rem;
}

/* =========================================
   SHOP PAGE — Filter Bar
   ========================================= */
.filter-bar {
  max-width: 960px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.5rem;
}
.filter-btn {
  padding: 0.4rem 1rem; border: 1.5px solid var(--border);
  border-radius: 20px; background: transparent;
  color: var(--text-muted); font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--secondary); color: var(--text);
  background: var(--secondary-glow);
}

/* =========================================
   SHOP PAGE — Product Grid
   ========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.product-card:hover {
  border-color: rgba(155,124,196,0.25);
  box-shadow: 0 6px 24px var(--shadow);
  transform: translateY(-2px);
}
.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img .placeholder-icon {
  font-size: 3rem; opacity: 0.3;
}
.product-info { padding: 1rem 1.1rem 1.2rem; }
.product-artist {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--secondary); margin-bottom: 0.2rem;
}
.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem; font-weight: 600; margin-bottom: 0.3rem;
}
.product-meta {
  font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.6rem;
}

/* Stock + Shipping Indicators */
.product-stock {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600;
  color: #2D8A4E;
  margin-bottom: 0.4rem;
}
[data-theme="stage-lights"] .product-stock { color: #5ECC7B; }
.product-fulfillment {
  font-size: 0.68rem; color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 700;
}
.add-btn {
  padding: 0.45rem 1rem;
  background: var(--secondary); color: var(--btn-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  border: none; border-radius: 6px;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 0 12px var(--secondary-glow);
}
.add-btn:hover {
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
  transform: translateY(-1px);
}

/* =========================================
   SHOP PAGE — Pre-Order Badge + Release
   ========================================= */
.preorder-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(255,179,71,0.1);
  border: 1px solid rgba(255,179,71,0.3);
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 4px; margin-bottom: 0.5rem;
}
.product-release {
  font-size: 0.72rem; color: var(--text-dim); margin-top: 0.2rem;
}

/* =========================================
   SHOP PAGE — Version Pills
   ========================================= */
.version-pills { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.version-pill {
  padding: 0.2rem 0.5rem; border: 1px solid var(--border);
  border-radius: 4px; font-size: 0.65rem; font-weight: 600;
  color: var(--text-dim); cursor: pointer; transition: all 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}
.version-pill:hover, .version-pill.selected {
  border-color: var(--secondary); color: var(--secondary);
  background: var(--secondary-glow);
}

/* =========================================
   SHOP PAGE — How It Works
   ========================================= */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.how-step {
  text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem 1.2rem;
}
.how-number {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--secondary); color: var(--btn-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.how-step h3 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem;
  text-transform: none; letter-spacing: 0; color: var(--text);
}
.how-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   SHOP PAGE — Pickup Callout (bottom)
   ========================================= */
.pickup-callout {
  background: var(--bg-card); border: 1.5px solid var(--secondary);
  border-radius: 12px; padding: 2rem;
  display: flex; gap: 2rem; align-items: center;
  max-width: 960px; margin: 0 auto;
}
.pickup-callout-text { flex: 1; }
.pickup-callout-text h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem;
  text-transform: none; letter-spacing: 0; color: var(--text);
}
.pickup-callout-text p {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.6;
}
.pickup-icon { font-size: 2.5rem; flex-shrink: 0; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .theme-bar { font-size: 0.72rem; gap: 0.35rem; padding: 0.5rem 0.8rem; }
  .theme-btn { padding: 0.3rem 0.65rem; font-size: 0.68rem; }
  .hero h1 { font-size: 2.3rem; }
  .logo-wrap img { width: 150px; height: 150px; }
  .info-grid { grid-template-columns: 1fr; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .social-links { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    padding: 0.8rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .pickup-callout { flex-direction: column; text-align: center; gap: 1rem; }
  .shop-hero h1 { font-size: 1.8rem; }
  .filter-btn { font-size: 0.68rem; padding: 0.35rem 0.8rem; }
  .bopis-inner { flex-direction: column; gap: 0.5rem; }
  .spotlight-card { flex-direction: column; }
  .spotlight-img { width: 100%; height: 160px; }
  .shop-toolbar { flex-direction: column; }
  .search-wrap { max-width: 100%; }
  .ig-cta { flex-direction: column; text-align: center; gap: 0.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .categories { gap: 0.6rem; }
  .cat { padding: 1rem 0.6rem; }
  .section { padding: 3rem 1.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .product-info { padding: 0.8rem; }
  .product-name { font-size: 0.82rem; }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  z-index: 10000;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* FAQ */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item p {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
