/** Shopify CDN: Minification failed

Line 3103:23 Unexpected "{"

**/
/* ==========================================================================
   SOUNDLABZ — base.css
   Palette derives from the logo ring: cyan at the top, green at the bottom.
   Green is the voice. Cyan only ever appears inside the gradient sweep.
   ========================================================================== */

:root {
  /* Surfaces */
  --paper: #ffffff;
  --wash: #f4f6f5;
  --line: #e4e8e6;
  --ink: #0b0f0d;
  --ink-2: #5a635f;
  --ink-3: #8d9793;

  /* Brand */
  --volt: #00e05a;   /* the loud green */
  --deep: #00994a;   /* green that survives on white as text */
  --wire: #22c3ee;   /* logo ring cyan — gradient partner only */
  --sweep: linear-gradient(115deg, #22c3ee 0%, #00e05a 55%, #00b84a 100%);
  --sweep-soft: linear-gradient(115deg, rgba(34,195,238,.14) 0%, rgba(0,224,90,.16) 100%);

  /* Type */
  --display: "Archivo", "Arial Black", system-ui, sans-serif;
  --body: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Scale */
  --step--1: clamp(.75rem, .72rem + .15vw, .82rem);
  --step-0: clamp(.94rem, .9rem + .2vw, 1.02rem);
  --step-1: clamp(1.1rem, 1rem + .5vw, 1.3rem);
  --step-2: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  --step-3: clamp(1.9rem, 1.4rem + 2.4vw, 3rem);
  --step-4: clamp(2.6rem, 1.4rem + 5.4vw, 5.5rem);
  --step-5: clamp(3.4rem, 1rem + 11vw, 11rem);

  /* Space */
  --gut: clamp(1rem, .6rem + 1.8vw, 2.25rem);
  --band: clamp(3.5rem, 2rem + 6vw, 7.5rem);
  --wrap: 1440px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --r: 14px;
  --r-lg: 22px;

  --header-h: 72px;
}

/* --------------------------------------------------------- reset / base */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

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

button,
input,
select,
textarea { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 { margin: 0; line-height: .92; letter-spacing: -.035em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.2rem;
}
.skip:focus { left: 8px; top: 8px; }

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

/* --------------------------------------------------------- type helpers */
.display {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .86;
}

.eyebrow {
  font-family: var(--mono);
  font-size: var(--step--1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--sweep);
  flex: none;
}
.eyebrow--plain::before { display: none; }

.gradient-text {
  background: var(--sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 46ch;
}

/* --------------------------------------------------------- layout */
.wrap {
  width: min(100% - (var(--gut) * 2), var(--wrap));
  margin-inline: auto;
}
.wrap--tight { width: min(100% - (var(--gut) * 2), 980px); margin-inline: auto; }

.band { padding-block: var(--band); position: relative; }
.band--wash { background: var(--wash); }
.band--ink { background: var(--ink); color: #fff; }
.band--flush-top { padding-top: 0; }

.band-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
}
.band-head h2 { font-size: var(--step-3); }
.band-head .eyebrow { margin-bottom: .9rem; display: flex; }

/* --------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--sweep);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(0, 153, 74, .55); }
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: var(--ink); }
.btn:active { transform: translateY(0); }

.btn--volt {
  --btn-bg: var(--volt);
  --btn-fg: var(--ink);
}

.btn--volt::after {
  background: var(--ink);
}

/* SHOP EVERYTHING — keep text visible during fill */
.hero .hero-shop-button:hover {
  color: #fff !important;
}

.hero .hero-shop-button:hover .hero-shop-button__text {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.hero .hero-shop-button:hover .hero-shop-button__icon,
.hero .hero-shop-button:hover .hero-shop-button__icon svg {
  color: #fff !important;
  stroke: #fff !important;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { color: var(--ink); box-shadow: inset 0 0 0 1.5px transparent; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.15rem 2.2rem; font-size: var(--step-0); }
.btn[disabled] { opacity: .45; pointer-events: none; }

.link-slide {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--deep);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--deep), var(--deep));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size .4s var(--ease);
}
.link-slide:hover { background-size: 100% 1.5px; }
.link-slide svg { transition: transform .35s var(--ease); }
.link-slide:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------- spec chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 6px;
  background: var(--wash);
  color: var(--ink-2);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.chip--volt {
  background: rgba(0, 224, 90, .12);
  border-color: rgba(0, 153, 74, .3);
  color: var(--deep);
}
.chip--hot { background: var(--ink); border-color: var(--ink); color: var(--volt); }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announce {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .55rem 0;
}
.announce__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: slide-x 38s linear infinite;
}
.announce__item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}
.announce__item::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--volt);
  flex: none;
}
@keyframes slide-x {
  to { transform: translateX(-50%); }
}
.announce:hover .announce__track { animation-play-state: paused; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, transform .45s var(--ease), box-shadow .3s;
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(11, 15, 13, .5);
}
.header.is-hidden { transform: translateY(-100%); }

.header__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}

.header__logo {
  display: flex;
  align-items: center;
  flex: none;
  margin-right: .5rem;
}
.header__logo img { height: 34px; width: auto; object-fit: contain; }
.header__logo .wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: 1.3rem;
  letter-spacing: -.045em;
}

.nav { display: none; align-items: center; gap: .2rem; margin-inline: auto; }
@media (min-width: 1060px) { .nav { display: flex; } }

.nav__link {
  position: relative;
  padding: .55rem .8rem;
  font-size: .9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color .25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .3rem;
  height: 2px;
  background: var(--sweep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__item:hover > .nav__link::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__item { position: relative; }

.nav__drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .5rem;
  box-shadow: 0 24px 50px -24px rgba(11, 15, 13, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .3s var(--ease);
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__drop a {
  display: block;
  padding: .6rem .8rem;
  border-radius: 8px;
  font-size: .88rem;
  transition: background .2s, color .2s, padding-left .25s var(--ease);
}
.nav__drop a:hover { background: var(--wash); color: var(--deep); padding-left: 1.1rem; }

.header__tools { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
@media (min-width: 1060px) { .header__tools { margin-left: 0; } }

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .25s, transform .25s var(--ease);
}
.icon-btn:hover { background: var(--wash); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; stroke-width: 1.7; }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--volt);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform .35s var(--ease);
}
.cart-count.is-on { transform: scale(1); }
.cart-count.is-bump { animation: bump .5s var(--ease); }
@keyframes bump {
  40% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.burger { display: grid; }
@media (min-width: 1060px) { .burger { display: none; } }

/* scroll progress */
.progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sweep);
  z-index: 2;
}

/* ==========================================================================
   DRAWERS (mobile nav, cart, search)
   ========================================================================== */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 13, .45);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  z-index: 100;
}
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(440px, 92vw);
  background: var(--paper);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform .5s var(--ease);
  box-shadow: -20px 0 60px -30px rgba(11, 15, 13, .5);
}
.drawer--left { right: auto; left: 0; transform: translateX(-102%); box-shadow: 20px 0 60px -30px rgba(11, 15, 13, .5); }
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.drawer__title {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.drawer__body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.drawer__foot { flex: none; padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); background: var(--paper); }

.mnav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}
.mnav a:hover { color: var(--deep); }
.mnav__sub a { font-family: var(--body); font-size: .95rem; text-transform: none; font-weight: 500; padding-left: 1rem; letter-spacing: 0; }

/* ---- cart drawer */
.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__img {
  width: 76px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--wash);
  object-fit: contain;
  padding: 6px;
}
.cart-line__title { font-weight: 600; font-size: .92rem; line-height: 1.3; }
.cart-line__meta { font-family: var(--mono); font-size: .72rem; color: var(--ink-3); margin-top: .2rem; }
.cart-line__price { font-family: var(--mono); font-weight: 600; font-size: .9rem; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-top: .5rem;
}
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-size: 1rem; color: var(--ink-2); }
.qty button:hover { color: var(--deep); }
.qty span, .qty input {
  width: 34px;
  text-align: center;
  font-family: var(--mono);
  font-size: .8rem;
  border: 0;
  background: none;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty svg { margin: 0 auto 1rem; opacity: .25; }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .9rem;
  font-family: var(--mono);
}
.cart-total strong { font-size: 1.3rem; }

/* ---- search */
.search-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--paper);
  z-index: 101;
  transform: translateY(-102%);
  transition: transform .5s var(--ease);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.search-panel.is-open { transform: translateY(0); }
.search-panel__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem var(--gut);
  border-bottom: 1px solid var(--line);
}
.search-panel__form input {
  flex: 1;
  border: 0;
  background: none;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.search-panel__form input::placeholder { color: var(--line); }
.search-results { overflow-y: auto; padding: 1rem var(--gut) 2rem; }
.search-results a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .7rem;
  border-radius: 12px;
  transition: background .2s;
}
.search-results a:hover { background: var(--wash); }
.search-results img { width: 56px; aspect-ratio: 1; object-fit: contain; background: var(--wash); border-radius: 8px; }

/* ==========================================================================
   HERO — the signature. Type + live waveform.
   ========================================================================== */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  width: 70vw;
  aspect-ratio: 1;
  right: -18vw;
  top: -22vw;
  background: radial-gradient(circle, rgba(0, 224, 90, .18) 0%, rgba(34, 195, 238, .1) 42%, transparent 68%);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  to { transform: translate3d(-4%, 5%, 0) scale(1.12); }
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 122%;
  text-transform: uppercase;
  font-size: var(--step-5);
  line-height: .82;
  letter-spacing: -.05em;
  margin: .6rem 0 1.4rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block;
  transform: translateY(102%);
  animation: rise .95s var(--ease) forwards;
}
.hero__title .line:nth-child(2) > span { animation-delay: .1s; }
.hero__title .line:nth-child(3) > span { animation-delay: .2s; }
@keyframes rise { to { transform: translateY(0); } }

.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero__stat b {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 110%;
  font-size: var(--step-2);
  letter-spacing: -.04em;
  line-height: 1;
}
.hero__stat span {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink-3);
}

