/* ── CART TOAST ── */
.cart-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(6,13,32,0.96);
  border: 1px solid rgba(0,212,255,0.35);
  color: var(--white);
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 3000;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,212,255,0.2);
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── SIZE GUIDE MODAL ── */
#size-guide-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2100;
  backdrop-filter: blur(6px);
}
#size-guide-overlay.open { display: block; }

#size-guide-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(560px, 92vw);
  background: var(--dark2);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 16px;
  z-index: 2200;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: sgSlideIn 0.28s cubic-bezier(0.2,0,0.2,1);
  max-height: 90vh;
  overflow-y: auto;
}
#size-guide-modal.open { display: block; }
@keyframes sgSlideIn {
  from { opacity: 0; transform: translate(-50%, -44%); }
  to   { opacity: 1; transform: translate(-50%, -48%); }
}
.sg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.sg-title {
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--cyan);
}
.sg-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.sg-close:hover { color: var(--pink); }
.sg-note {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
}
.sg-table-wrap { overflow-x: auto; }
.sg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.sg-table th {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--cyan);
  border-bottom: 1px solid rgba(0,212,255,0.2);
  padding: 8px 12px;
  text-align: left;
}
.sg-table td {
  padding: 10px 12px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sg-table tbody tr:hover { background: rgba(0,212,255,0.04); }
.sg-table td:first-child { font-weight: 600; color: var(--white); }
.sg-tip {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray);
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 6px;
  padding: 10px 14px;
}
.sg-tip strong { color: var(--cyan); }
.size-guide-link {
  background: none;
  border: none;
  color: var(--cyan);
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.size-guide-link:hover { opacity: 1; }

/* ── TESTIMONIALS ── */
#testimonials {
  background: linear-gradient(180deg, var(--space) 0%, var(--dark) 100%);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
}
.testimonial-stars { color: #ffd600; font-size: 15px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--white); font-size: 13px; }
.testimonial-role { font-size: 11px; color: var(--gray); margin-top: 2px; }

/* ── NEWSLETTER ── */
#newsletter { padding: 80px 0; background: var(--space); }
.newsletter-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(123,47,247,0.08), rgba(255,0,128,0.06));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.newsletter-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,247,0.15), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.newsletter-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.newsletter-desc {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 16px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 13px 18px;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--cyan); }
.newsletter-input::placeholder { color: var(--gray); }
.newsletter-btn {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 13px 24px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}
.newsletter-btn:hover { opacity: 0.88; transform: scale(1.03); }
.newsletter-form {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.newsletter-form.fade-out {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.newsletter-success {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 16px;
  margin-bottom: 8px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  left: 0; right: 0;
}
.newsletter-success.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Wrapper to allow absolute positioning of success msg */
.newsletter-swap {
  position: relative;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.newsletter-fine { font-size: 11px; color: var(--gray); }
@media (max-width: 540px) {
  .newsletter-box { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { border-radius: 50px; }
}

/* ── MUSIC PLAYER ── */
.music-player {
  position: fixed;
  top: 68px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  opacity: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 13, 32, 0.95);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(0.2,0,0.2,1), opacity 0.4s;
  white-space: nowrap;
}
.music-player.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
@media (max-width: 680px) {
  .music-player { top: 64px; }
}
.music-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
}
.music-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(0,212,255,0.6); }
.music-play-btn.playing {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 12px rgba(255,0,128,0.4);
}
.music-icon { line-height: 1; }

.music-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 160px;
  max-width: 220px;
}
.music-track {
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.music-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.music-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  border-radius: 2px;
  transition: width 0.5s linear;
}

.music-vol-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.music-vol-btn:hover { opacity: 1; }

.music-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}
.music-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0,212,255,0.5);
  transition: transform 0.15s;
}
.music-vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.music-vol-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  cursor: pointer;
  border: none;
  box-shadow: 0 0 6px rgba(0,212,255,0.5);
}
.music-vol-slider::-moz-range-track {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  border: none;
}

