/* ==========================================================================
   Drum Oddities Vol 1 — Neria Plays
   Premium Drum Sample Store Page
   Dark luxury meets analog warmth
   ========================================================================== */

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo:hover {
  color: var(--accent);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.5rem;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 60px;
  font-weight: 700 !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: scale(1.04);
  color: var(--bg) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger for mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Offset hero for fixed nav */
.hero {
  padding-top: 70px;
}

/* --------------------------------------------------------------------------
   FREE PRODUCT SECTION
   -------------------------------------------------------------------------- */
.free-product-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.free-product-section .product-grid {
  direction: rtl; /* flip image to right side for visual variety */
}

.free-product-section .product-details {
  direction: ltr;
}

.badge--free {
  background: var(--success);
  color: #fff;
}

.price-free {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--success);
  font-weight: 700;
  line-height: 1;
}

.product-buy-btn--free {
  background: transparent;
  color: var(--success);
  border: 2px solid var(--success);
}

.product-buy-btn--free:hover {
  background: var(--success);
  color: #fff;
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
}

/* --------------------------------------------------------------------------
   EMAIL MODAL
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #141414;
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.1);
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.modal-box p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.modal-input:focus {
  border-color: var(--accent);
}

.modal-input::placeholder {
  color: var(--text-muted);
}

.modal-submit {
  width: 100%;
  padding: 1rem;
  background: var(--success);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modal-submit:hover {
  background: #43a047;
  transform: scale(1.02);
}

.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.modal-success.visible {
  display: flex;
}

.modal-success-icon {
  font-size: 3.5rem;
  color: var(--success);
}

.modal-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
}

.modal-success p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.modal-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--success);
  color: #fff;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modal-download-btn:hover {
  background: #43a047;
  color: #fff;
  transform: scale(1.04);
}

.modal-error {
  color: #f44336;
  font-size: 0.9rem;
  display: none;
}

.modal-error.visible {
  display: block;
}

/* --------------------------------------------------------------------------
   ABOUT PAGE
   -------------------------------------------------------------------------- */
.about-hero {
  padding: calc(var(--section-pad) + 70px) 0 var(--section-pad);
  background: radial-gradient(ellipse at 50% 0%,
    rgba(245, 166, 35, 0.06) 0%,
    transparent 60%),
    var(--bg);
  position: relative;
  z-index: 2;
}

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

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

.about-image-wrap img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 166, 35, 0.05);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  border: 1px solid rgba(245, 166, 35, 0.08);
  z-index: -1;
}

.about-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-text h1 span {
  color: var(--accent);
}

.about-role {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: block;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

/* Spotify section */
.spotify-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.spotify-embed:hover {
  border-color: rgba(30, 215, 96, 0.3);
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.08);
}

.spotify-embed iframe {
  display: block;
}

/* --------------------------------------------------------------------------
   CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-hero {
  padding: calc(var(--section-pad) + 70px) 0 var(--section-pad);
  background: radial-gradient(ellipse at 50% 0%,
    rgba(245, 166, 35, 0.06) 0%,
    transparent 60%),
    var(--bg);
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-info h1 span {
  color: var(--accent);
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-detail-item:hover {
  color: var(--text-primary);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.03);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: 0 0 30px var(--accent-glow);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

.form-success.visible {
  display: flex;
}

.form-success-icon {
  font-size: 3rem;
  color: var(--success);
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.form-success p {
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   NAV RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.97);
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .spotify-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .free-product-section .product-grid {
    direction: ltr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   0. CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg:              #0a0a0a;
  --surface:         #111111;
  --surface-hover:   #1a1a1a;
  --accent:          #F5A623;
  --accent-glow:     rgba(245, 166, 35, 0.3);
  --accent-hover:    #E8941A;
  --text-primary:    #FFFFFF;
  --text-secondary:  #999999;
  --text-muted:      #666666;
  --success:         #4CAF50;
  --border:          rgba(255, 255, 255, 0.08);
  --glass-bg:        rgba(255, 255, 255, 0.03);
  --glass-border:    rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Calistoga', cursive;
  --font-body:    'Source Sans Pro', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --max-width:   1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   1. GLOBAL RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Ensure content sections sit above background canvases (visualizer, particles) */
