/* ============================================================
   RAS MCKOY — OFFICIAL WEBSITE
   Design: Black + Red + White · Font: Inter
   Aesthetic: Roots Reggae, Bold, Powerful
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Core palette */
  --navy:       #080808;
  --navy-mid:   #111111;
  --navy-light: #1c1c1c;
  --blue:       #c41c1c;
  --blue-hover: #a31616;
  --white:      #ffffff;
  --off-white:  #f8f5f2;
  --gray-100:   #f1efec;
  --gray-200:   #e5e2de;
  --gray-300:   #ccc9c5;
  --gray-400:   #9a9590;
  --gray-500:   #6b6560;
  --gray-700:   #3a3530;
  --gray-900:   #111111;
  --black:      #000000;

  /* Section backgrounds */
  --bg-dark:  var(--navy);
  --bg-light: var(--white);
  --bg-soft:  var(--off-white);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py:    clamp(5rem, 9vw, 8rem);
  --container-max: 1200px;
  --container-px:  clamp(1.5rem, 5vw, 3rem);

  /* Borders */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark:  rgba(255, 255, 255, 0.10);

  /* Radii */
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-sm:    0 4px 12px rgba(0,0,0,0.05);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 40px rgba(196,28,28,0.2);

  /* Motion */
  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (max-width: 768px) {
  html, body { overscroll-behavior: none; overscroll-behavior-y: none; }
  .ambient-orb { display: none; }
  .hero-particles { display: none; }
  .hero-bg { transform: none !important; }
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; appearance: none; -webkit-appearance: none; -moz-appearance: none; }
input, textarea { font-family: inherit; appearance: none; -webkit-appearance: none; -moz-appearance: none; }

/* ============================================================
   ACCENT COLOUR ALIASES
   ============================================================ */
.text-accent { color: var(--blue); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section       { padding: var(--section-py) 0; }
.section-dark  { background: var(--bg-dark); color: var(--white); }
.section-gray  { background: var(--bg-soft); }

/* Section header */
.section-header { text-align: center; margin-bottom: 4rem; }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}

.section-dark .section-label { color: var(--blue); }

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: inherit;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 480px;
  margin: 0 auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ============================================================
   TYPOGRAPHY HELPERS & OVERRIDES
   ============================================================ */
.nav-logo, .hero-eyebrow, .hero-title, .section-header h2, .about-content h2, .contact-info h2, h3, .newsletter-wrap h2 {
  font-family: var(--font-display);
}

.label-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate   { opacity: 1; transform: none; }
[data-aos-delay="50"]    { transition-delay: 0.05s; }
[data-aos-delay="100"]   { transition-delay: 0.1s; }
[data-aos-delay="150"]   { transition-delay: 0.15s; }
[data-aos-delay="200"]   { transition-delay: 0.2s; }
[data-aos-delay="250"]   { transition-delay: 0.25s; }
[data-aos-delay="300"]   { transition-delay: 0.3s; }
[data-aos-delay="400"]   { transition-delay: 0.4s; }
[data-aos="fade-right"]  { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: none; }
[data-aos="fade-left"]   { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate  { transform: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--ease-spring);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(196,28,28,0.4);
}

/* On dark sections: primary stays red */
.section-dark .btn-primary,
#hero .btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.section-dark .btn-primary:hover,
#hero .btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 4px 20px rgba(196,28,28,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* On light sections: outline is dark */
.section:not(.section-dark) .btn-outline,
#shop .btn-outline {
  color: var(--gray-900);
  border-color: var(--gray-300);
}
.section:not(.section-dark) .btn-outline:hover,
#shop .btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-sm  { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.logo-ras   { color: var(--blue); }
.logo-mckoy { color: var(--white); transition: color var(--ease); }
#navbar.scrolled .logo-mckoy { color: var(--white); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Hide mobile-only drawer elements on desktop */
.drawer-header,
.drawer-close { display: none; }


.nav-links a {
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
#navbar.scrolled .nav-links a       { color: rgba(255,255,255,0.65); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active { color: var(--white); }

/* Nav actions row */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Login */
.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--ease);
}
.login-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Cart */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--ease);
}
.cart-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
#navbar.scrolled .cart-btn {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
#navbar.scrolled .cart-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.cart-btn .snipcart-items-count {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
#navbar.scrolled .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -15%;
  opacity: 0.5;
  will-change: transform;
  overflow: hidden;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subtle geometric grid overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0.7) 70%, var(--navy) 100%);
  z-index: 1;
}

/* Rasta stripe accent at top of hero */
#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right,
    #006400 0% 33.33%,
    #FFD700 33.33% 66.66%,
    #c41c1c 66.66% 100%
  );
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(255,215,0,0.35), 0 0 8px rgba(0,100,0,0.4);
}

/* Hide old particles — keep JS particles very subtle */
.hero-particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh); opacity: 0; }
  10%  { opacity: 0.25; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-5vh); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  padding-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-text-col {
  flex: 1;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.title-ras { color: var(--white); }
.title-mckoy { color: var(--blue); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  max-width: 420px;
  letter-spacing: 0.01em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Thin divider line */
.hero-divider {
  width: 100%;
  max-width: 560px;
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 2rem;
}

.hero-socials {
  display: flex;
  gap: 0.5rem;
}
.hero-socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: var(--ease);
}
.hero-socials a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem; right: var(--container-px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Featured Hero Card */
.hero-featured-card {
  width: 100%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  flex-shrink: 0;
}

@keyframes floatCard {
  0%   { transform: translateY(0);     box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 20px rgba(196,28,28,0.15), 1px solid rgba(255,255,255,0.12); }
  50%  { transform: translateY(-12px); box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 55px rgba(196,28,28,0.45), 0 0 90px rgba(196,28,28,0.2); }
  100% { transform: translateY(0);     box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 20px rgba(196,28,28,0.15), 1px solid rgba(255,255,255,0.12); }
}

.featured-badge {
  position: absolute;
  top: 2.25rem;
  left: -1rem;
  background: var(--blue);
  color: #fff;
  padding: 0.4rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(196,28,28,0.4);
  z-index: 2;
}

.hero-featured-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.featured-info h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.featured-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.featured-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ============================================================
   AMBIENT ORBS (Mesh Gradient)
   ============================================================ */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite alternate;
  will-change: transform;
}

/* Parallax targets */
.about-img-frame img { will-change: transform; }
.parallax-section-bg { will-change: transform; }
/* Hero orbs — Rasta palette: red dominant, gold & green accents */
.orb-1 { width: 400px; height: 400px; background: #8b0000;  top: -100px;    left: -100px; }
.orb-2 { width: 500px; height: 500px; background: #c41c1c;  bottom: -200px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 600px; height: 600px; background: #7a5200;  top: -200px;    right: -200px; animation-delay: -3s; opacity: 0.22; }
.orb-4 { width: 450px; height: 450px; background: #003a00;  bottom: -100px; left: -100px;  animation-delay: -7s; opacity: 0.25; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 50px) scale(1.1); }
  100% { transform: translate(-30px, -20px) scale(0.9); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--white); border-top: 3px solid var(--blue); }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
}
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.about-img-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.03); }
.about-img-accent { display: none; }

/* Decorative stat badge */
.about-badge {
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  background: var(--blue);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.about-badge i { font-size: 1rem; }

.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-content .section-label { margin-bottom: 0.75rem; }

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.about-content h2 .text-accent-yellow { color: var(--blue); }

.about-bio p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Bio — collapsible expanded block */
.bio-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}
.bio-expanded.is-open {
  max-height: 1000px;
  opacity: 1;
}

.bio-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
}

.bio-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}
.bio-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.75;
}
.bio-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
  line-height: 1.85;
}

