/* ═══════════════════════════════════════════════════════════════
   Sound Leisure Classic Jukeboxes — Design System
   Primary (gold):  hsl(43,90%,50%)  = #D4920A
   Accent  (red):   hsl(0,82%,42%)   = #C41E1E
   Background:      hsl(0,0%,5%)     = #0D0D0D
   Font: Inter Tight
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:       hsl(0,0%,5%);
  --fg:       hsl(0,0%,93%);
  --card:     hsl(0,0%,8%);
  --primary:  hsl(43,90%,50%);
  --accent:   hsl(0,82%,42%);
  --secondary:hsl(0,0%,14%);
  --muted-fg: hsl(0,0%,55%);
  --border:   hsl(0,0%,18%);
  --radius:   0.375rem;
  --font:     'Inter Tight', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: hsl(0,0%,8%); }
::-webkit-scrollbar-thumb { background: hsl(0,0%,25%); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes tubeGlow {
  0%,100% { box-shadow: 0 0 15px 0 hsla(43,90%,50%,0.35); }
  50%      { box-shadow: 0 0 35px 8px hsla(43,90%,50%,0.55); }
}
@keyframes fadeInUp  { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:none; } }
@keyframes fadeInLeft{ from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:none; } }
@keyframes fadeInRight{from { opacity:0; transform:translateX(40px); }  to { opacity:1; transform:none; } }
@keyframes vinylSpin { to { transform: rotate(360deg); } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes countUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.4; } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes progressBar { from { width:0; } to { width:100%; } }

.tube-glow { animation: tubeGlow 2.2s ease-in-out infinite; }

/* Scroll-triggered reveal */
.reveal        { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.left   { transform: translateX(-40px); }
.reveal.right  { transform: translateX(40px); }
.reveal.active { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Announcement Bar ───────────────────────────────────────── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--accent); height: 32px;
  display: flex; align-items: center; overflow: hidden;
}
.announce-ticker {
  display: flex; gap: 0; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.announce-ticker span {
  font-size: 10px; font-weight: 900; letter-spacing: .2em;
  color: #fff; text-transform: uppercase;
  padding: 0 3rem;
}
.announce-ticker a { color: var(--primary); }
.announce-ticker a:hover { text-decoration: underline; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 50;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media(min-width:768px){ .nav-inner { height: 80px; } }
.nav-logo img { height: 48px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); transition: transform .3s; }
.nav-logo:hover img { transform: scale(1.04); }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media(min-width:768px){ .nav-links { display: flex; } }
.nav-link {
  font-size: 11px; font-weight: 900; letter-spacing: .18em;
  color: rgba(255,255,255,.78); text-transform: uppercase;
  transition: color .25s;
}
.nav-link:hover { color: var(--primary); }
.nav-cta {
  padding: .625rem 1.25rem;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 900; letter-spacing: .15em;
  text-transform: uppercase; border-radius: var(--radius);
  border-bottom: 2px solid rgba(212,146,10,.45);
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: hsl(0,82%,36%); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.cart-btn {
  position: relative; padding: .5rem;
  color: #fff; border-radius: .5rem;
  transition: background .2s, color .2s;
}
.cart-btn:hover { background: rgba(255,255,255,.1); color: var(--primary); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); color: hsl(0,0%,5%);
  font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.cart-badge.bump { animation: bumpScale .3s ease; }
@keyframes bumpScale { 0%{transform:scale(1)} 50%{transform:scale(1.5)} 100%{transform:scale(1)} }
.mobile-toggle {
  display: flex; padding: .5rem;
  color: #fff; border-radius: .5rem;
  transition: background .2s;
}
.mobile-toggle:hover { background: rgba(255,255,255,.1); }
@media(min-width:768px){ .mobile-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  background: rgba(13,13,13,.98); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  display: none; flex-direction: column; gap: 1.25rem;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-menu.open { display: flex; max-height: 400px; }
.mobile-menu-link {
  font-size: 13px; font-weight: 900; letter-spacing: .18em;
  color: var(--fg); text-transform: uppercase;
  transition: color .2s;
}
.mobile-menu-link:hover { color: var(--primary); }
.mobile-menu-cta {
  display: block; text-align: center;
  padding: .75rem; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 900; letter-spacing: .15em;
  text-transform: uppercase; border-radius: var(--radius);
}
.mobile-phone {
  display: flex; align-items: center; gap: .5rem;
  font-size: 13px; color: var(--muted-fg);
  transition: color .2s;
}
.mobile-phone:hover { color: var(--primary); }

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; background: var(--bg);
  padding-top: 32px; /* announce bar */
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .85s ease;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide.prev   { z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease; /* ken burns */
}
.hero-slide.active img { transform: scale(1.04); }
.hero-grad-lr  { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.52) 55%, rgba(0,0,0,.2) 100%); }
.hero-grad-tb  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 50%, rgba(0,0,0,.2) 100%); }

