/* ═══════════════════════════════════════════════════════════════
   NeonSpel — Officiële Online Game Store | Nederland
   Design System: Dark + Purple Neon Glow
   ═══════════════════════════════════════════════════════════════ */

/* Fonts are loaded via <link> tags in HTML for better performance */

/* ── Root Variables ─────────────────────────────────────── */
:root {
  --purple-900: #0d0014;
  --purple-800: #130020;
  --purple-700: #1e0035;
  --purple-600: #2d0050;
  --purple-500: #5500a0;
  --purple-400: #7c00d4;
  --purple-300: #a855f7;
  --purple-200: #c084fc;
  --purple-100: #e9d5ff;
  --neon-primary: #b000ff;
  --neon-secondary: #7c3aed;
  --neon-cyan: #00d4ff;
  --neon-pink: #ff00aa;
  --bg-base: #080011;
  --bg-card: #100020;
  --bg-card-hover: #18003a;
  --bg-nav: rgba(8, 0, 17, 0.95);
  --text-primary: #f0e6ff;
  --text-secondary: #b899d4;
  --text-muted: #7a5a99;
  --border-glow: rgba(176, 0, 255, 0.3);
  --border-subtle: rgba(176, 0, 255, 0.12);
  --shadow-neon: 0 0 20px rgba(176, 0, 255, 0.4), 0 0 60px rgba(176, 0, 255, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-neon-hover: 0 0 30px rgba(176, 0, 255, 0.6), 0 0 80px rgba(176, 0, 255, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-900); }
::-webkit-scrollbar-thumb { background: var(--neon-primary); border-radius: 3px; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

a { color: var(--purple-200); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--neon-primary); }

/* ── Navigation ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-primary), transparent);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(176, 0, 255, 0.5);
  font-size: 1.2rem;
}

.nav-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 30%, var(--purple-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-text span {
  background: linear-gradient(135deg, var(--neon-primary), var(--purple-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(176, 0, 255, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--neon-primary);
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  gap: 0.5rem;
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--neon-primary);
  background: rgba(176, 0, 255, 0.08);
  box-shadow: 0 0 12px rgba(176, 0, 255, 0.2);
}

.search-bar input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.875rem;
  width: 180px;
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-bar svg { color: var(--text-muted); flex-shrink: 0; }

.btn-cart {
  position: relative;
  background: rgba(176, 0, 255, 0.12);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.btn-cart:hover {
  background: rgba(176, 0, 255, 0.22);
  box-shadow: var(--shadow-neon);
  color: var(--text-primary);
}

.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--neon-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px var(--neon-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border: none;
  background: transparent;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}

/* ── Mobile Nav ─────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-glow);
  padding: 1rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.75rem 1rem; color: var(--text-secondary); border-radius: var(--radius-sm); }
.mobile-menu a:hover { background: rgba(176,0,255,0.1); color: var(--text-primary); }

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(176, 0, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-hover);
  color: #fff;
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--purple-200);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(176, 0, 255, 0.1);
  border-color: var(--neon-primary);
  color: var(--text-primary);
  box-shadow: 0 0 16px rgba(176, 0, 255, 0.2);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-ghost:hover { color: var(--neon-primary); background: rgba(176,0,255,0.08); }

/* ── Layout ─────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-wrapper {
  padding-top: 70px;
  min-height: 100vh;
}

/* ── Section ─────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--neon-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-label::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--neon-primary);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-primary);
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--neon-primary), var(--purple-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(176, 0, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(124, 0, 212, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176, 0, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 0, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(176, 0, 255, 0.15);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--purple-200);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--neon-primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title .line-glow {
  background: linear-gradient(135deg, var(--neon-primary) 0%, var(--purple-200) 50%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(176, 0, 255, 0.4));
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--purple-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-game-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-game-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neon), var(--shadow-card);
  transition: var(--transition);
}

.hero-game-card-main:hover {
  box-shadow: var(--shadow-neon-hover), var(--shadow-card);
  transform: translateY(-4px);
}

.hero-game-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.hero-game-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-game-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(176,0,255,0.3), transparent 60%);
}

.hero-game-info {
  padding: 1.25rem;
}

.hero-game-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-game-genre {
  font-size: 0.78rem;
  color: var(--neon-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

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

.hero-game-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-floating-cards {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  animation: float 3s ease-in-out infinite;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.hero-mini-card:nth-child(2) { animation-delay: 1s; }
.hero-mini-card:nth-child(3) { animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-mini-icon { font-size: 1.1rem; }

/* ── Category Chips ─────────────────────────────────────── */
.categories-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
}