/* the visual side: product on a gradient disc + the waveform canvas */
.hero__stage { position: relative; }
.hero__disc {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sweep);
  box-shadow: 0 40px 90px -40px rgba(0, 153, 74, .6);
  overflow: hidden;
  animation: pop 1s var(--ease) both .25s;
}
@keyframes pop {
  from { opacity: 0; transform: scale(.88); }
  to { opacity: 1; transform: scale(1); }
}
.hero__disc::before,
.hero__disc::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  animation: ripple 3.4s var(--ease-in-out) infinite;
}
.hero__disc::after { animation-delay: 1.7s; }
@keyframes ripple {
  0% { transform: scale(.72); opacity: 0; }
  35% { opacity: .9; }
  100% { transform: scale(1.18); opacity: 0; }
}
.hero__disc img {
  position: relative;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(11, 15, 13, .35));
  animation: float 6s var(--ease-in-out) infinite alternate;
}
@keyframes float { to { transform: translateY(-14px); } }

.hero__badge {
  position: absolute;
  right: 2%;
  bottom: 8%;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  padding: .8rem 1.1rem;
  font-family: var(--mono);
  box-shadow: 0 20px 40px -20px rgba(11, 15, 13, .6);
  animation: pop 1s var(--ease) both .55s;
}
.hero__badge b { display: block; font-size: 1.5rem; color: var(--volt); line-height: 1; }
.hero__badge span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }

/* the waveform — logo ring, unrolled */
.wave { position: relative; width: 100%; height: 90px; }
.wave canvas { width: 100%; height: 100%; display: block; }
.wave--divider { height: 54px; margin-block: -10px; }
.wave--hero { height: clamp(70px, 9vw, 120px); margin-top: 1rem; }

.spl-readout {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.spl-readout b { font-size: 1.05rem; color: var(--deep); letter-spacing: 0; }
.hero--slider .hero__visual,
.hero--slider .hero__visual-image {
  display: none !important;
}

.hero--slider .hero__grid {
  grid-template-columns: 1fr !important;
}

/* ==========================================================================
   BRAND MARQUEE
   ========================================================================== */
.marquee {
  overflow: hidden;
  padding-block: 1.4rem;
  border-block: 1px solid var(--line);
  --speed: 42s;
}
.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  animation: slide-x var(--speed) linear infinite;
}
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.marquee__word {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  letter-spacing: -.02em;
  color: var(--ink-3);
  white-space: nowrap;
  transition: color .3s;
}
.marquee__word:hover { color: var(--ink); }
.marquee__word img { height: clamp(22px, 3vw, 34px); width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: all .3s; }
.marquee__word:hover img { filter: none; opacity: 1; }
.marquee__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--volt); flex: none; }

/* ==========================================================================
   CATEGORY GRID — "the rack"
   ========================================================================== */
.rack {
  display: grid;
  gap: clamp(.7rem, 1.4vw, 1.1rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .rack { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .rack { grid-template-columns: repeat(4, 1fr); } }

.rack__tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}
.rack__tile--wide { grid-column: span 2; aspect-ratio: 8 / 5; }
@media (max-width: 759px) { .rack__tile--wide { aspect-ratio: 4 / 3; } }

.rack__tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8%;
  display: block;
  transition: transform .8s var(--ease), filter .5s;
}
.rack__tile:hover img { transform: scale(1.07); }

.rack__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 13, .78) 0%, rgba(11, 15, 13, .12) 48%, transparent 75%);
  transition: opacity .4s;
}
.rack__tile:hover::after { opacity: .88; }

.rack__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.1rem;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
}
.rack__label h3 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.9vw, 1.5rem);
  letter-spacing: -.03em;
}
.rack__label small {
  display: block;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: .3rem;
}
.rack__arrow {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--volt);
  color: var(--ink);
  display: grid;
  place-items: center;
  transform: scale(0) rotate(-40deg);
  transition: transform .45s var(--ease);
}
.rack__tile:hover .rack__arrow { transform: scale(1) rotate(0); }

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */
.grid-products {
  display: grid;
  gap: clamp(.8rem, 1.6vw, 1.4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) { .grid-products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .grid-products--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .grid-products--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 27%);
  gap: clamp(.8rem, 1.6vw, 1.4rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-inline: calc(var(--gut) * -1);
  padding-inline: var(--gut);
  scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 4px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.rail::-webkit-scrollbar-thumb:hover { background: var(--volt); }
@media (min-width: 900px) { .rail { grid-auto-columns: minmax(260px, 23%); } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .35s, transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 26px 50px -28px rgba(11, 15, 13, .35);
}

.card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--wash);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.card__media-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform .7s var(--ease), opacity .4s;
}
.card__media img.card__alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card__media img.card__main { opacity: 0; }
.card:hover .card__media img.card__alt { opacity: 1; }
.card:hover .card__media img { transform: scale(1.06); }

/* the pulse ring — logo motif on hover */
.card__media::before {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1.5px solid var(--volt);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.6);
  transition: none;
  pointer-events: none;
}
.card:hover .card__media::before { animation: pulse-ring 1.6s var(--ease) infinite; }
@keyframes pulse-ring {
  0% { transform: scale(.6); opacity: 0; }
  30% { opacity: .55; }
  100% { transform: scale(1.35); opacity: 0; }
}

.card__flags {
  position: absolute;
  top: .7rem;
  left: .7rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
}

.card__quick {
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
}
.card:hover .card__quick,
.card:focus-within .card__quick { opacity: 1; transform: translateY(0); }
@media (hover: none) { .card__quick { opacity: 1; transform: none; } }

.card__body { padding: .9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card__vendor {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.card__title {
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card:hover .card__title { color: var(--deep); }
.card__specs { display: flex; flex-wrap: wrap; gap: .3rem; }
.card__price {
  margin-top: auto;
  padding-top: .5rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
}
.card__price del { color: var(--ink-3); font-weight: 400; font-size: .82rem; }

/* ==========================================================================
   DARK BAND — the one place the logo's black shows up
   ========================================================================== */
.band--ink .eyebrow { color: rgba(255, 255, 255, .55); }
.band--ink .lede { color: rgba(255, 255, 255, .68); }
.band--ink .btn--ghost { --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .22); }
.band--ink .btn--ghost:hover { --btn-fg: var(--ink); }

.stat-row {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.5rem);
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(2rem, 4vw, 3.4rem);
}
@media (min-width: 800px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }

.stat {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 1rem;
}
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 115%;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: .9;
  letter-spacing: -.045em;
  background: var(--sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  display: block;
  margin-top: .5rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

/* ==========================================================================
   POWER MATCH — interactive build helper
   ========================================================================== */
.matcher {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (min-width: 900px) { .matcher { grid-template-columns: .9fr 1.1fr; } }

.matcher__panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}
.matcher__field { margin-bottom: 1.4rem; }
.matcher__field:last-child { margin-bottom: 0; }
.matcher__field > label {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .6rem;
}
.seg { display: flex; flex-wrap: wrap; gap: .4rem; }
.seg button {
  padding: .6rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
}
.seg button:hover { border-color: var(--volt); }
.seg button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--volt);
}

.readout {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  position: relative;
  overflow: hidden;
}
.readout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sweep);
  opacity: .07;
}
.readout__grid { position: relative; display: grid; gap: 1px; background: rgba(255, 255, 255, .12); border-radius: 12px; overflow: hidden; }
@media (min-width: 520px) { .readout__grid { grid-template-columns: repeat(2, 1fr); } }
.readout__cell { background: var(--ink); padding: 1.1rem; }
.readout__cell dt {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .4rem;
}
.readout__cell dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--volt);
  transition: opacity .25s;
}
.readout__cell dd small { display: block; font-family: var(--mono); font-size: .7rem; font-weight: 400; letter-spacing: 0; color: rgba(255,255,255,.6); margin-top: .3rem; text-transform: none; }
.readout__note {
  position: relative;
  margin-top: 1.2rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

/* ==========================================================================
   FEATURE / PROMISE ROW
   ========================================================================== */
.promises {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .promises { grid-template-columns: repeat(4, 1fr); } }
.promise {
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border-radius: var(--r);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .3s;
}
.promise:hover { transform: translateY(-4px); border-color: var(--volt); }
.promise svg { width: 26px; height: 26px; color: var(--deep); margin-bottom: .8rem; stroke-width: 1.6; }
.promise h3 { font-size: 1rem; letter-spacing: -.02em; margin-bottom: .35rem; line-height: 1.2; }
.promise p { font-size: .85rem; color: var(--ink-2); line-height: 1.5; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.quotes { display: grid; gap: clamp(.9rem, 2vw, 1.4rem); grid-template-columns: 1fr; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(11, 15, 13, .3); }
.quote__stars { color: var(--volt); letter-spacing: .12em; font-size: .95rem; }
.quote p { font-size: .95rem; line-height: 1.55; }
.quote footer {
  margin-top: auto;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.pdp { display: grid; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.1fr .9fr; } }

.gallery { position: relative; display: grid; gap: .7rem; }
.gallery__main {
  position: relative;
  aspect-ratio: 1;
  background: var(--wash);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.gallery__thumbs { display: flex; gap: .55rem; overflow-x: auto; padding-bottom: .3rem; }
.gallery__thumbs button {
  flex: none;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--wash);
  border: 2px solid transparent;
  transition: border-color .3s;
}
.gallery__thumbs button[aria-current="true"] { border-color: var(--volt); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
@media (min-width: 900px) {
  .gallery { grid-template-columns: 82px 1fr; }
  .gallery__thumbs { flex-direction: column; overflow: visible; order: -1; }
  .gallery__thumbs button { width: 100%; }
}
.gallery--single {
  display: block;
  width: 100%;
}

.gallery--single .gallery__main {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.gallery--single .gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  opacity: 1;
  visibility: visible;
}

.pdp__info { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 899px) { .pdp__info { position: static; } }

.pdp__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 114%;
  text-transform: uppercase;
  font-size: var(--step-3);
  letter-spacing: -.04em;
  margin: .5rem 0 1rem;
}
.pdp__price {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.pdp__price del { font-size: 1rem; font-weight: 400; color: var(--ink-3); }

.option { margin-bottom: 1.2rem; }
.option__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .55rem;
}
.option__label b { color: var(--ink); letter-spacing: .06em; }
.swatches { display: flex; flex-wrap: wrap; gap: .45rem; }
.swatches input { position: absolute; opacity: 0; pointer-events: none; }
.swatches label {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.05rem;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-family: var(--mono);
  font-size: .78rem;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.swatches label:hover { border-color: var(--volt); }
.swatches input:checked + label { background: var(--ink); border-color: var(--ink); color: var(--volt); }
.swatches input:focus-visible + label { outline: 3px solid var(--deep); outline-offset: 2px; }
.swatches input:disabled + label { opacity: .35; text-decoration: line-through; cursor: not-allowed; }

.buy-row { display: flex; gap: .6rem; align-items: stretch; margin-block: 1.4rem; }
.buy-row .qty { margin: 0; border-radius: 100px; }
.buy-row .qty button { width: 44px; height: auto; }

.pdp__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 1rem;
}
.stock i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 0 rgba(0, 224, 90, .6);
  animation: blip 2s infinite;
}
.stock--out { color: var(--ink-3); }
.stock--out i { background: var(--ink-3); animation: none; }
@keyframes blip {
  70% { box-shadow: 0 0 0 9px rgba(0, 224, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 224, 90, 0); }
}

.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  text-align: left;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s;
}
.accordion__btn:hover { color: var(--deep); }
.accordion__btn i {
  position: relative;
  width: 14px; height: 14px;
  flex: none;
}
.accordion__btn i::before,
.accordion__btn i::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.accordion__btn i::before { left: 0; top: 6px; width: 14px; height: 2px; }
.accordion__btn i::after { left: 6px; top: 0; width: 2px; height: 14px; }
.accordion__btn[aria-expanded="true"] i::after { transform: scaleY(0); }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.accordion__panel > div { overflow: hidden; }
.accordion__btn[aria-expanded="true"] + .accordion__panel { grid-template-rows: 1fr; }
.accordion__inner { padding-bottom: 1.2rem; font-size: .92rem; line-height: 1.65; color: var(--ink-2); }

