/* ═══════════════════════════════════════
   ZIZZYBEATZ – style.css
   ═══════════════════════════════════════ */

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

:root {
  --bg:        #0a0a0f;
  --bg2:       #111118;
  --bg3:       #1a1a24;
  --accent:    #c8ff00;
  --accent2:   #a8d400;
  --purple:    #7c3aed;
  --text:      #f0f0f0;
  --text-muted:#888;
  --border:    rgba(255,255,255,0.07);
  --card-bg:   #13131c;
  --radius:    14px;
  --transition:0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem; font-weight: 700; letter-spacing: 2px;
  color: #fff;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cart {
  position: relative; cursor: pointer;
  font-size: 1.2rem; color: var(--text);
  transition: var(--transition);
}
.nav-cart:hover { color: var(--accent); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--accent); color: #000;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(200,255,0,0.08) 0%, transparent 60%),
    var(--bg);
  text-align: center; padding: 0 5%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-sub {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease both;
}

.hero-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900; line-height: 1;
  letter-spacing: 4px; color: #fff;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-content h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.05rem; color: var(--text-muted);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; animation: bounce 2s infinite;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  background: var(--accent); color: #000;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 1px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: 0 0 30px rgba(200,255,0,0.3);
}
.btn-primary:hover {
  background: #fff; transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(200,255,0,0.5);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  background: transparent; color: var(--text);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
}
.full-width { width: 100%; justify-content: center; }

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  flex: 1; min-width: 150px;
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,255,0,0.04); }
.stat-item h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem; font-weight: 700; color: var(--accent);
}
.stat-item p { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ══════════════════════════════
   SECTION HEADER
══════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
}
.section-header h2 span { color: var(--accent); }
.section-sub { color: var(--text-muted); margin-top: 0.75rem; font-size: 0.95rem; }

/* ══════════════════════════════
   BEATS SECTION
══════════════════════════════ */
.beats-section {
  padding: 6rem 5%;
  background: var(--bg);
}

/* Filter Bar */
.filter-bar {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 3rem;
}
.filter-btn {
  padding: 9px 22px; border-radius: 50px;
  background: var(--bg3); color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); color: #000; border-color: var(--accent);
}

/* Beat Grid */
.beats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}

/* Beat Card */
.beat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.beat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,255,0,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.beat-card.hidden { display: none; }