.bio-year {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Read More button */
.bio-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.bio-read-more-btn:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(196,28,28,0.35);
  transform: translateY(-1px);
}
.bio-chevron {
  font-size: 0.75rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.bio-read-more-btn[aria-expanded="true"] .bio-chevron {
  transform: rotate(180deg);
}


.streaming-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.streaming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--ease);
}
.streaming-badge i { font-size: 0.95rem; color: var(--blue); }
.streaming-badge:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(196,28,28,0.05);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   MUSIC — RELEASES
   ============================================================ */
#music { background: var(--navy); }

.releases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Featured release — left column */
.release-featured {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
}
.release-featured:hover {
  border-color: rgba(196,28,28,0.35);
  box-shadow: 0 0 30px rgba(196,28,28,0.2);
}
.release-featured .release-cover {
  position: relative;
}
.release-featured .release-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.release-featured .release-info {
  padding: 1.75rem;
}
.release-featured h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.release-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}
.release-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Type badge */
.release-type-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 12px rgba(196,28,28,0.5);
  z-index: 2;
}
.release-single .release-type-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0.4rem;
}

/* Streaming buttons — featured */
.release-stream-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--ease);
  box-shadow: 0 0 12px rgba(196,28,28,0.35);
}
.stream-btn:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 22px rgba(196,28,28,0.65);
  transform: translateY(-2px);
}
.stream-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: none;
}
.stream-btn-outline:hover {
  border-color: var(--blue);
  background: rgba(196,28,28,0.1);
  box-shadow: 0 0 14px rgba(196,28,28,0.3);
}

/* Icon-only stream buttons — singles */
.stream-icon-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  transition: var(--ease);
}
.stream-icon-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 12px rgba(196,28,28,0.5);
}

/* Singles column — right */
.releases-singles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.release-single {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem;
  transition: var(--ease);
  position: relative;
}
.release-single:hover {
  border-color: rgba(196,28,28,0.3);
  background: rgba(196,28,28,0.05);
  box-shadow: 0 0 18px rgba(196,28,28,0.15);
  transform: translateX(4px);
}
.release-single img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: unset;
  box-shadow: none;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.release-single .release-info {
  flex: 1;
  min-width: 0;
}
.release-single h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.release-single .release-year {
  margin-bottom: 0.6rem;
}

/* Interactive Player UI */
.release-single.is-playing {
  border-color: rgba(196,28,28,0.8);
  background: rgba(196,28,28,0.1);
  box-shadow: 0 0 25px rgba(196,28,28,0.25);
}
.release-single.is-playing h3 {
  color: var(--gold);
}
.player-progress-container {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 0.6rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.player-progress-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.btn-play-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--ease);
}
.btn-play-toggle:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.release-single.is-playing .btn-play-toggle {
  background: var(--blue);
  border-color: var(--blue);
}

/* Responsive */
@media (max-width: 900px) {
  .releases-grid { grid-template-columns: 1fr; }
  .releases-singles { flex-direction: row; flex-wrap: wrap; }
  .release-single { flex: 1 1 calc(50% - 0.5rem); min-width: 260px; }
}
@media (max-width: 560px) {
  .release-single { flex: 1 1 100%; }
}

/* ============================================================
   MUSIC VIDEOS — Featured + Carousel
   ============================================================ */

/* Featured video — full width with overlay info */
.video-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
  cursor: pointer;
}
.video-featured-embed {
  position: relative;
  width: 100%;
  padding-top: 50%;
}
.video-featured-embed .video-facade {
  position: absolute;
  inset: 0;
}
/* Gradient overlay at bottom for info readability */
.video-featured::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
/* Info overlaid at bottom */
.video-featured-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.video-featured-meta { flex: 1; }
.video-featured-info h3 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0.4rem 0 0.3rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.video-featured-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.video-featured-info .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Large centred play button for featured */
.featured-play-btn {
  position: relative;
  z-index: 1;
  width: 72px; height: 72px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 0 30px rgba(196,28,28,0.7), 0 0 60px rgba(196,28,28,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-featured:hover .featured-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(196,28,28,0.9), 0 0 80px rgba(196,28,28,0.4);
}

.video-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
}

/* Carousel */
.video-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.video-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 0.5rem 0 1rem;
}
.video-carousel::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  transition: var(--ease);
}
.carousel-card:hover {
  border-color: rgba(196,28,28,0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196,28,28,0.2);
}
.carousel-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s;
}
.carousel-card:hover .carousel-thumb::before { background: rgba(0,0,0,0.1); }
.carousel-play {
  position: relative;
  z-index: 1;
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 0 18px rgba(196,28,28,0.6);
  transition: transform 0.3s, background 0.3s;
}
.carousel-card:hover .carousel-play {
  transform: scale(1.15);
  background: var(--blue-hover);
}
.carousel-title {
  padding: 0.65rem 0.85rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}

/* Carousel arrows */
.carousel-arrow {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-dark);
  color: var(--white);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  align-self: center;
}
.carousel-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 16px rgba(196,28,28,0.5);
}

/* Responsive */
@media (max-width: 680px) {
  .video-featured-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
  }
  .video-featured-info .btn-primary {
    width: auto;
    align-self: flex-start;
  }
  .video-featured-embed { padding-top: 56.25%; }
}
@media (max-width: 600px) {
  .carousel-card { flex: 0 0 180px; }
}

/* ============================================================
   YOUTUBE CHANNEL PROMO
   ============================================================ */
.yt-channel-section {
  background: var(--navy-mid);
  border-top: 3px solid rgba(196,28,28,0.5);
  padding-top: calc(var(--section-py) + 2rem);
}

/* Year badge on product cards */
.product-year-badge {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: rgba(0,0,0,0.75);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}



.yt-channel-inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 4rem;
  align-items: center;
}

/* Thumbnail */
.yt-channel-thumb-link { display: block; text-decoration: none; }

.yt-channel-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.yt-channel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.yt-channel-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.yt-channel-thumb-overlay i {
  font-size: 3.5rem;
  color: #ff0000;
  filter: drop-shadow(0 0 20px rgba(255,0,0,0.6));
}
.yt-channel-thumb-link:hover .yt-channel-thumb {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.yt-channel-thumb-link:hover .yt-channel-thumb img { transform: scale(1.04); }
.yt-channel-thumb-link:hover .yt-channel-thumb-overlay { opacity: 1; }

/* Info side */
.yt-channel-info { color: var(--white); }
.yt-channel-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.yt-channel-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Stats row */
.yt-channel-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}
.yt-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.yt-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.yt-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   GALLERY
   ============================================================ */

#gallery { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  grid-auto-rows: 280px;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(7)  { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(8)  { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(9)  { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(10) { grid-column: span 4; grid-row: span 1; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-200);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(140, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3,7,18,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  animation: zoomIn 0.25s ease;
}
@keyframes zoomIn { from { transform: scale(0.93); opacity: 0; } to { transform: none; opacity: 1; } }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--ease);
  cursor: pointer;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(196,28,28,0.4);
}
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ============================================================
   SHOP
   ============================================================ */
#shop { background: var(--off-white); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1025px) {
  .shop-grid { grid-template-columns: repeat(4, 1fr); }
}

/* product-card base styles moved to SHOP — SQUARE CARDS section below */