.rte { line-height: 1.7; }
.rte h2, .rte h3 { margin: 1.6em 0 .5em; letter-spacing: -.02em; line-height: 1.2; }
.rte h2 { font-size: var(--step-2); }
.rte h3 { font-size: var(--step-1); }
.rte ul, .rte ol { padding-left: 1.2em; margin: 0 0 1em; }
.rte li { margin-bottom: .4em; }
.rte a { color: var(--deep); text-decoration: underline; text-underline-offset: 3px; }
.rte img { border-radius: var(--r); margin-block: 1.4em; }
.rte table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.rte td, .rte th { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.rte th { background: var(--wash); font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

/* sticky mobile buy bar */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: .7rem var(--gut) calc(.7rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: .8rem;
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}
.buybar.is-on { transform: translateY(0); }
.buybar__info { flex: 1; min-width: 0; }
.buybar__info strong { display: block; font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar__info span { font-family: var(--mono); font-size: .8rem; color: var(--deep); }
@media (min-width: 900px) { .buybar { display: none; } }

/* ==========================================================================
   COLLECTION
   ========================================================================== */
.coll-hero {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  isolation: isolate;
}
.coll-hero__bg { position: absolute; inset: 0; z-index: -2; }
.coll-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.coll-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 100% at 0% 100%, rgba(0, 224, 90, .35), transparent 60%);
}
.coll-hero h1 { font-family: var(--display); font-weight: 900; font-stretch: 118%; text-transform: uppercase; font-size: var(--step-4); letter-spacing: -.045em; }

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding-block: 1rem;
  border-block: 1px solid var(--line);
  margin-bottom: clamp(1.2rem, 2.5vw, 2rem);

  position: relative;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  z-index: 1;
}
.toolbar__count { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.select {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.select select {
  appearance: none;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: .55rem 2.4rem .55rem 1.1rem;
  background: var(--paper);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .3s;
}
.select select:hover { border-color: var(--volt); }
.select::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  width: 7px; height: 7px;
  border-right: 1.6px solid var(--ink-2);
  border-bottom: 1.6px solid var(--ink-2);
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

.facets { display: grid; gap: 1.5rem; }
.facet__title {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .7rem;
  color: var(--ink-3);
}
.facet label { display: flex; align-items: center; gap: .55rem; padding: .3rem 0; font-size: .88rem; cursor: pointer; }
.facet label:hover { color: var(--deep); }
.facet input[type="checkbox"] { accent-color: var(--deep); width: 16px; height: 16px; }
.facet__count { margin-left: auto; font-family: var(--mono); font-size: .72rem; color: var(--ink-3); }

.pagination {
  display: flex;
  justify-content: center;
  gap: .35rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.pagination a, .pagination span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 .6rem;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .82rem;
  border: 1.5px solid var(--line);
  transition: all .3s;
}
.pagination a:hover { border-color: var(--volt); color: var(--deep); }
.pagination .is-current { background: var(--ink); border-color: var(--ink); color: var(--volt); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .45rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--volt);
  box-shadow: 0 0 0 4px rgba(0, 224, 90, .14);
}
.field textarea { min-height: 140px; resize: vertical; }

.inline-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.inline-form input { flex: 1; min-width: 200px; padding: .95rem 1.2rem; border: 1.5px solid var(--line); border-radius: 100px; }
.inline-form input:focus { outline: 0; border-color: var(--volt); box-shadow: 0 0 0 4px rgba(0, 224, 90, .14); }

.form-note { font-size: .8rem; color: var(--ink-3); margin-top: .6rem; }
.form-success {
  background: rgba(0, 224, 90, .1);
  border: 1px solid rgba(0, 153, 74, .3);
  color: var(--deep);
  border-radius: 12px;
  padding: .9rem 1.1rem;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.form-error {
  background: #fff2f2;
  border: 1px solid #ffc9c9;
  color: #c92a2a;
  border-radius: 12px;
  padding: .9rem 1.1rem;
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: #fff; padding-block: clamp(3rem, 6vw, 5rem) 2rem; position: relative; overflow: hidden; }
.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30%;
  width: 90vw;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 224, 90, .13), transparent 60%);
  pointer-events: none;
}
.footer__top {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); } }

.footer__brand img { height: 46px; width: auto; margin-bottom: 1.1rem; }
.footer__brand .wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: 1.8rem;
  letter-spacing: -.045em;
  margin-bottom: 1rem;
  display: block;
}
.footer__brand p { color: rgba(255, 255, 255, .6); font-size: .9rem; max-width: 36ch; }

.footer h4 {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer li a { font-size: .9rem; color: rgba(255, 255, 255, .78); transition: color .25s, padding-left .3s var(--ease); display: inline-block; }
.footer li a:hover { color: var(--volt); padding-left: 5px; }

.footer__contact { display: grid; gap: .55rem; font-size: .9rem; color: rgba(255, 255, 255, .78); }
.footer__contact a:hover { color: var(--volt); }
.footer__contact strong { color: #fff; font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }

.socials { display: flex; gap: .5rem; margin-top: 1.4rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: all .35s var(--ease);
}
.socials a:hover { background: var(--volt); border-color: var(--volt); color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
.payments { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.payments svg { height: 22px; width: auto; opacity: .75; }

/* giant footer wordmark */
.footer__mark {
  position: relative;
  margin-top: 2.5rem;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  text-transform: uppercase;
  font-size: clamp(3rem, 15vw, 15rem);
  line-height: .8;
  letter-spacing: -.055em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .16);
  text-align: center;
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal="scale"] { transform: scale(.95); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }

[data-parallax] { will-change: transform; }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 200;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.3rem;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: transform .5s var(--ease);
  box-shadow: 0 20px 40px -20px rgba(11, 15, 13, .6);
}
.toast.is-on { transform: translate(-50%, 0); }
.toast svg { color: var(--volt); width: 18px; height: 18px; }

/* ==========================================================================
   PAGE LOAD — the ring draws itself
   ========================================================================== */
.boot {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: opacity .5s ease, visibility .5s;
}
.boot.is-done { opacity: 0; visibility: hidden; }
.boot svg { width: 72px; height: 72px; }
.boot circle {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-ring 1.1s var(--ease) forwards;
}
@keyframes draw-ring { to { stroke-dashoffset: 0; } }
/* ==========================================================================
   PHASE 2 — audio, tools, motion polish, fitment, gallery
   ========================================================================== */

/* ------------------------------------------------------- the ring cursor */
@media (pointer: fine) {
  .ring-cursor {
    position: fixed; top: 0; left: 0; width: 40px; height: 40px;
    pointer-events: none; z-index: 9999; opacity: 0;
    transition: opacity .25s ease;
    will-change: transform;
  }
  .ring-cursor.is-live { opacity: 1; }
  .ring-cursor svg { width: 100%; height: 100%; display: block; transition: transform .28s cubic-bezier(.2,.9,.25,1); }
  .ring-cursor.is-hot svg { transform: scale(1.75); }
  .ring-cursor.is-down svg { transform: scale(.82); }
}

/* ------------------------------------------------------------- 3D tilt */
.card__media, [data-tilt] {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.9,.25,1);
}
.card__media::after, [data-tilt]::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit; opacity: 0; transition: opacity .35s ease;
  background: radial-gradient(340px circle at var(--mx) var(--my), rgba(255,255,255,.5), transparent 62%);
}
.card:hover .card__media::after, [data-tilt]:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .card__media, [data-tilt] { transform: none; transition: none; }
  .card__media::after, [data-tilt]::after { display: none; }
}

/* ------------------------------------------------------ scramble decode */
[data-scramble] { visibility: hidden; font-variant-numeric: tabular-nums; }