.categories-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.categories-row::-webkit-scrollbar { display: none; }

.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.cat-chip:hover,
.cat-chip.active {
  background: rgba(176, 0, 255, 0.15);
  border-color: var(--neon-primary);
  color: var(--text-primary);
  box-shadow: 0 0 12px rgba(176, 0, 255, 0.2);
}

.cat-chip-icon { font-size: 1rem; }

/* ── Game Cards ─────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.games-grid-lg {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(176, 0, 255, 0.2), var(--shadow-card);
}

.game-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.game-card:hover .game-card-img { transform: scale(1.05); }

.game-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.game-card-badges {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-hot { background: linear-gradient(135deg, #ff4500, #ff9500); color: #fff; }
.badge-new { background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary)); color: #fff; }
.badge-sale { background: linear-gradient(135deg, #00d4aa, #00a875); color: #fff; }
.badge-popular { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }

.game-card-wishlist {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(8, 0, 17, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.35rem;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.game-card-wishlist:hover,
.game-card-wishlist.active { color: var(--neon-pink); border-color: var(--neon-pink); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 0, 17, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card-genre {
  font-size: 0.7rem;
  color: var(--neon-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.game-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.game-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  gap: 0.1rem;
}

.star {
  color: #ffd700;
  font-size: 0.75rem;
}

.star.empty { color: var(--text-muted); }

.rating-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.5rem;
}

.price-box { display: flex; align-items: baseline; gap: 0.4rem; }

.price-current {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00d4aa;
  background: rgba(0, 212, 170, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.btn-add-cart {
  background: rgba(176, 0, 255, 0.15);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  color: var(--purple-200);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-add-cart:hover {
  background: var(--neon-primary);
  border-color: var(--neon-primary);
  color: #fff;
  box-shadow: 0 0 12px rgba(176, 0, 255, 0.4);
}

/* ── Feature Banner ─────────────────────────────────────── */
.feature-banner {
  background: linear-gradient(135deg, rgba(176, 0, 255, 0.12) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(176, 0, 255, 0.15), transparent 60%);
  pointer-events: none;
}

/* ── Trust Badges ─────────────────────────────────────── */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.trust-icon {
  width: 48px; height: 48px;
  background: rgba(176, 0, 255, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.trust-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Catalog Page ─────────────────────────────────────── */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 86px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.filter-group {
  margin-bottom: 1.75rem;
}

.filter-group:last-child { margin-bottom: 0; }

.filter-group-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.filter-option:hover { background: rgba(176,0,255,0.08); }

.filter-option input[type="checkbox"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-glow);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.filter-option input[type="checkbox"]:checked {
  background: var(--neon-primary);
  border-color: var(--neon-primary);
}

.filter-option input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.filter-option-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex: 1;
}

.filter-option-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 10px;
}

.price-range-slider {
  width: 100%;
  margin-top: 0.5rem;
}

.price-range-inputs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.price-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  color: var(--text-primary);
  font-size: 0.8rem;
  outline: none;
}

.price-input:focus { border-color: var(--neon-primary); }

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.catalog-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}

.sort-select:focus { border-color: var(--neon-primary); }

