/** Shopify CDN: Minification failed

Line 1540:0 Unexpected "}"

**/
/* ================================================================
   WSH Header / Navigation — Horizon WSH Build
   Scoped under [data-wsh-nav] wrapper. Safe to coexist with
   Horizon's default header.css.
   ================================================================ */

/* --------------------------------------------------------------
   1. Design tokens (nav-specific)
   -------------------------------------------------------------- */

/* Header background: grounding cream #E5DCC2 (tone separation from page #F0E8D5, no divider line).
   Overrides Horizon's inline --color-scheme-top-row from scheme-1. */
/* Default (idle): grounding cream #E5DCC2 — header reads as its own band */
header-component {
  --color-scheme-top-row: rgba(229, 220, 194, 1) !important;
  --color-scheme-bottom-row: rgba(229, 220, 194, 1) !important;
}

/* Active (mega menu open): page cream #F0E8D5 — header matches the dropdown */
header-component:has(.menu-list__link[aria-expanded='true']) {
  --color-scheme-top-row: rgba(240, 232, 213, 1) !important;
  --color-scheme-bottom-row: rgba(240, 232, 213, 1) !important;
}

/* Neutralize Horizon's `[data-transparent-color-scheme='top'|'both']:hover
   :is(.header__underlay-*)` rule (sections/header.liquid:626-644) that
   overrides ONLY the top-row band on the underlay when any part of the
   header is hovered without a link being aria-expanded. WSH's !important
   on header-component doesn't reach the underlay's own cascade — the
   Horizon rule wins there, producing a two-tone split (page-cream top
   band vs grounding-cream bottom band). Force the underlay to always
   inherit both bands from header-component so WSH's parent-scoped
   scheme rules govern uniformly. */
.header__underlay-closed,
.header__underlay-open {
  --color-scheme-top-row: inherit !important;
  --color-scheme-bottom-row: inherit !important;
}

[data-wsh-nav] {
  --wsh-bg-utility: #1A1410;
  --wsh-text-utility: #F0E8D5;
  --wsh-bg-main: #F0E8D5;
  --wsh-text-main: #1A1410;
  --wsh-text-muted: #5A4A3D;
  --wsh-text-subtle: #8C7A68;
  --wsh-border: 0.5px solid rgba(26, 20, 16, 0.10);
  --wsh-border-light: 0.5px solid rgba(26, 20, 16, 0.10);
  --wsh-bg-hover: #E5DCC2;

  --wsh-card-scrim: linear-gradient(
    to top,
    rgba(26, 20, 16, 0.88) 0%,
    rgba(26, 20, 16, 0.42) 50%,
    rgba(26, 20, 16, 0.10) 78%
  );
  --wsh-pill-bg: rgba(240, 232, 213, 0.1);
  --wsh-pill-border: 0.5px solid rgba(240, 232, 213, 0.4);
  --wsh-pill-text: rgba(240, 232, 213, 0.92);

  --wsh-util-height: 32px;
  --wsh-main-height: 60px;
  --wsh-mega-padding: 28px;
  --wsh-mega-max-width: 1400px;
  --wsh-card-gap: 12px;

  --wsh-radius-sm: 4px;
  --wsh-radius-pill: 999px;
}

/* --------------------------------------------------------------
   2. Utility bar
   -------------------------------------------------------------- */
.wsh-utility-bar {
  background: var(--wsh-bg-utility);
  color: var(--wsh-text-utility);
  height: var(--wsh-util-height);
  display: flex;
  align-items: center;
  font-family: var(--font-mono--family, 'JetBrains Mono', monospace);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  overflow: hidden;
  transition: height 200ms ease, opacity 200ms ease;
}

