*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #08080a;
  --surface: #111114;
  --surface-2: #1a1a1f;
  --text: #f2ede6;
  --text-muted: #9a9590;
  --accent: #c9a86c;
  --accent-glow: rgba(201, 168, 108, 0.35);
  --blue: #4a7eb8;
  --blue-glow: rgba(74, 126, 184, 0.2);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.loaded .cursor-glow {
  opacity: 1;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  display: flex;
  gap: 0.05em;
}

.loader-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderIn 0.5s var(--ease-out) forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.15s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.25s; }
.loader-space { width: 0.4em; }
.loader-text span:nth-child(6) { animation-delay: 0.4s; }
.loader-text span:nth-child(7) { animation-delay: 0.45s; }
.loader-text span:nth-child(8) { animation-delay: 0.5s; }
.loader-text span:nth-child(9) { animation-delay: 0.55s; }
.loader-text span:nth-child(10) { animation-delay: 0.6s; }

@keyframes loaderIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 300;
  padding: 0.85rem 1.4rem;
  background: var(--surface-2);
  border: 1px solid rgba(201, 168, 108, 0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 2rem;
  transition: background 0.4s, backdrop-filter 0.4s, transform 0.4s var(--ease-out);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
  flex-shrink: 0;
}

.nav-cart:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav.scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, var(--blue-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, var(--accent-glow) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
  font-size: clamp(4rem, 15vw, 11rem);
  letter-spacing: -0.02em;
}

.hero-line-accent {
  background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.loaded .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

body.loaded .hero-eyebrow { transition-delay: 0.8s; }
body.loaded .hero-line:nth-child(1) { transition-delay: 0.9s; }
body.loaded .hero-line:nth-child(2) { transition-delay: 1.0s; }
body.loaded .hero-tagline { transition-delay: 1.1s; }
body.loaded .hero-actions { transition-delay: 1.2s; }
body.loaded .hero-scroll { transition-delay: 1.4s; }

/* Sections */
section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured */
.featured {
  max-width: 1100px;
  margin: 0 auto;
  overflow-anchor: none;
}

#music {
  overflow-anchor: none;
}

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

.featured-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.album-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.featured-cover {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease-out);
}

.featured-art:hover .featured-cover {
  transform: scale(1.03) rotate(-1deg);
}

.featured-badge {
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured-player {
  overflow-anchor: none;
}

.spotify-embed-shell {
  height: 352px;
  min-height: 352px;
  max-height: 352px;
  overflow: hidden;
  overflow-anchor: none;
  contain: layout size style;
  border-radius: 12px;
  transform: translateZ(0);
}

.spotify-embed-shell iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px !important;
  pointer-events: auto;
}

.featured-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}

.stream-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Discography */
.discography {
  max-width: 1200px;
  margin: 0 auto;
  overflow-anchor: none;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.album-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.album-card:hover img {
  transform: scale(1.05);
}

.album-info {
  padding: 1.25rem;
}

.album-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.album-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* About */
.about {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.about-image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--accent);
  border-radius: 16px;
  opacity: 0.3;
  transform: rotate(2deg);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

.about-closing {
  color: var(--accent) !important;
  font-weight: 500;
  font-size: 1.15rem !important;
}

/* Connect */
.connect {
  text-align: center;
}

.connect-inner {
  max-width: 700px;
  margin: 0 auto;
}

.connect-title {
  margin-bottom: 0.75rem;
}

.connect-desc {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s var(--ease-out);
}

.social-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.social-card svg {
  color: var(--text-muted);
  transition: color 0.3s;
}

.social-card:hover svg {
  color: var(--accent);
}

.social-card span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Merch shop */
.merch-shop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.merch-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), border-color 0.25s, box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 108, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: #111;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
}

.product-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}

.product-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-variant,
.product-qty {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-option-static {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-add {
  margin-top: auto;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 100px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.product-add:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.merch-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.merch-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cart drawer */
body.cart-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  width: min(400px, 100%);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s var(--ease-out);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}

.cart-close:hover {
  opacity: 1;
}

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

.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-line-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
}

.cart-line-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.cart-line-info strong {
  font-size: 0.85rem;
  line-height: 1.25;
}

.cart-line-var {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-line-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.cart-line-qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.cart-line-qty button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-line-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-line-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
}

.cart-line-remove:hover {
  color: #e8453c;
}

.cart-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.cart-subtotal strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.cart-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cart-checkout {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 100px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s, opacity 0.25s, box-shadow 0.25s;
}

.cart-checkout:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.cart-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-tagline {
  margin-top: 0.5rem;
  color: var(--accent);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .featured-art {
    order: -1;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content .section-title {
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  section {
    padding: 4rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .featured-links {
    flex-direction: column;
  }

  .stream-link {
    justify-content: center;
  }

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

  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .loader {
    display: none;
  }
}