.product-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-badge.digital { background: var(--blue);  color: #fff; }
.product-badge.merch   { background: var(--black); color: #fff; }
.product-badge.limited { background: #7a0000;       color: #fff; }

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  border-top: 1px solid var(--border-light);
}
.product-info h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.product-type {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  /* prevent wrapping in narrow columns across all browsers */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  flex: 1;
  margin-top: 0.2rem;
  line-height: 1.55;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  /* prevent child overflow in Chrome's stricter flex sizing */
  min-width: 0;
}
.product-footer .btn-sm {
  /* tighter padding so button text never clips against card overflow:hidden */
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* btn-outline rules handled in SHOP SECTION OVERRIDES below */

/* ============================================================
   SHOP — PROFESSIONAL PRODUCT CARDS + MODAL
   ============================================================ */

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12), 0 0 0 1px rgba(196,28,28,0.15);
}

/* Image area — 1:1, full product visible */
.product-card .product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}
.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.4s ease;
}
/* Album art & vinyl look better cropped */
.product-card[data-product-badge="digital"] .product-img-wrap img,
.product-card[data-product-badge="limited"] .product-img-wrap img {
  object-fit: cover;
  padding: 0;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* Badge */
.product-card .product-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
}

/* Info panel — always visible */
.product-card-info {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: #ffffff;
  border-top: 1px solid #ebebeb;
  flex: 1;
}
.product-card-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}
.product-type-label {
  font-size: 0.67rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #ebebeb;
}
.product-card-price {
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
}
.product-card-cta {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
}
.product-card:hover .product-card-cta { gap: 0.5rem; }
.product-card-cta i { font-size: 0.65rem; }