.wsh-utility-bar__inner {
  max-width: var(--wsh-mega-max-width);
  margin: 0 auto;
  padding: 0 var(--wsh-mega-padding);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.wsh-utility-bar__left {
  display: flex;
  gap: 18px;
  justify-self: start;
}

.wsh-utility-bar__left a {
  color: var(--wsh-text-utility);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 150ms ease;
}

.wsh-utility-bar__left a:hover {
  opacity: 1;
}

.wsh-utility-bar__center {
  justify-self: center;
  opacity: 0.75;
  white-space: nowrap;
}

.wsh-utility-bar__center .dot {
  margin: 0 8px;
  opacity: 0.5;
}

.wsh-utility-bar__right {
  justify-self: end;
  opacity: 0.85;
}

/* Scrolled state — utility collapses */
[data-wsh-nav].is-scrolled .wsh-utility-bar {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* Hidden on mobile */
@media (max-width: 767px) {
  .wsh-utility-bar {
    display: none;
  }
}

/* --------------------------------------------------------------
   3. Mega-menu panel container (overrides Horizon's grid)
   -------------------------------------------------------------- */
.wsh-mega-panel {
  max-width: var(--wsh-mega-max-width);
  margin: 0 auto;
  padding: 20px var(--wsh-mega-padding) 22px;
  width: 100%;
  font-family: var(--font-body--family, 'Inter', sans-serif);
}

/* Neutralize the Horizon mega-menu grid when we're rendering a WSH menu */
.mega-menu__grid:has(.wsh-mega-panel) {
  display: block;
  padding: 0;
}

/* --------------------------------------------------------------
   3b. Force WSH submenus to render their FULL content height.

   Horizon applies `content-visibility: auto; contain-intrinsic-size: 0 500px;`
   to `.menu-list__submenu` as a performance optimization. That 500px
   placeholder causes Horizon's JS (which reads `submenu.offsetHeight` to
   set `--submenu-height`) to under-measure our taller mega panels, which
   then get clipped to ~500px of visible area — hiding the mood strip
   and the bottom row of cards.

   Override both the content-visibility and the intrinsic-size for list
   items that contain our panels, so the measured offsetHeight matches
   the real content height.
   -------------------------------------------------------------- */
.menu-list__list-item--wsh-mega .menu-list__submenu,
.menu-list__list-item:has(.wsh-mega-panel) .menu-list__submenu {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
  contain: none !important;
}

.menu-list__list-item--wsh-mega .menu-list__submenu-inner,
.menu-list__list-item:has(.wsh-mega-panel) .menu-list__submenu-inner {
  min-height: max-content;
}

/* --------------------------------------------------------------
   4. Genres + Drum-genres mega menus — 4x2 card grid

   Two menus share the same visual system (image-overlay cards +
   glass pills). Drums has no mood strip. Guitars still uses the
   legacy 3-column text layout at .wsh-mega-drums__grid (§7a).
   -------------------------------------------------------------- */
.wsh-mega-genres__grid,
.wsh-mega-drum-genres__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* --------------------------------------------------------------
   5. Card system (shared between genre + featured cards)
   -------------------------------------------------------------- */
.wsh-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--wsh-radius-sm);
  overflow: hidden;
  background: #1A1410;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #F0E8D5;
  transition: transform 200ms ease;
  isolation: isolate;
}

.wsh-card:hover {
  transform: scale(1.01);
}

.wsh-card__scrim {
  position: absolute;
  inset: 0;
  background: var(--wsh-card-scrim);
  transition: background 200ms ease;
  z-index: 1;
}

.wsh-card:hover .wsh-card__scrim {
  background: linear-gradient(
    to top,
    rgba(26, 20, 16, 0.85) 0%,
    rgba(26, 20, 16, 0.38) 50%,
    rgba(26, 20, 16, 0.05) 78%
  );
}

.wsh-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 44px;
  z-index: 2;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 232, 213, 0.92);
}

.wsh-card__arrow {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 0.5px solid rgba(240, 232, 213, 0.45);
  background: rgba(26, 20, 16, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F0E8D5;
  font-size: 12px;
  line-height: 1;
  opacity: 0.9;
  transition: opacity 200ms ease;
}

.wsh-card:hover .wsh-card__arrow {
  opacity: 1;
}

.wsh-card__bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.wsh-card__name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin-bottom: 10px;
  color: #F0E8D5;
}

.wsh-card__pills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.wsh-pill {
  display: inline-block;
  padding: 3px 7px;
  background: var(--wsh-pill-bg);
  border: var(--wsh-pill-border);
  color: var(--wsh-pill-text);
  border-radius: var(--wsh-radius-pill);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
}

/* --------------------------------------------------------------
   6. Featured card (variant of .wsh-card)
   -------------------------------------------------------------- */
.wsh-card--featured {
  background-color: #1A1410;
  background-image: linear-gradient(135deg, #1A1410 0%, #2A2018 100%);
}

.wsh-card--featured .wsh-card__feat-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wsh-feat-tag {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 232, 213, 0.92);
}

.wsh-feat-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-top: auto;
  margin-bottom: 8px;
  color: #F0E8D5;
}

.wsh-feat-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 232, 213, 0.9);
  position: relative;
  display: inline-block;
}