.beat-cover {
  position: relative; height: 180px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.beat-cover-placeholder { font-size: 4rem; opacity: 0.3; }

.beat-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.beat-card:hover .beat-overlay { opacity: 1; }

.play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); color: #000;
  border: none; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(200,255,0,0.5);
}
.play-btn:hover { transform: scale(1.1); background: #fff; }
.play-btn.playing { background: var(--purple); color: #fff; }

.beat-genre-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(200,255,0,0.15); color: var(--accent);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(200,255,0,0.3);
}
.beat-genre-tag.drill { background: rgba(239,68,68,0.15); color: #ef4444; border-color: rgba(239,68,68,0.3); }
.beat-genre-tag.afro  { background: rgba(251,146,60,0.15); color: #fb923c; border-color: rgba(251,146,60,0.3); }
.beat-genre-tag.rnb   { background: rgba(167,139,250,0.15); color: #a78bfa; border-color: rgba(167,139,250,0.3); }
.beat-genre-tag.boombap { background: rgba(34,211,238,0.15); color: #22d3ee; border-color: rgba(34,211,238,0.3); }

.beat-info { padding: 1.2rem; }
.beat-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }

.beat-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem;
}
.beat-meta span { display: flex; align-items: center; gap: 5px; }
.beat-meta i { color: var(--accent); font-size: 0.7rem; }

/* Waveform */
.beat-waveform {
  display: flex; align-items: center; gap: 3px;
  height: 32px; margin-bottom: 1rem;
}
.waveform-bar {
  flex: 1; border-radius: 2px;
  background: rgba(200,255,0,0.2);
  animation: wave 1.5s ease-in-out infinite alternate;
}
.waveform-bar:nth-child(1)  { height: 40%; animation-delay: 0s; }
.waveform-bar:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.waveform-bar:nth-child(3)  { height: 55%; animation-delay: 0.2s; }
.waveform-bar:nth-child(4)  { height: 90%; animation-delay: 0.3s; }
.waveform-bar:nth-child(5)  { height: 45%; animation-delay: 0.4s; }
.waveform-bar:nth-child(6)  { height: 80%; animation-delay: 0.5s; }
.waveform-bar:nth-child(7)  { height: 60%; animation-delay: 0.6s; }
.waveform-bar:nth-child(8)  { height: 100%; animation-delay: 0.7s; }
.waveform-bar:nth-child(9)  { height: 50%; animation-delay: 0.8s; }
.waveform-bar:nth-child(10) { height: 75%; animation-delay: 0.9s; }
.waveform-bar:nth-child(11) { height: 35%; animation-delay: 1.0s; }
.waveform-bar:nth-child(12) { height: 85%; animation-delay: 1.1s; }
.waveform-bar:nth-child(13) { height: 55%; animation-delay: 1.2s; }
.waveform-bar:nth-child(14) { height: 70%; animation-delay: 1.3s; }
.waveform-bar:nth-child(15) { height: 40%; animation-delay: 1.4s; }
.waveform-bar:nth-child(16) { height: 90%; animation-delay: 0.2s; }
.waveform-bar:nth-child(17) { height: 60%; animation-delay: 0.5s; }
.waveform-bar:nth-child(18) { height: 45%; animation-delay: 0.8s; }
.waveform-bar:nth-child(19) { height: 75%; animation-delay: 1.1s; }
.waveform-bar:nth-child(20) { height: 55%; animation-delay: 0.3s; }

.beat-card:hover .waveform-bar { background: rgba(200,255,0,0.5); }

.beat-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.beat-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.75rem; color: var(--text-muted); }
.price-amount { font-size: 1.4rem; font-weight: 700; color: var(--accent); }

.add-cart-btn {
  padding: 9px 18px; border-radius: 50px;
  background: rgba(200,255,0,0.1); color: var(--accent);
  border: 1px solid rgba(200,255,0,0.3);
  font-size: 0.8rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.add-cart-btn:hover { background: var(--accent); color: #000; }

/* ══════════════════════════════
   AUDIO PLAYER
══════════════════════════════ */
.audio-player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 0.9rem 5%;
  background: rgba(17,17,24,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.audio-player.visible { transform: translateY(0); }

.player-info { display: flex; align-items: center; gap: 12px; min-width: 160px; }
.player-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #000; flex-shrink: 0;
}
.player-title { font-size: 0.85rem; font-weight: 700; }
.player-artist { font-size: 0.72rem; color: var(--accent); }

.player-controls { display: flex; align-items: center; gap: 1rem; }
.player-controls button {
  background: none; border: none; color: var(--text-muted);
  font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.player-controls button:hover { color: var(--text); }
.player-play-btn {
  width: 42px !important; height: 42px;
  border-radius: 50% !important;
  background: var(--accent) !important; color: #000 !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem !important;
  box-shadow: 0 0 20px rgba(200,255,0,0.3);
}
.player-play-btn:hover { background: #fff !important; transform: scale(1.05); }

.player-progress-wrap {
  flex: 1; display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; color: var(--text-muted); min-width: 200px;
}
.player-progress-wrap input[type=range] {
  flex: 1; -webkit-appearance: none; height: 4px;
  background: var(--bg3); border-radius: 2px; outline: none; cursor: pointer;
}
.player-progress-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: var(--accent); cursor: pointer;
}

.player-volume { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; }
.player-volume input[type=range] {
  width: 80px; -webkit-appearance: none; height: 4px;
  background: var(--bg3); border-radius: 2px; outline: none; cursor: pointer;
}
.player-volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  border-radius: 50%; background: var(--accent); cursor: pointer;
}

/* ══════════════════════════════
   LIZENZEN
══════════════════════════════ */
.lizenzen-section {
  padding: 6rem 5%;
  background: var(--bg2);
}

.lizenzen-grid {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center; max-width: 1000px; margin: 0 auto;
}

.lizenz-card {
  flex: 1; min-width: 260px; max-width: 320px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem; text-align: center;
  position: relative; transition: var(--transition);
}
.lizenz-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,255,0,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.lizenz-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(200,255,0,0.05) 0%, var(--card-bg) 100%);
  transform: scale(1.04);
}
.lizenz-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  padding: 4px 18px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

.lizenz-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.lizenz-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem;
}
.lizenz-price {
  font-size: 2.8rem; font-weight: 900; color: var(--accent);
  margin-bottom: 1.5rem;
}

.lizenz-card ul { text-align: left; margin-bottom: 2rem; }
.lizenz-card ul li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-muted);
}
.lizenz-card ul li:last-child { border-bottom: none; }
.lizenz-card ul li .fa-check { color: var(--accent); }
.lizenz-card ul li .fa-times.red { color: #ef4444; }

.lizenz-btn {
  width: 100%; padding: 13px; border-radius: 50px;
  background: rgba(200,255,0,0.1); color: var(--accent);
  border: 1px solid rgba(200,255,0,0.3);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.lizenz-btn:hover, .lizenz-card.featured .lizenz-btn {
  background: var(--accent); color: #000;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section {
  padding: 6rem 5%;
  background: var(--bg);
}

.about-content {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 4rem; align-items: center; flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 280px; }
.about-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin: 0.5rem 0 1.5rem;
}
.about-text h2 span { color: var(--accent); }
.about-text p {
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: 1rem; font-size: 0.95rem;
}

.about-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.about-tags span {
  padding: 7px 16px; border-radius: 50px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 600;
}

.about-visual {
  flex: 1; min-width: 280px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.about-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition);
}
.about-card:hover {
  border-color: rgba(200,255,0,0.3);
  transform: translateY(-4px);
}
.about-card i {
  font-size: 1.6rem; color: var(--accent); margin-bottom: 0.75rem;
}
.about-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.about-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════
   KONTAKT