@media (max-width: 480px) {
  .music-info { min-width: 110px; }
  .music-track { font-size: 8px; }
  .music-vol-slider { width: 50px; }
}
@media (max-width: 360px) {
  .music-vol-slider { display: none; }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cyan:    #00d4ff;
  --cyan2:   #0099cc;
  --pink:    #ff0080;
  --pink2:   #cc0066;
  --purple:  #7b2ff7;
  --purple2: #5a1acc;
  --blue:    #1a4fff;
  --space:   #03061a;
  --dark:    #060d20;
  --dark2:   #0a1528;
  --dark3:   #0d1e38;
  --white:   #ffffff;
  --gray:    #6a8aaa;
  --text:    #a8c8e8;
}
html { scroll-behavior: smooth; }
body {
  background: var(--space);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 6, 26, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Desktop nav links — horizontal row in the nav bar */
.nav-links {
  display: flex; gap: 20px; list-style: none; margin: 0; padding: 0;
  position: fixed; top: 0; right: 140px;
  height: 68px; align-items: center;
  z-index: 1000;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

/* Mid-size laptops — prevent nav overlapping logo */
@media (max-width: 1100px) and (min-width: 901px) {
  .nav-links { gap: 12px; right: 80px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.5px; }
  .nav-logo { font-size: 15px; }
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10001;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Close button — hidden on desktop */
.nav-close-li { display: none; }

/* ── Mobile nav ── */
@media (max-width: 900px) {
  nav { padding: 14px 16px; }
  .nav-hamburger { display: flex; }
  .nav-logo {
    position: static; transform: none;
    font-size: 13px; text-align: center;
    flex: 1; padding: 0 10px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .nav-cart-btn { font-size: 14px; padding: 5px 10px; }

  /* Dropdown menu — top right, compact */
  .nav-links {
    display: none !important;
    position: fixed;
    top: 50px; right: 12px;
    width: auto;
    background: none;
    border: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    z-index: 10000;
    margin: 0; padding: 0;
  }
  .nav-links.open { display: flex !important; }
  .nav-links li {
    list-style: none;
    text-align: right;
    width: auto;
  }
  .nav-links a {
    display: inline-block;
    margin: 1px 0;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: linear-gradient(90deg, #00d4ff, #3366ff) !important;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
  }
  .nav-links a:hover { opacity: 0.85; }
  .nav-close-li {
    display: none;
  }
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
  animation: lbZoomIn 0.25s cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes lbZoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
#lightbox-img {
  max-width: 80vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.25), 0 24px 80px rgba(0,0,0,0.7);
  cursor: default;
}
.lightbox-caption {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2001;
}
.lightbox-close:hover { background: var(--pink); border-color: var(--pink); }

/* Merch photos get a zoom cursor to hint they're clickable */
.merch-photo { cursor: zoom-in; }

/* ── NAV CART BUTTON ── */
.nav-cart-btn {
  position: relative;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cart-btn:hover { background: rgba(0,212,255,0.16); border-color: var(--cyan); }
.cart-badge {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
}

/* ── CART OVERLAY ── */
#cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  backdrop-filter: blur(4px);
}
#cart-overlay.open { display: block; }

/* ── CART DRAWER ── */
#cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--dark2);
  border-left: 1px solid rgba(0,212,255,0.18);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,212,255,0.12);
  flex-shrink: 0;
}
.cart-title {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--cyan);
}
.cart-close-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s;
}
.cart-close-btn:hover { color: var(--pink); }

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-empty {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  padding: 60px 0;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--dark3);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 8px;
}
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--dark);
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-name {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white);
}
.cart-item-price {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cart-size-select {
  background: var(--dark);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--text);
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--dark);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 4px;
  padding: 2px 4px;
}
.cart-qty-btn {
  background: none;
  border: none;
  color: var(--cyan);
  font-size: 16px;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  transition: color 0.2s;
}
.cart-qty-btn:hover { color: var(--white); }
.cart-qty-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  min-width: 20px;
  text-align: center;
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 12px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  transition: color 0.2s;
}
.cart-remove-btn:hover { color: var(--pink); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(0,212,255,0.12);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total-label {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gray);
}
.cart-total-price {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
}
.cart-continue-link {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.cart-continue-link:hover { color: var(--cyan); }

@media (max-width: 480px) {
  #cart-drawer { width: 100vw; }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(255, 0, 128, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 40%, rgba(0, 212, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(123, 47, 247, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #03061a 0%, #060d20 100%);
}
.hero-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.35;
}
.hero-beams::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 80%;
  height: 180%;
  background: linear-gradient(135deg, transparent 48%, rgba(255, 0, 128, 0.4) 49.5%, rgba(255, 0, 128, 0.2) 50.5%, transparent 52%);
  transform-origin: center;
}
.hero-beams::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 80%;
  height: 180%;
  background: linear-gradient(225deg, transparent 48%, rgba(0, 212, 255, 0.4) 49.5%, rgba(0, 212, 255, 0.2) 50.5%, transparent 52%);
  transform-origin: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.6;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb1 { width: 18px; height: 18px; border: 2px solid rgba(0,212,255,0.7); top: 15%; left: 10%; animation-delay: 0s; }