.wsh-card--featured:hover .wsh-feat-cta {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------
   7. Mood strip — MOVED to wsh-mood-strip.css (surface-agnostic)
   Mega-menu-specific overrides remain here.
   -------------------------------------------------------------- */
.wsh-mega-panel .wsh-mood-strip {
  margin-top: 16px;
  padding-top: 10px;
  border-top: var(--wsh-border);
}

/* --------------------------------------------------------------
   7a. Legacy 3-column text mega — Guitars only.
   (Drums moved to image-card system in §4; Bundles uses its own
   .wsh-mega-bundles__grid in §7a-iii. Class name kept to avoid
   churning the Guitars snippet.)
   -------------------------------------------------------------- */
.wsh-mega-drums__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 40px;
  align-items: start;
}

.wsh-mega-col__heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wsh-text-muted);
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: var(--wsh-border);
}

.wsh-mega-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Link micro-interaction: underline-draw on hover/focus.
   Underline via background-image gradient — 0-width at rest → 100% on hover.
   Mirrors the footer pattern (wsh-footer.css). currentColor keeps the underline
   dark on the cream mega-menu panel with no hardcoded value. */
.wsh-mega-col__link {
  display: inline;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--wsh-text-main);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  padding-bottom: 2px;
}

/* Scoped one level deeper (.wsh-mega-panel ancestor) to beat Horizon's
   compiled `.header a { transition: color, border-color }` rule (0,1,1). */
@media (prefers-reduced-motion: no-preference) {
  .wsh-mega-panel .wsh-mega-col__link {
    transition: background-size 0.25s ease;
  }
}

.wsh-mega-panel .wsh-mega-col__link:hover,
.wsh-mega-panel .wsh-mega-col__link:focus-visible {
  background-size: 100% 1px;
  outline: none;
}

/* "Shop all" / "All bundles" emphasized link. When it's at the BOTTOM of the
   list, add a hairline top-border separator. When it's the FIRST item (e.g.
   "All bundles →" in the Bundles mega menu), suppress the separator so we
   don't get a double divider beneath the column heading's border-bottom. */
.wsh-mega-col__item--shop-all {
  margin-top: 8px;
  padding-top: 10px;
  border-top: var(--wsh-border-light);
}

.wsh-mega-col__item--shop-all:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.wsh-mega-col__link--emphasized {
  font-weight: 500;
  font-size: 13.5px;
}

.wsh-mega-col__link--emphasized span {
  opacity: 0.6;
  margin-left: 2px;
}

/* Tall featured card variant (used in Drums/Bundles right column) — 3:4 portrait */
.wsh-card--tall {
  aspect-ratio: 3 / 4;
}

/* --------------------------------------------------------------
   7a-iii. Bundles mega menu — full-width 3-column with BYOB builder visual
   -------------------------------------------------------------- */
.wsh-mega-bundles__grid {
  display: grid;
  /* minmax(0, X) is critical — without the 0 min, CSS Grid's default
     min-width:auto lets each cell grow to min-content (can exceed 340px
     if anything inside wants more), which pushes the subtitle past the
     divider. minmax(0, 340px) forces a hard 340px ceiling. */
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: start;
}

.wsh-mega-col--byob {
  padding-right: 20px;
  border-right: var(--wsh-border-light);
  min-width: 0;
  overflow: hidden;
}

.wsh-byob-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wsh-text-muted);
  margin-bottom: 4px;
  max-width: 290px;
}

.wsh-byob-title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--wsh-text-main);
  text-decoration: none;
  margin: 0 0 6px;
  max-width: 290px;
  transition: opacity 150ms ease;
}

.wsh-byob-title:hover {
  opacity: 0.7;
}

.wsh-byob-copy {
  display: block;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wsh-text-muted);
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Discount tier cards — 3 in a row */
.wsh-byob-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.wsh-byob-tier {
  border: var(--wsh-border);
  border-radius: var(--wsh-radius-sm);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #F0E8D5;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

/* Per-tier hover — black fill + inverted text (matches real bundle builder) */
.wsh-byob-tier:hover {
  background: var(--wsh-text-main);
  border-color: var(--wsh-text-main);
}

.wsh-byob-tier:hover .wsh-byob-tier__pct {
  color: #F0E8D5;
}

.wsh-byob-tier:hover .wsh-byob-tier__packs {
  color: rgba(240, 232, 213, 0.8);
}

.wsh-byob-tier__pct {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--wsh-text-main);
  transition: color 150ms ease;
}

.wsh-byob-tier__packs {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wsh-text-subtle);
  margin-top: 3px;
  transition: color 150ms ease;
}

/* Slot placeholders — compact, dashed, non-interactive */
.wsh-byob-slots {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.wsh-byob-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px dashed rgba(26, 20, 16, 0.15);
  border-radius: var(--wsh-radius-sm);
  background: #F0E8D5;
}