.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center;
}
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.hero-text { max-width: 780px; }
.hero-subtitle {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.hero-subtitle-line { width: 2rem; height: 2px; background: var(--primary); flex-shrink: 0; }
.hero-subtitle-text {
  font-size: 11px; font-weight: 700; letter-spacing: .3em;
  color: var(--primary); text-transform: uppercase;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900; line-height: .9; letter-spacing: -.02em;
  color: #fff; text-transform: uppercase;
  white-space: pre-line;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero-cta {
  display: inline-flex; align-items: center;
  margin-top: 2.5rem; padding: 1rem 2rem;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 900; letter-spacing: .2em;
  text-transform: uppercase; border-radius: var(--radius);
  border-bottom: 2px solid rgba(212,146,10,.5);
  transition: background .25s, transform .2s, box-shadow .2s;
}
.hero-cta:hover { background: hsl(0,82%,36%); transform: translateY(-2px); }
.hero-cta-arrow { margin-left: .75rem; color: var(--primary); font-weight: 900; }
/* Ken Burns fade-in for each new slide */
.hero-text-anim {
  animation: fadeInUp .65s ease both;
  animation-delay: .3s;
}

/* Slider controls */
.hero-counter {
  position: absolute; bottom: 2rem; left: 1.5rem; z-index: 20;
  font-size: 11px; font-weight: 900; letter-spacing: .2em;
  color: rgba(255,255,255,.4);
}
.hero-counter-cur { color: var(--primary); }
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 20;
  display: flex; gap: .5rem; align-items: center;
}
.hero-dot {
  height: 3px; border-radius: 50px; background: rgba(255,255,255,.3);
  transition: width .5s ease, background .5s ease;
  width: 14px; border: none;
}
.hero-dot.active { width: 40px; background: var(--primary); }
.hero-arrows {
  position: absolute; bottom: 1.5rem; right: 1.5rem; z-index: 20;
  display: flex; gap: .5rem;
}
.hero-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .25s, border-color .25s;
}
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero-arrow svg { width: 20px; height: 20px; }

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; z-index: 20;
  height: 2px; background: var(--primary);
  animation: progressBar 6s linear infinite;
}

/* ── Features Bar ────────────────────────────────────────────── */
.features-bar { background: var(--primary); }
.features-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 1rem;
  display: grid; grid-template-columns: repeat(3,1fr);
}
@media(min-width:768px){ .features-grid { grid-template-columns: repeat(6,1fr); } }
.feature-item {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; text-align: center; padding: 1.5rem .75rem;
}
.feature-item + .feature-item { border-left: 1px solid rgba(13,13,13,.2); }
.feature-item svg { width: 20px; height: 20px; color: rgba(13,13,13,.75); }
.feature-label {
  font-size: 9px; font-weight: 900; letter-spacing: .12em;
  color: rgba(13,13,13,.88); text-transform: uppercase; line-height: 1.3;
}