/* ===== PRODUCT MODAL ===== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.product-modal[hidden] { display: none; }
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease;
  z-index: 0;
}
.product-modal-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.product-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-700);
  z-index: 10;
  transition: var(--ease);
}
.product-modal-close:hover { background: var(--blue); color: #fff; }

/* Prev / Next arrows — float on backdrop outside the card */
.product-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  z-index: 10;
  cursor: pointer;
  transition: var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-modal-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(196,28,28,0.5);
}
.product-modal-prev { left: 1.5rem; }
.product-modal-next { right: 1.5rem; }
@media (max-width: 900px) {
  .product-modal-prev { left: 0.5rem; }
  .product-modal-next { right: 0.5rem; }
}
@media (max-width: 680px) {
  .product-modal-prev { top: auto; bottom: 1.25rem; left: 1rem; transform: none; }
  .product-modal-next { top: auto; bottom: 1.25rem; right: 1rem; transform: none; }
  .product-modal-inner { touch-action: pan-y; }
}
.product-modal-img {
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.product-modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}
.product-modal-info #modal-badge { width: fit-content; }
.product-modal-info h2 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
.modal-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.modal-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.modal-size-section { margin-top: 0.5rem; }
.modal-size-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 0.6rem;
}
.size-picker { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-btn {
  width: 44px; height: 44px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  background: #fff;
  cursor: pointer;
  transition: var(--ease);
}
.size-btn:hover { border-color: var(--blue); color: var(--blue); }
.size-btn.selected { background: var(--blue); border-color: var(--blue); color: #fff; }
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.modal-price { font-size: 1.75rem; font-weight: 900; color: var(--gray-900); letter-spacing: -0.03em; }
.modal-footer .btn { flex-shrink: 0; }
.modal-secure { font-size: 0.72rem; color: var(--gray-400); display: flex; align-items: center; gap: 0.35rem; }
.modal-secure i { color: var(--blue); }
@media (max-width: 680px) {
  .product-modal-inner { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .product-modal-img { min-height: 260px; max-height: 300px; }
}

.shop-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.shop-note i { color: var(--blue); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
}
.contact-info .contact-details {
  align-items: center;
}
.contact-socials {
  justify-content: center;
}
.epk-download-wrap {
  text-align: center;
}

.contact-info .section-label { margin-bottom: 0.75rem; }

#videos .section-header { text-align: center; }
#videos { color: var(--white); }
#videos .section-label     { color: var(--blue); }
#videos .section-header h2 { color: var(--white); }
#videos .section-subtitle  { color: rgba(255,255,255,0.6); }
#videos .video-featured    { color: var(--white); }
#videos .btn-outline,
.video-featured-info .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.45) !important;
  background: transparent !important;
}
#videos .btn-outline:hover,
.video-featured-info .btn-outline:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: #ffffff !important;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.contact-info h2 .text-accent-yellow { color: var(--blue); }

.contact-intro {
  color: rgba(255,255,255,0.5);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.contact-detail-item i {
  width: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: var(--ease);
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 2px rgba(196,28,28,0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form-wrap .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.contact-form-wrap .btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 4px 20px rgba(196,28,28,0.4);
}

.form-toast {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}
.form-toast.success {
  display: block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}
.form-toast.error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.footer-nav {
  display: flex;
  gap: 0.25rem 1.75rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--white); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.back-to-top {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  transition: var(--ease);
}
.back-to-top:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ============================================================
   UX / UI ENHANCEMENTS
   ============================================================ */
/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}
.custom-cursor.active {
  width: 40px; height: 40px;
  background-color: rgba(255,255,255,0.2);
  mix-blend-mode: normal;
  border: 1px solid var(--white);
}
.custom-cursor.bento-active {
  width: 60px; height: 60px;
  background-color: transparent;
  mix-blend-mode: normal;
  border: 1.5px solid var(--white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  transition: opacity var(--ease);
  z-index: 10;
}
.scroll-indicator:hover { opacity: 1; }
.mouse {
  width: 26px; height: 42px;
  border: 2px solid var(--white);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
}
.wheel {
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* Quick Add Overlay */
.quick-add-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.product-card:hover .quick-add-overlay {
  opacity: 1;
}
.quick-add-overlay .btn {
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.product-card:hover .quick-add-overlay .btn {
  transform: translateY(0);
}

/* Video Lazy Facade */
.video-facade {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-facade::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}
.video-facade:hover::before { background: rgba(0,0,0,0.1); }
.play-btn {
  position: relative;
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-facade:hover .play-btn {
  transform: scale(1.1);
  background: var(--blue-hover);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.newsletter-wrap h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.newsletter-wrap p {
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  font-size: 0.95rem;
  outline: none;
  transition: var(--ease);
}
.newsletter-form input:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(196,28,28,0.1);
}
.newsletter-form .btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
}

.audio-embed-wrap { margin-top: 2rem; }
.epk-download-wrap { margin-top: 2rem; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .shop-grid     { grid-template-columns: repeat(2, 1fr); }
  .videos-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame img { height: 420px; }
  .about-badge { bottom: -1rem; right: 1rem; }
  .yt-channel-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}


@media (max-width: 768px) {
  /* ── Side drawer nav ── */
  html { overflow-x: hidden; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #0d0d0d;
    border-left: 1px solid rgba(196,28,28,0.3);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    pointer-events: none;
    opacity: 1;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  }
  .nav-links.open { transform: translateX(0); pointer-events: all; }

  /* Drawer header */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(196,28,28,0.08);
  }
  .drawer-logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
  }
  .drawer-logo .logo-ras   { color: var(--blue); }
  .drawer-logo .logo-mckoy { color: var(--white); }
  .drawer-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--ease);
  }
  .drawer-close:hover { background: var(--blue); border-color: var(--blue); }

  /* Nav links */
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a {
    display: flex !important;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600;
    color: rgba(255,255,255,0.8) !important;
    width: 100%;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a i { width: 18px; color: var(--blue); font-size: 0.9rem; }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(196,28,28,0.12) !important;
    color: var(--white) !important;
    padding-left: 1.85rem !important;
  }

  /* Drawer footer socials */
  .drawer-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .drawer-footer a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.85rem;
    padding: 0 !important;
    transition: var(--ease);
  }
  .drawer-footer a:hover { background: var(--blue); border-color: var(--blue); color: #fff !important; }

  .hamburger { display: flex; z-index: 1001; position: relative; }
  .cart-btn  { z-index: 1001; position: relative; }

  /* ── Hero ── */
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-scroll-indicator { display: none; }
  .hero-content { flex-direction: column; gap: 2rem; padding-top: 4rem; }
  .hero-ctas {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.65rem;
    align-items: center;
  }
  .hero-ctas .btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .hero-featured-card { max-width: 100%; }

  /* ── About ── */
  .bento-photo { min-height: 360px !important; max-height: 420px; overflow: hidden; }
  .bento-photo img { height: 100%; max-height: 420px; object-fit: cover; object-position: top center; }

  /* ── Gallery — 2 column grid ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9),
  .gallery-item:nth-child(10) {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* ── Videos — info below the video ── */
  .video-featured { cursor: default; }
  .video-featured::after { display: none; }
  .video-featured-info {
    position: static;
    background: var(--navy-mid);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .video-featured-info h3 { font-size: 1.15rem; }
  .video-featured-info p  { color: rgba(255,255,255,0.6); }
  .video-featured-info .btn-primary {
    width: auto;
    align-self: flex-start;
    font-size: 0.8rem;
    padding: 0.6rem 1.1rem;
  }
  .video-featured-embed { padding-top: 56.25%; }

  /* ── Shop ── */
  .shop-grid   { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .videos-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 1.5rem; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .custom-cursor { display: none; }
  .newsletter-wrap { padding: 2rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  /* Keep streaming badges in a row */
  .streaming-badges { flex-direction: row; flex-wrap: wrap; }
  /* Keep stat tiles in one row */
  .about-bento {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .bento-photo  { grid-column: 1 / 4 !important; grid-row: 1 !important; }
  .bento-bio    { grid-column: 1 / 4 !important; grid-row: 2 !important; }
  .bento-stat:nth-child(3) { grid-column: 1 !important; grid-row: 3 !important; }
  .bento-stat:nth-child(4) { grid-column: 2 !important; grid-row: 3 !important; }
  .bento-stat:nth-child(5) { grid-column: 3 !important; grid-row: 3 !important; }
  .bento-stream { grid-column: 1 / 4 !important; grid-row: 4 !important; }
  .bento-stat { padding: 0.85rem 0.6rem; }
  .bento-num  { font-size: 1.5rem; }
}

/* ============================================================
   GDPR COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible  { transform: translateY(0); }
.cookie-banner[hidden]  { display: block; }

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text p:first-child {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.cookie-text p:last-child {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.cookie-text a { color: var(--blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.65rem; flex-shrink: 0; }

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* Cookie banner button overrides */
.cookie-banner .btn-outline {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
}
.cookie-banner .btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}
.cookie-banner .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.cookie-banner .btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 4px 16px rgba(196,28,28,0.35);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

::selection { background: var(--blue); color: var(--white); }

/* ============================================================
   NEON GLOW EFFECTS
   ============================================================ */

/* Logo */
.logo-ras {
  text-shadow: 0 0 8px rgba(196,28,28,0.95), 0 0 22px rgba(196,28,28,0.55), 0 0 45px rgba(196,28,28,0.25);
}

/* Red text accents */
.text-accent,
.title-mckoy {
  text-shadow: 0 0 12px rgba(196,28,28,0.7), 0 0 30px rgba(196,28,28,0.35);
}

/* Hero eyebrow label */
.hero-eyebrow {
  text-shadow: 0 0 8px rgba(196,28,28,0.85), 0 0 20px rgba(196,28,28,0.4);
}
.hero-eyebrow::before {
  box-shadow: 0 0 8px rgba(196,28,28,0.9), 0 0 16px rgba(196,28,28,0.4);
}

/* Section labels */
.section-label,
.label-tag {
  text-shadow: 0 0 8px rgba(196,28,28,0.7), 0 0 18px rgba(196,28,28,0.3);
}

/* Primary buttons — persistent glow, brighter on hover */
.btn-primary {
  box-shadow: 0 0 14px rgba(196,28,28,0.45), 0 4px 14px rgba(0,0,0,0.35);
}
.btn-primary:hover {
  box-shadow: 0 0 28px rgba(196,28,28,0.75), 0 0 55px rgba(196,28,28,0.35), 0 8px 25px rgba(196,28,28,0.45) !important;
}

/* About badge */
.about-badge {
  box-shadow: var(--shadow-md), 0 0 18px rgba(196,28,28,0.5), 0 0 38px rgba(196,28,28,0.25);
}

/* Featured release badge */
.featured-badge {
  box-shadow: 0 8px 20px rgba(196,28,28,0.4), 0 0 22px rgba(196,28,28,0.65), 0 0 45px rgba(196,28,28,0.25) !important;
}

/* Social icon hover glow */
.hero-socials a:hover {
  box-shadow: 0 0 14px rgba(196,28,28,0.55), 0 0 28px rgba(196,28,28,0.25);
  border-color: rgba(196,28,28,0.55) !important;
  color: var(--white) !important;
}
.social-link:hover {
  box-shadow: 0 0 16px rgba(196,28,28,0.65), 0 0 30px rgba(196,28,28,0.3) !important;
}

/* Active nav link subtle glow */
.nav-links a.active {
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Product card hover — red border glow */
.product-card:hover {
  box-shadow: 0 0 22px rgba(196,28,28,0.3), 0 8px 32px rgba(196,28,28,0.15), var(--shadow-hover) !important;
  border-color: rgba(196,28,28,0.35) !important;
}

/* Video card hover */
.video-card:hover {
  box-shadow: 0 0 24px rgba(196,28,28,0.4), 0 12px 40px rgba(0,0,0,0.35) !important;
  border-color: rgba(196,28,28,0.35) !important;
}

/* Play button */
.play-btn {
  box-shadow: 0 0 20px rgba(196,28,28,0.6), 0 0 40px rgba(196,28,28,0.25);
}
.video-facade:hover .play-btn {
  box-shadow: 0 0 35px rgba(196,28,28,0.85), 0 0 65px rgba(196,28,28,0.4);
}

/* Streaming badge hover */
.streaming-badge:hover {
  box-shadow: 0 0 12px rgba(196,28,28,0.4), var(--shadow-sm);
}

/* Cart badge */
.snipcart-items-count {
  box-shadow: 0 0 8px rgba(196,28,28,0.7);
}

/* Back-to-top hover */
.back-to-top:hover {
  box-shadow: 0 0 14px rgba(196,28,28,0.6);
}

/* Gallery overlay icon */
.gallery-item:hover .gallery-overlay {
  text-shadow: 0 0 12px rgba(255,255,255,0.8);
}

/* Contact form submit glow */
.contact-form-wrap .btn-primary {
  box-shadow: 0 0 14px rgba(196,28,28,0.45), 0 4px 14px rgba(0,0,0,0.4);
}

/* ============================================================
   VINYL RECORD + MEDIA PLAYER ANIMATION
   ============================================================ */

/* Spin hero album art as a vinyl record */
.hero-featured-card img {
  border-radius: 50%;
  animation: vinylSpin 14s linear infinite;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.06),
    0 0 0 10px rgba(0,0,0,0.35),
    0 0 0 14px rgba(255,255,255,0.04),
    0 0 30px rgba(196,28,28,0.35);
}
.hero-featured-card:hover img {
  animation-play-state: paused;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Vinyl label dot (centre hole illusion via pseudo-element on the card) */
.hero-featured-card::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -72%);
  width: 18px; height: 18px;
  background: radial-gradient(circle, #1a1a1a 40%, #c41c1c 100%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 8px rgba(196,28,28,0.6);
  pointer-events: none;
  z-index: 5;
}

/* Equalizer bars — injected by JS into .audio-embed-wrap::before area */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-bottom: 0.85rem;
}
.eq-bar {
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--blue), #ff4444);
  box-shadow: 0 0 6px rgba(196,28,28,0.6);
  transform-origin: bottom;
  animation: eqBounce var(--eq-dur, 0.8s) ease-in-out infinite alternate;
  animation-delay: var(--eq-delay, 0s);
}

@keyframes eqBounce {
  0%   { height: 4px;  opacity: 0.5; }
  100% { height: var(--eq-max, 22px); opacity: 1; }
}

/* Pulsing audio ring around spotify embed */
.audio-embed-wrap {
  position: relative;
}
.audio-embed-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid rgba(196,28,28,0.25);
  box-shadow: 0 0 18px rgba(196,28,28,0.15);
  animation: audioPulse 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.audio-embed-wrap iframe { position: relative; z-index: 1; }

@keyframes audioPulse {
  0%, 100% { border-color: rgba(196,28,28,0.15); box-shadow: 0 0 10px rgba(196,28,28,0.1); }
  50%       { border-color: rgba(196,28,28,0.45); box-shadow: 0 0 24px rgba(196,28,28,0.3); }
}

/* ============================================================
   CROSS-BROWSER NORMALIZATION (Firefox-consistent rendering)
   ============================================================ */

/* Consistent font rendering across all browsers */
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Thin scrollbar — Firefox native, Chrome/Safari styled to match */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #1a1a1a;
}
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-hover); }