.player-section,
.product-section,
.stats-section,
.whats-inside,
.cta-section,
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(245, 166, 35, 0.08) 0%,
      rgba(245, 166, 35, 0.03) 30%,
      transparent 60%),
    radial-gradient(ellipse at 50% 50%,
      rgba(30, 20, 5, 1) 0%,
      var(--bg) 70%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}

/* Grain / noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--text-primary);
  text-shadow:
    0 0 40px var(--accent-glow),
    0 0 80px rgba(245, 166, 35, 0.15),
    0 0 120px rgba(245, 166, 35, 0.05);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    background-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out);
  animation: pulse 3s ease-in-out infinite;
}

.hero-cta:hover {
  background: var(--accent-hover);
  color: var(--bg);
  transform: scale(1.05);
  box-shadow:
    0 0 30px var(--accent-glow),
    0 0 60px rgba(245, 166, 35, 0.15);
}

.hero-cta:active {
  transform: scale(0.98);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* --------------------------------------------------------------------------
   3. AUDIO PLAYER SECTION
   -------------------------------------------------------------------------- */
.player-section {
  padding: var(--section-pad) 0;
}

.player-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition:
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
}

.player-card:hover {
  box-shadow:
    0 8px 40px rgba(245, 166, 35, 0.08),
    0 0 0 1px rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.15);
}

.player-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.waveform-container {
  width: 100%;
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

#waveform,
.waveform {
  width: 100%;
  height: 120px;
  display: block;
}

#waveform canvas,
.waveform canvas {
  width: 100% !important;
  height: 120px !important;
  display: block;
}

.player-controls {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition:
    transform 0.3s var(--ease-spring),
    background-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--accent-hover);
  box-shadow: 0 0 24px var(--accent-glow);
}

.play-btn:active {
  transform: scale(0.95);
}

.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.prev-btn:hover,
.next-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.progress-bar:hover .progress-fill::after {
  opacity: 1;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.35rem;
}

.volume-icon {
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s var(--ease-out);
}

.volume-icon:hover {
  color: var(--accent);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text-primary);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s var(--ease-spring);
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text-primary);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.volume-slider::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--volume, 75%), rgba(255, 255, 255, 0.1) var(--volume, 75%));
  height: 4px;
  border-radius: 2px;
}

.volume-slider::-moz-range-track {
  background: rgba(255, 255, 255, 0.1);
  height: 4px;
  border-radius: 2px;
}

.track-list {
  margin-top: 1.5rem;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out);
}

.track-item:hover {
  background: var(--surface-hover);
}

.track-item.active {
  background: rgba(245, 166, 35, 0.08);
  color: var(--accent);
}

.track-item .track-name {
  font-weight: 600;
}

.track-item .track-duration {
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. PRODUCT SECTION
   -------------------------------------------------------------------------- */
.product-section {
  padding: var(--section-pad) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.12);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(245, 166, 35, 0.05);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}

.product-image:hover {
  transform: scale(1.02);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(245, 166, 35, 0.1);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
}

.product-details h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-primary);
}

.product-details p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

.price-tag {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.price-original {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 60px;
  white-space: nowrap;
}

.badge--success {
  background: var(--success);
  color: var(--text-primary);
}

.product-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    background-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out);
  align-self: flex-start;
}

.product-buy-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.04);
  box-shadow: 0 0 30px var(--accent-glow);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   5. STATS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  padding: var(--section-pad) 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-top: -2.5rem;
  margin-bottom: 3.5rem;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition:
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.stat-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.05);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: glow 4s ease-in-out infinite;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform 0.4s var(--ease-spring),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    background-color 0.4s var(--ease-out);
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.25);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   6. WHAT'S INSIDE
   -------------------------------------------------------------------------- */
.whats-inside {
  padding: var(--section-pad) 0;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition:
    transform 0.4s var(--ease-spring),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.pack-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(245, 166, 35, 0.06);
}