.wsh-byob-slot__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F0E8D5;
  color: var(--wsh-text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}

.wsh-byob-slot__label {
  flex: 1;
  font-size: 11.5px;
  color: var(--wsh-text-subtle);
}

.wsh-byob-slot__caret {
  font-size: 10px;
  color: var(--wsh-text-subtle);
  flex-shrink: 0;
}

/* CTA button — solid black pill */
.wsh-byob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  background: var(--wsh-text-main);
  color: #F0E8D5;
  border-radius: var(--wsh-radius-sm);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 150ms ease, transform 150ms ease;
}

.wsh-byob-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------
   7b. Shop by DAW mega menu
   -------------------------------------------------------------- */
.wsh-mega-daw__intro {
  max-width: 560px;
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wsh-text-muted);
}

.wsh-mega-daw__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.wsh-daw-card {
  aspect-ratio: 3 / 2;
  background: #F0E8D5;
  border: var(--wsh-border);
  border-radius: var(--wsh-radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--wsh-text-main);
  text-align: center;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.wsh-daw-card:hover {
  background: #F0E8D5;
  border-color: var(--wsh-text-main);
  transform: translateY(-1px);
}

.wsh-daw-card__logo {
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 2px;
}

.wsh-daw-card__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.wsh-daw-card__ext {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--wsh-text-subtle);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* Placeholder state for DAWs without a dedicated collection — still clickable
   (routes to /collections/all), just visually subdued so it's clear it's WIP. */
.wsh-daw-card--placeholder {
  opacity: 0.72;
}

.wsh-daw-card--placeholder:hover {
  opacity: 1;
}

/* --------------------------------------------------------------
   7c. Discovery dropdown — panel-is-the-experience
   -------------------------------------------------------------- */
.wsh-disc-intro {
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: var(--wsh-border);
}

.wsh-disc-intro__heading {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--wsh-text-main);
  margin-bottom: 4px;
}

.wsh-disc-intro__copy {
  margin: 0;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wsh-text-muted);
  max-width: 560px;
}

.wsh-disc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.wsh-disc-card {
  display: block;
  border: var(--wsh-border);
  border-radius: var(--wsh-radius-sm);
  background: #F0E8D5;
  text-decoration: none;
  color: var(--wsh-text-main);
  overflow: hidden;
  transition: border-color 150ms ease, transform 150ms ease;
}

.wsh-disc-card:hover {
  border-color: var(--wsh-text-main);
  transform: translateY(-1px);
}

.wsh-disc-card__thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #1A1410, #2A2018);
  overflow: hidden;
}

.wsh-disc-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wsh-disc-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(26, 20, 16, 0.65);
  color: #F0E8D5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, transform 150ms ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.wsh-disc-card__play svg {
  margin-left: 2px;
}

.wsh-disc-card__play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

.wsh-disc-card:hover .wsh-disc-card__play {
  background: rgba(26, 20, 16, 0.85);
  transform: translate(-50%, -50%) scale(1.05);
}

.wsh-disc-card .play__audio.wsh-disc-card__play {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
}

.wsh-disc-card__body {
  padding: 10px 12px 12px;
}

.wsh-disc-card__name {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.wsh-disc-card__price {
  font-size: 10.5px;
  color: var(--wsh-text-subtle);
}

.wsh-disc-card__price b {
  color: var(--wsh-text-main);
  font-weight: 600;
}

.wsh-disc-card__strike {
  margin-left: 6px;
  text-decoration: line-through;
  color: var(--wsh-text-subtle);
}

.wsh-disc-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: var(--wsh-border);
  text-align: right;
}

.wsh-disc-view-all {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wsh-text-main);
  text-decoration: none;
  transition: opacity 150ms ease;
}

.wsh-disc-view-all:hover {
  opacity: 0.65;
}

.wsh-disc-empty {
  padding: 32px 0;
  text-align: center;
  color: var(--wsh-text-muted);
  font-size: 13px;
}

/* --------------------------------------------------------------
   8. Tablet responsive — Genres 3x2 + drop featured cards
   -------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .wsh-mega-genres__grid,
  .wsh-mega-drum-genres__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wsh-mega-genres__grid .wsh-card--featured,
  .wsh-mega-drum-genres__grid .wsh-card--featured {
    display: none;
  }
  /* DAW grid — wrap to 4 + 3 on tablet */
  .wsh-mega-daw__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------
   9. Mobile — hide desktop mega menus, show mobile card grid in drawer
   -------------------------------------------------------------- */
