/* ================================================================
   frenDZ — The Strain
   Retro-futuristic one-page band website
   ================================================================ */

/* --- Variables --- */
:root {
  --bg-deep: #040a0f;
  --bg-primary: #0b181e;
  --bg-alt: #071318;
  --bg-card: #0c2231;
  --bg-card-hover: #0f2a3c;
  --text: #c5cfd9;
  --text-dim: #5e7a8a;
  --text-bright: #e8f0f6;
  --cyan: #00d4ff;
  --cyan-rgb: 0, 212, 255;
  --orange: #ff6a35;
  --orange-hover: #ff8558;
  --orange-rgb: 255, 106, 53;
  --nav-h: 64px;
  --max-w: 1080px;
  --radius: 4px;
  --ease: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--orange); }

button { font-family: inherit; }

/* --- Language system --- */
[data-lang="fr"] .lang-en { display: none !important; }
[data-lang="en"] .lang-fr { display: none !important; }

/* --- Scanlines --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px
  );
  pointer-events: none;
  z-index: 10000;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(4,10,15,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo img { height: 30px; width: auto; }

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

.nav-links a {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(var(--cyan-rgb),0.2);
  border-radius: 2px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  transition: all var(--ease);
}
.lang-toggle button.active {
  background: rgba(var(--cyan-rgb),0.15);
  color: var(--cyan);
}
.lang-toggle button:hover:not(.active) { color: var(--text); }

/* Cart button */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.15rem;
  cursor: pointer;
  transition: color var(--ease);
}
.cart-btn:hover { color: var(--cyan); }

.cart-count {
  position: absolute;
  top: -7px; right: -9px;
  background: var(--orange);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--ease);
}
.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: all var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%;
  background: rgba(4,10,15,0.96);
  backdrop-filter: blur(14px);
  padding: 1rem 2rem 2rem;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.1);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.05);
}
.mobile-menu a:hover { color: var(--cyan); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(ellipse at 50% 45%, #0e2a3d 0%, var(--bg-deep) 65%);
  overflow: hidden;
}

/* Hero background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,10,15,0.4) 0%,
    rgba(4,10,15,0.55) 50%,
    rgba(4,10,15,0.85) 100%
  );
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-logo {
  width: min(380px, 55vw);
  margin: 0 auto 2rem;
  animation: heroFadeIn 1.2s ease forwards;
  opacity: 0;
  filter: drop-shadow(0 0 40px rgba(var(--cyan-rgb),0.25));
}

.hero-names {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  animation: fadeIn 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(var(--cyan-rgb),0.35);
  animation: fadeIn 1s ease 1.1s forwards;
  opacity: 0;
}

.scroll-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s ease 1.8s forwards, bounce 2.5s ease-in-out 2.8s infinite;
  opacity: 0;
  color: var(--cyan);
  font-size: 1.2rem;
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.section { padding: 6rem 2rem; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: 2.5rem;
  line-height: 1.25;
}

/* ================================================================
   VIDEO SECTION
   ================================================================ */
.section-video {
  background: var(--bg-alt);
  padding: 0;
}
.section-video .video-wrap {
  max-width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* ================================================================
   ALBUM SECTION
   ================================================================ */
.section-album { background: var(--bg-primary); }

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 0 auto 3.5rem;
  aspect-ratio: 16/9;
  border: 1px solid rgba(var(--cyan-rgb),0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.album-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.album-cover-img {
  width: 260px;
  flex-shrink: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--cyan-rgb),0.1);
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
}

.album-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.4rem;
}
.album-info .album-sub {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.streaming-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.streaming-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(var(--cyan-rgb),0.18);
  color: var(--text);
  font-size: 1.2rem;
  transition: all var(--ease);
}
.streaming-links a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(var(--cyan-rgb),0.2);
  transform: translateY(-2px);
}

/* Tracklist */
.tracklist {
  list-style: none;
  counter-reset: track;
  margin: 1.5rem 0;
  padding: 0;
}
.tracklist li {
  counter-increment: track;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.06);
  font-size: 0.92rem;
}
.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--cyan);
  min-width: 22px;
}
.track-name { flex: 1; color: var(--text); }
.track-dur {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  color: var(--text-dim);
}

/* Credits */
.credits {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(var(--cyan-rgb),0.08);
}
.credits-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.credits-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--cyan-rgb),0.6);
  margin: 1.5rem 0 0.75rem;
}
.credits-list {
  list-style: none;
  padding: 0;
}
.credits-list li {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 0.3rem 0;
}
.credits-list li strong {
  color: var(--text-bright);
  font-weight: 600;
}
.credits-thanks {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--cyan-rgb),0.06);
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ================================================================
   CONCEPT SECTION
   ================================================================ */
.section-concept { background: var(--bg-alt); }

