/* ══════════════════════════════════════════════════════════════
   LUPZN – Premium Dark Gaming-Boutique
   Gold / Cyan / Deep Dark Theme
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --bg-void:     #060610;
  --bg-dark:     #0a0a14;
  --bg-card:     #0e0e1a;
  --bg-surface:  #111120;
  --bg-elevated: #16162a;

  --gold:        #d4a544;
  --gold-light:  #f0c96e;
  --gold-dark:   #a07830;
  --gold-glow:   rgba(212, 165, 68, 0.3);
  --gold-subtle: rgba(212, 165, 68, 0.08);

  --cyan:        #22d3ee;
  --cyan-light:  #67e8f9;
  --cyan-dark:   #0891b2;
  --cyan-glow:   rgba(34, 211, 238, 0.3);
  --cyan-subtle: rgba(34, 211, 238, 0.08);

  --text-bright: #f0ece4;
  --text-primary:#d4cfc5;
  --text-secondary:#8a8690;
  --text-muted:  #4a4654;

  --border:      #1e1e30;
  --border-gold: rgba(212, 165, 68, 0.2);
  --border-cyan: rgba(34, 211, 238, 0.2);

  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  --max-width: 1280px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--gold-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

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

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Reveal animations ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 14px 36px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: transparent;
  color: var(--gold-light);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-subtle), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::before { opacity: 1; }

.btn-glow {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,165,68,0.1), inset 0 0 15px rgba(212,165,68,0.05);
}
.btn-glow:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(212,165,68,0.25), inset 0 0 20px rgba(212,165,68,0.1);
  color: #fff;
  text-shadow: 0 0 10px var(--gold-glow);
}

.btn-cyan {
  border-color: var(--cyan);
  color: var(--cyan-light);
  box-shadow: 0 0 15px rgba(34,211,238,0.1), inset 0 0 15px rgba(34,211,238,0.05);
}
.btn-cyan::before {
  background: linear-gradient(135deg, var(--cyan-subtle), transparent 60%);
}
.btn-cyan:hover {
  border-color: var(--cyan-light);
  box-shadow: 0 0 30px rgba(34,211,238,0.25), inset 0 0 20px rgba(34,211,238,0.1);
  color: #fff;
  text-shadow: 0 0 10px var(--cyan-glow);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text-secondary);
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text-primary); }

.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-hero { padding: 18px 52px; font-size: 0.9rem; }
.btn-arrow { transition: transform .25s; }
.btn:hover .btn-arrow { transform: translateY(3px); }

/* ══════════════════════════════════════════════
   COOKIE CONSENT (DSGVO / TTDSG)
   ══════════════════════════════════════════════ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
.cookie-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-banner {
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  padding: 28px 24px;
}
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cookie-text p {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 6px;
}
.cookie-legal { font-size: .78rem !important; color: var(--text-muted) !important; }
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 180px;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  background: rgba(6, 6, 16, 0.85);
  backdrop-filter: blur(16px);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(6, 6, 16, 0.95); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-shadow: 0 0 20px var(--gold-glow);
  transition: text-shadow .3s;
}
.nav-logo:hover .nav-logo-text {
  text-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(212,165,68,0.15);
}

.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link.active { text-shadow: 0 0 12px var(--gold-glow); }

.nav-border-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  opacity: 0.4;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6, 6, 16, 0.97);
  backdrop-filter: blur(16px);
  z-index: 8999;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  border-bottom: 1px solid var(--border-gold);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 16px;
  border-radius: 4px;
  transition: all .2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-link:hover, .mobile-nav-link:active {
  color: var(--gold-light);
  background: var(--gold-subtle);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--bg-void);
  padding-top: var(--nav-h);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-effects {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(212, 165, 68, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 60%, rgba(34, 211, 238, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(212, 165, 68, 0.03) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 165, 68, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 165, 68, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px 20px;
  width: 100%;
}

.hero-logo-wrap { margin-bottom: 40px; }
.hero-logo-border {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--border-gold);
  position: relative;
}
.hero-logo-border::before,
.hero-logo-border::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--gold);
  border-style: solid;
}
.hero-logo-border::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero-logo-border::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.hero-logo-text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(212,165,68,0.12);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-bright);
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  padding: 0 16px;
}
.hero-separator {
  margin-top: 50px;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ══════════════════════════════════════════════
   SPLIT SECTION
   ══════════════════════════════════════════════ */
.split-section {
  position: relative;
  background: var(--bg-dark);
  padding: 80px 0;
}

