/* ============================================================
   BLOODY PRESSACK — Static Site Stylesheet
   ============================================================ */

/* --- Font -------------------------------------------------- */
@font-face {
  font-family: 'TrashHand';
  src: url('assets/TrashHand.TTF') format('truetype');
  font-display: swap;
}

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: #060606;
  color: #f2f2f2;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; background: none; font-family: inherit; }

/* --- Variables --------------------------------------------- */
:root {
  --primary:    #cc1a1a;
  --bg:         #060606;
  --bg-alt:     #0e0e0e;
  --card:       #0f0f0f;
  --border:     #292929;
  --text:       #f2f2f2;
  --muted:      #999;
  --footer-bg:  #111111;
}

/* --- Typography -------------------------------------------- */
.scratchy {
  font-family: 'TrashHand', 'Comic Sans MS', cursive;
  font-weight: 400;
  letter-spacing: 0.025em;
}

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

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
.section-heading h2 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section-heading .red-bar {
  width: 6rem;
  height: 4px;
  background: var(--primary);
}

/* --- Fade-in on scroll ------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
}
#navbar .nav-inner {
  background: rgba(6,6,6,0.85);
  padding: 0.75rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#navbar.scrolled .nav-inner {
  background: rgba(6,6,6,0.97);
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Logo */
.nav-logo { flex-shrink: 0; opacity: 1; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.8; }
.nav-logo svg { height: 36px; padding-top: 3px; }

/* Social */
.nav-social { display: flex; align-items: center; gap: 1rem; }
.nav-social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex; align-items: center;
}
.nav-social a:hover { color: var(--primary); }
.nav-social svg { width: 17px; height: 17px; }

.nav-spacer { flex: 1; }