/* Consistent focus outline (Firefox shows a dotted outline by default) */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(196,28,28,0.15);
}
:focus:not(:focus-visible) { outline: none; }

/* Consistent placeholder colour */
::placeholder {
  color: rgba(255,255,255,0.2);
  opacity: 1; /* Firefox reduces opacity by default */
}

/* Backdrop-filter fallback for browsers without support */
@supports not (backdrop-filter: blur(1px)) {
  #navbar.scrolled       { background: rgba(8,8,8,0.97); }
  .hero-featured-card    { background: rgba(20,20,20,0.97); }
  .nav-links             { background: rgba(8,8,8,0.99); }
}

/* Force consistent box-model on form controls */
input, textarea, button, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
}

/* Firefox removes inner focus ring on buttons — restore parity */
button::-moz-focus-inner { border: 0; padding: 0; }

/* Consistent iframe border removal */
iframe { border: 0; }

/* will-change hints for GPU-composited animations */
.hero-featured-card,
.hero-featured-card img,
.ambient-orb,
.particle,
.eq-bar {
  will-change: transform;
}
.logo-ras,
.btn-primary,
.play-btn {
  will-change: box-shadow;
}

/* ============================================================
   SOCIAL ICON BRAND COLOURS
   ============================================================ */

/* Contact section icon tints — platform colours */
#contact-social-spotify i   { color: #1DB954; }
#contact-social-apple i     { color: #fc3c44; }
#contact-social-youtube i   { color: #FF0000; }
#contact-social-instagram i { color: #E1306C; }
#contact-social-tiktok i    { color: #69C9D0; }
#contact-facebook i         { color: #1877F2; }

/* Hover — brand background, white icon */
#contact-social-spotify:hover {
  background: #1DB954 !important; border-color: #1DB954 !important;
  box-shadow: 0 0 16px rgba(29,185,84,0.6) !important;
}
#contact-social-apple:hover {
  background: #fc3c44 !important; border-color: #fc3c44 !important;
  box-shadow: 0 0 16px rgba(252,60,68,0.6) !important;
}
#contact-social-youtube:hover {
  background: #FF0000 !important; border-color: #FF0000 !important;
  box-shadow: 0 0 16px rgba(255,0,0,0.6) !important;
}
#contact-social-instagram:hover {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important;
  border-color: #dc2743 !important;
  box-shadow: 0 0 16px rgba(220,39,67,0.6) !important;
}
#contact-social-tiktok:hover {
  background: #010101 !important; border-color: #69C9D0 !important;
  box-shadow: 0 0 16px rgba(105,201,208,0.5) !important;
}
#contact-facebook:hover {
  background: #1877F2 !important; border-color: #1877F2 !important;
  box-shadow: 0 0 16px rgba(24,119,242,0.6) !important;
}

/* On hover all contact icons go white */
#contact-social-spotify:hover i,
#contact-social-apple:hover i,
#contact-social-youtube:hover i,
#contact-social-instagram:hover i,
#contact-social-tiktok:hover i,
#contact-facebook:hover i { color: #fff; }

/* ============================================================
   MUSIC SECTION — ANIMATIONS & MOVEMENT
   ============================================================ */

#music { position: relative; overflow: hidden; }

/* Floating music symbols injected by JS */
.music-symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.music-note {
  position: absolute;
  color: rgba(196,28,28,0.1);
  font-size: var(--note-size, 2rem);
  line-height: 1;
  animation: floatMusicNote var(--note-dur, 10s) linear infinite;
  animation-delay: var(--note-delay, 0s);
  bottom: -5%;
  left: var(--note-x, 10%);
  -webkit-user-select: none;
  user-select: none;
}
@keyframes floatMusicNote {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.45; }
  100% { transform: translateY(-110vh) rotate(25deg); opacity: 0; }
}

/* Content sits above the floating symbols */
#music > .container { position: relative; z-index: 1; }

/* Animated glow line beneath "Latest Releases" heading */
#music .section-header::after {
  content: '';
  display: block;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 12px rgba(196,28,28,0.6);
  animation: headerGlowLine 2.5s ease-in-out infinite;
}
@keyframes headerGlowLine {
  0%, 100% { width: 50px;  opacity: 0.5; }
  50%       { width: 150px; opacity: 1; box-shadow: 0 0 22px rgba(196,28,28,0.9); }
}

/* Featured release: play overlay on hover */
.release-featured .release-cover { position: relative; overflow: hidden; }

.release-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  z-index: 3;
}
.release-featured:hover .release-play-overlay { background: rgba(0,0,0,0.45); }

.release-play-ring {
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid rgba(196,28,28,0.7);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: playRingExpand 1.8s ease-out infinite;
}
.release-featured:hover .release-play-ring { opacity: 1; }
@keyframes playRingExpand {
  0%   { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.release-play-btn {
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  padding-left: 5px;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 35px rgba(196,28,28,0.7), 0 0 70px rgba(196,28,28,0.35);
  position: relative; z-index: 1;
}
.release-featured:hover .release-play-btn { transform: scale(1); }

/* Album image subtle zoom on hover */
.release-featured .release-cover img { transition: transform 0.45s ease; }
.release-featured:hover .release-cover img { transform: scale(1.04); }

/* Idle pulse on featured card border */
.release-featured.aos-animate {
  animation: featuredCardPulse 4s ease-in-out infinite;
}
@keyframes featuredCardPulse {
  0%, 100% { border-color: rgba(255,255,255,0.10); box-shadow: none; }
  50%       { border-color: rgba(196,28,28,0.30); box-shadow: 0 0 28px rgba(196,28,28,0.15); }
}

/* Singles — thumbnail wrapper */
.single-thumb {
  position: relative;
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.release-single:hover .single-thumb img {
  transform: scale(1.12) rotate(4deg);
  filter: brightness(0.65);
}

/* Mini play icon revealed over thumbnail on hover */
.single-thumb::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-style: normal;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  padding-left: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.release-single:hover .single-thumb::after { opacity: 1; }

/* Track number badge */
.track-num {
  position: absolute;
  bottom: 4px; right: 4px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.6);
  padding: 1px 5px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
  line-height: 1.5;
}

/* Animated red left-border that grows on single hover */
.release-single { overflow: hidden; }
.release-single::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(196,28,28,0.7);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}
.release-single:hover::before { transform: scaleY(1); }

/* Stream button shimmer sweep */
.stream-btn { position: relative; overflow: hidden; }
.stream-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: streamShimmer 3.5s ease-in-out infinite;
}
@keyframes streamShimmer {
  0%        { left: -120%; }
  40%, 100% { left: 160%; }
}