.split-divider-top, .split-divider-bottom {
  position: absolute; left: 0; right: 0; z-index: 2; line-height: 0;
}
.split-divider-top { top: -1px; }
.split-divider-top svg path { fill: var(--bg-void); }
.split-divider-bottom { bottom: -1px; }
.split-divider-bottom svg path { fill: var(--bg-void); }

.split-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.split-center-line {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent);
  position: relative;
  margin: 0 20px;
}
.center-diamond {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cards */
.split-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.split-card:hover { transform: translateY(-4px); }

.card-glow {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s;
  pointer-events: none; z-index: 0;
}
.card-glow-gold { background: radial-gradient(ellipse at 50% 30%, rgba(212,165,68,0.06) 0%, transparent 70%); }
.card-glow-cyan { background: radial-gradient(ellipse at 50% 30%, rgba(34,211,238,0.06) 0%, transparent 70%); }
.split-card:hover .card-glow { opacity: 1; }
.split-card:hover { border-color: var(--border-gold); }
.split-card:last-child:hover { border-color: var(--border-cyan); }

.card-circuit {
  position: absolute; inset: 0;
  opacity: 0.03; pointer-events: none; z-index: 0;
}
.card-circuit-left {
  background-image: linear-gradient(0deg, var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 80% 80%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 80%, black 0%, transparent 60%);
}
.card-circuit-right {
  background-image: linear-gradient(0deg, var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 20% 80%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 80%, black 0%, transparent 60%);
}

.card-inner {
  position: relative; z-index: 1;
  padding: 48px 40px;
  text-align: center;
}
.card-icon { margin-bottom: 20px; display: flex; justify-content: center; }

.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--gold-glow);
}
.card-title.cyan { color: var(--cyan-light); text-shadow: 0 0 20px var(--cyan-glow); }