@media (max-width: 767px) {
  .wsh-mega-panel {
    display: none;
  }

  /* Mobile nav drawer hairline edge — matches cart drawer Batch 5 treatment */
  .menu-drawer-container {
    border-right: 0.5px solid rgba(26, 20, 16, 0.10);
  }

  /* Fix drawer submenu top padding + z-index for all WSH panels */
  [id^="link-wsh-"].menu-drawer__submenu {
    padding-top: 0;
    z-index: 10;
    background-color: var(--color-background, #F0E8D5);
  }
  [id^="link-wsh-"] .menu-drawer__inner-submenu {
    margin-top: 0;
    padding-top: 0;
  }

  /* Mobile Genres card grid (§4 of Mobile Genres Spec) */
  .wsh-mobile-genres {
    display: block;
    font-family: var(--font-body--family, 'Inter', sans-serif);
  }

  .wsh-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px;
  }

  .wsh-mcard {
    aspect-ratio: 4/5;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    color: #F0E8D5;
    display: block;
    text-decoration: none;
  }

  .wsh-mcard-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wsh-mcard-scrim {
    position: absolute;
    inset: 0;
    /* Match desktop scrim exactly — single source of truth in --wsh-card-scrim
       (§1 tokens). Prior mobile stops were ~10-14 opacity points lighter. */
    background: var(--wsh-card-scrim);
  }

  .wsh-mcard-top {
    position: absolute;
    top: 8px;
    left: 10px;
    right: 30px;
    z-index: 1;
  }

  .wsh-mcard-tag {
    font-size: 8px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .wsh-mcard-arrow {
    position: absolute;
    top: 7px;
    right: 8px;
    z-index: 1;
    width: 18px;
    height: 18px;
    border: 0.5px solid rgba(240, 232, 213, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    opacity: 0.9;
    background: rgba(26, 20, 16, 0.25);
    line-height: 1;
  }

  .wsh-mcard-bottom {
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    z-index: 1;
  }

  .wsh-mcard-name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin-bottom: 5px;
  }

  .wsh-mcard-pills {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
  }

  .wsh-mpill {
    padding: 2px 5px;
    font-size: 7.5px;
    letter-spacing: 0.02em;
    border: 0.5px solid rgba(240, 232, 213, 0.4);
    background: rgba(240, 232, 213, 0.1);
    border-radius: 999px;
    color: rgba(240, 232, 213, 0.92);
    white-space: nowrap;
  }

  /* Featured card mobile */
  .wsh-mcard--featured {
    background: linear-gradient(140deg, #1a1510 0%, #2e261c 100%);
  }

  .wsh-mcard-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, #1a1510 0%, #2e261c 100%);
  }

  .wsh-mcard-feat-body {
    position: absolute;
    inset: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
  }

  .wsh-mcard-feat-tag {
    font-size: 8px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    opacity: 0.72;
    font-weight: 500;
    margin-bottom: 3px;
  }

  .wsh-mcard-feat-title {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 5px;
  }

  .wsh-mcard-feat-cta {
    font-size: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-top: 0.5px solid rgba(240, 232, 213, 0.35);
    padding-top: 5px;
  }

  /* Mobile mood strip — 6 moods */
  .wsh-mobile-moods {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 6px 4px;
    margin-top: 8px;
    border-top: 0.5px solid rgba(26, 20, 16, 0.10);
  }

  .wsh-mobile-moods-label {
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5A4A3D;
    font-weight: 500;
    white-space: nowrap;
  }

  .wsh-mobile-moods-row {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: space-around;
  }

  .wsh-mobile-mood {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: #1A1410;
    /* 44px minimum tap target */
    padding: 11px 6px;
    margin: -11px -6px;
  }

  .wsh-mobile-mood-icon {
    width: 22px;
    height: 22px;
    background: #1A1410;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wsh-mobile-mood-icon svg {
    width: 11px;
    height: 11px;
    stroke: #F0E8D5;
    stroke-width: 1.6;
    fill: none;
  }

  .wsh-mobile-mood-svg {
    width: 11px;
    height: 11px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .wsh-mobile-mood-name {
    font-size: 7px;
    color: #5A4A3D;
    letter-spacing: 0.02em;
  }
}

  /* ---- Level 1 drawer: tighten menu items so cards + currency fit without scroll ---- */
  .menu-drawer__menu.has-submenu > .menu-drawer__list-item {
    min-height: 40px;
  }
  .menu-drawer__menu-item--mainlist {
    min-height: 40px !important;
    padding-block: 2px !important;
  }

  /* ---- Level 1 drawer: Shop All + Build Bundle featured cards ---- */
  .wsh-drawer-featured-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 4px 16px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }

  /* Slightly taller cards — 1:1 gives more room for text while still fitting */
  .wsh-drawer-featured-cards .wsh-mcard {
    aspect-ratio: 1/1;
  }

  /* Collapse the gap between cards and currency selector */
  .wsh-drawer-featured-cards + .menu-drawer__utility-links {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  /* ---- Structured link lists (Drums, Guitars, Bundles) ---- */
  .wsh-mobile-links {
    padding: 0 16px;
    font-family: var(--font-body--family, 'Inter', sans-serif);
  }

  .wsh-mobile-links__section {
    margin-bottom: 8px;
  }

  .wsh-mobile-links__header {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8C7A68;
    padding: 16px 0 8px;
    border-top: 0.5px solid rgba(26, 20, 16, 0.10);
  }

  .wsh-mobile-links__section:first-child .wsh-mobile-links__header {
    border-top: none;
    padding-top: 6px;
  }

  .wsh-mobile-links__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .wsh-mobile-links__item {
    border-bottom: 0.5px solid #f5f4f0;
  }

  .wsh-mobile-links__item:last-child {
    border-bottom: none;
  }

  .wsh-mobile-links__link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    color: #1A1410;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .wsh-mobile-links__link--emphasized {
    font-weight: 500;
  }

  .wsh-mobile-links__footer {
    padding: 12px 0 8px;
    border-top: 0.5px solid rgba(26, 20, 16, 0.10);
    margin-top: 4px;
  }

  .wsh-mobile-links__shop-all {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #8C7A68;
    text-decoration: none;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .wsh-mobile-links__shop-all span {
    margin-left: 4px;
  }

  /* ---- BYOB card (Bundles drawer) ---- */
  .wsh-mobile-bundles {
    font-family: var(--font-body--family, 'Inter', sans-serif);
  }

  .wsh-mobile-byob {
    display: block;
    margin: 8px 16px 0;
    padding: 16px;
    background: #F0E8D5;
    border: 0.5px solid rgba(26, 20, 16, 0.10);
    border-radius: 4px;
    text-decoration: none;
    color: #1A1410;
  }

  .wsh-mobile-byob__tag {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8C7A68;
    margin-bottom: 4px;
  }

  .wsh-mobile-byob__title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .wsh-mobile-byob__copy {
    font-size: 12px;
    color: #8C7A68;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .wsh-mobile-byob__tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }

  .wsh-mobile-byob__tier {
    border: 0.5px solid rgba(26, 20, 16, 0.10);
    border-radius: 4px;
    padding: 8px 4px;
    text-align: center;
  }

  .wsh-mobile-byob__pct {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }

  .wsh-mobile-byob__packs {
    display: block;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8C7A68;
    margin-top: 3px;
  }

  .wsh-mobile-byob__cta {
    display: block;
    width: 100%;
    padding: 11px 16px;
    background: #1A1410;
    color: #F0E8D5;
    border-radius: 4px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ---- DAW card grid ---- */
  .wsh-mobile-daw {
    padding: 8px 16px;
    font-family: var(--font-body--family, 'Inter', sans-serif);
  }

  .wsh-mobile-daw__intro {
    margin-bottom: 16px;
  }

  .wsh-mobile-daw__headline {
    font-size: 15px;
    font-weight: 500;
    color: #1A1410;
    margin-bottom: 4px;
  }

  .wsh-mobile-daw__copy {
    font-size: 12px;
    color: #8C7A68;
    line-height: 1.4;
    margin: 0;
  }

  .wsh-mobile-daw__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .wsh-mobile-daw__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 8px;
    border: 0.5px solid rgba(26, 20, 16, 0.10);
    border-radius: 4px;
    background: #F0E8D5;
    text-decoration: none;
    color: #1A1410;
    text-align: center;
    min-height: 80px;
  }

  .wsh-mobile-daw__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .wsh-mobile-daw__icon-placeholder {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wsh-mobile-daw__name {
    font-size: 12px;
    font-weight: 500;
  }

  .wsh-mobile-daw__ext {
    font-size: 10px;
    color: #8C7A68;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
  }

  /* ---- Discovery product cards ---- */
  .wsh-mobile-discovery {
    padding: 8px 16px;
    font-family: var(--font-body--family, 'Inter', sans-serif);
  }

  .wsh-mobile-discovery__intro {
    margin-bottom: 16px;
  }

  .wsh-mobile-discovery__headline {
    font-size: 15px;
    font-weight: 500;
    color: #1A1410;
    margin-bottom: 4px;
  }

  .wsh-mobile-discovery__copy {
    font-size: 12px;
    color: #8C7A68;
    line-height: 1.4;
    margin: 0;
  }

  .wsh-mobile-discovery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .wsh-mobile-discovery__card {
    display: block;
    border: 0.5px solid rgba(26, 20, 16, 0.10);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: #1A1410;
    background: #F0E8D5;
  }

  .wsh-mobile-discovery__thumb {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #1A1410, #2A2018);
    overflow: hidden;
  }

  .wsh-mobile-discovery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .wsh-mobile-discovery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(26, 20, 16, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .wsh-mobile-discovery__play svg {
    margin-left: 2px;
  }

  .wsh-mobile-discovery__info {
    padding: 8px 10px 10px;
  }

  .wsh-mobile-discovery__name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3px;
  }

  .wsh-mobile-discovery__price {
    font-size: 12px;
  }

  .wsh-mobile-discovery__current {
    font-weight: 600;
    color: #1A1410;
  }

  .wsh-mobile-discovery__was {
    font-weight: 400;
    color: #8C7A68;
    text-decoration: line-through;
    margin-left: 4px;
    font-size: 11px;
  }

  .wsh-mobile-discovery__footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 0.5px solid rgba(26, 20, 16, 0.10);
  }
}

/* Hide all mobile drawer snippets on desktop */
@media (min-width: 768px) {
  .wsh-mobile-genres,
  .wsh-mobile-links,
  .wsh-mobile-bundles,
  .wsh-mobile-daw,
  .wsh-mobile-discovery {
    display: none !important;
  }
}

/* --------------------------------------------------------------
   10. Enhanced Search dropdown (§8.10)
   -------------------------------------------------------------- */

/* Container + backdrop */
.wsh-search {
  position: fixed;
  inset: 0;
  z-index: 200;
  font-family: var(--font-body--family, 'Inter', sans-serif);
}

.wsh-search[hidden] {
  display: none !important;
}

.wsh-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Panel — drops from top */
.wsh-search__panel {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  margin-top: calc(var(--wsh-util-height) + var(--wsh-main-height) + 8px);
  background: #F0E8D5;
  border-radius: 4px;
  border: 0.5px solid rgba(26, 20, 16, 0.12);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: wsh-search-slide-in 200ms ease forwards;
}

/* Collapsed utility bar — shift panel up */
[data-wsh-nav].is-scrolled ~ .wsh-search .wsh-search__panel,
.wsh-search--scrolled .wsh-search__panel {
  margin-top: calc(var(--wsh-main-height) + 8px);
}

@keyframes wsh-search-slide-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input row */
.wsh-search__input-row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.10);
}