/* ============================================================
   EQUALIZER BAR ANIMATION
   ============================================================ */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin: 4px 0 6px;
}
.eq-bars span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--blue);
  opacity: 0.3;
  transform-origin: bottom;
  animation: eqIdle 2.4s ease-in-out infinite;
}
.eq-bars span:nth-child(1) { height: 55%; animation-delay: 0s;    animation-duration: 2.1s; }
.eq-bars span:nth-child(2) { height: 80%; animation-delay: 0.25s; animation-duration: 1.8s; }
.eq-bars span:nth-child(3) { height: 40%; animation-delay: 0.1s;  animation-duration: 2.5s; }
.eq-bars span:nth-child(4) { height: 70%; animation-delay: 0.4s;  animation-duration: 1.9s; }
.eq-bars span:nth-child(5) { height: 55%; animation-delay: 0.15s; animation-duration: 2.3s; }

@keyframes eqIdle {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50%       { transform: scaleY(1);   opacity: 0.5; }
}

/* On hover — full energy */
.release-single:hover .eq-bars span {
  opacity: 1;
  animation-name: eqActive;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.release-single:hover .eq-bars span:nth-child(1) { animation-delay: 0s;    animation-duration: 0.55s; }
.release-single:hover .eq-bars span:nth-child(2) { animation-delay: 0.12s; animation-duration: 0.48s; }
.release-single:hover .eq-bars span:nth-child(3) { animation-delay: 0.06s; animation-duration: 0.7s;  }
.release-single:hover .eq-bars span:nth-child(4) { animation-delay: 0.18s; animation-duration: 0.52s; }
.release-single:hover .eq-bars span:nth-child(5) { animation-delay: 0.09s; animation-duration: 0.6s;  }

@keyframes eqActive {
  0%   { transform: scaleY(0.2); }
  30%  { transform: scaleY(1);   }
  60%  { transform: scaleY(0.5); }
  100% { transform: scaleY(0.85);}
}

/* ============================================================
   MARQUEE TICKER — RASTA TRICOLOR
   ============================================================ */
.marquee-ticker {
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  /* Three equal rasta stripes */
  background: linear-gradient(to right,
    #006400 0% 33.33%,
    #FFD700 33.33% 66.66%,
    #c41c1c 66.66% 100%
  );
  box-shadow: 0 4px 28px rgba(0,0,0,0.5);
}

/* Inner band so text sits on a near-black strip over the color bar */
.marquee-ticker::before {
  content: '';
  position: absolute;
  inset: 3px 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
  pointer-events: none;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0.65rem 0;
  position: relative;
  z-index: 1;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-ticker:hover .marquee-track { animation-play-state: paused; }

/* Cycle text through rasta colors */
.marquee-track span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: #FFD700; /* gold default */
}
.marquee-track span:nth-child(6n+1)  { color: #4ade80; }  /* green  */
.marquee-track span:nth-child(6n+3)  { color: #FFD700; }  /* gold   */
.marquee-track span:nth-child(6n+5)  { color: #ff6666; }  /* red    */

.marquee-track .mtick-dot {
  color: rgba(255,255,255,0.35);
  letter-spacing: 0;
  font-size: 0.85rem;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT — BENTO GRID
   ============================================================ */
#about { background: var(--white); border-top: 3px solid var(--blue); }

.about-bento {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.5rem;
  align-items: start;
}

.bento-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Photo tile — left column, spans all rows */
.bento-photo {
  grid-column: 1;
  grid-row: 1 / 4;
  position: relative;
  background: var(--navy);
  overflow: visible;
  align-self: start;
  border-radius: var(--radius-lg);
}
.bento-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.bento-photo:hover img { transform: scale(1.02); }
.bento-photo .about-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: auto;
}

/* Bio tile — right 3 cols, row 1 */
.bento-bio {
  grid-column: 2 / 5;
  grid-row: 1;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
}
.bento-bio .section-label { margin-bottom: 0.5rem; }
.bento-bio h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 0.85rem;
}
.bento-bio .about-bio p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* Stat tiles — row 2, one per column */
.bento-stat {
  grid-row: 2;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: default;
}
.bento-stat:nth-child(3) { grid-column: 2; grid-row: 2; }
.bento-stat:nth-child(4) { grid-column: 3; grid-row: 2; }
.bento-stat:nth-child(5) { grid-column: 4; grid-row: 2; }
.bento-stat:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196,28,28,0.35);
}
.bento-num {
  font-size: clamp(1.75rem, 2.2vw, 2.4rem);
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 20px rgba(196,28,28,0.4);
}
.bento-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.bento-stat:hover .bento-label { color: rgba(255,255,255,0.85); }

/* Streaming + audio tile — row 3 */
.bento-stream {
  grid-column: 2 / 5;
  grid-row: 3;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
}
.bento-stream .streaming-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.bento-stream .audio-embed-wrap { margin-top: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .about-bento {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .bento-photo { grid-column: 1 / 4; grid-row: 1; }
  .bento-bio   { grid-column: 1 / 4; grid-row: 2; }
  .bento-stat:nth-child(3) { grid-column: 1; grid-row: 3; }
  .bento-stat:nth-child(4) { grid-column: 2; grid-row: 3; }
  .bento-stat:nth-child(5) { grid-column: 3; grid-row: 3; }
  .bento-stream { grid-column: 1 / 4; grid-row: 4; }
  .bento-photo .about-badge { bottom: 1rem; right: 1rem; }
}
@media (max-width: 600px) {
  .about-bento { grid-template-columns: 1fr; }
  .bento-photo { grid-column: 1; grid-row: auto; }
  .bento-bio   { grid-column: 1; grid-row: auto; }
  .bento-stat:nth-child(3),
  .bento-stat:nth-child(4),
  .bento-stat:nth-child(5) { grid-column: 1; grid-row: auto; }
  .bento-stream { grid-column: 1; grid-row: auto; }
}

/* ============================================================
   GALLERY — DARK + SLIDE-UP REVEAL
   ============================================================ */
#gallery { background: var(--navy); color: var(--white); }
#gallery .section-label    { color: var(--blue); }
#gallery .section-header h2 { color: var(--white); }
#gallery .section-subtitle { color: rgba(255,255,255,0.6); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(196,28,28,0.88) 0%,
    rgba(8,8,8,0.55) 50%,
    transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-caption {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus .gallery-caption {
  transform: translateY(0);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover {
  box-shadow: 0 0 30px rgba(196,28,28,0.35);
}

/* ============================================================
   SHOP — SECTION OVERRIDES (dark background, white cards)
   ============================================================ */
#shop { background: var(--navy); }
#shop .section-label  { color: var(--blue); }
#shop .section-header h2 { color: var(--white); }
#shop .section-subtitle { color: rgba(255,255,255,0.55); }
.shop-note { color: rgba(255,255,255,0.45) !important; }
.shop-note strong { color: var(--white); }

/* Cards stay white — no dark overrides */
.product-card {
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  backdrop-filter: none !important;
}
.product-card:hover {
  border-color: rgba(196,28,28,0.5) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(196,28,28,0.2) !important;
}
.product-card .product-img-wrap { background: #f4f4f4 !important; }
.product-card-info { background: #ffffff !important; }
.product-card-info h3 { color: #111111 !important; }
.product-type-label { color: #888888 !important; }
.product-card-price { color: #111111 !important; }
.product-card-cta { color: var(--blue) !important; }

/* ============================================================
   VIDEOS — NUMBERED BADGES
   ============================================================ */
.video-card { position: relative; overflow: hidden; }

.vid-num {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
  background: var(--blue);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  z-index: 5;
  box-shadow: 0 0 10px rgba(196,28,28,0.55);
  font-family: var(--font-display);
}

.video-info {
  position: relative;
  overflow: hidden;
}
.video-info h3 {
  transition: color 0.3s ease;
}
.video-card:hover .video-info h3 { color: var(--blue); }
.video-info p {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.video-card:hover .video-info p {
  transform: translateX(4px);
}
.video-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.video-card:hover::after { transform: scaleX(1); }

/* ============================================================
   CONTACT — BENTO TILES
   ============================================================ */

/* Override old centred single-column layout */
.contact-grid { display: none; }

.contact-bento-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
  align-items: start;
}

/* Tiles column */
.contact-bento-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* Base tile */
.ctile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}
.ctile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,28,28,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ctile:hover::before { opacity: 1; }

/* Heading tile — spans both columns */
.ctile-heading {
  grid-column: 1 / 3;
  background: rgba(196,28,28,0.08);
  border-color: rgba(196,28,28,0.2);
}
.ctile-heading .section-label { margin-bottom: 0.5rem; }
.ctile-heading h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.ctile-heading .contact-intro {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* Clickable info tiles (email, EPK) */
.ctile-email,
.ctile-epk {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.ctile-email:hover,
.ctile-epk:hover {
  background: rgba(196,28,28,0.12);
  border-color: rgba(196,28,28,0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196,28,28,0.2);
}

/* Location tile */
.ctile-location {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Icons */
.ctile-icon {
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  background: rgba(196,28,28,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.ctile-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.ctile:hover .ctile-arrow {
  color: var(--white);
  transform: translate(2px, -2px);
}
.ctile-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}
.ctile-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Socials tile — spans both columns */
.ctile-socials {
  grid-column: 1 / 3;
}
.ctile-socials .contact-socials {
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-bento-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .contact-bento-tiles {
    grid-template-columns: 1fr;
  }
  .ctile-heading,
  .ctile-socials {
    grid-column: 1;
  }
}

/* ============================================================
   ✦ GLOWS & ANIMATION OVERHAUL
   ============================================================ */

/* ── GLOBAL: Accent text glow ─────────────────────────────── */
.text-accent {
  text-shadow: 0 0 35px rgba(196,28,28,0.38);
}

/* Subtle pulsing section labels */
@keyframes labelPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}
.section-label {
  animation: labelPulse 4.5s ease-in-out infinite;
}

/* ── ABOUT: Photo tile animated glow border ───────────────── */
@keyframes photoBorderGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(196,28,28,0.15),
                0 0 60px rgba(196,28,28,0.05),
                inset 0 0 0 1px rgba(196,28,28,0.12);
  }
  50% {
    box-shadow: 0 0 40px rgba(196,28,28,0.4),
                0 0 100px rgba(196,28,28,0.1),
                inset 0 0 0 2px rgba(196,28,28,0.35);
  }
}
.bento-photo {
  animation: photoBorderGlow 4.5s ease-in-out infinite;
}

/* Floating artist badge */
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.about-badge {
  animation: badgeFloat 3.2s ease-in-out infinite;
  box-shadow: 0 8px 28px rgba(196,28,28,0.35) !important;
}

/* Giant decorative quote in bio tile */
.bento-bio {
  position: relative;
  overflow: hidden;
}
.bento-bio::after {
  content: '"';
  position: absolute;
  bottom: -3rem;
  right: 0.5rem;
  font-size: 14rem;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  color: rgba(196,28,28,0.04);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Stat tile count-up class */
@keyframes statEntrance {
  0%   { box-shadow: 0 0 0 6px rgba(196,28,28,0.4); }
  100% { box-shadow: 0 0 0 0   rgba(196,28,28,0); }
}
.bento-stat.counted {
  animation: statEntrance 0.9s ease-out;
}

/* ── MUSIC: Red ambient glow + album shine ─────────────────── */
#music {
  position: relative;
  overflow: hidden;
}
/* Ambient red orb drifting behind featured card */
#music::before {
  content: '';
  position: absolute;
  top: 20%; left: -8%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at 35% 50%,
    rgba(196,28,28,0.09) 0%, transparent 65%);
  pointer-events: none;
  animation: musicAmbientDrift 11s ease-in-out infinite alternate;
  z-index: 0;
}
#music > * { position: relative; z-index: 1; }
@keyframes musicAmbientDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5%, 4%) scale(1.12); }
}

/* Animated glow border on featured release card */
@keyframes featuredGlowPulse {
  0%, 100% {
    border-color: rgba(196,28,28,0.18);
    box-shadow: 0 0 20px rgba(196,28,28,0.08), 0 20px 60px rgba(0,0,0,0.4);
  }
  50% {
    border-color: rgba(196,28,28,0.5);
    box-shadow: 0 0 50px rgba(196,28,28,0.18), 0 20px 60px rgba(0,0,0,0.4);
  }
}
.release-featured {
  border: 1px solid rgba(196,28,28,0.18) !important;
  animation: featuredGlowPulse 4.5s ease-in-out infinite;
}

/* Red ambient halo behind album art */
.release-featured .release-cover::before {
  content: '';
  position: absolute;
  inset: -25%;
  background: radial-gradient(ellipse at center,
    rgba(196,28,28,0.28) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  animation: albumHalo 4s ease-in-out infinite;
}
@keyframes albumHalo {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

/* Shine sweep across album cover */
.release-featured .release-cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg,
    transparent 20%,
    rgba(255,255,255,0.1) 50%,
    transparent 80%);
  z-index: 3;
  pointer-events: none;
  animation: albumShine 7s ease-in-out infinite 1.5s;
}
@keyframes albumShine {
  0%        { left: -90%; }
  45%, 100% { left: 130%; }
}

/* Single cards — sliding left accent bar */
.release-single::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--blue), transparent);
  border-radius: 0 3px 3px 0;
  transition: height 0.4s ease;
  z-index: 2;
}
.release-single:hover::after { height: 100%; }

/* ── VIDEOS: Featured layout ───────────────────────────────── */
.videos-grid {
  grid-template-columns: 2fr 1fr !important;
  align-items: start;
}
.video-card-featured {
  grid-column: 1;
}
.video-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Video type tag */
.video-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(196,28,28,0.1);
  border: 1px solid rgba(196,28,28,0.2);
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* Featured video card */
.video-card-featured .video-info {
  padding: 1.5rem 2rem 2rem;
}
.video-card-featured .video-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.3rem;
}
.video-card-featured .vid-num {
  font-size: 0.72rem;
  padding: 0.28rem 0.72rem;
  box-shadow: 0 0 22px rgba(196,28,28,0.75);
}