══════════════════════════════ */
.kontakt-section {
  padding: 6rem 5%;
  background: var(--bg2);
}

.kontakt-wrapper {
  display: flex; gap: 3rem; flex-wrap: wrap;
  max-width: 1000px; margin: 0 auto;
}

.kontakt-form { flex: 2; min-width: 280px; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 200px; margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  outline: none; transition: var(--transition); resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; }

.kontakt-info { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 1.2rem; }
.kontakt-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  transition: var(--transition);
}
.kontakt-item:hover { border-color: rgba(200,255,0,0.3); transform: translateX(4px); }
.kontakt-item i {
  font-size: 1.4rem; color: var(--accent); width: 30px; text-align: center;
}
.kontakt-item h4 { font-size: 0.82rem; font-weight: 700; margin-bottom: 2px; }
.kontakt-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════
   CART MODAL
══════════════════════════════ */
.cart-modal {
  position: fixed; right: -420px; top: 0; bottom: 0;
  width: 400px; z-index: 2000;
  background: var(--bg2); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart-modal.open { right: 0; }

.cart-backdrop {
  position: fixed; inset: 0; z-index: 1999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: none;
}
.cart-backdrop.visible { display: block; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.cart-header h3 i { color: var(--accent); }
.cart-header button {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.2rem; cursor: pointer; transition: var(--transition);
}
.cart-header button:hover { color: var(--text); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { color: var(--text-muted); text-align: center; padding: 2rem 0; font-size: 0.9rem; }

.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cart-item-info h4 { font-size: 0.9rem; font-weight: 700; }
.cart-item-info p { font-size: 0.8rem; color: var(--accent); margin-top: 2px; }
.cart-item-remove {
  background: none; border: none; color: #ef4444;
  cursor: pointer; font-size: 0.85rem; transition: var(--transition);
}
.cart-item-remove:hover { color: #fff; }

.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; border-top: 1px solid var(--border);
  font-size: 1rem; font-weight: 700;
}
#cartTotal { font-size: 1.4rem; color: var(--accent); }

.cart-modal .btn-primary { margin: 0 1.5rem 1.5rem; }

/* ══════════════════════════════
   TOAST
══════════════════════════════ */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--accent); color: #000;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  opacity: 0; transition: all 0.3s ease; z-index: 3000;
  pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding: 4rem 5%; max-width: 1200px; margin: 0 auto;
}

.footer-brand { flex: 2; min-width: 220px; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.footer-links { flex: 1; min-width: 140px; }
.footer-links h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text);
  margin-bottom: 1.2rem;
}
.footer-links ul li { margin-bottom: 0.7rem; }
.footer-links ul li a {
  font-size: 0.85rem; color: var(--text-muted);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  text-align: center; padding: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes wave {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: var(--bg2); padding: 1.5rem 5%; border-bottom: 1px solid var(--border); gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .burger { display: flex; }

  .hero-content h1 { font-size: clamp(3rem, 15vw, 6rem); }
  .stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .beats-grid { grid-template-columns: 1fr; }
  .lizenzen-grid { flex-direction: column; align-items: center; }
  .lizenz-card.featured { transform: none; }
  .lizenz-card.featured:hover { transform: translateY(-6px); }

  .about-content { flex-direction: column; }
  .about-visual { grid-template-columns: 1fr 1fr; }

  .kontakt-wrapper { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 2rem; }

  .audio-player { gap: 0.8rem; padding: 0.8rem 4%; }
  .player-volume { display: none; }

  .cart-modal { width: 100%; right: -100%; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .about-visual { grid-template-columns: 1fr; }
  .player-progress-wrap { min-width: 120px; }
}