.orb2 { width: 12px; height: 12px; border: 2px solid rgba(255,0,128,0.7); top: 30%; right: 12%; animation-delay: 2s; }
.orb3 { width: 22px; height: 22px; border: 2px solid rgba(123,47,247,0.7); bottom: 25%; left: 15%; animation-delay: 4s; }
.orb4 { width: 14px; height: 14px; border: 2px solid rgba(0,212,255,0.5); bottom: 20%; right: 20%; animation-delay: 1s; }
.orb5 { width: 10px; height: 10px; border: 2px solid rgba(255,0,128,0.5); top: 60%; left: 30%; animation-delay: 3s; }
@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.9; }
}

/* Sound wave bars */
.soundwave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-bottom: 32px;
  justify-content: center;
}
.bar {
  width: 4px;
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}
.bar:nth-child(odd)  { background: var(--cyan); }
.bar:nth-child(even) { background: var(--pink); }
.bar:nth-child(1)  { height: 20px; animation-delay: 0.0s; }
.bar:nth-child(2)  { height: 35px; animation-delay: 0.1s; }
.bar:nth-child(3)  { height: 45px; animation-delay: 0.2s; }
.bar:nth-child(4)  { height: 30px; animation-delay: 0.3s; }
.bar:nth-child(5)  { height: 50px; animation-delay: 0.4s; }
.bar:nth-child(6)  { height: 25px; animation-delay: 0.5s; }
.bar:nth-child(7)  { height: 40px; animation-delay: 0.6s; }
.bar:nth-child(8)  { height: 50px; animation-delay: 0.7s; }
.bar:nth-child(9)  { height: 30px; animation-delay: 0.8s; }
.bar:nth-child(10) { height: 42px; animation-delay: 0.9s; }
.bar:nth-child(11) { height: 20px; animation-delay: 1.0s; }
.bar:nth-child(12) { height: 35px; animation-delay: 1.1s; }
.bar:nth-child(13) { height: 50px; animation-delay: 1.2s; }
.bar:nth-child(14) { height: 28px; animation-delay: 1.3s; }
.bar:nth-child(15) { height: 44px; animation-delay: 0.15s; }
@keyframes wave {
  0%,100% { transform: scaleY(0.4); opacity: 0.6; }
  50%      { transform: scaleY(1.0); opacity: 1.0; }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  background: rgba(0, 212, 255, 0.07);
}
.hero-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(36px, 7vw, 80px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(0,212,255,0.2);
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(12px, 2vw, 18px);
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-tagline {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.5); }
.btn-outline {
  background: transparent;
  color: var(--pink);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,0,128,0.5);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-outline:hover { background: rgba(255,0,128,0.08); border-color: var(--pink); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,0,128,0.25); }
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(0, 212, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,212,255,0.4), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTION BASE ── */
section { padding: 100px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 15px;
  color: var(--text);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 50px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--cyan), var(--pink));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── ABOUT ── */