/* Featured hover — dramatic red glow */
.video-card-featured:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(196,28,28,0.4) !important;
  box-shadow:
    0 0 0 1px rgba(196,28,28,0.18),
    0 0 60px rgba(196,28,28,0.2),
    0 20px 60px rgba(0,0,0,0.5) !important;
}

/* Sidebar hover */
.video-sidebar .video-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(196,28,28,0.35) !important;
  box-shadow:
    0 0 28px rgba(196,28,28,0.14),
    0 12px 40px rgba(0,0,0,0.3) !important;
}

/* Videos heading glow */
#videos h2 .text-accent {
  text-shadow: 0 0 60px rgba(196,28,28,0.55);
}

/* Responsive video grid */
@media (max-width: 900px) {
  .videos-grid { grid-template-columns: 1fr !important; }
  .video-card-featured { grid-column: 1; }
  .video-sidebar { flex-direction: row; flex-wrap: wrap; }
  .video-sidebar .video-card { flex: 1 1 calc(50% - 0.75rem); }
}
@media (max-width: 580px) {
  .video-sidebar { flex-direction: column; }
  .video-sidebar .video-card { flex: 1 1 100%; }
}

/* ── NEWSLETTER: Glow border + perks + shimmer ─────────────── */
.newsletter-wrap {
  position: relative;
  animation: nlGlowPulse 6s ease-in-out infinite;
}
@keyframes nlGlowPulse {
  0%, 100% {
    box-shadow: var(--shadow-md);
    border-color: rgba(196,28,28,0.07);
  }
  50% {
    box-shadow: var(--shadow-md), 0 0 50px rgba(196,28,28,0.07);
    border-color: rgba(196,28,28,0.22);
  }
}