/* --------------------------------------------------- view transitions */
@view-transition { navigation: auto; }
::view-transition-old(product-media),
::view-transition-new(product-media) { animation-duration: .45s; }
::view-transition-group(product-media) { animation-timing-function: cubic-bezier(.2,.9,.25,1); }
::view-transition-old(root) { animation: vt-out .3s cubic-bezier(.4,0,1,1) both; }
::view-transition-new(root) { animation: vt-in .42s cubic-bezier(0,0,.2,1) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
/* =========================================================
   NATIVE SCROLL REVEAL
   DESKTOP ONLY
   ========================================================= */

@media screen and (min-width: 760px) {

  @supports (animation-timeline: view()) {

    [data-native-scroll] [data-reveal] {
      animation: slz-rise linear both;
      animation-timeline: view();
      animation-range: entry 6% cover 32%;

      opacity: 1;
      transform: none;
    }

    @keyframes slz-rise {

      from {
        opacity: 0;
        transform: translateY(26px);
        filter: blur(6px);
      }

      to {
        opacity: 1;
        transform: none;
        filter: blur(0);
      }

    }

  }

}
/* --------------------------------------------------------- bass drop */
.is-dropped { animation: slz-shake .34s linear 6; }
@keyframes slz-shake {
  0%,100% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(-3px,2px,0); }
  50% { transform: translate3d(3px,-2px,0); }
  75% { transform: translate3d(-2px,-1px,0); }
}
@media (prefers-reduced-motion: reduce) { .is-dropped { animation: none; } }