#about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,212,255,0.2);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--dark3);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(0,212,255,0.3);
  font-size: 13px;
  letter-spacing: 2px;
}
.about-img-placeholder svg { width: 60px; height: 60px; opacity: 0.3; }
.about-corner {
  position: absolute;
  inset: -3px;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
}
.about-corner::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--cyan) 10%,
    var(--pink) 20%,
    transparent 30%,
    transparent 100%
  );
  animation: orbit-spin 4s linear infinite;
}
.about-corner::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--dark2);
  border-radius: 8px;
}
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
.stat-row { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-lbl { font-size: 11px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; }

/* ── MUSIC ── */
#music { background: var(--space); }
.music-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.music-tab {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(0,212,255,0.3);
  background: transparent;
  color: var(--gray);
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.music-tab.active, .music-tab:hover {
  background: rgba(0,212,255,0.08);
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0,212,255,0.15);
}
/* Both panels stay loaded — switching is instant opacity fade */
.music-panels-wrap { position: relative; }
.music-panel {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; width: 100%;
  transition: opacity 0.18s ease;
}
.music-panel.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.embed-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
  background: var(--dark3);
}
.embed-placeholder {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(0,212,255,0.3);
  font-size: 13px;
  letter-spacing: 2px;
  text-align: center;
  padding: 20px;
}
.embed-placeholder .icon { font-size: 48px; opacity: 0.4; }
.embed-placeholder a { color: var(--cyan); text-decoration: none; font-size: 12px; }
.embed-placeholder a:hover { text-decoration: underline; }
.youtube-embed iframe,
.spotify-embed iframe { width: 100%; border: none; display: block; }

/* ── MERCH ── */
#merch { background: var(--dark); }

/* Floating cart button above merch grid */
.merch-cart-float {
  display: none;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,212,255,0.3);
  animation: cartFloatPulse 2s ease-in-out infinite;
}
.merch-cart-float.visible {
  display: inline-flex;
}
.merch-cart-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.5);
}
.merch-cart-float-badge {
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@keyframes cartFloatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,212,255,0.3); }
  50% { box-shadow: 0 4px 28px rgba(0,212,255,0.5), 0 0 12px rgba(255,0,128,0.2); }
}

/* Sticky floating cart button — follows scroll, right side */
.sticky-cart {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.4);
  background: rgba(6,13,32,0.92);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,212,255,0.3), 0 0 0 1px rgba(0,212,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  animation: stickyCartGlow 3s ease-in-out infinite;
}
.sticky-cart.visible {
  display: flex;
}
.sticky-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(0,212,255,0.5), 0 0 16px rgba(255,0,128,0.2);
}
.sticky-cart-icon {
  line-height: 1;
}
.sticky-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255,0,128,0.4);
}
@keyframes stickyCartGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(0,212,255,0.3), 0 0 0 1px rgba(0,212,255,0.08); }
  50% { box-shadow: 0 4px 28px rgba(0,212,255,0.45), 0 0 14px rgba(255,0,128,0.15), 0 0 0 1px rgba(0,212,255,0.15); }
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.merch-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: 1px;
}
.merch-card {
  background: var(--dark3);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.merch-card:hover {
  border-color: rgba(0,212,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,212,255,0.12), 0 0 0 1px rgba(255,0,128,0.1);
}
.merch-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #060d20, #0d1e38);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.merch-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(0,212,255,0.06) 0%, transparent 70%);
}
.merch-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.merch-card:hover .merch-photo {
  transform: scale(1.05);
}
.tshirt-preview {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tshirt-preview svg { width: 100%; height: 100%; }
.shirt-text {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.3;
  max-width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.merch-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.merch-info { padding: 16px; }
.merch-name {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.merch-sub { font-size: 11px; color: var(--gray); margin-bottom: 12px; letter-spacing: 1px; }
/* Size selector on merch cards */
.merch-sizes {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.merch-size-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray);
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 32px;
  text-align: center;
}
.merch-size-btn:hover {
  border-color: rgba(0,212,255,0.4);
  color: var(--cyan);
  background: rgba(0,212,255,0.06);
}
.merch-size-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,212,255,0.12);
  box-shadow: 0 0 8px rgba(0,212,255,0.2);
}