/* ── About Section ───────────────────────────────────────────── */
.about-banner {
  position: relative; height: 260px; overflow: hidden;
}
@media(min-width:768px){ .about-banner { height: 380px; } }
.about-banner img { width: 100%; height: 100%; object-fit: cover; }
.about-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.about-banner-content {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; text-align: center;
}
.about-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .35em;
  color: var(--primary); text-transform: uppercase; margin-bottom: .75rem;
}
.about-banner-title {
  font-size: clamp(2.5rem,7vw,5rem);
  font-weight: 900; color: #fff; text-transform: uppercase; line-height: .9;
}
.about-banner-title span { color: var(--primary); }

.about-body {
  max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; gap: 3rem;
}
@media(min-width:768px){ .about-body { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 6rem 2rem; } }
.about-text p { font-size: 1.0625rem; color: var(--muted-fg); line-height: 1.8; }
.about-text p + p { margin-top: 1.25rem; }
.about-text strong { color: var(--fg); }

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: clamp(2rem,5vw,2.75rem); font-weight: 900; color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: var(--muted-fg); text-transform: uppercase; margin-top: .25rem;
}

.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-img-tall { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/5; }
.about-img-sm { width: 100%; border-radius: var(--radius); object-fit: cover; flex: 1; }
.about-img-col { display: flex; flex-direction: column; gap: 1rem; }

.btn-primary {
  display: inline-flex; align-items: center;
  margin-top: 2rem; padding: 1rem 2rem;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 900; letter-spacing: .2em;
  text-transform: uppercase; border-radius: var(--radius);
  border-bottom: 2px solid rgba(212,146,10,.4);
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: hsl(0,82%,36%); transform: translateY(-2px); }

/* Timeline */
.timeline-strip { background: var(--accent); padding: 3.5rem 1.5rem; }
.timeline-inner { max-width: 1280px; margin: 0 auto; }
.timeline-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .3em;
  color: var(--primary); text-transform: uppercase;
  text-align: center; margin-bottom: 2rem;
}
.timeline-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
@media(min-width:1024px){ .timeline-grid { grid-template-columns: repeat(4,1fr); } }
.timeline-item { border-left: 2px solid var(--primary); padding-left: 1.25rem; }
.timeline-year { font-size: 1.75rem; font-weight: 900; color: var(--primary); }
.timeline-text { font-size: 11px; color: rgba(255,255,255,.78); margin-top: .5rem; line-height: 1.7; }

/* Showroom strip */
.showroom-strip { position: relative; overflow: hidden; }
.showroom-strip img { width: 100%; height: 260px; object-fit: cover; }
@media(min-width:768px){ .showroom-strip img { height: 320px; } }
.showroom-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.68); }
.showroom-content {
  position: absolute; inset: 0; display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.showroom-grid { display: grid; gap: 2rem; width: 100%; }
@media(min-width:768px){ .showroom-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.showroom-title {
  font-size: clamp(1.5rem,4vw,2.5rem); font-weight: 900;
  color: #fff; text-transform: uppercase; line-height: 1.1;
}
.showroom-text { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.8; }

/* ── Product Grid ─────────────────────────────────────────────── */
.products-header {
  background: var(--accent); padding: 4rem 1.5rem;
  position: relative; overflow: hidden;
}
.products-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, hsla(43,90%,50%,.12) 0%, transparent 60%);
  pointer-events: none;
}
.products-header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  position: relative; z-index: 1;
}
.products-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .35em;
  color: var(--primary); text-transform: uppercase; margin-bottom: .75rem;
}
.products-title {
  font-size: clamp(3rem,8vw,5rem); font-weight: 900;
  color: #fff; text-transform: uppercase; line-height: .92;
}
.products-subtitle { font-size: 13px; color: rgba(255,255,255,.78); max-width: 400px; line-height: 1.8; }