/* =========================================================== SWEEP TESTER */
.sweep { background: var(--ink); color: #fff; padding-block: var(--band); position: relative; overflow: hidden; }
.sweep::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 70%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(0,224,90,.16), transparent 70%);
  pointer-events: none;
}
.sweep__grid { position: relative; display: grid; gap: clamp(1.6rem,4vw,3.4rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .sweep__grid { grid-template-columns: 1.05fr .95fr; align-items: center; } }

.sweep__hz {
  font-family: var(--display); font-weight: 900; font-stretch: 122%;
  font-size: clamp(4rem, 16vw, 10rem); line-height: .82; letter-spacing: -.04em;
  background: var(--sweep); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.sweep__unit { font-family: var(--mono); font-size: var(--step-1); color: var(--ink-3); margin-left: .3rem; }
.sweep__band { font-family: var(--mono); font-size: var(--step--1); color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .08em; margin-top: .8rem; min-height: 1.4em; }

.sweep__meter { height: 4px; border-radius: 99px; background: rgba(255,255,255,.12); margin: 1.6rem 0; overflow: hidden; }
.sweep__meter::after { content: ""; display: block; height: 100%; width: var(--p, 0%); background: var(--sweep); transition: width .1s linear; }

.sweep__presets { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.tone-btn {
  font-family: var(--mono); font-size: var(--step--1); padding: .6rem .95rem;
  border-radius: 99px; border: 1.5px solid rgba(255,255,255,.2); background: transparent;
  color: #fff; cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.tone-btn:hover { border-color: var(--volt); color: var(--volt); }
.tone-btn.is-on { background: var(--sweep); border-color: transparent; color: var(--ink); font-weight: 700; }

.sweep__controls { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.sweep__row { display: flex; align-items: center; gap: .9rem; }
.sweep__row label { font-family: var(--mono); font-size: var(--step--1); color: rgba(255,255,255,.5); min-width: 4.5rem; text-transform: uppercase; letter-spacing: .06em; }
.sweep__row input[type="range"] { flex: 1; accent-color: #00e05a; height: 4px; }

.sweep__warn {
  margin-top: 1.6rem; padding: .95rem 1.1rem; border-radius: 12px;
  background: rgba(255,255,255,.05); border-left: 3px solid var(--volt);
  font-size: var(--step--1); color: rgba(255,255,255,.72); line-height: 1.55;
}
.sweep__viz { position: relative; }
.sweep__viz .wave { height: clamp(180px, 34vw, 300px); }

/* ============================================================ TOOLS HUB */
.tools__tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }
.tools__tab {
  font-family: var(--mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em;
  padding: .85rem 1.1rem; border: 0; background: transparent; color: var(--ink-2); cursor: pointer;
  position: relative; transition: color .2s ease;
}
.tools__tab::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2.5px; background: var(--sweep); transform: scaleX(0); transition: transform .3s cubic-bezier(.2,.9,.25,1); }
.tools__tab[aria-selected="true"] { color: var(--ink); font-weight: 700; }
.tools__tab[aria-selected="true"]::after { transform: scaleX(1); }
.tools__panel[hidden] { display: none; }

/* ------------------------------------------------------ box calculator */
.calc { display: grid; gap: clamp(1.4rem,3vw,2.6rem); grid-template-columns: 1fr; }
@media (min-width: 860px) { .calc { grid-template-columns: 1fr 1fr; align-items: start; } }
.calc__field { margin-bottom: 1.1rem; }
.calc__field > span {
  display: block; font-family: var(--mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .07em; color: var(--ink-2); margin-bottom: .5rem;
}
.calc__seg { display: flex; flex-wrap: wrap; gap: .4rem; }
.calc__seg button {
  font-family: var(--mono); font-size: var(--step--1); padding: .6rem .9rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
  cursor: pointer; transition: all .2s ease;
}
.calc__seg button:hover { border-color: var(--deep); }
.calc__seg button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 700; }
.calc input[type="number"], .calc select {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--mono); font-size: var(--step-0); background: #fff; color: var(--ink);
}
.calc input:focus, .calc select:focus { outline: 2px solid var(--volt); outline-offset: 1px; border-color: transparent; }

.calc__out { background: var(--wash); border-radius: 18px; padding: clamp(1.3rem,3vw,2rem); position: sticky; top: 6rem; }
.calc__big { font-family: var(--display); font-weight: 900; font-stretch: 120%; font-size: clamp(2.4rem,7vw,4rem); line-height: .9; letter-spacing: -.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.calc__big small { font-family: var(--mono); font-size: var(--step-0); font-weight: 400; color: var(--ink-2); letter-spacing: 0; }
.calc__list { display: grid; gap: .1rem; margin-top: 1.4rem; }
.calc__list div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: var(--step-0); }
.calc__list div:last-child { border-bottom: 0; }
.calc__list dt, .calc__list span:first-child { color: var(--ink-2); }
.calc__list dd, .calc__list span:last-child { font-family: var(--mono); font-weight: 700; color: var(--ink); text-align: right; }
.calc__note { font-size: var(--step--1); color: var(--ink-2); line-height: 1.6; margin-top: 1.2rem; }
.calc__flag { display: inline-block; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; padding: .3rem .6rem; border-radius: 99px; margin-top: .8rem; }
.calc__flag--ok { background: rgba(0,224,90,.14); color: var(--deep); }
.calc__flag--warn { background: rgba(255,176,32,.16); color: #a86400; }

/* --------------------------------------------------- wiring visualizer */
.wiring { display: grid; gap: clamp(1.4rem,3vw,2.6rem); grid-template-columns: 1fr; }
@media (min-width: 860px) { .wiring { grid-template-columns: .9fr 1.1fr; } }
.wiring__stage { background: var(--wash); border-radius: 18px; padding: 1.4rem; display: flex; flex-direction: column; }
.wiring__stage svg { width: 100%; height: auto; display: block; }
.wiring__wire { stroke-dasharray: 6 5; animation: flow 1.1s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -22; } }
@media (prefers-reduced-motion: reduce) { .wiring__wire { animation: none; stroke-dasharray: none; } }
.wiring__load { font-family: var(--mono); text-align: center; margin-top: 1rem; }
.wiring__load b { font-family: var(--display); font-weight: 900; font-stretch: 118%; font-size: var(--step-3); display: block; line-height: 1; background: var(--sweep); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wiring__load span { font-size: var(--step--1); color: var(--ink-2); text-transform: uppercase; letter-spacing: .07em; }

/* ============================================================== FITMENT */
.fitment { background: var(--wash); padding-block: var(--band); }
.fitment__box { background: #fff; border-radius: 20px; padding: clamp(1.4rem,3.5vw,2.6rem); box-shadow: 0 20px 60px -30px rgba(11,15,13,.28); }
.fitment__row { display: grid; gap: .7rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .fitment__row { grid-template-columns: repeat(3, 1fr) auto; align-items: end; } }
.fitment__row select {
  width: 100%; padding: .85rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--body); font-size: var(--step-0); background: #fff; color: var(--ink);
}
.fitment__row select:disabled { opacity: .45; }
.fitment__result { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: var(--step-0); line-height: 1.6; }
.fitment__result:empty { display: none; }
.fitment__spec { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }

/* ======================================================= INSTALL GALLERY */
.builds { columns: 1; column-gap: clamp(.7rem,1.6vw,1.1rem); }
@media (min-width: 640px) { .builds { columns: 2; } }
@media (min-width: 1024px) { .builds { columns: 3; } }
.build {
  break-inside: avoid; margin-bottom: clamp(.7rem,1.6vw,1.1rem);
  border-radius: 16px; overflow: hidden; position: relative; display: block;
  background: var(--wash);
}
.build img, .build video { width: 100%; height: auto; display: block; transition: transform .7s cubic-bezier(.2,.9,.25,1); }
.build:hover img, .build:hover video { transform: scale(1.05); }
.build__cap {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem .95rem .95rem;
  background: linear-gradient(to top, rgba(11,15,13,.88), transparent);
  color: #fff; opacity: 0; transform: translateY(8px); transition: all .35s ease;
}
.build:hover .build__cap, .build:focus-visible .build__cap { opacity: 1; transform: none; }
.build__cap b { display: block; font-family: var(--display); font-weight: 800; font-stretch: 112%; font-size: var(--step-1); line-height: 1.1; }
.build__cap span { font-family: var(--mono); font-size: var(--step--1); color: rgba(255,255,255,.72); }
.build__play {
  position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .build img, .build video { transition: none; }
  .build:hover img, .build:hover video { transform: none; }
  .build__cap { opacity: 1; transform: none; }
}

/* ================================================ LANGUAGE + FINANCING */
.lang {
  display: inline-flex; align-items: center; gap: .25rem;
  border: 1.5px solid var(--line); border-radius: 99px; padding: .18rem; background: #fff;
}
.lang a {
  font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em;
  padding: .32rem .6rem; border-radius: 99px; color: var(--ink-2); text-decoration: none; transition: all .2s ease;
}
.lang a[aria-current="true"] { background: var(--ink); color: #fff; }
.lang a:hover:not([aria-current="true"]) { color: var(--ink); }

.finance {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-top: .9rem; padding: .8rem 1rem; border-radius: 12px;
  background: var(--wash); font-size: var(--step--1); color: var(--ink-2); line-height: 1.5;
}
.finance b { font-family: var(--mono); color: var(--ink); font-size: var(--step-0); }
.finance__logos { display: flex; gap: .45rem; margin-left: auto; }
.finance__logos span {
  font-family: var(--mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .07em;
  padding: .25rem .5rem; border-radius: 5px; background: #fff; border: 1px solid var(--line); color: var(--ink);
}

/* ------------------------------------------------------- PDP hear button */
.hear {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em;
  padding: .7rem 1.1rem; border-radius: 99px; cursor: pointer;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); transition: all .24s ease;
}
.hear:hover { border-color: var(--deep); color: var(--deep); }
.hear[aria-pressed="true"] { background: var(--sweep); border-color: transparent; color: var(--ink); font-weight: 700; }
.hear__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.hear[aria-pressed="true"] .hear__dot { animation: hear-pulse .7s ease-in-out infinite; }
@keyframes hear-pulse { 50% { opacity: .25; transform: scale(1.5); } }
@media (prefers-reduced-motion: reduce) { .hear__dot { animation: none !important; } }
 /* =========================================================
    SOUNDLABZ — HARD 3D CARD TILT
    ========================================================= */

.card {
  position: relative !important;
  transform-style: preserve-3d !important;
  perspective: 1200px !important;
  will-change: transform !important;

  /* JS controls these */
  --rx: 0deg;
  --ry: 0deg;
  --tz: 0px;
  --sx: 0px;
  --sy: 25px;

  transform:
    perspective(1200px)
    rotateX(var(--rx))
    rotateY(var(--ry))
    translateZ(var(--tz)) !important;

  transition:
    transform 0.12s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.25s ease !important;
}

/* Override your OLD .card:hover transform */
.card:hover {
  transform:
    perspective(1200px)
    rotateX(var(--rx))
    rotateY(var(--ry))
    translateZ(var(--tz)) !important;

  box-shadow:
    var(--sx) var(--sy) 45px -18px rgba(0,0,0,.45) !important;
}

/* Give internal pieces actual depth */
.card__media {
  transform-style: preserve-3d !important;
}

.card__media-link {
  transform-style: preserve-3d !important;
}

.card__media img {
  transform:
    translateZ(35px)
    scale(1) !important;

  transform-style: preserve-3d !important;
}

.card:hover .card__media img {
  transform:
    translateZ(40px)
    scale(1.06) !important;
}

.card__body {
  transform:
    translateZ(22px) !important;

  transform-style: preserve-3d !important;
}

.card__flags {
  transform:
    translateZ(45px) !important;
}

.card__quick {
  transform:
    translateZ(50px) !important;
}

/* Floating light */
.card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 50 !important;

  pointer-events: none !important;

  border-radius: inherit !important;

  background:
    radial-gradient(
      circle at var(--light-x, 50%) var(--light-y, 50%),
      rgba(255,255,255,.30) 0%,
      rgba(255,255,255,.12) 15%,
      transparent 45%
    ) !important;

  opacity: 0 !important;
  transition: opacity .2s ease !important;

  mix-blend-mode: screen !important;
}

.card.card-tilting::after {
  opacity: 1 !important;
}

/* Don't tilt on phones */
@media (hover: none), (pointer: coarse) {
  .card {
    transform: none !important;
  }

  .card::after {
    display: none !important;
  }
}
/* ============================================================
   SOUNDLABZ — 3D CART FLIGHT
   ============================================================ */

.sl-fly-product {
  position: fixed !important;

  z-index: 2147483647 !important;

  width: 110px !important;
  height: 110px !important;

  object-fit: contain !important;

  margin: 0 !important;
  padding: 0 !important;

  pointer-events: none !important;

  transform-origin: center center;

  will-change:
    left,
    top,
    width,
    height,
    transform,
    opacity;

  filter:
    drop-shadow(
      0 18px 22px rgba(0,0,0,.25)
    );

  background: transparent !important;

  border: 0 !important;
}


/* ------------------------------------------------------------
   CART SHAKE
   ------------------------------------------------------------ */

.sl-cart-shake {
  animation:
    sl-cart-impact .75s
    cubic-bezier(.2,.8,.2,1) !important;
}

@keyframes sl-cart-impact {

  0% {
    transform:
      translate3d(0,0,0)
      rotate(0deg)
      scale(1);
  }

  15% {
    transform:
      translate3d(-5px,-2px,0)
      rotate(-7deg)
      scale(1.12);
  }

  30% {
    transform:
      translate3d(6px,2px,0)
      rotate(7deg)
      scale(1.08);
  }

  45% {
    transform:
      translate3d(-4px,0,0)
      rotate(-5deg)
      scale(1.05);
  }

  60% {
    transform:
      translate3d(4px,0,0)
      rotate(4deg)
      scale(1.03);
  }

  75% {
    transform:
      translate3d(-2px,0,0)
      rotate(-2deg)
      scale(1.01);
  }

  100% {
    transform:
      translate3d(0,0,0)
      rotate(0deg)
      scale(1);
  }
}
/* =========================================================
   SOUNDLABZ — CART SHAKE
   ========================================================= */

.cart-shake {
  animation: soundlabz-cart-shake 0.8s cubic-bezier(.36,.07,.19,.97) both !important;
  transform-origin: center center !important;
}

@keyframes soundlabz-cart-shake {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  10% {
    transform: translate3d(-5px, 0, 0) rotate(-4deg);
  }

  20% {
    transform: translate3d(6px, 0, 0) rotate(4deg);
  }

  30% {
    transform: translate3d(-7px, 0, 0) rotate(-5deg);
  }

  40% {
    transform: translate3d(7px, 0, 0) rotate(5deg);
  }

  50% {
    transform: translate3d(-5px, 0, 0) rotate(-4deg);
  }

  60% {
    transform: translate3d(4px, 0, 0) rotate(3deg);
  }

  70% {
    transform: translate3d(-3px, 0, 0) rotate(-2deg);
  }

  80% {
    transform: translate3d(2px, 0, 0) rotate(1deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-shake {
    animation: none !important;
  }
}
/* =========================================================
   SOUNDLABZ — CATEGORY CARDS
   INSTANT PARALLAX + ZOOM + LIGHT SWEEP
   ========================================================= */

/* CARD */
.rack__tile {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;

  transform: translateZ(0) !important;

  border: 1px solid rgba(255,255,255,.10) !important;

  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    box-shadow .35s ease,
    border-color .25s ease !important;

  box-shadow:
    0 12px 30px rgba(0,0,0,.18);
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.rack__tile:hover {
  transform:
    translateY(-8px)
    scale(1.015) !important;

  border-color:
    rgba(170,255,0,.7) !important;

  box-shadow:
    0 25px 55px rgba(0,0,0,.35),
    0 0 35px rgba(170,255,0,.18);
}


/* =========================================================
   IMAGE
   IMPORTANT:
   NO TRANSITION ON TRANSFORM.
   This removes the delayed mouse-follow.
   ========================================================= */

.rack__tile > img {

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;

  transform:
    translate3d(
      calc(var(--sl-x, 0) * 22px),
      calc(var(--sl-y, 0) * 22px),
      0
    )
    scale(var(--sl-scale, 1))
    !important;

  transition:
    filter .4s ease !important;

  will-change:
    transform;
}


/* =========================================================
   HOVER IMAGE
   Zoom happens IMMEDIATELY.
   Parallax position also happens IMMEDIATELY.
   ========================================================= */

.rack__tile:hover > img {

  transform:
    translate3d(
      calc(var(--sl-x, 0) * 22px),
      calc(var(--sl-y, 0) * 22px),
      0
    )
    scale(1.10)
    !important;

  filter:
    saturate(1.15)
    contrast(1.06)
    brightness(.94);
}


/* =========================================================
   DARK CINEMATIC OVERLAY
   ========================================================= */

.rack__tile::after {

  transition:
    opacity .35s ease !important;
}

.rack__tile:hover::after {

  opacity:
    .68 !important;
}


/* =========================================================
   DIAGONAL LIGHT SWEEP
   ========================================================= */

.rack__tile::before {

  content: "";

  position: absolute;

  top: -60%;
  left: -110%;

  width: 48%;
  height: 220%;

  z-index: 10;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,.04) 20%,
      rgba(255,255,255,.55) 48%,
      rgba(170,255,0,.35) 55%,
      transparent 80%
    );

  transform:
    skewX(-25deg);

  opacity: 0;
}


/* Run light sweep on hover */

.rack__tile:hover::before {

  opacity: 1;

  animation:
    sl-category-sweep
    .8s
    cubic-bezier(.16,1,.3,1)
    forwards;
}


@keyframes sl-category-sweep {

  from {
    left: -110%;
  }

  to {
    left: 160%;
  }

}


/* =========================================================
   CURSOR SPOTLIGHT
   ========================================================= */

.rack__tile .sl-category-light {

  position: absolute;

  inset: 0;

  z-index: 9;

  pointer-events: none;

  opacity: 0;

  background:
    radial-gradient(
      circle 180px at
      calc(50% + var(--sl-x, 0) * 50%)
      calc(50% + var(--sl-y, 0) * 50%),

      rgba(255,255,255,.20),

      rgba(170,255,0,.08) 28%,

      transparent 68%
    );

  mix-blend-mode:
    screen;

  transition:
    opacity .2s ease;
}


.rack__tile:hover .sl-category-light {

  opacity:
    1;
}


/* =========================================================
   TEXT
   ========================================================= */

.rack__tile .rack__label {

  transition:
    transform .4s cubic-bezier(.16,1,.3,1) !important;
}


.rack__tile:hover .rack__label {

  transform:
    translateY(-10px) !important;
}


/* TITLE */

.rack__tile .rack__label h3 {

  transition:
    letter-spacing .35s ease,
    text-shadow .35s ease,
    color .25s ease !important;
}


.rack__tile:hover .rack__label h3 {

  color:
    #fff !important;

  letter-spacing:
    .02em;

  text-shadow:
    0 0 18px rgba(255,255,255,.3),
    0 0 30px rgba(170,255,0,.12);
}


/* SUBTITLE */

.rack__tile .rack__label small {

  transition:
    color .3s ease,
    transform .3s ease !important;
}


.rack__tile:hover .rack__label small {

  color:
    var(--volt) !important;

  transform:
    translateX(4px);
}


/* =========================================================
   ARROW
   ========================================================= */

.rack__tile .rack__arrow {

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .3s ease !important;
}


.rack__tile:hover .rack__arrow {

  transform:
    translateX(7px)
    scale(1.15)
    rotate(4deg) !important;

  box-shadow:
    0 0 0 5px rgba(170,255,0,.08),
    0 0 25px rgba(170,255,0,.45);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 759px) {

  .rack__tile:hover {

    transform:
      none !important;

    box-shadow:
      0 12px 30px rgba(0,0,0,.18);
  }

  .rack__tile:hover > img {

    transform:
      scale(1.03) !important;
  }

  .rack__tile::before {

    display:
      none;
  }

  .rack__tile .sl-category-light {

    display:
      none;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .rack__tile,
  .rack__tile > img,
  .rack__tile .rack__label,
  .rack__tile .rack__arrow {

    transition:
      none !important;

    animation:
      none !important;
  }

}
/* =========================================
   SOUNDLABZ HERO — CLEAN IMAGE BACKGROUND
   ========================================= */

.hero {
  position: relative !important;
  overflow: hidden !important;
  background: #0B0F0D !important;
}

/* Image layer */
.hero__stage {
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  z-index: 0 !important;
  pointer-events: none !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Remove circle */
.hero__disc {
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Image */
.hero__disc img {
  position: absolute !important;

  width: 100% !important;
  height: 100% !important;

  inset: 0 !important;

  display: block !important;

  /*
     IMPORTANT:
     contain = NO CROPPING
     NO STRETCHING
  */
  object-fit: contain !important;
  object-position: center center !important;

  border-radius: 0 !important;
}

/* Kill old circle / gradient effects */
.hero__disc::before,
.hero__disc::after,
.hero__stage::before,
.hero__stage::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Text stays above image */
.hero__content {
  position: relative !important;
  z-index: 5 !important;
}
/* BUILD A SYSTEM — white text */
.hero .btn--ghost {
  color: #FFFFFF !important;
}

.hero .btn--ghost:hover,
.hero .btn--ghost:focus,
.hero .btn--ghost:active {
  color: #FFFFFF !important;
}

.hero .btn--ghost svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
}
/* =========================================================
   SOUNDLABZ — UNIVERSAL BUTTON TEXT VISIBILITY
   Normal green = black text
   Black fill animation = white text
   DOES NOT CHANGE ANIMATIONS
   ========================================================= */

/* Normal state */
.btn--volt,
button.btn--volt,
a.btn--volt {
  color: #0B0F0D !important;
}

/* When the button's black-fill animation is active */
.btn--volt:hover,
.btn--volt:focus-visible,
.btn--volt:active,
button.btn--volt:hover,
button.btn--volt:focus-visible,
button.btn--volt:active,
a.btn--volt:hover,
a.btn--volt:focus-visible,
a.btn--volt:active {
  color: #FFFFFF !important;
}

/* Text inside buttons */
.btn--volt:hover *,
.btn--volt:focus-visible *,
.btn--volt:active * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* Icons */
.btn--volt:hover svg,
.btn--volt:focus-visible svg,
.btn--volt:active svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
  fill: none !important;
}


/* =========================================================
   UNIVERSAL ADD-TO-CART BUTTONS
   ========================================================= */

button[type="submit"]:hover,
.product-form__submit:hover,
.add-to-cart:hover,
.add-to-cart-button:hover {
  color: #FFFFFF !important;
}

button[type="submit"]:hover *,
.product-form__submit:hover *,
.add-to-cart:hover *,
.add-to-cart-button:hover * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

button[type="submit"]:hover svg,
.product-form__submit:hover svg,
.add-to-cart:hover svg,
.add-to-cart-button:hover svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
}


/* =========================================================
   KEEP BLACK BUTTONS WHITE
   ========================================================= */

.btn--dark,
.btn--black,
.btn--ink,
button.btn--dark,
button.btn--black,
button.btn--ink {
  color: #FFFFFF !important;
}

.btn--dark *,
.btn--black *,
.btn--ink * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}
/* =========================================================
   FLY TO CART — MOBILE FIX
   ========================================================= */

@media (max-width: 749px) {

  .fly-to-cart-clone {
    position: fixed !important;
    z-index: 999999 !important;

    pointer-events: none !important;

    margin: 0 !important;

    transform-origin: center center !important;

    will-change: transform, opacity !important;
  }

  .fly-to-cart-clone img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
  }
}
/* =========================================================
   MOBILE CART SHAKE
   ========================================================= */

@media screen and (max-width: 749px) {

  .cart-shake {
    animation: sl-mobile-cart-shake .65s cubic-bezier(.36,.07,.19,.97) both !important;
    transform-origin: center center !important;
  }

}

@keyframes sl-mobile-cart-shake {

  0% {
    transform: scale(1) rotate(0deg);
  }

  15% {
    transform: scale(1.18) rotate(-8deg);
  }

  30% {
    transform: scale(1.18) rotate(8deg);
  }

  45% {
    transform: scale(1.18) rotate(-6deg);
  }

  60% {
    transform: scale(1.12) rotate(5deg);
  }

  75% {
    transform: scale(1.08) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }

}
/* =========================================================
   SOUNDLABZ — RECOMMENDATIONS
========================================================= */

.sl-recommendations {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}


/* HEADER */

.sl-recommendations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sl-recommendations__header small {
  display: block;
  font-family: var(--mono, monospace);
  font-size: 9px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
}

.sl-recommendations__header h4 {
  margin: 4px 0 0;
  font-size: 14px;
  letter-spacing: .04em;
  color: #fff;
}


/* AUTO BADGE */

.sl-recommendations__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 8px;

  border: 1px solid rgba(0,224,90,.25);

  color: #00e05a;

  font-family: var(--mono, monospace);
  font-size: 8px;
  letter-spacing: .12em;

  background: rgba(0,224,90,.05);
}


/* RECOMMENDATION CARD */

.sl-recommendations__card {

  display: flex;
  align-items: center;
  gap: 14px;

  min-height: 76px;

  padding: 12px 14px;

  border: 1px solid rgba(255,255,255,.09);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.018)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025);

  transition:
    border-color .25s ease,
    background .25s ease,
    transform .25s ease;
}


/* GREEN GLOW WHEN ACTIVE */

.sl-recommendations__card:has(
  #sl-recommendation-1-{{ section.id }}:not(:empty)
) {
  border-color: rgba(0,224,90,.18);
}


/* ICON */

.sl-recommendations__visual {

  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,224,90,.25);

  background: rgba(0,224,90,.045);

  color: #00e05a;

  font-family: var(--mono, monospace);
  font-size: 20px;

}