.merch-footer { display: flex; align-items: center; justify-content: space-between; }
.merch-price {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-add {
  background: transparent;
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-add:hover { background: rgba(0,212,255,0.1); border-color: var(--cyan); box-shadow: 0 0 10px rgba(0,212,255,0.2); }

/* ── Fly-to-cart animation ── */
.fly-to-cart {
  position: fixed;
  z-index: 9999;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0,212,255,0.6), 0 0 40px rgba(0,212,255,0.3);
  border: 2px solid rgba(0,212,255,0.6);
}
.fly-to-cart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fly-to-cart.flying {
  animation: flyArc 2s cubic-bezier(0.15, 0, 0.25, 1) forwards;
}
@keyframes flyArc {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
  40% {
    transform: translate(
      calc(-50% + var(--mid-x)),
      calc(-50% + var(--mid-y))
    ) scale(0.6) rotate(-90deg);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc(-50% + var(--end-x)),
      calc(-50% + var(--end-y))
    ) scale(0.15) rotate(-180deg);
    opacity: 0.8;
  }
}
.cart-bounce {
  animation: cartBounce 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes cartBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.35); }
  50%  { transform: scale(0.9); }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.badge-pop {
  animation: badgePop 0.4s ease-out;
}
@keyframes badgePop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.6); background: var(--pink); }
  100% { transform: scale(1); }
}
.cart-particle {
  position: fixed;
  z-index: 9999;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: particleBurst 0.55s ease-out forwards;
}
@keyframes particleBurst {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc(-50% + var(--px)),
      calc(-50% + var(--py))
    ) scale(0);
    opacity: 0;
  }
}