.filter-bar {
  background: var(--card); border-bottom: 1px solid var(--border);
  position: sticky; top: 96px; z-index: 35;
}
.filter-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; overflow-x: auto; gap: 0;
}
.filter-btn {
  padding: 1rem 1.5rem; font-size: 11px; font-weight: 900;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-fg); border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s; white-space: nowrap;
}
.filter-btn:hover { color: var(--fg); border-bottom-color: var(--border); }
.filter-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.filter-badge {
  margin-left: auto; flex-shrink: 0; padding: .75rem .5rem;
}
.filter-badge span {
  padding: .3rem .75rem; background: rgba(212,146,10,.15);
  border: 1px solid rgba(212,146,10,.3); border-radius: var(--radius);
  font-size: 10px; font-weight: 900; letter-spacing: .15em;
  color: var(--primary); text-transform: uppercase; white-space: nowrap;
}

.products-section { background: var(--bg); }
.products-inner { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }

/* Category images */
.cat-images { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 3rem; }
.cat-img-wrap {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
}
.cat-img-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .5s ease;
}
.cat-img-wrap:hover img { transform: scale(1.07); }
.cat-img-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); }
.cat-img-label {
  position: absolute; bottom: .75rem; left: .75rem;
  font-size: 11px; font-weight: 900; letter-spacing: .08em;
  color: #fff; text-transform: uppercase;
}
.cat-img-arrow {
  position: absolute; top: .75rem; right: .75rem;
  width: 24px; height: 24px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 900;
  opacity: 0; transition: opacity .25s; transform: translateY(-4px);
}
.cat-img-wrap:hover .cat-img-arrow { opacity: 1; transform: none; }

/* Product cards grid */
.product-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media(min-width:640px){ .product-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .product-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1280px){ .product-grid { grid-template-columns: repeat(4,1fr); } }