.wsh-search__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F0E8D5;
  border: 0.5px solid rgba(26, 20, 16, 0.10);
  border-radius: 4px;
  padding: 0 12px;
  transition: border-color 150ms ease;
}

.wsh-search__input-wrap:focus-within {
  border-color: #1A1410;
}

.wsh-search__input-icon {
  flex-shrink: 0;
  color: #8C7A68;
  width: 16px;
  height: 16px;
}

.wsh-search__input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #1A1410;
  padding: 10px 0;
  font-family: inherit;
}

.wsh-search__input::placeholder {
  color: #8C7A68;
}

.wsh-search__kbd {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  color: #8C7A68;
  background: rgba(26, 20, 16, 0.10);
  border: 0.5px solid rgba(26, 20, 16, 0.10);
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1;
}

.wsh-search__clear {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: #8C7A68;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background 150ms ease, color 150ms ease;
}

.wsh-search__clear:hover {
  background: rgba(26, 20, 16, 0.10);
  color: #1A1410;
}

.wsh-search__clear[hidden] {
  display: none;
}

.wsh-search__close-btn {
  flex-shrink: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 400;
  color: #5A4A3D;
  cursor: pointer;
  padding: 6px 0;
  font-family: inherit;
  transition: color 150ms ease;
}

.wsh-search__close-btn:hover {
  color: #1A1410;
}

