/* ============================================================
   1638 Music Theme — theme.css
   ============================================================ */

/* Google Fonts loaded via wp_enqueue_style in functions.php */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — overridden inline via wp_add_inline_style */
  --color-background:         #000000;
  --color-foreground:         #e0e0e0;
  --color-primary:            #bfbfbf;
  --color-primary-foreground: #000000;
  --color-card:               #121212;
  --color-secondary:          #1a1a1a;
  --color-muted-foreground:   #808080;
  --color-border:             #242424;

  /* Typography */
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Sizing */
  --radius:           0.5rem;
  --btn-radius:       0.375rem;
  --btn-height:       44px;
  --btn-padding:      0 1.5rem;
  --btn-font-size:    0.875rem;
  --btn-font-weight:  500;
  --btn-letter-spacing: 0.05em;
  --btn-text-transform: none;
  --btn-icon-padding: 0.5rem;
  --card-radius:      0.5rem;
  --header-height:    80px;
  --logo-height:      60px;

  /* Shadows */
  --shadow-soft:     0 4px 20px -4px rgba(0,0,0,0.4);
  --shadow-elevated: 0 8px 40px -8px rgba(0,0,0,0.6);

  /* Transitions */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--color-border);
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  background-color: var(--color-background);
  color:            var(--color-foreground);
  font-family:      var(--font-body);
  font-size:        16px;
  line-height:      1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anchor scroll offset under fixed header (matches Tailwind scroll-mt-24) */
#about,
#music,
#merch,
#contact {
  scroll-margin-top: 6rem;
}
body.admin-bar #about,
body.admin-bar #music,
body.admin-bar #merch,
body.admin-bar #contact {
  scroll-margin-top: calc(32px + 5rem);
}
@media screen and (max-width: 782px) {
  body.admin-bar #about,
  body.admin-bar #music,
  body.admin-bar #merch,
  body.admin-bar #contact {
    scroll-margin-top: calc(46px + 5rem);
  }
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  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.9' 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: 128px 128px;
}

h1, h2, h3, h4, h5, h6 {
  font-family:    var(--font-display);
  letter-spacing: -0.02em;
  font-weight:    600;
  line-height:    1.2;
  margin:         0;
}

h1 { letter-spacing: -0.03em; }

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor:     pointer;
  background: none;
  border:     none;
  padding:    0;
  color:      inherit;
  font:       inherit;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container-wide {
  width:      100%;
  max-width:  80rem; /* 1280px */
  margin-left:  auto;
  margin-right: auto;
  padding-left:  1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide {
    padding-left:  2rem;
    padding-right: 2rem;
  }
}

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

.section-eyebrow {
  display:        block;
  font-size:      0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--color-muted-foreground);
  font-family:    var(--font-body);
  margin-bottom:  1rem;
}

.section-heading {
  font-family:    var(--font-display);
  font-size:      clamp(1.75rem, 5vw, 3rem);
  color:          var(--color-foreground);
  margin-bottom:  1rem;
}

.section-sub {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  max-width:   32rem;
  margin:      0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-divider {
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(191,191,191,0.2), transparent);
}

/* Link underline animation */
.link-underline {
  position: relative;
  display:  inline-block;
}
.link-underline::after {
  content:    '';
  position:   absolute;
  bottom:     0;
  left:       0;
  width:      100%;
  height:     1px;
  background: currentColor;
  transform:  scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             0.5rem;
  height:          var(--btn-height);
  padding:         var(--btn-padding);
  border-radius:   var(--btn-radius);
  font-family:     var(--font-body);
  font-size:       var(--btn-font-size);
  font-weight:     var(--btn-font-weight);
  letter-spacing:  var(--btn-letter-spacing);
  text-transform:  var(--btn-text-transform);
  cursor:          pointer;
  transition:      opacity 0.2s ease, transform 0.15s ease;
  white-space:     nowrap;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color:            var(--color-primary-foreground);
  border:           none;
}
.btn-primary:hover {
  opacity: 0.85;
  color:   var(--color-primary-foreground);
}