/* CONTENT */

.sl-recommendations__content {
  min-width: 0;
}

.sl-recommendations__content small {

  display: block;

  margin-bottom: 4px;

  font-family: var(--mono, monospace);

  font-size: 8px;

  letter-spacing: .14em;

  color: rgba(255,255,255,.38);

  text-transform: uppercase;

}

.sl-recommendations__content strong {

  display: block;

  color: #fff;

  font-size: 12px;

  line-height: 1.3;

  font-weight: 600;

}

.sl-recommendations__content p {

  margin: 4px 0 0;

  color: rgba(255,255,255,.45);

  font-family: var(--mono, monospace);

  font-size: 9px;

  line-height: 1.45;

}
/* =====================================================
   SOUNDLABZ CART — KEEP CART BELOW ANNOUNCEMENT BAR
   ===================================================== */

#cart-drawer {
  position: fixed !important;
  z-index: 9999 !important;
}

/* Cart drawer header */
#cart-drawer .drawer__head {
  position: relative !important;
  z-index: 2 !important;
  padding-top: 24px !important;
}

/* Desktop */
@media screen and (min-width: 750px) {
  #cart-drawer .drawer__head {
    padding-top: 80px !important;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  #cart-drawer .drawer__head {
    padding-top: 78px !important;
  }
}
/* =========================================================
   SOUNDLABZ — MOBILE 100% WIDTH + HEADER FIX
   ========================================================= */