.card-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.card-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Pokémon TCG Showcase (static, no shine animation) ── */
.tcg-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 32px;
  height: 200px;
  perspective: 600px;
}
.pokemon-card {
  width: 120px; height: 168px;
  border-radius: 8px;
  position: relative;
  transition: transform .4s ease;
  cursor: default;
  flex-shrink: 0;
}
.pokemon-card-inner {
  width: 100%; height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pokemon-card-1 { transform: rotate(-12deg) translateX(20px); z-index: 1; }
.pokemon-card-1 .pokemon-card-inner {
  background: linear-gradient(165deg, #1a0a00, #3d1800, #8b3a00);
  border: 2px solid #d4610088;
  box-shadow: 0 4px 20px rgba(212, 97, 0, 0.2);
}
.pokemon-card-2 { transform: translateY(-12px); z-index: 3; }
.pokemon-card-2 .pokemon-card-inner {
  background: linear-gradient(165deg, #1a1500, #3d3000, #8b7400);
  border: 2px solid #f0c96e88;
  box-shadow: 0 4px 24px rgba(240, 201, 110, 0.2);
}
.pokemon-card-3 { transform: rotate(12deg) translateX(-20px); z-index: 1; }
.pokemon-card-3 .pokemon-card-inner {
  background: linear-gradient(165deg, #10001a, #2a0050, #6b30a0);
  border: 2px solid #a855f788;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.poke-card-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px 4px;
}
.poke-name { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.poke-hp { font-family: var(--font-display); font-size: 0.55rem; color: rgba(255,255,255,0.6); font-weight: 600; }

.poke-card-image {
  flex: 1; display: flex; align-items: center; justify-content: center; position: relative;
}
.poke-card-image::before {
  content: ''; position: absolute; inset: 6px 10px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
}
.poke-energy { width: 36px; height: 36px; border-radius: 50%; position: relative; }
.poke-energy.fire {
  background: radial-gradient(circle, #ff6b35 0%, #c62828 60%, #4a0000 100%);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(198, 40, 40, 0.3);
}
.poke-energy.fire::after { content: '\01F525'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; }
.poke-energy.electric {
  background: radial-gradient(circle, #ffd54f 0%, #f9a825 60%, #5a4000 100%);
  box-shadow: 0 0 20px rgba(255, 213, 79, 0.5), 0 0 40px rgba(249, 168, 37, 0.3);
}
.poke-energy.electric::after { content: '\26A1'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; }
.poke-energy.psychic {
  background: radial-gradient(circle, #ce93d8 0%, #7b1fa2 60%, #2a004a 100%);
  box-shadow: 0 0 20px rgba(206, 147, 216, 0.5), 0 0 40px rgba(123, 31, 162, 0.3);
}
.poke-energy.psychic::after { content: '\01F441'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 16px; }

.poke-card-info { padding: 4px 10px 8px; display: flex; justify-content: space-between; align-items: center; }
.poke-type-bar { height: 3px; width: 40px; border-radius: 2px; background: linear-gradient(90deg, #d4610088, #d46100); }
.poke-type-bar.electric { background: linear-gradient(90deg, #f9a82588, #f9a825); }
.poke-type-bar.psychic { background: linear-gradient(90deg, #7b1fa288, #7b1fa2); }
.poke-rarity { font-size: 0.5rem; color: rgba(255,255,255,0.4); letter-spacing: 2px; }

/* ── 3D Print Showcase ── */
.print-showcase { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; padding: 20px 0; }
.print-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.print-platform {
  width: 64px; height: 6px;
  background: linear-gradient(180deg, #1a2a3a, #0d1520);
  border-radius: 2px;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 2px 12px rgba(34, 211, 238, 0.1);
  order: 2;
}
.print-object { width: 56px; height: 72px; position: relative; display: flex; align-items: center; justify-content: center; order: 1; }
.print-dragon {
  background: linear-gradient(180deg, transparent, rgba(34,211,238,0.04));
  clip-path: polygon(50% 0%, 85% 25%, 90% 60%, 70% 85%, 50% 100%, 30% 85%, 10% 60%, 15% 25%);
}
.print-dragon::before { content: '\01F409'; font-size: 28px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.print-litho {
  background: linear-gradient(180deg, rgba(34,211,238,0.08), rgba(34,211,238,0.02));
  border-radius: 4px;
  border: 1px solid var(--border-cyan);
}
.litho-light {
  width: 36px; height: 48px; border-radius: 3px;
  background: linear-gradient(180deg, rgba(34,211,238,0.2), rgba(34,211,238,0.05), rgba(34,211,238,0.15));
  box-shadow: 0 0 20px rgba(34,211,238,0.15);
}
.print-dice { background: none; }
.print-dice::before { content: '\01F3B2'; font-size: 32px; }
.print-glow {
  position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.print-label {
  font-family: var(--font-heading);
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase; order: 3;
}

/* ══════════════════════════════════════════════
   SHOP SECTION
   ══════════════════════════════════════════════ */
.shop-section {
  padding: 80px 24px;
  background: var(--bg-void);
}

.shop-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 48px;
}

.shop-embed-container {
  max-width: 1000px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.shop-product {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.shop-product:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
}

.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(212,165,68,0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}
.badge-cyan {
  background: rgba(34,211,238,0.15);
  color: var(--cyan-light);
  border-color: var(--border-cyan);
}

.product-placeholder svg { opacity: 0.5; }
.product-placeholder-cyan svg { opacity: 0.5; }

.product-info {
  padding: 16px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.product-name-cyan { color: var(--cyan-light); }
.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.price-cyan { color: var(--cyan-light); }

.shop-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact-section {
  padding: 80px 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.section-header {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-shadow: 0 0 20px var(--gold-glow);
  white-space: nowrap;
}
.section-line {
  flex: 1; max-width: 140px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.contact-intro {
  text-align: center; color: var(--text-secondary);
  font-size: 1rem; margin-bottom: 48px;
}
.contact-form { max-width: 640px; margin: 0 auto; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle), 0 0 20px rgba(212,165,68,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Checkbox / DSGVO consent */
.form-group-check { margin-bottom: 24px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.82rem; color: var(--text-secondary);
  line-height: 1.5;
  text-transform: none; letter-spacing: 0; font-weight: 400;
}
.checkbox-label input[type="checkbox"] {
  width: 0; height: 0; opacity: 0; position: absolute;
}
.checkmark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  margin-top: 1px;
}
.checkbox-label input:checked + .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-label input:checked + .checkmark::after {
  content: '';
  width: 6px; height: 10px;
  border: solid var(--bg-void); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.checkbox-label input:focus-visible + .checkmark {
  box-shadow: 0 0 0 3px var(--gold-subtle);
}
.checkbox-label a { color: var(--gold-light); text-decoration: underline; }

.contact-form .btn { width: 100%; margin-top: 8px; }

.form-status {
  text-align: center; margin-top: 16px;
  font-size: 0.9rem; font-family: var(--font-heading);
  min-height: 24px;
}
.form-status.success { color: #34d399; }
.form-status.error { color: #f87171; }

/* ── Shop Page ── */
.shop-page { background: var(--bg-void); }
.shop-main {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  min-height: 80vh;
}
.shop-page-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 48px;
}
.shop-embed-zone {
  max-width: 1000px;
  margin: 0 auto;
}
.shop-info-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  text-align: center;
}
.shop-info-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.shop-info-box strong {
  color: var(--gold-light);
  font-family: var(--font-heading);
}
.shop-legal-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 32px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--bg-dark);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  color: var(--gold-light); letter-spacing: 0.14em;
  text-decoration: none;
  text-shadow: 0 0 15px var(--gold-glow);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary); letter-spacing: 0.02em;
}
.footer-legal a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,165,68,0.08);
}

/* ══════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════ */
.legal-page { background: var(--bg-void); }
.legal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(6,6,16,0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.legal-content {
  padding: 48px 24px 80px;
  max-width: 780px; margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700; color: var(--gold-light);
  margin-bottom: 40px; letter-spacing: 0.06em;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  margin-top: 40px; margin-bottom: 14px;
  color: var(--text-bright);
}
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600;
  margin-top: 24px; margin-bottom: 8px;
  color: var(--text-secondary);
}
.legal-content p { color: var(--text-secondary); margin-bottom: 12px; line-height: 1.8; }
.legal-content ul { color: var(--text-secondary); margin: 8px 0 16px 24px; line-height: 1.8; }
.legal-content strong { color: var(--text-bright); }

/* ══════════════════════════════════════════════
   RESPONSIVE – TABLET
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  .split-grid { grid-template-columns: 1fr; gap: 24px; }
  .split-center-line { display: none; }
  .split-card { margin: 0 auto; max-width: 560px; width: 100%; }

  .shop-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-logo-border { padding: 12px 32px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – MOBILE
   ══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --nav-h: 56px; }

  .hero-logo-border { padding: 10px 24px; }
  .hero-logo-text { letter-spacing: 0.14em; }
  .hero-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .hero-subtitle { font-size: 0.9rem; padding: 0 8px; }
  .hero-content { padding: 24px 16px; }
  .hero-logo-wrap { margin-bottom: 28px; }
  .btn-hero { padding: 14px 36px; font-size: 0.82rem; }

  .split-section { padding: 40px 0; }
  .split-grid { padding: 20px 16px; }
  .card-inner { padding: 32px 20px; }
  .card-title { font-size: 1.15rem; }
  .tcg-showcase { transform: scale(0.78); height: 170px; }
  .print-showcase { gap: 18px; }

  .shop-section { padding: 60px 16px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 0.85rem; }
  .product-desc { font-size: 0.72rem; }
  .product-price { font-size: 0.78rem; }
  .product-badge { font-size: 0.5rem; padding: 3px 7px; top: 6px; left: 6px; }

  .contact-section { padding: 60px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.2rem; }
  .section-line { max-width: 60px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; gap: 16px; }

  .cookie-overlay .cookie-banner { padding: 20px 16px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { flex-direction: row; justify-content: center; min-width: unset; }
  .cookie-text strong { text-align: center; }

  .mobile-nav-link { font-size: 1rem; padding: 12px 14px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – VERY SMALL
   ══════════════════════════════════════════════ */
@media (max-width: 340px) {
  .hero-logo-text { letter-spacing: 0.1em; }
  .tcg-showcase { transform: scale(0.6); height: 130px; }
  .pokemon-card { width: 90px; height: 126px; }
  .shop-grid { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto 32px; }
  .btn { padding: 12px 24px; font-size: 0.72rem; }
  .btn-sm { padding: 8px 16px; font-size: 0.68rem; }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 48px; }
  .nav-burger { min-width: 44px; min-height: 44px; justify-content: center; }
  .mobile-nav-link { min-height: 48px; display: flex; align-items: center; }
  .pokemon-card { pointer-events: none; }
  .split-card:hover { transform: none; }
}

/* ══════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.25em;
  background: linear-gradient(135deg, #f5dfa0, #d4a544, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.8);
  animation: preloaderIn 1s ease forwards;
}
.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--border);
  margin-top: 1.5rem;
  border-radius: 1px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: preloaderBar 1.2s ease forwards;
}
@keyframes preloaderIn {
  0%   { opacity: 0; transform: scale(0.8); }
  50%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes preloaderBar {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ══════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  z-index: 10000;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.scroll-top svg { transition: stroke 0.2s; }
.scroll-top:hover svg { stroke: var(--bg-void); }


/* ══════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════ */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-dark);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover,
.faq-item.open {
  border-color: var(--border-gold);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.02em;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-answer-inner a {
  color: var(--gold);
  text-decoration: none;
}
.faq-answer-inner a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .faq-question { padding: 1rem 1.25rem; }
  .faq-question h3 { font-size: 1rem; }
  .faq-answer-inner { padding: 0 1.25rem 1rem; font-size: 0.9rem; }
}