.btn-outline {
  background-color: rgba(255,255,255,0.05);
  color:            var(--color-foreground);
  border:           1px solid rgba(224,224,224,0.3);
  backdrop-filter:  blur(4px);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn:active {
  transform: scale(0.97);
}

.btn:disabled {
  opacity:        0.4;
  cursor:         not-allowed;
  pointer-events: none;
}

/* ============================================================
   SITE LOGO
   ============================================================ */
.site-logo-img  {
  height:    var(--logo-height) !important;
  width:     auto !important;
  display:   block;
  object-fit: contain;
}
.site-logo-text {
  font-family:  var(--font-display);
  font-size:    1.25rem;
  font-weight:  700;
  letter-spacing: -0.02em;
  display: block;
  line-height: var(--logo-height);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position:  fixed;
  top:       0;
  left:      0;
  right:     0;
  z-index:   50;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Sit below the WordPress admin bar when logged in (fixed header otherwise stacks under #wpadminbar). */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-solid,
.site-header.menu-open {
  background-color: rgba(0, 0, 0, 0.9);
  background-color: color-mix(in srgb, var(--color-background) 90%, transparent);
  backdrop-filter:  blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
}

.site-nav {
  position:    relative;
  display:     flex;
  align-items: center;
  justify-content: center;
  height:      4rem;
}
@media (min-width: 1024px) {
  .site-nav { height: 5rem; }
}

.site-nav__desktop-links {
  position: absolute;
  left:     0;
  display:  none;
}
@media (min-width: 1024px) {
  .site-nav__desktop-links { display: flex; align-items: center; }
}

/* Desktop nav only — horizontal row with underline (Lovable link-underline) */
.site-nav__desktop-links .theme-nav-list {
  display:     flex;
  flex-direction: row;
  align-items: center;
  gap:         2rem;
  margin:      0;
  padding:     0;
  list-style:  none;
}
.site-nav__desktop-links .theme-nav-list li { list-style: none; }
.site-nav__desktop-links .theme-nav-list a {
  font-family:     var(--font-body);
  font-size:       0.875rem;
  letter-spacing:  0.025em;
  color:           var(--color-foreground);
  transition:      color 0.3s ease;
  position:        relative;
  display:         inline-block;
}
.site-nav__desktop-links .theme-nav-list a::after {
  content:         '';
  position:        absolute;
  bottom:          0;
  left:            0;
  width:           100%;
  height:          1px;
  background:      currentColor;
  transform:       scaleX(0);
  transform-origin: left;
  transition:      transform 0.3s var(--transition-smooth);
}
.site-nav__desktop-links .theme-nav-list a:hover::after { transform: scaleX(1); }

.site-nav__mobile-toggle {
  position: absolute;
  left: 0;
  display: flex;
}
@media (min-width: 1024px) { .site-nav__mobile-toggle { display: none; } }

.hamburger-btn {
  padding: 0.5rem;
  transition: opacity 0.2s;
  color: var(--color-foreground);
}
.hamburger-btn:hover { opacity: 0.6; }

.site-nav__logo {
  display: flex;
  align-items: center;
}

/* Logo visibility: hidden on home when not scrolled, visible when scrolled or on inner pages */
.site-header .site-logo-img,
.site-header .site-logo-text {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.site-header.is-solid .site-logo-img,
.site-header.is-solid .site-logo-text,
.site-header.menu-open .site-logo-img,
.site-header.menu-open .site-logo-text {
  opacity: 1;
  pointer-events: auto;
}

/* Logo size when bar is solid — matches Lovable (48px mobile, customizer height desktop) */
.site-header.is-solid .site-logo-img,
.site-header.menu-open .site-logo-img {
  height: 48px !important;
}
@media (min-width: 1024px) {
  .site-header.is-solid .site-logo-img,
  .site-header.menu-open .site-logo-img {
    height: var(--logo-height) !important;
  }
}

/* Text logo: match image heights when bar is solid (avoids clipping / invisible overlap) */
.site-header.is-solid .site-logo-text,
.site-header.menu-open .site-logo-text {
  font-size:   1.125rem;
  line-height: 48px;
}
@media (min-width: 1024px) {
  .site-header.is-solid .site-logo-text,
  .site-header.menu-open .site-logo-text {
    font-size:   1.25rem;
    line-height: var(--logo-height);
  }
}

.site-nav__cart {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
}

.cart-btn {
  position: relative;
  padding:  0.5rem;
  color:    var(--color-foreground);
  transition: opacity 0.2s;
}
.cart-btn:hover { opacity: 0.6; }

.theme-cart-count {
  position:   absolute;
  top:        -2px;
  right:      -2px;
  width:      1.25rem;
  height:     1.25rem;
  display:    flex;
  align-items: center;
  justify-content: center;
  font-size:  0.625rem;
  font-weight: 600;
  background: var(--color-foreground);
  color:      var(--color-background);
  border-radius: 50%;
  line-height: 1;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu — column stack (matches Lovable: flex-col gap-4, py-2 links) */
.site-nav__mobile-menu {
  width:         100%;
  border-top:    1px solid var(--color-border);
  padding:       1rem 0;
  animation:     fadeIn 0.2s ease;
}
.site-nav__mobile-menu[hidden] { display: none !important; }

.theme-mobile-nav-list {
  display:         flex;
  flex-direction: column;
  align-items:     stretch;
  gap:             1rem;
  width:           100%;
  margin:          0;
  padding:         0;
  list-style:      none;
}
.theme-mobile-nav-list li,
.theme-mobile-nav-list .menu-item {
  list-style: none;
  width:      100%;
  margin:     0;
}
.theme-mobile-nav-list a {
  display:         block;
  width:           100%;
  box-sizing:      border-box;
  text-align:      left;
  padding:         0.5rem 0;
  font-family:     var(--font-body);
  font-size:       0.875rem;
  letter-spacing:  0.025em;
  color:           var(--color-foreground);
  transition:      color 0.2s ease;
  text-decoration: none;
}
.theme-mobile-nav-list a:hover { color: var(--color-muted-foreground); }

@media (min-width: 1024px) {
  .site-nav__mobile-menu { display: none !important; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position:        relative;
  min-height:      100vh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  overflow:        hidden;
  background-color: var(--color-background);
}

/* Equalizer bars */
.equalizer-bg {
  position:  absolute;
  inset:     0;
  z-index:   0;
  overflow:  hidden;
  pointer-events: none;
  animation: hueRotate 12s linear infinite;
}
.equalizer-bg .eq-bars-container {
  position:     absolute;
  bottom:       0;
  left:         0;
  right:        0;
  height:       100%;
  display:      flex;
  align-items:  flex-end;
  justify-content: center;
  gap:          1px;
}
.equalizer-bar {
  flex:            1;
  border-radius:   9999px 9999px 0 0;
  background-color: hsla(200, 80%, 50%, 0.15);
}

.hero-glow {
  position:       absolute;
  pointer-events: none;
  z-index:        1;
  border-radius:  50%;
}
.hero-glow--main {
  inset: auto;
  left:  50%;
  top:   50%;
  width:  600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .hero-glow--main { width: 800px; height: 800px; }
}
.hero-glow--secondary {
  top:    33%;
  left:   50%;
  width:  400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(191,191,191,0.04) 0%, transparent 60%);
}

.hero-content {
  position:        relative;
  z-index:         10;
  padding:         5rem 2rem;
  max-width:       42rem;
  text-align:      center;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
}
@media (min-width: 768px)  { .hero-content { padding: 5rem 3rem; } }
@media (min-width: 1024px) { .hero-content { padding: 5rem 4rem; } }

.hero-logo {
  width:  10rem;
  height: 10rem;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(191,191,191,0.15));
  animation: fadeUp 1s 0.2s both;
}
@media (min-width: 768px)  { .hero-logo { width: 13rem; height: 13rem; } }
@media (min-width: 1024px) { .hero-logo { width: 16rem; height: 16rem; } }

.hero-title {
  font-family:    var(--font-display);
  font-size:      2.25rem;
  font-weight:    600;
  letter-spacing: -0.03em;
  color:          var(--color-foreground);
  margin-bottom:  1rem;
  line-height:    1.1;
  animation:      fadeUp 0.9s 0.5s both;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-divider {
  width:      5rem;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(224,224,224,0.4), transparent);
  margin-bottom: 1.5rem;
  animation:  scaleX 0.8s 0.7s both;
  transform-origin: center;
}

.hero-subtitle {
  font-family:   var(--font-body);
  font-size:     1rem;
  color:         var(--color-muted-foreground);
  max-width:     28rem;
  line-height:   1.625;
  margin-bottom: 2.5rem;
  animation:     fadeUp 0.8s 0.8s both;
}

.hero-buttons {
  display:   flex;
  flex-wrap: wrap;
  gap:       0.75rem;
  justify-content: center;
  animation: fadeUp 0.7s 1s both;
}

.hero-btn {
  font-size:      0.875rem;
  letter-spacing: 0.05em;
  padding:        0 2rem;
}
.hero-btn--outline {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(224,224,224,0.3);
}

.hero-vignette {
  position: absolute;
  bottom:   0;
  left:     0;
  right:    0;
  height:   8rem;
  background: linear-gradient(to top, var(--color-background), transparent);
  pointer-events: none;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 60vh;
}
@media (min-width: 1024px) {
  .about-section { grid-template-columns: 1fr 1fr; }
}

.about-left {
  position:        relative;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         4rem 2rem;
  background-color: rgba(26, 26, 26, 0.8);
  background-color: color-mix(in srgb, var(--color-secondary) 80%, transparent);
  overflow:        hidden;
}
@media (min-width: 1024px) { .about-left { padding: 6rem 2rem; } }

.about-left__vignette {
  position:       absolute;
  inset:          0;
  pointer-events: none;
  background:     radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.about-logo-wrap {
  position:        relative;
  z-index:         1;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             1.5rem;
}

.about-artist-logo {
  position:   relative;
  z-index:    10;
  width:      12rem;
  max-width:  100%;
  height:     auto;
  object-fit: contain;
  filter:     drop-shadow(0 0 30px rgba(191,191,191,0.1));
  transition: transform 0.15s ease-out;
}
@media (min-width: 768px)  { .about-artist-logo { width: 16rem; } }
@media (min-width: 1024px) { .about-artist-logo { width: 18rem; } }

.about-artist-logo.is-beating {
  /* JS applies scale via inline style for beat animation */
}

.beat-btn {
  display:         flex;
  align-items:     center;
  gap:             0.5rem;
  padding:         0.5rem 1rem;
  border-radius:   9999px;
  border:          1px solid rgba(224,224,224,0.2);
  background-color: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  font-size:       0.75rem;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  color:           var(--color-muted-foreground);
  transition:      color 0.3s, border-color 0.3s;
}
.beat-btn:hover { color: var(--color-foreground); border-color: rgba(224,224,224,0.4); }
.beat-btn__icon { display: flex; align-items: center; }

.about-right {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  padding:         4rem 2rem;
}
@media (min-width: 768px)  { .about-right { padding: 4rem 3rem; } }
@media (min-width: 1024px) { .about-right { padding: 6rem 4rem; } }

.about-body {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  color:          var(--color-muted-foreground);
  font-family:    var(--font-body);
  font-size:      1rem;
  line-height:    1.625;
  margin-bottom:  2.5rem;
}

/* About column title — text-3xl / md:text-4xl / lg:text-5xl, mb-8 */
.about-right .section-heading {
  font-size:     1.875rem;
  margin-bottom: 2rem;
  line-height:   1.15;
}
@media (min-width: 768px) {
  .about-right .section-heading { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .about-right .section-heading { font-size: 3rem; }
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap:    1.5rem;
}

.about-stat {
  text-align: left;
  padding:    0.75rem;
  border-radius: var(--radius);
  border:     1px solid transparent;
  transition: border-color 0.5s, background-color 0.5s;
}
.about-stat:hover {
  border-color: rgba(224,224,224,0.1);
  background-color: rgba(255,255,255,0.02);
}

.about-stat__label {
  font-family:  var(--font-display);
  font-size:    1.125rem;
  color:        var(--color-foreground);
  display:      block;
  margin-bottom: 0.25rem;
}
.about-stat__line {
  width:      2rem;
  height:     1px;
  background: linear-gradient(90deg, rgba(224,224,224,0.3), transparent);
  margin-bottom: 0.5rem;
}
.about-stat__desc {
  font-size:  0.875rem;
  color:      var(--color-muted-foreground);
  font-family: var(--font-body);
}

/* ============================================================
   MUSIC SECTION
   ============================================================ */
.music-section {
  padding: 4rem 0;
}
@media (min-width: 768px) { .music-section { padding: 6rem 0; } }

/* Music block header — Listen / Music / sub (Tailwind: mt-2 mb-4 on title) */
.music-section .section-eyebrow {
  margin-bottom: 0;
}
.music-section .section-heading {
  margin-top:    0.5rem;
  margin-bottom: 1rem;
  font-size:     1.875rem;
  line-height:   1.15;
}
@media (min-width: 768px) {
  .music-section .section-heading { font-size: 3rem; }
}
.music-section .section-sub {
  max-width: 28rem;
}

.music-grid {
  display:        grid;
  gap:            1.5rem;
  margin-bottom:  3rem;
  align-items:    stretch;
}
@media (min-width: 1024px) {
  .music-grid { grid-template-columns: 280px 1fr; }
}

.music-card {
  background: linear-gradient(to bottom, var(--color-card), rgba(18,18,18,0.6));
  border:     1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding:    1.5rem;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.music-card:hover {
  border-color: rgba(224,224,224,0.2);
  box-shadow:   0 0 30px -10px rgba(191,191,191,0.1);
}

.music-card__header {
  display:     flex;
  align-items: center;
  gap:         0.75rem;
  margin-bottom: 1rem;
}
.music-card__icon { color: var(--color-foreground); flex-shrink: 0; }
.music-card__label {
  font-size:   0.875rem;
  font-weight: 500;
  color:       var(--color-foreground);
  font-family: var(--font-body);
}

.music-card__embed {
  border-radius: var(--radius);
  overflow:      hidden;
  border:        1px solid var(--color-border);
}
.music-card__embed iframe { display: block; width: 100%; }

/* YouTube column: same row height as Spotify + SoundCloud; embed area grows */
.music-card--youtube {
  display:        flex;
  flex-direction: column;
  min-height:     0;
  height:         100%;
}
.music-card--youtube .music-card__header {
  flex-shrink: 0;
}

.music-card__embed--vertical {
  flex:            1 1 auto;
  display:         flex;
  flex-direction:  column;
  align-items:     stretch;
  justify-content: center;
  min-height:      0;
  width:           100%;
  border:          none !important;
  border-radius:   0;
  background:      transparent;
  overflow:        visible;
}

.music-card__embed-inner {
  position:       relative;
  flex:           1 1 auto;
  min-height:     0;
  box-sizing:     border-box;
  width:          auto;
  max-width:      min(280px, 100%);
  height:         100%;
  max-height:     100%;
  margin-inline:  auto;
  aspect-ratio:   9 / 16;
  border-radius:  var(--radius);
  overflow:       hidden;
  border:         1px solid var(--color-border);
  background:     #0a0a0a;
}

.music-card__embed-inner iframe {
  position: absolute;
  inset:    0;
  width:    100%;
  height:   100%;
  border:   0;
}

/* Single-column layout: no row height from grid sibling — flex + height:100% collapses embed */
@media (max-width: 1023px) {
  .music-card--youtube {
    height: auto;
  }
  .music-card--youtube .music-card__embed--vertical {
    flex: 0 0 auto;
    min-height: 0;
  }
  .music-card--youtube .music-card__embed-inner {
    flex: none;
    height: auto;
    max-height: none;
    width: 100%;
    max-width: min(280px, 100%);
  }
}

.music-card__embed--soundcloud { height: 300px; }
.music-card__embed--soundcloud iframe { height: 100%; }

.music-players-col {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
  min-height:     0;
  height:         100%;
}

/* Spotify placeholder */
.music-card__placeholder {
  height:          180px;
  background:      linear-gradient(135deg, var(--color-secondary), rgba(26,26,26,0.5));
  border-radius:   var(--radius);
  border:          1px solid var(--color-border);
  display:         flex;
  align-items:     center;
  justify-content: center;
  overflow:        hidden;
  position:        relative;
}
.spotify-placeholder-inner {
  text-align:  center;
  position:    relative;
  z-index:     1;
}
.spotify-headphones-icon {
  color:        var(--color-muted-foreground);
  margin:       0 auto 0.75rem;
  transition:   color 0.5s;
  display:      block;
}
.music-card--spotify:hover .spotify-headphones-icon { color: rgba(224,224,224,0.6); }
.spotify-placeholder-text {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}
.spotify-placeholder-sub {
  font-size:   0.75rem;
  color:       rgba(128,128,128,0.6);
  margin-top:  0.25rem;
  font-family: var(--font-body);
}

/* Latest Releases */
.releases-section { margin-top: 3rem; }
.releases-heading {
  font-family:   var(--font-display);
  font-size:     1.25rem;
  color:         var(--color-foreground);
  margin-bottom: 1.5rem;
}
.releases-grid {
  display: grid;
  gap:     1rem;
}
@media (min-width: 640px)  { .releases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .releases-grid { grid-template-columns: repeat(3, 1fr); } }

.release-card {
  background: linear-gradient(to bottom, var(--color-card), rgba(18,18,18,0.6));
  border:     1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow:   hidden;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.release-card:hover {
  border-color: rgba(224,224,224,0.2);
  box-shadow:   0 0 25px -8px rgba(191,191,191,0.1);
}
.release-card__embed iframe { display: block; width: 100%; }
.release-card__meta {
  padding: 0.75rem 1rem;
}
.release-card__title {
  font-size:   0.875rem;
  font-weight: 500;
  color:       var(--color-foreground);
  font-family: var(--font-body);
}
.release-card__sub {
  font-size:  0.75rem;
  color:      var(--color-muted-foreground);
  font-family: var(--font-body);
  margin-top: 0.125rem;
}

/* ============================================================
   MERCH SECTION
   ============================================================ */
.merch-section {
  padding: 4rem 0;
}
@media (min-width: 768px) { .merch-section { padding: 5rem 0; } }

/* Merch header — font-bold, mt-2 mb-3, sub mb-8 */
.merch-section .section-eyebrow {
  margin-bottom: 0;
}
.merch-section .section-heading {
  margin-top:    0.5rem;
  margin-bottom: 0.75rem;
  font-weight:   700;
  font-size:     1.875rem;
  line-height:   1.15;
}
@media (min-width: 768px) {
  .merch-section .section-heading { font-size: 3rem; }
}
.merch-section .section-sub {
  margin-bottom: 2rem;
}

.merch-wrapper {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.merch-coming-soon {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(0,0,0,0.6);
  border-radius: var(--card-radius);
  pointer-events: auto;
}
.merch-coming-soon svg { color: var(--color-muted-foreground); margin-bottom: 1rem; }
.merch-coming-soon__title {
  font-family:   var(--font-display);
  font-size:     clamp(1.5rem, 4vw, 2rem);
  font-weight:   700;
  color:         var(--color-foreground);
  margin-bottom: 0.5rem;
}
.merch-coming-soon__sub {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}

.merch-mock {
  pointer-events: none;
  user-select:    none;
  padding:        1.5rem;
}
.merch-mock__search { margin-bottom: 2rem; }
.merch-search-bar {
  display:         flex;
  align-items:     center;
  gap:             0.75rem;
  max-width:       28rem;
  margin:          0 auto;
  padding:         0.625rem 0.75rem;
  background-color: var(--color-secondary);
  border:          1px solid var(--color-border);
  border-radius:   9999px;
}
.merch-search-placeholder {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}
.merch-mock__categories {
  display:         flex;
  flex-wrap:       wrap;
  justify-content: center;
  gap:             0.25rem;
  margin-bottom:   1rem;
  padding-bottom:  0.75rem;
  border-bottom:   1px solid var(--color-border);
}
.merch-cat-pill {
  padding:    0.5rem 1.25rem;
  font-size:  0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.025em;
  color:      var(--color-muted-foreground);
}
.merch-cat-pill.is-active { color: var(--color-foreground); }
.merch-mock__grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   1.5rem;
}
@media (min-width: 768px) {
  .merch-mock__grid { grid-template-columns: repeat(4, 1fr); }
}
.merch-mock__card {
  background:    var(--color-card);
  border:        1px solid var(--color-border);
  border-radius: var(--card-radius);
  height:        18rem;
  opacity:       0.3;
  animation:     pulse 2s ease-in-out infinite;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position:    absolute;
  inset:       0;
  display:     flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index:     0;
}
.contact-glow::before {
  content: '';
  width:   600px;
  height:  600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,38,38,0.3) 0%, transparent 70%);
}

.contact-grid {
  position:       relative;
  z-index:        1;
  padding-top:    4rem;
  padding-bottom: 4rem;
  display:        grid;
  gap:            3rem;
}
@media (min-width: 768px) {
  .contact-grid { padding-top: 6rem; padding-bottom: 6rem; }
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr auto 1fr;
    gap:                   5rem;
    align-items:           start;
  }
}

.subscribe-col,
.contact-info-col {
  min-width: 0;
}

.contact-divider {
  display: none;
}
@media (min-width: 1024px) {
  .contact-divider {
    display:    block;
    width:      1px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, rgba(224,224,224,0.1), transparent);
  }
}

.contact-body {
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  font-size:   1rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

/* Subscribe / Contact headings — text-3xl md:text-4xl mb-4 */
.contact-grid .section-heading {
  font-size:     1.875rem;
  margin-bottom: 1rem;
  line-height:   1.2;
}
@media (min-width: 768px) {
  .contact-grid .section-heading { font-size: 2.25rem; }
}

/* Subscribe form */
.subscribe-form {
  display:   flex;
  flex-wrap: wrap;
  gap:       0.75rem;
}
.subscribe-email-input {
  flex:             1;
  min-width:        0;
  height:           3rem;
  padding:          0 1rem;
  background-color: var(--color-card);
  border:           1px solid var(--color-border);
  border-radius:    var(--radius);
  color:            var(--color-foreground);
  font-size:        0.875rem;
  font-family:      var(--font-body);
  outline:          none;
  transition:       border-color 0.3s, box-shadow 0.3s;
}
.subscribe-email-input::placeholder { color: var(--color-muted-foreground); }
.subscribe-email-input:focus {
  border-color: rgba(224,224,224,0.3);
  box-shadow:   0 0 15px -5px rgba(191,191,191,0.15);
}

/* Contact info */
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-email-row {
  display:     flex;
  align-items: center;
  gap:         0.75rem;
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  transition:  color 0.3s;
  font-family: var(--font-body);
}
.contact-email-row:hover { color: var(--color-foreground); }
.contact-email-label { color: var(--color-foreground); }

.contact-socials {
  display:   flex;
  flex-wrap: wrap;
  gap:       1rem;
}
.social-pill {
  font-size:        0.875rem;
  font-family:      var(--font-body);
  color:            var(--color-muted-foreground);
  padding:          0.5rem 1rem;
  border:           1px solid var(--color-border);
  border-radius:    9999px;
  transition:       color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.social-pill:hover {
  color:        var(--color-foreground);
  border-color: rgba(224,224,224,0.3);
  box-shadow:   0 0 15px -5px rgba(191,191,191,0.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
}

.site-footer > .container-wide {
  padding-top:    3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .site-footer > .container-wide {
    padding-top:    4rem;
    padding-bottom: 4rem;
  }
}

.footer-newsletter {
  display:       flex;
  flex-direction: column;
  gap:           1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .footer-newsletter {
    flex-direction: row;
    align-items:    center;
    justify-content: space-between;
  }
}

.footer-newsletter__text {
  max-width: 24rem;
}
.footer-newsletter__heading {
  font-size:     1.125rem;
  font-weight:   600;
  font-family:   var(--font-display);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  color:         var(--color-foreground);
}
.footer-newsletter__sub {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}

.footer-newsletter__form-wrap { min-width: 0; }
.footer-subscribe-thanks {
  font-size:   0.875rem;
  color:       var(--color-foreground);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Matches Lovable: flex flex-wrap gap-2; input sm:w-60 h-10; button h-10 inline-flex */
.footer-subscribe-form {
  display:        flex;
  flex-wrap:      wrap;
  align-items:    center;
  gap:            0.5rem;
}

.footer-email-input {
  box-sizing:     border-box;
  width:          15rem;
  max-width:      100%;
  flex:           0 1 auto;
  min-width:      0;
  height:         2.5rem;
  padding:        0 0.75rem;
  background-color: var(--color-card);
  border:         1px solid var(--color-border);
  border-radius:  var(--radius);
  color:          var(--color-foreground);
  font-size:      0.875rem;
  font-family:    var(--font-body);
  outline:        none;
}
.footer-email-input::placeholder { color: var(--color-muted-foreground); }
.footer-email-input:focus {
  outline:      none;
  border-color: rgba(224, 224, 224, 0.3);
  box-shadow:   0 0 0 1px rgba(224, 224, 224, 0.2);
}

.footer-subscribe-btn {
  flex-shrink:    0;
  height:         2.5rem;
  padding:        0 1.25rem;
  background-color: var(--color-foreground);
  color:          var(--color-background);
  font-size:      0.875rem;
  font-weight:    500;
  font-family:    var(--font-body);
  border-radius:  var(--radius);
  border:         none;
  cursor:         pointer;
  display:        inline-flex;
  align-items:    center;
  gap:            0.375rem;
  white-space:    nowrap;
  transition:     opacity 0.2s;
}
.footer-subscribe-btn:hover { opacity: 0.9; }

.footer-columns {
  display: grid;
  gap:     2rem;
  padding: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .footer-columns { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
}

.footer-logo-link {
  display:     inline-flex;
  align-items: center;
  gap:         0.5rem;
  margin-bottom: 0.5rem;
}
.footer-logo-text {
  font-size:  1.125rem !important;
  font-weight: 600;
  line-height: 1 !important;
}
@media (min-width: 1024px) {
  .footer-logo-text {
    font-size: 1.25rem !important;
  }
}
.footer-logo-img {
  height: 36px !important;
  width: auto !important;
}
.footer-tagline {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-style:  italic;
  font-family: var(--font-body);
  margin-top:  0.25rem;
}
.footer-desc {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  line-height: 1.625;
  max-width:   24rem;
  font-family: var(--font-body);
  margin-top:  0.75rem;
}

.footer-col-heading {
  font-size:   0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 1rem;
  color:       var(--color-foreground);
}

.theme-footer-nav-list { list-style: none; }
.theme-footer-nav-list li { margin-bottom: 0.75rem; }
.theme-footer-nav-list a {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  transition:  color 0.2s;
  text-transform: capitalize;
}
.theme-footer-nav-list a:hover { color: var(--color-foreground); }

.footer-contact-list { list-style: none; }
.footer-contact-list li { margin-bottom: 0.75rem; }
.footer-contact-link {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  transition:  color 0.2s;
  overflow-wrap: break-word;
  word-break:  break-word;
}
.footer-contact-link:hover { color: var(--color-foreground); }

.footer-bottom {
  padding:         1.5rem 0;
  border-top:      1px solid var(--color-border);
  display:         flex;
  flex-direction:  column;
  gap:             1rem;
  margin-top:      2rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items:    center;
  }
}
.footer-copyright,
.footer-credit {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}
.footer-credit a {
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--color-foreground); }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-overlay {
  position:        fixed;
  inset:           0;
  z-index:         100;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         1rem;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity:         0;
  pointer-events:  none;
  transition:      opacity 0.2s ease;
}
.modal-overlay.is-open {
  opacity:        1;
  pointer-events: auto;
}

.modal-container {
  background:    var(--color-card);
  border:        1px solid var(--color-border);
  border-radius: 0.75rem;
  box-shadow:    var(--shadow-elevated);
  padding:       2rem;
  width:         100%;
  max-width:     32rem;
  max-height:    90vh;
  overflow-y:    auto;
  position:      relative;
  transform:     scale(0.95);
  transition:    transform 0.2s ease;
}
.modal-overlay.is-open .modal-container { transform: scale(1); }

.modal-close {
  position:   absolute;
  top:        1rem;
  right:      1rem;
  padding:    0.25rem;
  color:      var(--color-muted-foreground);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--color-foreground); }

.modal-title {
  font-family:  var(--font-display);
  font-size:    1.5rem;
  color:        var(--color-foreground);
  margin-bottom: 0.25rem;
}
.modal-description {
  font-size:    0.875rem;
  color:        var(--color-muted-foreground);
  font-family:  var(--font-body);
  margin-bottom: 1rem;
}
.modal-email-link {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  margin-bottom: 1.5rem;
  flex-wrap:   wrap;
}
.modal-email { transition: color 0.2s; }
.modal-email:hover { color: var(--color-foreground); }

.modal-success {
  text-align: center;
  padding: 2rem 0;
}
.modal-success-icon {
  width:           3.5rem;
  height:          3.5rem;
  background:      var(--color-foreground);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin:          0 auto 1rem;
  color:           var(--color-background);
}
.modal-success-title {
  font-family:  var(--font-display);
  font-size:    1.25rem;
  margin-bottom: 0.5rem;
}
.modal-success-body {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}

.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-form-row {
  display: grid;
  gap:     1rem;
}
@media (min-width: 640px) { .modal-form-row { grid-template-columns: 1fr 1fr; } }
.modal-field { display: flex; flex-direction: column; gap: 0.375rem; }
.modal-field label {
  font-size:   0.875rem;
  font-weight: 500;
  color:       var(--color-foreground);
  font-family: var(--font-body);
}
.modal-field input,
.modal-field textarea {
  width:            100%;
  padding:          0.625rem 0.75rem;
  background-color: var(--color-card);
  border:           1px solid var(--color-border);
  border-radius:    var(--radius);
  color:            var(--color-foreground);
  font-size:        0.875rem;
  font-family:      var(--font-body);
  outline:          none;
  transition:       box-shadow 0.3s;
}
.modal-field input::placeholder,
.modal-field textarea::placeholder { color: var(--color-muted-foreground); }
.modal-field input:focus,
.modal-field textarea:focus {
  box-shadow: 0 0 0 2px rgba(191,191,191,0.3);
}
.modal-field textarea { resize: none; }
.modal-actions { display: flex; justify-content: flex-end; }

/* ============================================================
   EMAIL POPUP
   ============================================================ */
.popup-overlay {
  position:        fixed;
  inset:           0;
  z-index:         110;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         1rem;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.popup-card {
  background:    var(--color-card);
  border:        1px solid var(--color-border);
  border-radius: 0.75rem;
  box-shadow:    var(--shadow-elevated);
  padding:       2rem;
  max-width:     28rem;
  width:         100%;
  position:      relative;
}

.popup-close {
  position:   absolute;
  top:        1rem;
  right:      1rem;
  color:      var(--color-muted-foreground);
  transition: color 0.2s;
}
.popup-close:hover { color: var(--color-foreground); }

.popup-success { text-align: center; padding: 1rem 0; }
.popup-success-title {
  font-family:   var(--font-display);
  font-size:     1.5rem;
  margin-bottom: 0.5rem;
}
.popup-success-body {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}

.popup-text {
  text-align:    center;
  margin-bottom: 1.5rem;
}
.popup-title {
  font-family:   var(--font-display);
  font-size:     1.5rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
  color:         var(--color-foreground);
}
.popup-body {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}

.popup-form { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-email-input {
  width:            100%;
  padding:          0.75rem 1rem;
  background-color: var(--color-secondary);
  border:           1px solid var(--color-border);
  border-radius:    0.5rem;
  color:            var(--color-foreground);
  font-size:        0.875rem;
  font-family:      var(--font-body);
  outline:          none;
}
.popup-email-input::placeholder { color: var(--color-muted-foreground); }
.popup-email-input:focus { box-shadow: 0 0 0 2px rgba(191,191,191,0.3); }
.popup-submit-btn { width: 100%; }
.popup-disclaimer {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  text-align:  center;
  margin-top:  1rem;
  font-family: var(--font-body);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
#theme-cart-overlay {
  position:         fixed;
  inset:            0;
  z-index:          60;
  background-color: rgba(224,224,224,0.2);
  opacity:          0;
  pointer-events:   none;
  transition:       opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay {
  opacity:        1;
  pointer-events: auto;
}

#theme-cart-drawer {
  position:         fixed;
  top:              0;
  right:            0;
  height:           100%;
  width:            100%;
  max-width:        28rem;
  background-color: var(--color-background);
  z-index:          70;
  box-shadow:       var(--shadow-elevated);
  display:          flex;
  flex-direction:   column;
  transform:        translateX(100%);
  transition:       transform 0.35s var(--transition-smooth);
  border-left:      1px solid var(--color-border);
}
body.cart-open #theme-cart-drawer {
  transform: translateX(0);
}

#theme-cart-drawer.is-updating {
  opacity:        0.6;
  pointer-events: none;
}

.cart-drawer__header {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         1.5rem;
  border-bottom:   1px solid var(--color-border);
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size:   1.125rem;
  font-weight: 700;
  color:       var(--color-foreground);
}
.cart-drawer__close {
  padding:    0.25rem;
  color:      var(--color-foreground);
  transition: opacity 0.2s;
}
.cart-drawer__close:hover { opacity: 0.6; }

.cart-drawer__empty {
  flex:            1;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  padding:         1.5rem;
  text-align:      center;
}
.cart-drawer__empty-icon { color: var(--color-muted-foreground); margin-bottom: 1rem; }
.cart-drawer__empty-text {
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.cart-drawer__items {
  flex:       1;
  overflow-y: auto;
  padding:    1.5rem;
  display:    flex;
  flex-direction: column;
  gap:        1.5rem;
}

.cart-item {
  display: flex;
  gap:     1rem;
}
.cart-item__image-link {
  display:          block;
  width:            5rem;
  height:           6rem;
  background-color: var(--color-secondary);
  overflow:         hidden;
  flex-shrink:      0;
}
.cart-item__image-link img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size:    0.875rem;
  font-weight:  500;
  display:      block;
  white-space:  nowrap;
  overflow:     hidden;
  text-overflow: ellipsis;
  font-family:  var(--font-body);
  color:        var(--color-foreground);
  margin-bottom: 0.125rem;
  transition:   opacity 0.2s;
}
.cart-item__name:hover { opacity: 0.7; }
.cart-item__price {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}
.cart-item__variation {
  font-size:   0.75rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  margin-top:  0.125rem;
}
.cart-item__controls {
  display:     flex;
  align-items: center;
  gap:         0.75rem;
  margin-top:  0.75rem;
}
.cart-qty-btn {
  width:       1.5rem;
  height:      1.5rem;
  display:     flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background:  transparent;
  color:       var(--color-foreground);
  transition:  background-color 0.2s;
}
.cart-qty-btn:hover { background-color: var(--color-secondary); }
.cart-item__qty {
  font-size:  0.875rem;
  width:      1.5rem;
  text-align: center;
  font-family: var(--font-body);
}
.cart-item__remove {
  margin-left: auto;
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  transition:  color 0.2s;
}
.cart-item__remove:hover { color: var(--color-foreground); }

.cart-drawer__footer {
  padding:     1.5rem;
  border-top:  1px solid var(--color-border);
  display:     flex;
  flex-direction: column;
  gap:         1rem;
}
.cart-subtotal-row {
  display:         flex;
  justify-content: space-between;
  font-size:       0.875rem;
  font-family:     var(--font-body);
}
.cart-subtotal-label { color: var(--color-muted-foreground); }
.cart-subtotal-val   { font-weight: 500; }
.cart-free-shipping  {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}
.cart-checkout-btn {
  width:      100%;
  font-size:  1rem;
}
.cart-empty-btn {
  width:      100%;
  height:     2.25rem;
  font-size:  0.875rem;
  background: transparent;
  border:     1px solid var(--color-border);
  border-radius: var(--btn-radius);
  color:      var(--color-muted-foreground);
  display:    inline-flex;
  align-items: center;
  justify-content: center;
  gap:        0.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.cart-empty-btn:hover { color: var(--color-foreground); border-color: rgba(224,224,224,0.3); }

/* ============================================================
   WOOCOMMERCE: SINGLE PRODUCT
   ============================================================ */
.single-product .site-main,
.woocommerce-page .site-main {
  padding-top: var(--header-height, 80px);
  padding-bottom: 4rem;
}

.product-back-link {
  display:     inline-flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  padding:     1.5rem 0;
  transition:  color 0.2s;
}
.product-back-link:hover { color: var(--color-foreground); }

.theme-product-layout {
  display: grid;
  gap:     2.5rem;
}
@media (min-width: 1024px) {
  .theme-product-layout {
    grid-template-columns: 1fr 1fr;
    gap:                   4rem;
  }
}

.theme-product-gallery { min-width: 0; }
.theme-product-info    { min-width: 0; }

.theme-product-main-image {
  aspect-ratio: 3/4;
  background-color: var(--color-secondary);
  overflow:    hidden;
  margin-bottom: 1rem;
  border-radius: var(--card-radius);
}
.theme-product-main-image img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

.theme-product-thumbnails {
  display:   grid;
  gap:       0.5rem;
  grid-template-columns: repeat(5, 1fr);
  max-width: 100%;
  flex-wrap: wrap;
}
.theme-product-thumbnail {
  aspect-ratio:  1/1;
  overflow:      hidden;
  border-radius: var(--radius);
  border:        2px solid transparent;
  transition:    border-color 0.2s, opacity 0.2s;
  opacity:       0.6;
  background:    none;
}
.theme-product-thumbnail:hover { opacity: 1; }
.theme-product-thumbnail.is-active {
  border-color: var(--color-primary);
  opacity:      1;
}
.theme-product-thumbnail img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

.product-info-inner { padding-top: 2.5rem; }
.product-category {
  font-size:      0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--color-muted-foreground);
  font-family:    var(--font-body);
  margin-bottom:  0.5rem;
}
.product-title {
  font-family:   var(--font-display);
  font-size:     clamp(1.5rem, 3vw, 2rem);
  font-weight:   700;
  margin-bottom: 1rem;
}
.product-price {
  font-size:     1.5rem;
  font-weight:   600;
  color:         var(--color-primary);
  font-family:   var(--font-body);
  margin-bottom: 1.5rem;
}
.product-description {
  color:         var(--color-muted-foreground);
  font-family:   var(--font-body);
  line-height:   1.7;
  margin-bottom: 2rem;
  white-space:   pre-line;
  overflow-wrap: break-word;
  word-break:    break-word;
}
.product-stock-status {
  display:     inline-flex;
  font-size:   0.875rem;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.product-stock-status.out-of-stock {
  color: #e05252;
}
.product-stock-status.in-stock {
  color: #5eb060;
}

.woocommerce-product-details__short-description {
  margin-top:  1.5rem;
  padding-top: 1.5rem;
  border-top:  1px solid var(--color-border);
  overflow-wrap: break-word;
  word-break:  break-word;
}
.woocommerce-product-details__short-description h3 {
  font-size:     0.875rem;
  font-weight:   600;
  margin-bottom: 1rem;
  font-family:   var(--font-body);
}

/* Add to cart area */
.theme-add-to-cart-area {
  display:   flex;
  flex-wrap: wrap;
  gap:       0.75rem;
  margin-bottom: 2rem;
}
.single-product .theme-add-to-cart-area {
  flex-wrap: wrap;
  gap:       0.75rem;
}

.theme-quantity-wrapper {
  display:     flex;
  align-items: center;
  border:      1px solid var(--color-border);
  border-radius: var(--radius);
}
.theme-qty-minus,
.theme-qty-plus {
  width:   3rem;
  height:  2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color:       var(--color-foreground);
  font-size:   1rem;
  transition:  background-color 0.2s;
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background-color: var(--color-secondary); }
.theme-qty-input {
  width:      3rem;
  height:     2.75rem;
  text-align: center;
  background: transparent;
  border:     none;
  color:      var(--color-foreground);
  font-family: var(--font-body);
  font-size:  0.875rem;
  outline:    none;
  -moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
  background-color: var(--color-primary) !important;
  color:            var(--color-primary-foreground) !important;
  border:           none !important;
  border-radius:    var(--btn-radius) !important;
  min-height:       var(--btn-height) !important;
  padding:          var(--btn-padding) !important;
  display:          inline-flex !important;
  align-items:      center !important;
  justify-content:  center !important;
  font-family:      var(--font-body) !important;
  font-size:        var(--btn-font-size) !important;
  font-weight:      var(--btn-font-weight) !important;
  letter-spacing:   var(--btn-letter-spacing) !important;
  text-transform:   var(--btn-text-transform) !important;
  cursor:           pointer !important;
  transition:       opacity 0.2s ease !important;
  text-decoration:  none !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity:          0.85 !important;
  background-color: var(--color-primary) !important;
  color:            var(--color-primary-foreground) !important;
}

.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor:         not-allowed !important;
  opacity:        0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity:          0.4 !important;
  background-color: var(--color-primary) !important;
}

/* Hide WC "View Cart" link after AJAX */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward {
  display: none !important;
}

/* Button loading state */
.ajax_add_to_cart.theme-btn-loading {
  opacity:        0.6 !important;
  pointer-events: none !important;
  cursor:         wait !important;
}

/* Single product responsive layout */
.single-product .theme-product-gallery,
.single-product .theme-product-info {
  min-width: 0;
  max-width: 100%;
}
.single-product .theme-product-thumbnails {
  flex-wrap: wrap;
  max-width: 100%;
}
.single-product .single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 160px;
}

/* Hide WC default product notices on single product (drawer handles it) */
.single-product .woocommerce-message,
.single-product .woocommerce-info {
  display: none;
}

/* Variations table */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td {
  display: block;
  width:   100%;
}
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

/* Hidden select for variable product custom attribute buttons */
.theme-attr-select-hidden { display: none !important; }

/* Variable product attribute buttons */
.theme-attr-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.theme-attr-btn {
  padding:       0.5rem 1rem;
  font-size:     0.875rem;
  border:        1px solid var(--color-border);
  border-radius: var(--radius);
  color:         var(--color-foreground);
  font-family:   var(--font-body);
  transition:    border-color 0.2s, background-color 0.2s;
}
.theme-attr-btn.is-selected {
  background-color: var(--color-primary);
  color:            var(--color-primary-foreground);
  border-color:     var(--color-primary);
}

/* Product details list */
.product-details-list { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.product-details-list h3 {
  font-size:     0.875rem;
  font-weight:   600;
  margin-bottom: 1rem;
  font-family:   var(--font-body);
}
.product-details-list ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.product-details-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.75rem;
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}
.product-details-list li::before {
  content:          '';
  display:          block;
  width:            0.375rem;
  height:           0.375rem;
  min-width:        0.375rem;
  background-color: var(--color-primary);
  border-radius:    50%;
  margin-top:       0.4rem;
}

/* Tracklist accordion */
.tracklist-accordion { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.tracklist-toggle {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  width:       100%;
  font-size:   0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  color:       var(--color-foreground);
  padding:     0;
}
.tracklist-toggle svg { color: var(--color-muted-foreground); }
.tracklist-toggle .chevron-icon {
  margin-left: auto;
  transition:  transform 0.2s;
}
.tracklist-toggle[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
}
.tracklist-body { margin-top: 1rem; }
.tracklist-body[hidden] { display: none; }
.tracklist-list { list-style: none; }
.tracklist-item {
  display:     flex;
  align-items: center;
  justify-content: space-between;
  padding:     0.375rem 0;
  border-bottom: 1px solid rgba(36,36,36,0.5);
  font-size:   0.875rem;
  font-family: var(--font-body);
}
.tracklist-item:last-child { border-bottom: none; }
.tracklist-item__left {
  display:     flex;
  align-items: center;
  gap:         0.75rem;
}
.tracklist-item__num {
  font-size:  0.75rem;
  color:      rgba(128,128,128,0.6);
  width:      1.25rem;
  text-align: right;
}
.tracklist-item__title { color: var(--color-foreground); }
.tracklist-item__duration {
  font-size:  0.75rem;
  color:      rgba(128,128,128,0.6);
  font-variant-numeric: tabular-nums;
}

/* Related products */
.related-products-section {
  padding:     5rem 0;
  border-top:  1px solid var(--color-border);
}
.related-products-section h2 {
  font-family:   var(--font-display);
  font-size:     clamp(1.25rem, 3vw, 1.5rem);
  font-weight:   700;
  margin-bottom: 2.5rem;
}
.related-products-grid {
  display: grid;
  gap:     1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .related-products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   WOOCOMMERCE: PRODUCT CARD
   ============================================================ */
.theme-product-card-wrap {
  display: flex;
  height:  100%;
}

.theme-product-card {
  display:        flex;
  flex-direction: column;
  height:         100%;
  position:       relative;
}

.theme-product-card__image-wrapper {
  position:      relative;
  aspect-ratio:  1 / 1;
  overflow:      hidden;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background-color: var(--color-secondary);
}

.theme-product-card__image-link {
  display: block;
  overflow: hidden;
}
.theme-product-card__image-wrapper img {
  width:           100%;
  height:          100%;
  object-fit:      cover;
  display:         block;
  transition:      transform 0.6s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper img {
  transform: scale(1.06);
}

.theme-product-card__overlay {
  position:         absolute;
  inset:            0;
  background-color: rgba(224,224,224,0);
  transition:       background-color 0.5s;
  pointer-events:   none;
}
.theme-product-card:hover .theme-product-card__overlay {
  background-color: rgba(224,224,224,0.05);
}

.theme-product-card__sold-out-badge {
  position:         absolute;
  top:              0.5rem;
  left:             0.5rem;
  padding:          0.375rem 0.75rem;
  font-size:        0.625rem;
  font-weight:      700;
  text-transform:   uppercase;
  letter-spacing:   0.1em;
  background-color: var(--color-foreground);
  color:            var(--color-background);
  border-radius:    var(--radius);
}
@media (min-width: 768px) {
  .theme-product-card__sold-out-badge { top: 0.75rem; left: 0.75rem; }
}

.theme-product-card__quick-add {
  position:         absolute;
  bottom:           0.5rem;
  right:            0.5rem;
  width:            2.25rem;
  height:           2.25rem;
  border-radius:    50%;
  background-color: var(--color-primary);
  color:            var(--color-primary-foreground);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  box-shadow:       var(--shadow-soft);
  opacity:          1;
  transition:       opacity 0.3s, transform 0.2s;
  z-index:          2;
}
@media (min-width: 768px) {
  .theme-product-card__quick-add {
    bottom:  0.75rem;
    right:   0.75rem;
    opacity: 0;
  }
  .theme-product-card:hover .theme-product-card__quick-add { opacity: 1; }
}
.theme-product-card__quick-add:hover { transform: scale(1.1); }
.theme-product-card__quick-add:active { transform: scale(0.9); }

.theme-product-card__info { flex: 1; }
.theme-product-card__name {
  font-size:   0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  color:       var(--color-foreground);
  transition:  color 0.3s;
  margin-bottom: 0.25rem;
}
.theme-product-card:hover .theme-product-card__name { color: var(--color-primary); }
.theme-product-card__price {
  font-size:   0.875rem;
  font-weight: 600;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}

/* Sold-out card image dimming */
.theme-product-card .sold-out-img { opacity: 0.6; }

/* Hit-area overlay link (Pattern A) */
.theme-product-card        { position: relative; }
.theme-card-overlay-link   {
  position:       absolute;
  inset:          0;
  z-index:        1;
  pointer-events: auto;
}
.theme-product-card * { pointer-events: none; }
.theme-product-card__quick-add,
.add_to_cart_button {
  position:       relative;
  z-index:        2;
  pointer-events: auto;
}

/* ============================================================
   WOOCOMMERCE: ARCHIVE
   ============================================================ */
.woocommerce-archive-page .site-main {
  padding-top:    var(--header-height, 80px);
  padding-bottom: 4rem;
}

.shop-section { padding: 3rem 0; }
.shop-archive-header {
  padding:        1.5rem 0 2rem;
  border-bottom:  1px solid var(--color-border);
  margin-bottom:  2rem;
}
.shop-archive-title {
  font-family:   var(--font-display);
  font-size:     clamp(1.75rem, 4vw, 2.5rem);
  font-weight:   700;
  margin-bottom: 0.5rem;
}

.theme-product-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   1.5rem;
  align-items:           stretch;
}
@media (min-width: 768px)  {
  .theme-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
}

.no-products {
  grid-column: 1 / -1;
  text-align:  center;
  padding:     3rem 0;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}

/* ============================================================
   WOOCOMMERCE: CHECKOUT
   ============================================================ */
body.woocommerce-checkout .site-main {
  padding-top:    var(--header-height, 80px);
  padding-bottom: 4rem;
}

body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout {
  display: block;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    display:               grid;
    grid-template-columns: 1fr 380px;
    gap:                   2rem;
    align-items:           start;
  }
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
  width:     100%;
  max-width: none;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--color-card);
  border-radius:    var(--card-radius);
  padding:          2rem;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
  width:            100% !important;
  max-width:        none !important;
  background-color: var(--color-background);
  border:           1px solid var(--color-border);
  border-radius:    var(--radius);
  color:            var(--color-foreground);
  font-family:      var(--font-body);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
  border-color: rgba(224,224,224,0.3);
  box-shadow:   0 0 0 2px rgba(191,191,191,0.15);
  outline:      none;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-primary) !important;
  color:            var(--color-primary-foreground) !important;
  border:           none !important;
  border-radius:    var(--btn-radius) !important;
  font-family:      var(--font-body) !important;
}

body.woocommerce-checkout .page-title {
  font-family:    var(--font-display);
  font-size:      clamp(1.75rem, 4vw, 2.5rem);
  font-weight:    700;
  margin-bottom:  2rem;
}

/* ============================================================
   WOOCOMMERCE: THANK YOU PAGE
   ============================================================ */
body.theme-thankyou-page .woocommerce-order { padding: 2rem 0; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family:   var(--font-display);
  font-size:     1.5rem;
  padding:       0 0 1rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
  list-style:  none;
  display:     flex;
  flex-wrap:   wrap;
  gap:         1.5rem;
  background:  var(--color-card);
  padding:     1.5rem;
  border-radius: var(--card-radius);
  margin-bottom: 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li {
  font-size:   0.875rem;
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
}
body.theme-thankyou-page .woocommerce-order-overview li strong { color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order-details table {
  width:        100%;
  table-layout: fixed;
  border-collapse: collapse;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-customer-details { margin-top: 2rem; }

/* ============================================================
   WooCommerce STYLE OVERRIDES
   ============================================================ */
.woocommerce-notices-wrapper { display: none; }
.single-product .woocommerce-notices-wrapper { display: none; }
.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce-notices-wrapper {
  display: block;
}
.woocommerce-message,
.woocommerce-info {
  background:    var(--color-card);
  border:        1px solid var(--color-border);
  border-radius: var(--radius);
  padding:       1rem;
  font-family:   var(--font-body);
  font-size:     0.875rem;
  color:         var(--color-foreground);
}
.woocommerce-error {
  background:    rgba(224,82,82,0.1);
  border:        1px solid rgba(224,82,82,0.3);
  border-radius: var(--radius);
  padding:       1rem;
  font-family:   var(--font-body);
  font-size:     0.875rem;
  color:         #e05252;
  list-style:    none;
}

/* ============================================================
   INNER PAGE GENERIC
   ============================================================ */
.theme-no-hero .site-main {
  padding-top: var(--header-height, 80px);
}

.page-title {
  font-family:    var(--font-display);
  font-size:      clamp(1.75rem, 4vw, 2.5rem);
  font-weight:    700;
  letter-spacing: -0.02em;
  margin-bottom:  2rem;
  padding-top:    2rem;
}

.entry-content {
  font-family: var(--font-body);
  font-size:   1rem;
  line-height: 1.625;
  color:       var(--color-muted-foreground);
}

/* ============================================================
   404
   ============================================================ */
.error-404-wrap {
  min-height:      60vh;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  padding:         4rem 1.5rem;
}
.error-404-code {
  font-family:   var(--font-display);
  font-size:     8rem;
  font-weight:   700;
  letter-spacing: -0.03em;
  color:         var(--color-muted-foreground);
  line-height:   1;
  opacity:       0.3;
  margin-bottom: 0;
}
.error-404-title {
  font-family:   var(--font-display);
  font-size:     clamp(1.5rem, 4vw, 2.5rem);
  font-weight:   700;
  margin-bottom: 1rem;
}
.error-404-body {
  color:       var(--color-muted-foreground);
  font-family: var(--font-body);
  margin-bottom: 2rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes equalizerBounce {
  0%   { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}
@keyframes hueRotate {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.15; }
}

.js-fade-in {
  opacity:   0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth),
              transform 0.8s var(--transition-smooth);
}
.js-fade-in.is-visible {
  opacity:   1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-email-input {
    flex: none;
    width: 100%;
  }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-btn     { width: 100%; max-width: 300px; }
}