/* Red top accent bar */
.newsletter-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 3px;
  background: var(--blue);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 18px rgba(196,28,28,0.7);
}

/* Perks row */
.nl-perks {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -0.5rem;
  margin-bottom: 1.75rem;
}
.nl-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1px solid var(--border-light);
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: default;
}
.nl-perk:hover {
  background: rgba(196,28,28,0.06);
  border-color: rgba(196,28,28,0.28);
  color: var(--blue);
}
.nl-perk i {
  color: var(--blue);
  font-size: 0.68rem;
}

/* Subscribe button shimmer */
@keyframes btnShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.newsletter-form .btn {
  background: linear-gradient(115deg,
    var(--blue) 0%,
    var(--blue-hover) 25%,
    #e83535 50%,
    var(--blue-hover) 75%,
    var(--blue) 100%);
  background-size: 200% auto;
  animation: btnShimmer 4s linear infinite;
  border-color: transparent !important;
}
.newsletter-form .btn:hover {
  animation-duration: 1.5s;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,28,28,0.45);
}

/* Newsletter heading glow */
#newsletter .text-accent {
  text-shadow: 0 0 30px rgba(196,28,28,0.35);
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: var(--ease);
}
.event-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(196, 28, 28, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.event-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.event-date {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.event-location {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 600px) {
  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ============================================================
   ALBUMS SECTION
   ============================================================ */
.albums-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}
.album-row {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 900px) {
  .album-row {
    grid-template-columns: 1fr;
  }
}
.album-cover {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.album-details {
  display: flex;
  flex-direction: column;
}
.album-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
}
.album-year {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 600;
}
.tracklist {
  display: flex;
  flex-direction: column;
}
.album-track-row {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  flex-wrap: wrap;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.album-track-row + .album-track-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.album-track-row:hover {
  background: rgba(255,255,255,0.05);
}
.album-track-left {
  width: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 1.2rem;
}
.album-track-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.album-track-row:hover .album-track-num,
.album-track-row.is-playing .album-track-num {
  display: none;
}
.album-track-play-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}
.album-track-row:hover .album-track-play-btn,
.album-track-row.is-playing .album-track-play-btn {
  display: block;
}
.album-track-row.is-playing .album-track-play-btn {
  color: var(--gold);
}
.album-track-middle {
  flex: 1;
  display: flex;
  align-items: center;
}
.album-track-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}
.album-track-row:hover .album-track-title {
  color: var(--white);
}
.album-track-row.is-playing .album-track-title {
  color: var(--gold);
  font-weight: 700;
}
.album-track-right {
  display: flex;
  align-items: center;
}
.album-track-lyric-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  transition: var(--ease);
  cursor: pointer;
  opacity: 0; /* show on hover */
}
.album-track-row:hover .album-track-lyric-btn {
  opacity: 1;
}
.album-track-lyric-btn:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
@media (max-width: 768px) {
  .album-track-lyric-btn { opacity: 1; }
}
.album-track-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   LYRICS MODAL
   ============================================================ */
.lyrics-modal .product-modal-inner {
  grid-template-columns: 1fr;
  max-width: 680px;
  max-height: 85vh;
  overflow: hidden auto;
  text-align: center;
  background:
    linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.45) 100%),
    url('/assets/images/lyrics-bg.webp') right bottom / cover no-repeat;
  background-color: #fff;
}
.lyrics-modal .product-modal-close {
  color: #333;
  background: rgba(0,0,0,0.08);
}
.lyrics-modal .product-modal-close:hover {
  background: rgba(0,0,0,0.18);
  color: #000;
}
.lyrics-modal-content {
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
}
.lyrics-title {
  font-size: 2rem;
  font-family: var(--font-display);
  color: #8B5E0A;
  margin-bottom: 1.5rem;
  text-align: center;
}
.lyrics-text {
  font-size: 1rem;
  line-height: 2;
  color: #2a2a2a;
  white-space: pre-wrap;
  text-align: center;
  display: block;
}

/* ============================================================
   WAVEFORM CANVAS
   ============================================================ */
.album-waveform-canvas {
  display: none;
  flex-basis: 100%;
  width: 100%;
  height: 64px;
  order: 99;
  margin: 4px 0 2px;
  pointer-events: none;
}

/* ============================================================
   MINI PLAYER
   ============================================================ */
#mini-player {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 380px;
  max-width: calc(100vw - 2rem);
  background: rgba(13, 13, 13, 0.97);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,215,0,0.06);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  touch-action: none;
  cursor: grab;
}
#mini-player[hidden] { display: none; }
#mini-player.mini-pl-dragging {
  cursor: grabbing;
  animation: none;
  transition: none;
  -webkit-user-select: none;
  user-select: none;
}
#mini-player button, #mini-player input, #mini-player a { cursor: pointer; }
#mini-player input[type="range"] { touch-action: manipulation; }

.mini-pl-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
}

.mini-pl-art {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #1a1a1a;
}

.mini-pl-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mini-pl-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-pl-prog-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-pl-prog-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}

#mini-pl-prog-fill {
  height: 100%;
  width: 0%;
  background: var(--gold, #FFD700);
  border-radius: 2px;
  transition: width 0.25s linear;
}

.mini-pl-time {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.mini-pl-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mini-pl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.mini-pl-btn:hover { background: rgba(255,215,0,0.2); transform: scale(1.08); }
#mini-pl-play { background: var(--gold, #FFD700); color: #000; }
#mini-pl-play:hover { background: #f0c800; }

.mini-pl-vol-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

#mini-pl-vol {
  width: 64px;
  height: 3px;
  accent-color: var(--gold, #FFD700);
  cursor: pointer;
  vertical-align: middle;
}

.mini-pl-min-btn { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); font-size: 0.7rem; }

/* Minimised restore strip */
.mini-pl-restore {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}
.mini-pl-restore i { color: var(--gold, #FFD700); }
.mini-pl-restore span { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-pl-restore button { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 0.75rem; padding: 0.25rem; }
.mini-pl-restore button:hover { color: var(--gold, #FFD700); }

@media (max-width: 480px) {
  #mini-player { width: calc(100vw - 1rem); right: 0.5rem; bottom: 0.75rem; }
  .mini-pl-vol-wrap { display: none; }
}

/* ============================================================
   PREVIEW CTA POPUP
   ============================================================ */
#preview-cta {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
#preview-cta[hidden] { display: none; }

#preview-cta-inner {
  position: relative;
  background: var(--navy-mid, #111827);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,215,0,0.08);
  animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#preview-cta-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.55);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
#preview-cta-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.preview-cta-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold, #FFD700), #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: #000;
}

#preview-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

#preview-cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.preview-cta-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.preview-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.preview-cta-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.preview-cta-spotify {
  background: #1DB954;
  color: #fff;
}
.preview-cta-youtube {
  background: #FF0000;
  color: #fff;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