/* Filter chips */
.wsh-search__chips {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.10);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.wsh-search__chips::-webkit-scrollbar {
  display: none;
}

.wsh-search__chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 0.5px solid rgba(26, 20, 16, 0.10);
  border-radius: 999px;
  background: #F0E8D5;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #5A4A3D;
  cursor: pointer;
  font-family: inherit;
  transition: all 150ms ease;
  white-space: nowrap;
}

.wsh-search__chip:hover {
  border-color: #1A1410;
  color: #1A1410;
}

.wsh-search__chip.is-active {
  background: #1A1410;
  border-color: #1A1410;
  color: #F0E8D5;
}

/* Results area */
.wsh-search__results {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: none;
}

.wsh-search__results::-webkit-scrollbar {
  display: none;
}

/* Section headings */
.wsh-search__section-head {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8C7A68;
  margin-bottom: 10px;
}

/* Default state: 2-column Popular + Recent */
.wsh-search__default {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Popular search suggestions — chip style */
.wsh-search__popular {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wsh-search__suggestion {
  display: inline-block;
  padding: 5px 12px;
  background: #F0E8D5;
  border: 0.5px solid rgba(26, 20, 16, 0.10);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  color: #2A2018;
  text-decoration: none;
  transition: all 150ms ease;
}

.wsh-search__suggestion:hover {
  border-color: #1A1410;
  color: #1A1410;
  background: #F0E8D5;
}

/* Recent searches */
.wsh-search__recent {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wsh-search__recent-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  color: #2A2018;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: background 150ms ease;
}

.wsh-search__recent-item:hover {
  background: #F0E8D5;
}

.wsh-search__recent-icon {
  width: 14px;
  height: 14px;
  color: #8C7A68;
  flex-shrink: 0;
}

.wsh-search__empty-recent {
  font-size: 12px;
  color: #8C7A68;
  padding: 4px 0;
}

/* Live results — split panel */
.wsh-search__live {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}

.wsh-search__live[hidden] {
  display: none;
}

/* Product result rows */
.wsh-search__product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 0;
  text-decoration: none;
  color: #1A1410;
  transition: background 150ms ease;
}

.wsh-search__product-row:hover {
  background: var(--wsh-bg-hover, #E5DCC2);
}

.wsh-search__product-thumb {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 0;
  overflow: hidden;
  background: #F0E8D5;
  flex-shrink: 0;
}

.wsh-search__product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wsh-search__product-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 20, 16, 0.45);
  opacity: 0;
  transition: opacity 150ms ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.wsh-search__product-row:hover .wsh-search__product-play {
  opacity: 1;
}

.wsh-search__product-play svg {
  width: 16px;
  height: 16px;
  color: #F0E8D5;
}

.wsh-search__product-info {
  flex: 1;
  min-width: 0;
}

.wsh-search__product-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wsh-search__product-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #8C7A68;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}

.wsh-search__product-meta {
  font-size: 11px;
  font-weight: 400;
  color: #8C7A68;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wsh-search__product-price {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: #1A1410;
  text-align: right;
}

.wsh-search__product-price .wsh-search__strike {
  font-size: 11px;
  font-weight: 400;
  color: #8C7A68;
  text-decoration: line-through;
  margin-left: 6px;
}

/* Collection result rows */
.wsh-search__collection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 4px;
  text-decoration: none;
  color: #2A2018;
  font-size: 13px;
  font-weight: 400;
  transition: background 150ms ease;
}