/* ── CUSTOM ORDER ── */
#custom { background: var(--space); }
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.custom-preview {
  background: var(--dark3);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.custom-preview-title {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
.preview-shirt {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-shirt svg { width: 100%; height: 100%; }
#preview-text {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: 1px;
  max-width: 120px;
  line-height: 1.4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.preview-note { font-size: 11px; color: var(--gray); text-align: center; letter-spacing: 1px; }

/* ── Song request steps ── */
.song-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.song-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.song-step-title {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}
.song-step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── Song option button grid ── */
.song-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.song-option-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.song-option-btn:hover {
  border-color: rgba(0,212,255,0.4);
  color: var(--cyan);
  background: rgba(0,212,255,0.06);
}
.song-option-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,212,255,0.12);
  box-shadow: 0 0 8px rgba(0,212,255,0.2);
}

/* ── FORM ── */
.order-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  background: var(--dark3);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 4px;
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-select option { background: var(--dark3); }
.form-textarea { resize: vertical; min-height: 90px; }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}
.size-btn.selected, .size-btn:hover {
  background: rgba(0,212,255,0.12);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 8px rgba(0,212,255,0.2);
}
.upload-zone {
  border: 2px dashed rgba(0,212,255,0.2);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.upload-zone:hover { border-color: rgba(0,212,255,0.5); background: rgba(0,212,255,0.03); }
.upload-icon { font-size: 28px; margin-bottom: 8px; }
.upload-text { font-size: 12px; color: var(--gray); letter-spacing: 1px; }
.upload-text span { color: var(--cyan); }
.price-summary {
  background: var(--dark3);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-label { font-size: 12px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; }
.price-value {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-note { font-size: 10px; color: var(--gray); margin-top: 2px; letter-spacing: 1px; }
.btn-submit {
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
  background-size: 200% 200%;
  color: var(--white);
  padding: 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.4), 0 0 30px rgba(255,0,128,0.2);
}

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}
.success-msg.show { display: flex; }

/* ── FORM VALIDATION ── */
.form-input.invalid, .form-select.invalid, .form-textarea.invalid {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(255,0,128,0.1) !important;
}
.form-error {
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: none;
}
.form-error.show { display: block; }
.song-option-grid.invalid {
  border: 1px solid var(--pink);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 0 0 3px rgba(255,0,128,0.08);
}
#card-element.invalid {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(255,0,128,0.1) !important;
}
.success-icon { font-size: 40px; }
.success-title {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.success-text { font-size: 13px; color: var(--text); line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(0,212,255,0.1);
  padding: 60px 20px 30px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand .brand-name {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-brand .brand-tagline { font-size: 12px; color: var(--gray); letter-spacing: 2px; }
.footer-links h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.social-youtube:hover { border-color: #ff0000; color: #ff0000; background: rgba(255,0,0,0.1); }
.social-spotify:hover { border-color: #1db954; color: #1db954; background: rgba(29,185,84,0.1); }
.social-instagram:hover { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,0.1); }
.social-x:hover { border-color: #ffffff; color: #ffffff; background: rgba(255,255,255,0.1); }
.social-tiktok:hover { border-color: #69c9d0; color: #69c9d0; background: rgba(105,201,208,0.1); }
.footer-bottom {
  border-top: 1px solid rgba(0,212,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--gray); }
.footer-copy span { color: var(--cyan); }

/* ── FAQ ACCORDION ── */
#shipping-faq { padding: 80px 24px; }

.faq-list {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(6, 13, 32, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(0, 212, 255, 0.35); }
.faq-item.open { border-color: rgba(0, 212, 255, 0.4); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }

.faq-icon {
  font-size: 20px;
  color: var(--cyan);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}
.faq-answer strong { color: var(--white); }
.faq-answer a { color: var(--cyan); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .faq-question { font-size: 11px; padding: 14px 16px; }
  .faq-answer { padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 14px; }
  .faq-answer p { font-size: 13px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .about-grid, .custom-grid { grid-template-columns: 1fr; }
  .custom-preview { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  section { padding: 60px 16px; }
  .section-title { margin-bottom: 12px; }
  .section-desc { margin-bottom: 32px; }
  .stat-row { gap: 20px; justify-content: center; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .price-summary { flex-direction: column; gap: 8px; text-align: center; }
  .song-option-btn { padding: 7px 12px; font-size: 11px; }
}

@media (max-width: 540px) {
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .merch-info { padding: 12px; }
  .merch-name { font-size: 11px; }
  .merch-price { font-size: 13px; }
  .btn-add { font-size: 10px; padding: 5px 10px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  #hero { padding: 100px 16px 60px; }
  .soundwave { height: 36px; gap: 3px; margin-bottom: 20px; }
  .music-player { top: 58px; padding: 6px 12px 6px 6px; gap: 8px; }
  .music-play-btn { width: 32px; height: 32px; font-size: 11px; }
  .custom-preview { padding: 24px; }
  .song-step { gap: 12px; }
  .song-step-num { width: 28px; height: 28px; font-size: 11px; }
}

@media (max-width: 400px) {
  .merch-grid { grid-template-columns: 1fr; }
  nav { padding: 12px 14px; }
  .nav-logo { font-size: 14px; }
  .newsletter-box { padding: 28px 16px; }
  .newsletter-title { margin-bottom: 10px; }
  .newsletter-btn { padding: 13px 16px; font-size: 10px; }
  .form-input, .form-select, .form-textarea { padding: 10px 12px; font-size: 12px; }
  .price-value { font-size: 20px; }
  .btn-submit { padding: 14px; font-size: 12px; letter-spacing: 2px; }
  .song-option-btn { padding: 6px 10px; font-size: 10px; }
  .song-option-grid { gap: 6px; }
}

/* ── POLICY MODALS ── */
.policy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2100;
  backdrop-filter: blur(6px);
}
.policy-overlay.open { display: block; }
.policy-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(560px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--dark2);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 16px;
  z-index: 2200;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: policySlideIn 0.28s cubic-bezier(0.2,0,0.2,1);
}
.policy-modal.open { display: block; }
@keyframes policySlideIn {
  from { opacity: 0; transform: translate(-50%, -44%); }
  to   { opacity: 1; transform: translate(-50%, -48%); }
}
.policy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,212,255,0.12);
}
.policy-title {
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--cyan);
}
.policy-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1;
}
.policy-close:hover { color: var(--pink); }
.policy-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.policy-q {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 4px;
}
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.2s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.7s 0.4s ease forwards; opacity: 0; }