@media screen and (max-width: 749px) {

  /* FULL WIDTH WRAPPER */
  .wrap {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* HEADER */
  .header {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  .header .wrap {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  .header__bar {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Hide desktop navigation on mobile */
  .header .nav {
    display: none !important;
  }

  /* Logo is allowed to shrink */
  .header__logo {
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }

  /* Keep all header buttons visible */
  .header__tools {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
    gap: 4px !important;
  }

  /* Burger MUST remain visible */
  .header__tools .burger {
    display: flex !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Keep all icons compact on small screens */
  .header__tools .icon-btn {
    flex: 0 0 40px !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
  }

  /* Main content */
  #main {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  /* Do NOT use overflow:hidden here.
     Your reveal/parallax animations need transforms. */
}
/* ===== FINAL FOOTER WORDMARK TEST ===== */

.footer__mark {
  position: relative !important;
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;

  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  font-size: clamp(40px, 15vw, 153px) !important;
  line-height: .8 !important;

  letter-spacing: -.06em !important;
  white-space: nowrap !important;

  text-align: center !important;

  overflow: visible !important;

  transform: none !important;
  clip-path: none !important;

  box-sizing: border-box !important;
}

.footer > .wrap {
  overflow: visible !important;
}

.footer {
  overflow: visible !important;
}

@media screen and (max-width: 749px) {
  .footer__mark {
    font-size: 10vw !important;
    letter-spacing: -.07em !important;
  }
}
/* =========================================================
   FINAL FOOTER FIX — remove trailing space
   ========================================================= */

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

.footer {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.footer > .wrap {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Keep the giant SOUNDLABZ mark inside the footer */
.footer__mark {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 2.5rem 0 0 !important;
  padding: 0 !important;

  font-size: clamp(3rem, 15vw, 15rem) !important;
  line-height: .72 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-align: center !important;

  box-sizing: border-box !important;
}

/* Make sure no invisible element after footer creates space */
footer:last-of-type {
  margin-bottom: 0 !important;
}

footer:last-of-type::after {
  content: none !important;
}

/* Desktop */
@media (min-width: 900px) {
  .footer__mark {
    font-size: clamp(4rem, 14vw, 13rem) !important;
    line-height: .72 !important;
    margin-bottom: 0 !important;
  }
}

/* Mobile */
@media (max-width: 899px) {
  .footer {
    padding-bottom: 0 !important;
  }

  .footer__mark {
    font-size: clamp(3rem, 17vw, 7rem) !important;
    line-height: .72 !important;
    letter-spacing: -.07em !important;
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
  }
}
/* =========================================================
   SOUNDLABZ WORDMARK — DO NOT CROP
   ========================================================= */

.footer__mark {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;

  margin: 2.5rem 0 0 !important;
  padding: 0 0 .12em !important;

  box-sizing: border-box !important;

  font-family: var(--display) !important;
  font-weight: 900 !important;
  font-stretch: 100% !important;

  text-transform: uppercase !important;
  text-align: center !important;

  /* Smaller so the ENTIRE word fits */
  font-size: clamp(3.2rem, 11vw, 10.5rem) !important;

  /* Give the letters enough vertical room */
  line-height: 1 !important;

  /* Tight, but don't squeeze it into clipping */
  letter-spacing: -.055em !important;

  white-space: nowrap !important;

  color: transparent !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .16);

  overflow: visible !important;

  user-select: none;
  pointer-events: none;
}

/* Desktop */
@media (min-width: 900px) {
  .footer__mark {
    font-size: clamp(4rem, 10.5vw, 10.5rem) !important;
    line-height: 1 !important;
    letter-spacing: -.055em !important;
  }
}

/* Mobile */
@media (max-width: 899px) {
  .footer__mark {
    font-size: clamp(3rem, 15vw, 6rem) !important;
    line-height: 1 !important;
    letter-spacing: -.06em !important;
    padding-bottom: .15em !important;
  }
}
/* =========================================================
   MOBILE NAV — FULL SCREEN FROM TOP
   ========================================================= */

@media screen and (max-width: 759px) {

  #mobile-nav {
    position: fixed !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100dvh !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 999999 !important;

    overflow: hidden !important;
  }

  #mobile-nav .drawer__body {
    height: calc(100dvh - 70px) !important;
    max-height: none !important;
    overflow-y: auto !important;
  }

}
/* =========================================================
   GLOBAL BUTTON SHAPE — SQUARE CORNERS
   Keeps ALL existing button animations/effects
   ========================================================= */

.btn,
button,
input[type="submit"],
input[type="button"],
a.btn {
  border-radius: 0 !important;
}
/* =========================================================
   SOUNDLABZ — TIGHT HOMEPAGE SECTION SPACING
   Targets the ACTUAL .band wrapper
   ========================================================= */

.template-index .band {
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  padding-top: 32px !important;
  padding-bottom: 32px !important;
}


/* Category heading → category cards */
.template-index .band .band-head {
  margin-bottom: 18px !important;
}


/* Remove extra spacing from the wrapper */
.template-index .band > .wrap {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* Sections touching each other */
.template-index .band + .band {
  margin-top: 0 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 749px) {

  .template-index .band {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .template-index .band .band-head {
    margin-bottom: 14px !important;
  }

}
/* =========================================================
   SOUNDLABZ — MOBILE SIDE BREATHING ROOM
   KEEP VERTICAL SPACING — ADD HORIZONTAL ROOM ONLY
   ========================================================= */

@media (max-width: 749px) {

  /* Main section wrapper */
  .template-index .band > .wrap {
    width: 100% !important;
    max-width: none !important;

    padding-left: 16px !important;
    padding-right: 16px !important;

    box-sizing: border-box !important;
  }

  /* Section heading */
  .template-index .band-head {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Don't let large headings touch screen edges */
  .template-index .band-head .display {
    max-width: 100% !important;
    overflow-wrap: normal !important;
  }

  /* Category grid */
  .template-index .rack {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Individual category cards */
  .template-index .rack__tile {
    min-width: 0 !important;
  }

}
/* =========================================================
   SOUNDLABZ — SEARCH PANEL
   PREMIUM / COMPACT / RESPONSIVE
   ========================================================= */

.search-panel {
  position: fixed !important;

  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  width: 100% !important;
  max-width: none !important;

  /* COMPACT HEIGHT */
  max-height: 72vh !important;

  background:
    linear-gradient(
      180deg,
      #101512 0%,
      #0B0F0D 100%
    ) !important;

  color: #fff !important;

  border-bottom:
    1px solid rgba(170,255,0,.22) !important;

  box-shadow:
    0 18px 50px rgba(0,0,0,.35),
    0 1px 0 rgba(170,255,0,.08) !important;

  z-index: 1000000 !important;

  transform: translateY(-110%) !important;
  opacity: 0 !important;
  visibility: hidden !important;

  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    opacity .25s ease,
    visibility 0s linear .35s !important;

  display: flex !important;
  flex-direction: column !important;
}


/* =========================================================
   OPEN STATE
   ========================================================= */

.search-panel.is-open {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;

  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    opacity .2s ease !important;
}


/* =========================================================
   SEARCH BAR
   ========================================================= */

.search-panel__form {
  position: relative !important;

  width: 100% !important;
  max-width: 1180px !important;

  min-height: 88px !important;

  margin: 0 auto !important;

  padding:
    18px 28px !important;

  box-sizing: border-box !important;

  display: flex !important;
  align-items: center !important;

  gap: 18px !important;

  border-bottom:
    1px solid rgba(255,255,255,.08) !important;
}


/* =========================================================
   SEARCH INPUT
   ========================================================= */

.search-panel__form input {
  flex: 1 1 auto !important;

  min-width: 0 !important;

  width: 100% !important;

  height: 54px !important;

  padding: 0 !important;

  border: 0 !important;
  outline: none !important;

  background: transparent !important;

  color: #fff !important;

  font-family: var(--display) !important;

  font-weight: 800 !important;
  font-stretch: 100% !important;

  /* MUCH MORE CONTROLLED THAN BEFORE */
  font-size: clamp(1.25rem, 2.4vw, 2rem) !important;

  line-height: 1 !important;

  text-transform: uppercase !important;

  letter-spacing: -.035em !important;
}


/* PLACEHOLDER */

.search-panel__form input::placeholder {
  color: rgba(255,255,255,.30) !important;

  opacity: 1 !important;
}


/* FOCUS */

.search-panel__form input:focus {
  color: #fff !important;
}


/* =========================================================
   SEARCH ICON / BUTTON
   ========================================================= */

.search-panel__form button {
  flex: 0 0 auto !important;

  width: 42px !important;
  height: 42px !important;

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;

  border: 1px solid rgba(170,255,0,.25) !important;

  border-radius: 0 !important;

  background: rgba(170,255,0,.05) !important;

  color: #aaff00 !important;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease !important;
}

.search-panel__form button:hover {
  background: rgba(170,255,0,.12) !important;

  border-color:
    rgba(170,255,0,.65) !important;

  transform: scale(1.04) !important;
}

.search-panel__form button svg {
  width: 18px !important;
  height: 18px !important;

  color: currentColor !important;
  stroke: currentColor !important;
}


/* =========================================================
   RESULTS AREA
   ========================================================= */

.search-results {
  width: 100% !important;

  max-width: 1180px !important;

  margin: 0 auto !important;

  padding:
    12px 28px 22px !important;

  box-sizing: border-box !important;

  overflow-y: auto !important;

  max-height: 48vh !important;
}


/* RESULT */

.search-results a {
  display: grid !important;

  grid-template-columns:
    52px
    minmax(0, 1fr)
    auto !important;

  align-items: center !important;

  gap: 14px !important;

  padding: 8px !important;

  border:
    1px solid transparent !important;

  border-radius: 0 !important;

  color: #fff !important;

  transition:
    background .2s ease,
    border-color .2s ease !important;
}

.search-results a:hover {
  background:
    rgba(170,255,0,.045) !important;

  border-color:
    rgba(170,255,0,.12) !important;
}


/* RESULT IMAGE */

.search-results img {
  width: 52px !important;
  height: 52px !important;

  aspect-ratio: 1 !important;

  object-fit: contain !important;

  background:
    rgba(255,255,255,.05) !important;

  border:
    1px solid rgba(255,255,255,.08) !important;

  border-radius: 0 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .search-panel {
    max-height: 78vh !important;
  }

  .search-panel__form {

    min-height: 70px !important;

    padding:
      10px 16px !important;

    gap: 10px !important;
  }

  .search-panel__form input {

    height: 46px !important;

    font-size:
      clamp(1rem, 5vw, 1.35rem) !important;

    letter-spacing:
      -.025em !important;
  }

  .search-panel__form button {

    width: 38px !important;
    height: 38px !important;
  }

  .search-panel__form button svg {

    width: 16px !important;
    height: 16px !important;
  }

  .search-results {

    padding:
      8px 16px 16px !important;

    max-height: 58vh !important;
  }

  .search-results a {

    grid-template-columns:
      44px
      minmax(0,1fr)
      auto !important;

    gap: 10px !important;

    padding: 6px !important;
  }

  .search-results img {

    width: 44px !important;
    height: 44px !important;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media screen and (max-width: 380px) {

  .search-panel__form {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .search-panel__form input {
    font-size: 1rem !important;
  }

  .search-results {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .search-panel,
  .search-panel.is-open,
  .search-panel__form button,
  .search-results a {
    transition: none !important;
  }
}
/* =========================================================
   SOUNDLABZ — COMPACT FLOATING SEARCH
   ========================================================= */

.search-panel {
  top: 82px !important;
  left: 50% !important;
  right: auto !important;

  width: min(720px, calc(100vw - 32px)) !important;

  max-width: 720px !important;
  max-height: 60vh !important;

  transform:
    translate(-50%, -20px) !important;

  opacity: 0 !important;
  visibility: hidden !important;

  border:
    1px solid rgba(170,255,0,.20) !important;

  border-radius: 0 !important;

  box-shadow:
    0 25px 70px rgba(0,0,0,.45),
    0 0 35px rgba(170,255,0,.06) !important;
}


/* OPEN */

.search-panel.is-open {
  transform:
    translate(-50%, 0) !important;

  opacity: 1 !important;
  visibility: visible !important;
}


/* SEARCH FORM */

.search-panel__form {
  min-height: 64px !important;

  padding:
    10px 16px !important;

  gap: 12px !important;
}


/* INPUT */

.search-panel__form input {
  height: 42px !important;

  font-size:
    clamp(1rem, 2vw, 1.45rem) !important;
}


/* SEARCH BUTTON */

.search-panel__form button {
  width: 36px !important;
  height: 36px !important;
}


/* RESULTS */

.search-results {
  max-height: 40vh !important;

  padding:
    8px 16px 14px !important;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .search-panel {
    top: 70px !important;

    width:
      calc(100vw - 24px) !important;

    max-width: none !important;

    max-height: 65vh !important;
  }

  .search-panel__form {
    min-height: 58px !important;

    padding:
      8px 12px !important;
  }

  .search-panel__form input {
    height: 38px !important;

    font-size: 1rem !important;
  }

  .search-panel__form button {
    width: 34px !important;
    height: 34px !important;
  }

  .search-results {
    padding:
      6px 12px 12px !important;
  }
}
/* =========================================================
   SOUNDLABZ — SHOP BY BRAND DROPDOWN SCROLL
   ========================================================= */

/* Desktop navigation dropdown */
.nav__drop {
  max-height: 420px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* Scrollbar */
.nav__drop::-webkit-scrollbar {
  width: 5px;
}

.nav__drop::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
}

.nav__drop::-webkit-scrollbar-thumb {
  background: #00d555 !important;
}

.nav__drop::-webkit-scrollbar-thumb:hover {
  background: #00d555 !important;
}

/* Firefox */
.nav__drop {
  scrollbar-color: #00d555 rgba(255,255,255,.04) !important;
  scrollbar-width: thin;
}
/* =========================================================
   SOUNDLABZ — UNIVERSAL MOBILE SIDE GUTTER
   Consistent breathing room across the entire site
   ========================================================= */

@media screen and (max-width: 749px) {

  :root {
    --mobile-gutter: 16px;
  }

  /* Main content sections */
  #main > section > .wrap,
  #main > .section > .wrap,
  #main .band > .wrap,
  #main .wrap {
    width: calc(100% - (var(--mobile-gutter) * 2)) !important;
    max-width: none !important;
    margin-left: var(--mobile-gutter) !important;
    margin-right: var(--mobile-gutter) !important;
    box-sizing: border-box !important;
  }

  /* Product / collection content */
  .product .wrap,
  .product-page .wrap,
  .collection .wrap,
  .collection-page .wrap {
    width: calc(100% - (var(--mobile-gutter) * 2)) !important;
    max-width: none !important;
    margin-left: var(--mobile-gutter) !important;
    margin-right: var(--mobile-gutter) !important;
    box-sizing: border-box !important;
  }

  /* Category rack itself gets breathing room */
  .rack {
    width: 100% !important;
  }

  /* Footer content gets the same gutter */
  .footer > .wrap {
    width: calc(100% - (var(--mobile-gutter) * 2)) !important;
    max-width: none !important;
    margin-left: var(--mobile-gutter) !important;
    margin-right: var(--mobile-gutter) !important;
    box-sizing: border-box !important;
  }

  /* Keep giant footer wordmark from being squeezed by the gutter */
  .footer__mark {
    width: 100% !important;
  }
}
/* PRODUCT STICKY ADD TO CART — SCROLL BEHAVIOR */

@media (max-width: 760px) {
  .buybar {
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1) !important;
    will-change: transform;
  }

  .buybar.is-scroll-hidden {
    transform: translateY(calc(100% + 30px)) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
/* =========================================================
   SOUNDLABZ — CURSOR ENERGY TRAIL
   ========================================================= */

.sl-cursor-trail {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483646;

  background: var(--volt, #00e05a);

  box-shadow:
    0 0 8px rgba(0, 224, 90, .75),
    0 0 18px rgba(34, 195, 238, .35);

  transform: translate(-50%, -50%) scale(1);
  opacity: 0;

  transition:
    opacity .18s ease,
    transform .18s ease;

  will-change: left, top, transform, opacity;
}

.sl-cursor-trail.is-fast {
  transform: translate(-50%, -50%) scale(1.45);
}

.sl-cursor-trail:nth-child(2) {
  width: 6px;
  height: 6px;
  opacity: .65;
}

.sl-cursor-trail:nth-child(3) {
  width: 5px;
  height: 5px;
  opacity: .4;
}

.sl-cursor-trail:nth-child(4) {
  width: 4px;
  height: 4px;
  opacity: .22;
}

@media (max-width: 900px), (pointer: coarse) {
  .sl-cursor-trail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sl-cursor-trail {
    display: none !important;
  }
}
/* =========================================================
   SOUNDLABZ — CART IMPACT
========================================================= */

.cart-shake {
  animation: sl-cart-impact .42s cubic-bezier(.2,.9,.3,1);
}

@keyframes sl-cart-impact {

  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.28) rotate(-5deg);
  }

  60% {
    transform: scale(.92) rotate(4deg);
  }

  100% {
    transform: scale(1);
  }

}


/* Flying product must ALWAYS sit above the website */

.sl-fly-product {
  position: fixed !important;
  z-index: 2147483647 !important;
  pointer-events: none !important;

  display: block !important;
  visibility: visible !important;

  object-fit: contain !important;

  will-change:
    left,
    top,
    width,
    height,
    transform,
    opacity !important;
}
@media (max-width: 749px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  * {
    max-width: 100%;
  }

  img,
  video,
  iframe,
  canvas {
    max-width: 100% !important;
  }
}
/* =========================================================
   CATEGORY GRID — COMPACT RACK
   ========================================================= */

.rack {
  display: grid;
  gap: clamp(.7rem, 1.2vw, 1rem);
  grid-template-columns: repeat(2, 1fr);
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 760px) {
  .rack {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .rack {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Portrait cards */
.rack__tile {
  position: relative;
  display: block;

  aspect-ratio: 4 / 4.7;

  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}


/* Wide card stays wide */
.rack__tile--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 4.7;
}

@media (max-width: 759px) {
  .rack__tile--wide {
    aspect-ratio: 4 / 3;
  }
}


/* =========================================================
   SMALLER RACK TYPOGRAPHY
   ========================================================= */

.rack__label {
  padding: .9rem;
}

.rack__label h3 {
  font-size: clamp(.9rem, 1.65vw, 1.3rem);
}

.rack__label small {
  font-size: .58rem;
}


/* Smaller arrow */
.rack__arrow {
  width: 30px;
  height: 30px;
}
/* =========================================================
   CATEGORY GRID — DESKTOP HEADING SIZE
   ========================================================= */

@media (min-width: 760px) {
  .category-rack-section .band-head .display {
    font-size: 2.5rem !important;
    line-height: 1 !important;
  }

  .category-rack-section .band-head .eyebrow {
    font-size: .65rem !important;
  }
}
@media screen and (min-width: 760px) {

  /* CATEGORY RACK */
  .category-rack-section .rack {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 16px !important;

    width: 100% !important;
    max-width: none !important;
  }

  /* ALL NORMAL CARDS */
  .category-rack-section .rack__tile:not(.rack__tile--wide) {
    grid-column: auto !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    flex: none !important;
  }

  /* WIDE CARD */
  .category-rack-section .rack__tile--wide {
    grid-column: 1 / 7 !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    grid-row: 2 !important;

    flex: none !important;
  }

  /* Make sure old width rules don't interfere */
  .category-rack-section .rack__tile,
  .category-rack-section .rack__tile--wide {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

}
/* =========================================================
   MOBILE SCROLL REVEAL
   ========================================================= */

@media screen and (max-width: 759px) {

  [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity .7s ease,
      transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--d, 0ms);
  }

  [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }

}
/* =========================================================
   SOUNDLABZ — PREMIUM FEATURED PRODUCTS RAIL
   ========================================================= */

.rail {
  display: flex !important;
  flex-wrap: nowrap !important;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  gap: 18px !important;

  width: 100% !important;
  max-width: 100% !important;

  padding: 4px 2px 18px !important;

  box-sizing: border-box !important;

  scroll-behavior: smooth;
  scroll-snap-type: x proximity;

  -webkit-overflow-scrolling: touch;

  /* Premium scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(0,224,90,.45) transparent;
}


/* =========================================================
   PREMIUM SCROLLBAR
   ========================================================= */

.rail::-webkit-scrollbar {
  height: 4px;
}

.rail::-webkit-scrollbar-track {
  background: rgba(0,0,0,.05);
  border-radius: 999px;
}

.rail::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    #00b84a,
    #00e05a
  );

  border-radius: 999px;

  box-shadow:
    0 0 8px rgba(0,224,90,.25);
}

.rail::-webkit-scrollbar-thumb:hover {
  background: #00e05a;
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

.rail > * {
  flex: 0 0 calc((100% - 54px) / 4) !important;

  min-width: 0 !important;

  scroll-snap-align: start;

  transition:
    transform .3s ease,
    filter .3s ease;
}


/* =========================================================
   DESKTOP — SUBTLE PREMIUM HOVER
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

  .rail > *:hover {
    transform: translateY(-3px);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {

  .rail {

    gap: 14px !important;

    padding:
      3px 1px 12px !important;

    scrollbar-width: none;

    scroll-snap-type: x mandatory;

  }

  .rail::-webkit-scrollbar {
    display: none;
  }


  .rail > * {

    flex: 0 0 78% !important;

    scroll-snap-align: start;

  }

}
.gallery--single .gallery__main {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.gallery--single .gallery__main img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