.product-card {
  position: relative; background: var(--card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,.06);
  transition: border-color .4s ease, box-shadow .4s ease, transform .3s ease;
}
.product-card:hover {
  border-color: rgba(212,146,10,.45);
  box-shadow: 0 0 40px rgba(0,0,0,.5);
  transform: translateY(-3px);
}
.product-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 10;
  padding: .25rem .625rem; border-radius: var(--radius);
  font-size: 10px; font-weight: 900; letter-spacing: .12em;
  text-transform: uppercase;
}
.badge-stock  { background: #16a34a; color: #fff; }
.badge-seller { background: var(--accent); color: #fff; }
.badge-new    { background: var(--primary); color: hsl(0,0%,5%); }
.badge-custom { background: hsl(260,70%,55%); color: #fff; }
.badge-iconic { background: hsl(30,85%,50%); color: #fff; }
.badge-limited{ background: hsl(200,80%,40%); color: #fff; }
.badge-exdemo { background: #16a34a; color: #fff; }

.product-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--secondary);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent 60%);
  opacity: 0; transition: opacity .45s ease;
}
.product-card:hover .product-img-overlay { opacity: 1; }

.product-hover-cta {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 5;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.product-card:hover .product-hover-cta { opacity: 1; transform: none; }
.hover-add-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 900; letter-spacing: .1em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: background .2s;
}
.hover-add-btn:hover { background: hsl(0,82%,36%); }

.product-info { padding: 1rem 1.25rem 1.25rem; }
.product-name {
  font-size: 14px; font-weight: 900; color: var(--fg);
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1.25;
}
@media(min-width:768px){ .product-name { font-size: 15px; } }
.product-desc {
  font-size: 12px; color: var(--muted-fg); margin-top: .375rem;
  line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.finish-btns { display: flex; gap: .375rem; margin-top: .75rem; }
.finish-btn {
  padding: .25rem .75rem; font-size: 10px; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--muted-fg);
  transition: all .2s;
}
.finish-btn.active {
  background: var(--primary); color: hsl(0,0%,5%); border-color: var(--primary);
}
.finish-btn:not(.active):hover { border-color: rgba(212,146,10,.5); }

.product-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 1rem;
}
.price-label { font-size: 9px; letter-spacing: .2em; color: var(--muted-fg); text-transform: uppercase; }
.price-value { font-size: clamp(1.25rem,3vw,1.5rem); font-weight: 900; color: var(--fg); line-height: 1.1; }
.add-btn-round {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s, box-shadow .2s; flex-shrink: 0;
}
.add-btn-round:hover { background: hsl(0,82%,36%); transform: scale(1.12); box-shadow: 0 0 16px rgba(196,30,30,.5); }
.add-btn-round svg { width: 16px; height: 16px; }

/* Hidden when filtered */
.product-card.hidden { display: none; }

/* ── Reviews Bar ──────────────────────────────────────────────── */
.reviews { padding: 4rem 1.5rem; background: var(--card); border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.reviews-inner { max-width: 1280px; margin: 0 auto; }
.reviews-header {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem;
}
.reviews-stars { display: flex; gap: 3px; }
.reviews-stars svg { width: 20px; height: 20px; fill: var(--primary); color: var(--primary); }
.reviews-score { font-size: 1.5rem; font-weight: 900; color: var(--fg); line-height: 1.1; margin-top: .25rem; }
.reviews-sub { font-size: 10px; font-weight: 700; letter-spacing: .15em; color: var(--muted-fg); text-transform: uppercase; margin-top: .25rem; }
.reviews-count { font-size: 2.5rem; font-weight: 900; color: var(--accent); }
.reviews-count-label { font-size: 10px; font-weight: 700; letter-spacing: .15em; color: var(--muted-fg); text-transform: uppercase; }
.feefo-note { font-size: 10px; color: var(--muted-fg); margin-top: .25rem; }
.reviews-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media(min-width:640px){ .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .reviews-grid { grid-template-columns: repeat(4,1fr); } }
.review-card {
  padding: 1.25rem; background: rgba(255,255,255,.04); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.review-card:hover { border-color: rgba(212,146,10,.3); transform: translateY(-2px); }
.review-stars { display: flex; gap: 2px; margin-bottom: .75rem; }
.review-stars svg { width: 13px; height: 13px; fill: var(--primary); color: var(--primary); }
.review-text { font-size: 13px; color: var(--fg); line-height: 1.7; font-style: italic; flex: 1; }
.review-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.08);
}
.review-author { font-size: 11px; font-weight: 700; color: var(--muted-fg); }
.review-date { font-size: 10px; color: var(--muted-fg); }

/* ── Blog Section ────────────────────────────────────────────── */
.blog { background: var(--card); border-top: 1px solid rgba(255,255,255,.07); }
.blog-header {
  background: var(--accent); padding: 3.5rem 1.5rem;
  position: relative; overflow: hidden;
}
.blog-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, hsla(43,90%,50%,.12) 0%, transparent 60%);
}
.blog-header-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.blog-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .35em;
  color: var(--primary); text-transform: uppercase; margin-bottom: .75rem;
}
.blog-title { font-size: clamp(2.5rem,7vw,4rem); font-weight: 900; color: #fff; text-transform: uppercase; }

.blog-body { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.blog-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media(min-width:768px){ .blog-grid { grid-template-columns: 2fr 1fr; } }

.blog-featured {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg); border: 1px solid rgba(255,255,255,.07);
  cursor: pointer; transition: border-color .4s;
}
.blog-featured:hover { border-color: rgba(212,146,10,.4); }
.blog-feat-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-featured:hover .blog-feat-img img { transform: scale(1.05); }
.blog-feat-img-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 50%, transparent 100%); }
.blog-feat-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 10;
  padding: .375rem .75rem; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase;
  border-radius: var(--radius);
}
.blog-feat-body { padding: 1.5rem 2rem 2rem; }
.blog-date { display: flex; align-items: center; gap: .5rem; color: var(--muted-fg); margin-bottom: .75rem; }
.blog-date svg { width: 13px; height: 13px; }
.blog-date span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-feat-title {
  font-size: clamp(1.1rem,2.5vw,1.4rem); font-weight: 900; color: var(--fg);
  line-height: 1.25; transition: color .25s;
}
.blog-featured:hover .blog-feat-title { color: var(--primary); }
.blog-feat-excerpt { font-size: 13px; color: var(--muted-fg); margin-top: .75rem; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more {
  display: flex; align-items: center; gap: .5rem; margin-top: 1.25rem;
  font-size: 11px; font-weight: 900; letter-spacing: .1em;
  color: var(--accent); text-transform: uppercase;
  transition: gap .25s;
}
.blog-featured:hover .blog-read-more { gap: .875rem; }

.blog-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-side-card {
  border-radius: var(--radius); overflow: hidden; background: var(--bg);
  border: 1px solid rgba(255,255,255,.07); cursor: pointer; flex: 1;
  transition: border-color .4s;
}
.blog-side-card:hover { border-color: rgba(212,146,10,.4); }
.blog-side-img { position: relative; height: 140px; overflow: hidden; }
.blog-side-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.blog-side-card:hover .blog-side-img img { transform: scale(1.06); }
.blog-side-img-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 70%); }
.blog-side-body { padding: 1rem; }
.blog-side-date { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--muted-fg); text-transform: uppercase; margin-bottom: .375rem; }
.blog-side-title {
  font-size: 13px; font-weight: 900; color: var(--fg); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .25s;
}
.blog-side-card:hover .blog-side-title { color: var(--primary); }
.blog-side-more {
  display: flex; align-items: center; gap: .375rem; margin-top: .75rem;
  font-size: 10px; font-weight: 900; letter-spacing: .1em;
  color: var(--accent); text-transform: uppercase; transition: gap .25s;
}
.blog-side-card:hover .blog-side-more { gap: .625rem; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta { background: var(--bg); }
.cta-strip { position: relative; overflow: hidden; height: 280px; }
@media(min-width:768px){ .cta-strip { height: 380px; } }
.cta-strip img { width: 100%; height: 100%; object-fit: cover; }
.cta-strip-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.68); }
.cta-strip-inner {
  position: absolute; inset: 0; display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.cta-strip-grid { display: grid; gap: 2rem; width: 100%; }
@media(min-width:768px){ .cta-strip-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.cta-strip-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .3em; color: var(--primary); text-transform: uppercase; margin-bottom: .75rem; }
.cta-strip-title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.05; }
.cta-strip-title span { color: var(--primary); }
.cta-strip-text { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.8; }
.cta-strip-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.25rem; font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--primary); text-transform: uppercase; transition: opacity .2s; }
.cta-strip-link:hover { opacity: .75; }