.view-toggle {
  display: flex;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.view-btn {
  padding: 0.4rem 0.6rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
  background: rgba(176, 0, 255, 0.15);
  color: var(--text-primary);
}

/* ── Product Page ─────────────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 86px;
}

.product-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glow);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
}

.product-main-img img,
.product-main-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.product-thumbnails {
  display: flex;
  gap: 0.5rem;
}

.product-thumb {
  width: 80px;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--bg-card);
}

.product-thumb.active,
.product-thumb:hover { border-color: var(--neon-primary); }

.product-info { padding-top: 0.5rem; }

.product-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-genre-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: rgba(176, 0, 255, 0.15);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-200);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-score {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
}

.product-price-box {
  background: rgba(176, 0, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-price-current {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.product-price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.75rem;
}

.product-price-save {
  display: inline-block;
  background: rgba(0, 212, 170, 0.15);
  color: #00d4aa;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.75rem;
}

.product-edition-select {
  margin-bottom: 1.5rem;
}

.edition-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.edition-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.edition-option.active,
.edition-option:hover { border-color: var(--neon-primary); background: rgba(176,0,255,0.06); }

.edition-name { font-weight: 600; font-size: 0.9rem; flex: 1; }
.edition-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.1rem; }

.product-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-cta .btn-primary,
.product-cta .btn-secondary { justify-content: center; padding: 1rem; font-size: 1rem; }

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product-feature svg { color: var(--neon-primary); flex-shrink: 0; }

.product-tabs {
  margin-top: 3rem;
}

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

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.tab-btn.active { color: var(--text-primary); }
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--neon-primary);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border-subtle); }
.specs-table td { padding: 0.6rem 0; font-size: 0.875rem; }
.specs-table td:first-child { color: var(--text-muted); width: 40%; }
.specs-table td:last-child { color: var(--text-primary); font-weight: 500; }

/* ── Cart Page ─────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.cart-items { display: flex; flex-direction: column; gap: 0.75rem; }

.cart-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: var(--transition);
}

.cart-item:hover { border-color: var(--border-glow); }

.cart-item-img {
  width: 80px; height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-subtle);
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cart-item-edition {
  font-size: 0.75rem;
  color: var(--neon-primary);
  margin-bottom: 0.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  background: rgba(176,0,255,0.08);
  border: none;
  color: var(--text-primary);
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--neon-primary); }

.qty-value {
  width: 36px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  outline: none;
}

.cart-item-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 90px;
}

.cart-item-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  transition: var(--transition);
  padding: 0.2rem;
}

.cart-item-remove:hover { color: #ff4040; }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 86px;
}

.cart-summary-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.summary-row.total {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.summary-discount { color: #00d4aa; }

.coupon-input-row {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.coupon-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
}

.coupon-input:focus { border-color: var(--neon-primary); }

.coupon-input::placeholder { color: var(--text-muted); }

.payment-methods {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pay-method-icon {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Checkout ─────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0.5rem;
  gap: 0.25rem;
}

.checkout-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}

.checkout-step.active {
  background: rgba(176, 0, 255, 0.15);
  border: 1px solid var(--border-glow);
}

.checkout-step.done {
  opacity: 0.7;
}

.step-number {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(176, 0, 255, 0.15);
  border: 1px solid var(--border-glow);
  color: var(--text-muted);
}

.checkout-step.active .step-number {
  background: var(--neon-primary);
  border-color: var(--neon-primary);
  color: #fff;
  box-shadow: 0 0 10px rgba(176, 0, 255, 0.5);
}

.checkout-step.done .step-number {
  background: var(--purple-500);
  border-color: var(--purple-500);
  color: #fff;
}

.step-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.checkout-step.active .step-label { color: var(--text-primary); }

.checkout-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.checkout-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checkout-section-title span {
  width: 28px; height: 28px;
  background: rgba(176, 0, 255, 0.15);
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-200);
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input,
.form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--neon-primary);
  background: rgba(176, 0, 255, 0.06);
  box-shadow: 0 0 8px rgba(176, 0, 255, 0.15);
}

.form-input::placeholder { color: var(--text-muted); }
.form-select { cursor: pointer; }

.form-input.error { border-color: #ff4040; }

.form-error {
  font-size: 0.72rem;
  color: #ff4040;
  margin-top: 0.25rem;
}

/* Payment Method Cards */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.5rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.payment-option.active,
.payment-option:hover {
  border-color: var(--neon-primary);
  background: rgba(176, 0, 255, 0.08);
}

.payment-option input[type="radio"] { display: none; }

.payment-option-icon { font-size: 1.5rem; }
.payment-option-name { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); }
.payment-option.active .payment-option-name { color: var(--text-primary); }