.wsh-search__collection-row:hover {
  background: #F0E8D5;
}

.wsh-search__collection-count {
  font-size: 11px;
  color: #8C7A68;
}

/* Empty state */
.wsh-search__empty[hidden] {
  display: none;
}

.wsh-search__empty-msg {
  text-align: center;
  padding: 32px 16px;
  font-size: 13px;
  color: #8C7A68;
  line-height: 1.5;
}

/* Loading state */
.wsh-search__loading[hidden] {
  display: none;
}

.wsh-search__loading-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}

.wsh-search__loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8C7A68;
  animation: wsh-search-dot 1.2s infinite ease-in-out both;
}

.wsh-search__loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.wsh-search__loading-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes wsh-search-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Footer — view all results */
.wsh-search__footer {
  padding: 10px 16px;
  border-top: 0.5px solid rgba(26, 20, 16, 0.10);
  text-align: center;
}

.wsh-search__footer[hidden] {
  display: none;
}

.wsh-search__view-all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1A1410;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.wsh-search__view-all:hover {
  opacity: 0.65;
}

/* Responsive — mobile: full-screen, single-column */
@media (max-width: 767px) {
  .wsh-search__panel {
    margin-top: 0;
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
  }

  .wsh-search__default {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wsh-search__live {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wsh-search__side-col {
    border-top: 0.5px solid rgba(26, 20, 16, 0.10);
    padding-top: 16px;
  }

  .wsh-search__kbd {
    display: none;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .wsh-search__panel {
    max-width: 680px;
  }

  .wsh-search__live {
    grid-template-columns: 1fr 220px;
  }
}

/* --------------------------------------------------------------
   11. WSH marker — one source of truth that wsh-header.css loaded
   -------------------------------------------------------------- */
[data-wsh-nav]::before {
  content: "";
  display: none;
  --wsh-header-loaded: 1;
}