.terminal {
  background: rgba(2,8,12,0.7);
  border: 1px solid rgba(var(--cyan-rgb),0.12);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
}
.terminal-bar {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(var(--cyan-rgb),0.6);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal-bar .cursor {
  display: inline-block;
  width: 6px; height: 12px;
  background: var(--cyan);
  animation: blink 1s step-end infinite;
}
.terminal p {
  font-size: 1rem;
  line-height: 1.85;
}
.terminal p + p { margin-top: 1rem; }

/* ================================================================
   BAND SECTION
   ================================================================ */
.section-band { background: var(--bg-primary); }

.band-intro {
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 820px;
  margin-bottom: 3rem;
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid rgba(var(--cyan-rgb),0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.member-card:hover {
  border-color: rgba(var(--cyan-rgb),0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.member-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.member-body { padding: 1.5rem; }

.member-body h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.7rem;
  letter-spacing: 0.06em;
}
.member-body p {
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ================================================================
   STORE SECTION
   ================================================================ */
.section-store { background: var(--bg-alt); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(var(--cyan-rgb),0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.product-card:hover {
  border-color: rgba(var(--cyan-rgb),0.18);
  transform: translateY(-3px);
}

/* Product gallery */
.product-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.06);
  background: var(--bg-deep);
}
.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-img.active { opacity: 1; }

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--ease), opacity var(--ease);
}
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-prev:hover,
.gallery-next:hover { background: rgba(var(--cyan-rgb),0.35); }

/* Hide arrows on hover-capable devices, show on hover */
@media (hover: hover) {
  .gallery-prev,
  .gallery-next { opacity: 0; }
  .product-gallery:hover .gallery-prev,
  .product-gallery:hover .gallery-next { opacity: 1; }
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.gallery-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--ease);
}
.gallery-dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
}

.product-body { padding: 1.5rem; }

.product-type {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.2rem;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.product-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1.2rem;
}

/* Size selector */
.size-selector {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.size-btn {
  background: transparent;
  border: 1px solid rgba(var(--cyan-rgb),0.18);
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--ease);
}
.size-btn:hover {
  border-color: var(--cyan);
  color: var(--text);
}
.size-btn.selected {
  background: rgba(var(--cyan-rgb),0.15);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Quantity control */
.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.qty-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--cyan-rgb),0.18);
  border-radius: 2px;
  overflow: hidden;
}
.qty-ctrl button {
  background: rgba(var(--cyan-rgb),0.04);
  border: none;
  color: var(--text);
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background var(--ease);
}
.qty-ctrl button:hover { background: rgba(var(--cyan-rgb),0.12); }
.qty-ctrl .qty-val {
  width: 36px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
}

/* Add to cart button */
.add-cart-btn {
  width: 100%;
  background: rgba(var(--cyan-rgb),0.1);
  border: 1px solid rgba(var(--cyan-rgb),0.35);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
}
.add-cart-btn:hover {
  background: rgba(var(--cyan-rgb),0.22);
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(var(--cyan-rgb),0.15);
}
.add-cart-btn:active { transform: scale(0.98); }
.add-cart-btn.added {
  background: #1a8a4a;
  pointer-events: none;
}

.store-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ================================================================
   CART SIDEBAR
   ================================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 88vw);
  height: 100%;
  background: var(--bg-deep);
  border-left: 1px solid rgba(var(--cyan-rgb),0.12);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.08);
}
.cart-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-bright);
}
.cart-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--ease);
}
.cart-close:hover { color: var(--text); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  border: 1px solid rgba(var(--cyan-rgb),0.04);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
}
.cart-item-detail {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}
.cart-item-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-bright);
  margin: 0 0.75rem;
  white-space: nowrap;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--cyan-rgb),0.15);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-qty button {
  background: rgba(var(--cyan-rgb),0.04);
  border: none;
  color: var(--text);
  width: 26px; height: 26px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background var(--ease);
}
.cart-item-qty button:hover { background: rgba(var(--cyan-rgb),0.12); }
.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-bright);
}

.cart-item-rm {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.75rem;
  transition: color var(--ease), background var(--ease);
  padding: 5px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}
.cart-item-rm:hover {
  color: #ff4444;
  background: rgba(255,68,68,0.08);
}