/* Desktop links */
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* Cart button */
.nav-cart {
  position: relative;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  padding: 0.375rem;
  display: flex;
}
.nav-cart:hover { color: #fff; }
.nav-cart svg { width: 20px; height: 20px; }
.cart-badge {
  display: none;
  position: absolute;
  top: -4px; right: -4px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 999px;
  min-width: 18px; min-height: 18px;
  padding: 0 3px;
  align-items: center; justify-content: center;
  line-height: 1;
}
.cart-badge.visible { display: flex; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  padding: 0.5rem;
  color: #fff;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-hamburger svg { width: 24px; height: 24px; }

/* Mobile dropdown */
#mobile-menu {
  display: none;
  background: rgba(6,6,6,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
#mobile-menu a:hover { color: var(--primary); background: rgba(255,255,255,0.03); }

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/Logo.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay-1 {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.70);
  mix-blend-mode: multiply;
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%, #060606 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-year {
  color: var(--primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  animation: heroFadeUp 0.8s ease both;
}
.hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 0.82;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  animation: heroScale 1s 0.2s ease both;
}
.hero-sub {
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 3rem;
  animation: heroFade 1s 0.8s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: heroFade 1s 1.5s ease both;
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.scroll-bar {
  width: 2px; height: 4rem;
  background: #333;
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--primary);
  animation: scrollAnim 1.5s linear infinite;
}

@keyframes heroFadeUp  { from { opacity:0; transform:translateY(50px) } to { opacity:1; transform:none } }
@keyframes heroScale   { from { opacity:0; transform:scale(0.9) } to { opacity:1; transform:none } }
@keyframes heroFade    { from { opacity:0 } to { opacity:1 } }
@keyframes scrollAnim  { from { transform:translateY(-100%) } to { transform:translateY(200%) } }

/* ============================================================
   SECTION NAV
   ============================================================ */
.section-nav {
  background: var(--bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.section-nav li a {
  display: block;
  padding: 1.25rem 2rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, background 0.2s;
}
.section-nav li:last-child a { border-right: none; }
.section-nav li a:hover { color: var(--primary); background: rgba(255,255,255,0.03); }

/* ============================================================
   BAND PHOTO SEPARATOR
   ============================================================ */
.band-separator {
  position: relative;
  height: 380px;
  border: 0;
}
.band-separator .sep-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.band-separator .sep-tint {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}
.band-separator .sep-top {
  position: absolute; left: 0; right: 0;
  top: -2px; height: 75px;
  background-image: url('assets/bkg-top-border.svg');
  background-size: cover;
  background-repeat: repeat-x;
  z-index: 2; pointer-events: none;
}
.band-separator .sep-bottom {
  position: absolute; left: 0; right: 0;
  bottom: -2px; height: 75px;
  background-image: url('assets/bkg-bottom-border.svg');
  background-size: cover;
  background-repeat: repeat-x;
  z-index: 2; pointer-events: none;
}

/* ============================================================
   EVENTS / KONZERTE
   ============================================================ */
#konzerte {
  padding: 6rem 0 8rem;
  background: var(--bg);
}
.event-list { display: flex; flex-direction: column; gap: 1rem; }
.event-row {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  gap: 1rem;
}
.event-row:hover { border-color: rgba(204,26,26,0.5); }
@media (min-width: 768px) {
  .event-row {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.event-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .event-body { flex-direction: row; align-items: center; gap: 2rem; }
}
.event-date {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 140px;
}
.event-details h3 {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.2s;
}
.event-row:hover .event-details h3 { color: var(--primary); }
.event-meta {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--muted); font-weight: 600;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.event-meta .dot { color: var(--primary); }
.event-action { flex-shrink: 0; }
@media (min-width: 768px) { .event-action { margin-left: 2rem; } }
.btn-tickets {
  display: block;
  padding: 0.75rem 2rem;
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-tickets:hover { background: var(--primary); color: #fff; }

/* ============================================================
   MUSIC
   ============================================================ */
#musik {
  padding: 6rem 0 8rem;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
#musik::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 640px) { .cd-grid { grid-template-columns: 1fr 1fr; } }

.cd-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.cd-card:hover { border-color: rgba(204,26,26,0.5); }
.cd-card-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #0f0f11;
}
.cd-card-art img { width: 100%; height: 100%; object-fit: cover; }
.cd-disc-wrap { width: 80%; height: 80%; padding: 1rem; }
.cd-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.cd-info {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 1.25rem;
  z-index: 2;
}
.cd-year {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.cd-title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.streaming-links { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.stream-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.stream-btn:hover {
  color: #fff;
  background: rgba(0,0,0,0.8);
  border-color: var(--service-color, var(--primary));
}
.stream-btn .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--service-color, #fff);
  flex-shrink: 0;
}

/* ============================================================
   VIDEO
   ============================================================ */
#video {
  padding: 6rem 0 8rem;
  background: var(--bg);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(204,26,26,0.15);
}
/* iframe is hidden until consent — src is only injected after accept */
.video-embed .yt-embed {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: none;
}
.video-embed .yt-embed.loaded { display: block; }

/* Placeholder shown before consent */
.yt-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: opacity 0.25s;
}
.yt-placeholder.hidden { display: none; }
.yt-placeholder-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 2rem; text-align: center;
  max-width: 320px;
}
.yt-icon {
  width: 56px; height: 40px;
  background: #ff0000;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.yt-icon svg { width: 24px; height: 24px; }
.yt-placeholder-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.6;
}
.btn-yt-consent {
  padding: 0.6rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none; cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.btn-yt-consent:hover { background: #a81414; }

/* ============================================================
   SHOP / MERCH
   ============================================================ */
#shop {
  padding: 6rem 0 8rem;
  background: var(--bg);
}
.merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 640px)  { .merch-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .merch-grid { grid-template-columns: 1fr 1fr 1fr; } }

.merch-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.merch-card:hover { border-color: rgba(204,26,26,0.5); }
.merch-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}
.merch-card.has-full-img img { padding: 0.5rem; }
.price-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  z-index: 2;
}
.merch-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  pointer-events: none;
}
.merch-info {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 1rem;
  z-index: 2;
}
.merch-type {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.1rem;
}
.merch-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.size-picker { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.75rem; }
.size-btn {
  padding: 0.25rem 0.625rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.15s;
}
.size-btn:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.size-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-add-cart {
  display: block;
  width: 100%;
  padding: 0.6rem;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fff;
  color: #000;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-add-cart:hover { background: var(--primary); color: #fff; }
.btn-add-cart.flash { background: var(--primary); color: #fff; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 60;
}
.cart-backdrop.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: #0a0a0a;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 70;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: none; }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-drawer-header h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.cart-count-label { color: var(--primary); font-size: 1rem; font-family: inherit; margin-left: 0.75rem; }
.cart-close {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  padding: 0.25rem;
}
.cart-close:hover { color: #fff; }
.cart-close svg { width: 24px; height: 24px; }
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; text-align: center; color: rgba(255,255,255,0.35); gap: 0.75rem;
  padding: 5rem 0;
}
.cart-empty svg { width: 4rem; height: 4rem; opacity: 0.3; }
.cart-empty p { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.cart-item {
  display: flex; gap: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem;
}
.cart-item-img { width: 5rem; height: 5rem; object-fit: contain; background: #111; flex-shrink: 0; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-type { color: var(--primary); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.1rem; }
.cart-item-title { color: #fff; font-weight: 700; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-size { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-bottom: 0.75rem; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; }
.qty-controls {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.qty-btn {
  padding: 0.2rem 0.625rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem; font-weight: 700;
  transition: color 0.15s, background 0.15s;
  line-height: 1.4;
}
.qty-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.qty-val {
  padding: 0.2rem 0.75rem;
  color: #fff; font-size: 0.85rem; font-weight: 700;
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  min-width: 2.25rem; text-align: center;
}
.cart-item-right { display: flex; align-items: center; gap: 0.75rem; }
.cart-item-line-price { color: #fff; font-weight: 700; font-size: 0.85rem; }
.cart-remove { color: rgba(255,255,255,0.3); transition: color 0.2s; font-size: 0.85rem; }
.cart-remove:hover { color: var(--primary); }
.cart-footer {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  flex-direction: column; gap: 1rem;
}
.cart-footer.visible { display: flex; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; }
.cart-total-label { color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cart-total-val { color: #fff; font-weight: 900; font-size: 1.25rem; }
.cart-note { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.btn-checkout {
  width: 100%; padding: 1rem;
  background: var(--primary); color: #fff;
  font-weight: 900; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.2s;
}
.btn-checkout:hover { background: #a81414; }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 80;
}
.modal-backdrop.open { display: block; }
.checkout-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 90;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.checkout-modal.open { display: flex; }
.checkout-panel {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%; max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.checkout-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0; background: #0a0a0a;
}
.checkout-header h2 { font-size: 1.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.checkout-close { color: rgba(255,255,255,0.5); transition: color 0.2s; padding: 0.25rem; }
.checkout-close:hover { color: #fff; }
.checkout-close svg { width: 24px; height: 24px; }
.checkout-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.field-group-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.checkout-field {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 0.875rem; font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.checkout-field:focus { border-color: var(--primary); }
.checkout-field::placeholder { color: rgba(255,255,255,0.3); }
.checkout-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.checkout-order-summary { border: 1px solid rgba(255,255,255,0.08); }
.order-item {
  display: flex; justify-content: space-between;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
}
.order-item:last-child { border-bottom: none; }
.order-item-name { color: rgba(255,255,255,0.8); }
.order-item-price { color: #fff; font-weight: 700; }
.checkout-total-row {
  display: flex; justify-content: space-between; align-items: center;
}
.checkout-total-row .label { color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.checkout-total-row .val { color: #fff; font-weight: 900; font-size: 1.125rem; }
.checkout-hint { color: rgba(255,255,255,0.3); font-size: 0.7rem; line-height: 1.6; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--primary); color: #fff;
  font-weight: 900; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.2s;
  border: none; cursor: pointer;
  font-family: inherit;
}
.btn-submit:hover { background: #a81414; }
.checkout-success {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1.5rem; gap: 1rem;
}
.checkout-success.visible { display: flex; }
.checkout-success .check { font-size: 3rem; color: var(--primary); }
.checkout-success h3 { font-size: 2rem; text-transform: uppercase; color: #fff; }
.checkout-success p { color: var(--muted); font-size: 0.9rem; max-width: 360px; line-height: 1.6; }
.checkout-success button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--primary); color: #fff;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.8rem;
  transition: background 0.2s;
}
.checkout-success button:hover { background: #a81414; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-body {
  background: #111111;
  padding: 5rem 0 2.5rem;
}
.footer-center {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer-logo-wrap { margin-bottom: 2rem; }
.footer-logo-wrap svg { height: 60px; }
.footer-band-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: #fff; line-height: 1; margin-bottom: 0.5rem;
}
.footer-tagline {
  color: #AAAAAA; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; margin-bottom: 3rem;
}
.footer-social { display: flex; gap: 1.5rem; margin-bottom: 0; }
.footer-social a {
  width: 3rem; height: 3rem;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #AAAAAA; transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bar {
  background: #060606;
  padding: 1.25rem 0;
}
.footer-bar-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #AAAAAA;
}
@media (min-width: 768px) { .footer-bar-inner { flex-direction: row; } }
.footer-bar-links { display: flex; gap: 1.5rem; }
.footer-bar-links a { transition: color 0.2s; }
.footer-bar-links a:hover { color: var(--primary); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: none; }
.cookie-banner p {
  flex: 1;
  font-size: 0.8rem;
  color: #AAAAAA;
  line-height: 1.6;
  min-width: 220px;
}
.cookie-banner a { color: var(--primary); }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none; cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: #a81414; }
.btn-cookie-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #AAAAAA;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}
.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 2.5rem; right: 1rem;
  width: 3rem; height: 3rem;
  background: var(--primary);
  color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 40; transition: background 0.2s;
  cursor: pointer; border: none;
}
.scroll-top:hover { background: #fff; color: #000; }
.scroll-top.visible { display: flex; }
.scroll-top svg { width: 18px; height: 18px; }

/* ============================================================
   LEGAL PAGES (impressum / datenschutz)
   ============================================================ */
.legal-page { min-height: 100vh; background: var(--bg); }
.legal-nav {
  position: sticky; top: 0;
  background: rgba(6,6,6,0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0; z-index: 20;
}
.legal-nav-inner { display: flex; align-items: center; gap: 1rem; }
.legal-back {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--muted);
  font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--primary); }
.legal-back svg { width: 12px; height: 12px; }
.legal-sep { color: rgba(255,255,255,0.15); }
.legal-crumb { font-size: 1.25rem; color: #fff; }
.legal-content { padding: 4rem 0 6rem; }
.legal-content h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 0.5rem;
}
.legal-date { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-size: 1.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #fff; margin-bottom: 1rem;
}
.legal-section p, .legal-section li {
  color: #AAAAAA; line-height: 1.75; font-size: 0.95rem;
}
.legal-section p + p { margin-top: 0.75rem; }
.legal-section ul { list-style: disc; padding-left: 1.5rem; margin-top: 0.75rem; }
.legal-section ul li + li { margin-top: 0.25rem; }
.legal-section a { color: var(--primary); }
.legal-section a:hover { text-decoration: underline; }
.legal-section code { font-size: 0.8em; background: rgba(255,255,255,0.08); padding: 0.1rem 0.35rem; border-radius: 3px; }