/* ── Order Summary Sidebar ─────────────────────────────────────── */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 86px;
}

.order-items { margin-bottom: 1rem; }

.order-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.order-item:last-child { border-bottom: none; }

.order-item-img {
  width: 50px; height: 36px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.order-item-name { font-size: 0.82rem; font-weight: 600; }
.order-item-edition { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }
.order-item-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; margin-left: auto; font-size: 0.95rem; white-space: nowrap; }

/* ── Confirmation Page ─────────────────────────────────────── */
.confirmation-hero {
  text-align: center;
  padding: 4rem 0;
}

.confirmation-icon {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(176, 0, 255, 0.1));
  border: 2px solid #00d4aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.3), 0 0 80px rgba(0, 212, 170, 0.1);
  animation: confirm-pulse 2s ease infinite;
}

@keyframes confirm-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 170, 0.3), 0 0 80px rgba(0, 212, 170, 0.1); }
  50% { box-shadow: 0 0 50px rgba(0, 212, 170, 0.5), 0 0 100px rgba(0, 212, 170, 0.2); }
}

.confirmation-order-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--purple-200); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal { font-size: 0.78rem; color: var(--text-muted); }

.footer-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── Toast ─────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow-neon), var(--shadow-card);
  animation: toast-in 0.3s ease;
  font-size: 0.875rem;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-text { flex: 1; color: var(--text-primary); }

/* ── Empty States ─────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: 0.5; }
.empty-state-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.empty-state-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

/* ── Divider ─────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  margin: 2rem 0;
}

/* ── Range Input ─────────────────────────────────────── */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--neon-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(176, 0, 255, 0.5);
}

/* ── Glow Line ─────────────────────────────────────── */
.glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-primary), transparent);
  opacity: 0.5;
  margin: 0;
}

/* ── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--purple-200); }
.breadcrumb .sep { color: var(--border-glow); }
.breadcrumb .current { color: var(--text-secondary); }

/* ── Legal Disclaimer ─────────────────────────────────────── */
.legal-disclaimer {
  background: rgba(176, 0, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .catalog-layout { grid-template-columns: 220px 1fr; }
  .product-layout { grid-template-columns: 1fr 360px; }
  .checkout-layout { grid-template-columns: 1fr 340px; }
  .cart-layout { grid-template-columns: 1fr 320px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .search-bar { display: none; }
  .hamburger { display: flex; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .checkout-steps { overflow-x: auto; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item-price-col { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ── Utility ─────────────────────────────────────── */
.text-muted { color: var(--text-muted); }
.text-purple { color: var(--purple-200); }
.text-neon { color: var(--neon-primary); }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.w-full { width: 100%; }

/* ── NL specific ─────────────────────────────────────── */
.age-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.age-3 { background: #4CAF50; color: #fff; }
.age-7 { background: #2196F3; color: #fff; }
.age-12 { background: #FF9800; color: #fff; }
.age-16 { background: #FF5722; color: #fff; }
.age-18 { background: #F44336; color: #fff; }

/* Custom Scrollbar for catalog */
.games-catalog-grid::-webkit-scrollbar { display: none; }

/* Neon glow pulse on hover for cards */
.game-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary), var(--neon-cyan));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}

.game-card:hover::before { opacity: 0.15; }