.cart-empty {
  text-align: center;
  color: var(--text-dim);
  padding: 3rem 1rem;
  font-size: 0.88rem;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(var(--cyan-rgb),0.08);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cart-total-label { font-size: 0.88rem; color: var(--text); }
.cart-total-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-bright);
}
.checkout-btn {
  width: 100%;
  background: rgba(var(--cyan-rgb),0.1);
  border: 1px solid rgba(var(--cyan-rgb),0.35);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
}
.checkout-btn:hover {
  background: rgba(var(--cyan-rgb),0.22);
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(var(--cyan-rgb),0.15);
}
.checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.checkout-btn:disabled:hover {
  background: rgba(var(--cyan-rgb),0.1);
  box-shadow: none;
}
.checkout-note {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 0.6rem;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.section-contact { background: var(--bg-primary); }

.contact-block {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.contact-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.contact-email {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  border: 1px solid rgba(var(--cyan-rgb),0.25);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: all var(--ease);
  margin-bottom: 2rem;
}
.contact-email:hover {
  background: rgba(var(--cyan-rgb),0.1);
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(var(--cyan-rgb),0.12);
}
.contact-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.contact-social a {
  color: var(--text-dim);
  font-size: 1.5rem;
  transition: color var(--ease), transform var(--ease);
}
.contact-social a:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-deep);
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(var(--cyan-rgb),0.06);
}
.footer-logo-img {
  width: 110px;
  margin: 0 auto 1.5rem;
  opacity: 0.6;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.social-links a {
  color: var(--text-dim);
  font-size: 1.4rem;
  transition: color var(--ease), transform var(--ease);
}
.social-links a:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ================================================================
   CHECKOUT PAGE
   ================================================================ */
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.08);
  background: var(--bg-deep);
}
.checkout-header .nav-logo img { height: 30px; width: auto; }

.checkout-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.checkout-back:hover { color: var(--cyan); }

.checkout-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: 2rem;
}

.checkout-section {
  background: var(--bg-card);
  border: 1px solid rgba(var(--cyan-rgb),0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.checkout-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(var(--cyan-rgb),0.04);
}
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
}
.checkout-item-detail {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}
.checkout-item-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-bright);
  min-width: 60px;
  text-align: right;
  white-space: nowrap;
}

.checkout-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--cyan-rgb),0.08);
}
.checkout-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: var(--text);
}
.checkout-row.grand {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(var(--cyan-rgb),0.08);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text-bright);
}

.checkout-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(var(--cyan-rgb),0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235e7a8a' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  border: 1px solid rgba(var(--cyan-rgb),0.15);
  border-radius: var(--radius);
  color: var(--text-bright);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  cursor: pointer;
  transition: border-color var(--ease);
}
.checkout-select option {
  background: #0b181e;
  color: #e8f0f6;
}
.checkout-select:focus {
  outline: none;
  border-color: var(--cyan);
}

.checkout-input {
  width: 100%;
  background: rgba(var(--cyan-rgb),0.04);
  border: 1px solid rgba(var(--cyan-rgb),0.15);
  border-radius: var(--radius);
  color: var(--text-bright);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.65rem;
  transition: border-color var(--ease);
}
.checkout-input:focus {
  outline: none;
  border-color: var(--cyan);
}
.checkout-input::placeholder { color: var(--text-dim); }

.checkout-row-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.checkout-submit {
  width: 100%;
  background: rgba(var(--cyan-rgb),0.1);
  border: 1px solid rgba(var(--cyan-rgb),0.35);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all var(--ease);
}
.checkout-submit:hover {
  background: rgba(var(--cyan-rgb),0.22);
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(var(--cyan-rgb),0.15);
}
.checkout-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.checkout-submit:disabled:hover {
  background: rgba(var(--cyan-rgb),0.1);
  box-shadow: none;
}

.checkout-payment-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 2rem;
  line-height: 1.6;
}
.checkout-note-inline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

.checkout-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.checkout-empty p {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.checkout-back-btn {
  display: inline-block;
  background: rgba(var(--cyan-rgb),0.1);
  border: 1px solid rgba(var(--cyan-rgb),0.35);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  transition: all var(--ease);
}
.checkout-back-btn:hover {
  background: rgba(var(--cyan-rgb),0.22);
  border-color: var(--cyan);
  color: var(--cyan);
}

@media (max-width: 480px) {
  .checkout-main { padding: 1.5rem 1.25rem 3rem; }
  .checkout-row-inputs { grid-template-columns: 1fr; gap: 0; }
  .checkout-item { flex-wrap: wrap; gap: 0.5rem; }
  .checkout-item-info { width: 100%; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .album-row {
    flex-direction: column;
    text-align: center;
  }
  .album-cover-img {
    width: 220px;
    margin: 0 auto;
  }
  .album-info { text-align: center; }
  .streaming-links { justify-content: center; }
  .section-label { justify-content: center; }
  .section-label::before { display: none; }
  .section-title { text-align: center; }
  .band-intro { text-align: center; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section { padding: 4rem 1.25rem; }

  .members-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .terminal { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-logo { width: 68vw; }
  .hero-names { font-size: 0.8rem; letter-spacing: 0.2em; }
  .hero-tagline { font-size: 0.6rem; letter-spacing: 0.2em; }
  .nav { padding: 0 1.25rem; }
  .video-wrap { border: none; border-radius: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-logo, .hero-names, .hero-tagline, .scroll-arrow { opacity: 1; }
}