.cta-cards { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem; }
.cta-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media(min-width:768px){ .cta-grid { grid-template-columns: repeat(3,1fr); } }

.cta-card-img {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
}
.cta-card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.cta-card-img:hover img { transform: scale(1.06); }
.cta-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.87) 0%, rgba(0,0,0,.3) 50%, transparent 100%); }
.cta-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
.cta-card-body svg { width: 20px; height: 20px; color: var(--primary); margin-bottom: .5rem; }
.cta-card-title { font-size: 1.1rem; font-weight: 900; color: #fff; text-transform: uppercase; }
.cta-card-desc { font-size: 11px; color: rgba(255,255,255,.7); margin-top: .25rem; line-height: 1.7; }
.cta-card-link {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .75rem;
  font-size: 10px; font-weight: 900; letter-spacing: .2em;
  color: var(--primary); text-transform: uppercase;
}

.cta-card-solid {
  background: var(--accent); border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cta-solid-icon {
  width: 48px; height: 48px; background: rgba(212,146,10,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.cta-solid-icon svg { width: 22px; height: 22px; color: var(--primary); }
.cta-solid-title { font-size: 1.25rem; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.2; }
.cta-solid-text { font-size: 13px; color: rgba(255,255,255,.78); margin-top: .75rem; line-height: 1.8; }
.cta-solid-text strong { color: var(--primary); }
.cta-solid-phone {
  display: inline-flex; align-items: center; gap: .75rem;
  margin-top: 1.5rem; padding: .875rem 1.5rem;
  background: var(--primary); color: hsl(0,0%,5%);
  font-size: 12px; font-weight: 900; letter-spacing: .15em;
  text-transform: uppercase; border-radius: var(--radius);
  align-self: flex-start; transition: background .2s, transform .2s;
}
.cta-solid-phone:hover { background: hsl(43,90%,42%); transform: translateY(-2px); }
.cta-solid-phone svg { width: 16px; height: 16px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--accent); color: #fff; }
.footer-top-border { height: 3px; background: linear-gradient(to right, var(--primary) 0%, rgba(212,146,10,.5) 50%, var(--primary) 100%); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 3.5rem 1.5rem 4rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-logo { height: 80px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.8; margin-top: .75rem; }
.footer-col-title { font-size: 10px; font-weight: 900; letter-spacing: .2em; color: var(--primary); text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: .625rem; }
.footer-links-list a { font-size: 13px; color: rgba(255,255,255,.72); transition: color .2s; }
.footer-links-list a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.6; transition: color .2s; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-worldwide {
  margin-top: 1.5rem; padding: 1rem;
  background: rgba(255,255,255,.1); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-ww-label { font-size: 10px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: .25rem; }
.footer-ww-text { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15); margin-top: 3rem; padding-top: 2rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom-links a { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ── Cart Drawer ─────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 101;
  width: min(420px,100vw); background: var(--bg);
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: none; }
.cart-header {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title { font-size: 1.25rem; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.cart-close { padding: .375rem; border-radius: .375rem; color: var(--muted-fg); transition: color .2s, background .2s; }
.cart-close:hover { color: var(--fg); background: var(--secondary); }
.cart-close svg { width: 20px; height: 20px; }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 1rem; color: var(--muted-fg);
}
.cart-empty svg { width: 64px; height: 64px; opacity: .25; }
.cart-empty-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cart-empty-sub { font-size: 12px; text-align: center; max-width: 200px; }

.cart-item {
  display: flex; gap: 1rem; padding: .75rem;
  background: var(--secondary); border-radius: .5rem; margin-bottom: .75rem;
}
.cart-item-img { width: 80px; height: 80px; border-radius: .375rem; overflow: hidden; background: var(--card); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 700; color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-finish { font-size: 11px; color: var(--primary); font-weight: 600; margin-top: 2px; text-transform: capitalize; }
.cart-item-price { font-size: 13px; font-weight: 700; color: var(--fg); margin-top: .25rem; }
.cart-item-qty { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.qty-btn {
  width: 28px; height: 28px; border-radius: .375rem;
  background: var(--card); color: var(--fg); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.qty-btn:hover { background: var(--primary); color: hsl(0,0%,5%); }
.qty-val { font-size: 13px; font-weight: 700; width: 24px; text-align: center; }
.remove-btn { margin-left: auto; color: var(--muted-fg); transition: color .2s; padding: .25rem; }
.remove-btn:hover { color: hsl(0,70%,55%); }
.remove-btn svg { width: 14px; height: 14px; }

.cart-footer { border-top: 1px solid var(--border); padding: 1rem 1.25rem; }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cart-total-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-fg); }
.cart-total-price { font-size: 1.75rem; font-weight: 900; color: var(--fg); }
.checkout-btn {
  width: 100%; height: 56px; background: var(--primary); color: hsl(0,0%,5%);
  font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); transition: background .2s;
}
.checkout-btn:hover { background: hsl(43,90%,42%); }
.clear-cart-btn {
  width: 100%; margin-top: .75rem; font-size: 11px;
  color: var(--muted-fg); text-align: center;
  transition: color .2s; padding: .375rem;
}
.clear-cart-btn:hover { color: hsl(0,70%,55%); }

/* ── Vinyl Record Spinner (decorative) ──────────────────────── */
.vinyl-record {
  position: relative; display: inline-block;
  animation: vinylSpin 4s linear infinite paused;
}
.vinyl-record:hover { animation-play-state: running; }

/* ── Scroll-to-top ──────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── Responsive helpers ─────────────────────────────────────── */
@media(max-width:639px) {
  .cat-images { grid-template-columns: 1fr 1fr; }
  .cat-images .cat-img-wrap:last-child { display: none; }
}