.pack-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.pack-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pack-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pack-card .sample-count {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   7. TESTIMONIALS / SOCIAL PROOF (bonus section)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-pad) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 4rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    background-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out),
    filter 0.3s var(--ease-out);
  animation: pulse 3s ease-in-out infinite;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: scale(1.06);
  filter: brightness(1.1);
  box-shadow:
    0 0 40px var(--accent-glow),
    0 0 80px rgba(245, 166, 35, 0.15);
}

.cta-button:active {
  transform: scale(0.98);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s var(--ease-out);
}

.trust-badge:hover {
  color: var(--text-secondary);
}

.trust-badge-icon {
  font-size: 1.2rem;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   9. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s var(--ease-out);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(245, 166, 35, 0.2),
      0 0 30px rgba(245, 166, 35, 0.1);
  }
  50% {
    box-shadow:
      0 0 25px rgba(245, 166, 35, 0.35),
      0 0 50px rgba(245, 166, 35, 0.15),
      0 0 80px rgba(245, 166, 35, 0.05);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(245, 166, 35, 0.2),
      0 0 20px rgba(245, 166, 35, 0.1);
  }
  50% {
    text-shadow:
      0 0 20px rgba(245, 166, 35, 0.4),
      0 0 40px rgba(245, 166, 35, 0.2),
      0 0 60px rgba(245, 166, 35, 0.1);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes gradientShift {
  0%, 100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 60% 40%;
  }
  50% {
    background-position: 50% 60%;
  }
  75% {
    background-position: 40% 45%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* --------------------------------------------------------------------------
   11. SCROLL-TRIGGERED ANIMATION CLASSES
   -------------------------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

.animate {
  animation: fadeInUp 0.7s var(--ease-out) forwards;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; animation-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; animation-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; animation-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; animation-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; animation-delay: 0.6s; }

/* Slide-in variant */
[data-animate="slide-in"] {
  opacity: 0;
  transform: translateX(-20px);
}

[data-animate="slide-in"].animate {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in variant */
[data-animate="scale-in"] {
  opacity: 0;
  transform: scale(0.95);
}

[data-animate="scale-in"].animate {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   12. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-amber   { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE — TABLET (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .hero-subtitle {
    letter-spacing: 0.3em;
    font-size: clamp(0.65rem, 2vw, 0.85rem);
  }

  .hero-cta {
    padding: 0.85rem 2.5rem;
    font-size: 1rem;
  }

  /* Product grid → single column */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Stats grid — keep 3 across but smaller */
  .stats-grid {
    gap: 1rem;
  }

  .stat-number {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  /* Features — 2 columns */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-item {
    padding: 1.5rem 1rem;
  }

  /* Pack grid — single column */
  .pack-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pack-card {
    padding: 2rem 1.5rem;
  }

  /* Player */
  .player-card {
    padding: 1.5rem;
  }

  .player-controls {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .volume-control {
    width: 100%;
    justify-content: center;
    padding-bottom: 0;
  }

  #waveform,
  .waveform {
    height: 80px;
  }

  #waveform canvas,
  .waveform canvas {
    height: 80px !important;
  }

  /* CTA */
  .cta-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
  }

  .trust-badges {
    gap: 1.25rem;
    font-size: 0.8rem;
  }

  /* Price */
  .price-current {
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE — MOBILE (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 1rem;
    gap: 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-subtitle {
    letter-spacing: 0.2em;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-cta {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* Stats — horizontal scroll option */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  .stat-number {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  /* Features — single column */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .feature-item {
    padding: 1.25rem 1rem;
  }

  .feature-item h4 {
    font-size: 0.9rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  /* Section title */
  .section-title {
    margin-bottom: 2.5rem;
  }

  .section-subtitle {
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
  }

  /* Player */
  .player-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .volume-slider {
    width: 80px;
  }

  /* Product */
  .product-details h2 {
    font-size: 1.6rem;
  }

  .price-current {
    font-size: 2.2rem;
  }

  .product-buy-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .product-meta {
    gap: 1rem;
    font-size: 0.85rem;
  }

  /* CTA */
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   15. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero {
    animation: none;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   16. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    background: none;
    padding: 2rem 0;
  }

  .hero-cta,
  .cta-button,
  .product-buy-btn,
  .player-section,
  .scroll-indicator {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
