/* ==========================================================================
   bands.com.au — Public Site Stylesheet
   Ported from the bands React prototype to a clean self-contained Blade theme.
   No reliance on the entertainers admin app.css. Disney+ style dark theme.
   ========================================================================== */

/* ---------- Tokens (matched to React index.css :root) -------------------- */
:root {
    --bg: hsl(220 15% 8%);
    --bg-2: hsl(220 15% 12%);
    --bg-3: hsl(220 15% 16%);
    --card: hsl(220 15% 12%);
    --card-2: hsl(220 15% 14%);
    --fg: hsl(0 0% 98%);
    --fg-muted: hsl(220 10% 70%);
    --fg-soft: hsl(0 0% 60%);
    --primary: hsl(45 100% 50%);
    --primary-fg: hsl(0 0% 0%);
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.20);
    --max-w: 1400px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-display: 'Barlow Condensed', 'Inter', sans-serif;
}

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

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

body.bands-body {
    font-family: var(--font-sans);
    background: var(--bg);
    background-image: radial-gradient(circle at 50% 0%, hsl(250 30% 15% / 0.5), transparent 70%);
    color: var(--fg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

.bands-body :where(img) {
    display: block;
    max-width: 100%;
}

.bands-body :where(button) {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
}

.bands-body :where(a) {
    color: inherit;
    text-decoration: none;
}

.bands-body :where(h1, h2, h3, h4) {
    margin: 0;
}

.bands-body :where(p) {
    margin: 0;
}

.bands-body :where(ul) {
    margin: 0;
    padding: 0;
    list-style: none;
}

.font-display {
    font-family: var(--font-display);
}

/* ---------- Global scrollbar (ported 1:1 from React index.css) ---------- */
.bands-body ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.bands-body ::-webkit-scrollbar-track {
    background: hsl(220 15% 8%);
}

.bands-body ::-webkit-scrollbar-thumb {
    background: hsl(220 15% 20%);
    border-radius: 4px;
}

.bands-body ::-webkit-scrollbar-thumb:hover {
    background: hsl(220 10% 70%);
}

/* Firefox */
.bands-body * {
    scrollbar-width: thin;
    scrollbar-color: hsl(220 15% 20%) hsl(220 15% 8%);
}

.bands-shell {
    min-height: 100vh;
    padding-bottom: 5rem;
}

.bands-container {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .bands-container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.bands-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--bg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.bands-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

@media (min-width: 768px) {
    .bands-navbar__inner {
        padding: 1rem 4rem;
    }
}

.bands-navbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bands-navbar__logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.bands-navbar__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bands-navbar__socials {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.bands-navbar__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: hsl(220 10% 78%);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bands-navbar__socials a:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--primary) 60%, transparent);
    background: color-mix(in srgb, var(--primary) 14%, transparent);
    color: var(--primary);
}

.bands-navbar__socials svg {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 1280px) {
    .bands-navbar__socials {
        display: inline-flex;
    }
}

.bands-navbar__link {
    display: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(220 10% 75%);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.bands-navbar__link:hover {
    color: var(--primary);
}

@media (min-width: 1280px) {
    .bands-navbar__link {
        display: inline-block;
    }
}

.bands-navbar__menu-trigger {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(220 10% 75%);
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.bands-navbar__menu-trigger:hover,
.bands-navbar__menu-trigger.is-open {
    color: var(--primary);
}

.bands-navbar__menu-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.bands-navbar__menu-trigger.is-open svg {
    transform: rotate(180deg);
}

@media (min-width: 1280px) {
    .bands-navbar__menu-trigger {
        display: inline-flex;
    }
}

.bands-navbar__search-trigger {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.bands-navbar__search-trigger:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.10);
    color: var(--fg);
}

.bands-navbar__search-trigger svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 1280px) {
    .bands-navbar__search-trigger {
        display: inline-flex;
    }
}

.bands-navbar__mylist {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: hsl(220 10% 75%);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.bands-navbar__mylist:hover {
    color: var(--fg);
}

.bands-navbar__mylist svg {
    width: 16px;
    height: 16px;
}

.bands-navbar__mylist span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 1280px) {
    .bands-navbar__mylist {
        display: inline-flex;
    }
}

/* ==========================================================================
   NAVBAR FAVOURITES DROPDOWN
   ========================================================================== */
.bands-favourites {
    position: relative;
    display: block;
}

.bands-favourites__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.625rem;
    background: transparent;
    border: 0;
    color: hsl(220 10% 75%);
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

/* Mobile: icon-only button to save space — hide the "My List" label */
.bands-favourites__label {
    display: none;
}

@media (min-width: 1024px) {
    .bands-favourites__label {
        display: inline;
    }
}

.bands-favourites__trigger:hover,
.bands-favourites__trigger.is-open,
.bands-favourites__trigger.has-items {
    color: var(--fg);
}

.bands-favourites__trigger svg {
    width: 18px;
    height: 18px;
}

.bands-favourites__trigger.has-items svg {
    color: hsl(152 75% 18%);
    fill: hsl(152 75% 18%);
}

.bands-favourites__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* visibility controlled in the responsive block above (mobile hides it) */
}

.bands-favourites__badge {
    position: absolute;
    top: 2px;
    right: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

@media (max-width: 1023.98px) {
    .bands-favourites__badge {
        top: -2px;
        right: -2px;
    }
}

@media (min-width: 1024px) {
    .bands-favourites__badge {
        position: static;
        background: #fff;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        font-size: 11px;
    }
}

.bands-favourites__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 360px;
    max-width: calc(100vw - 2rem);
    background: #1A1A1F;
    border: 1px solid #2E2E33;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 60;
    overflow: hidden;
}

.bands-favourites__dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 1023.98px) {
    .bands-favourites__dropdown {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 88px);
        left: 50%;
        right: auto;
        width: min(360px, calc(100vw - 1.5rem));
        max-width: calc(100vw - 1.5rem);
        transform: translate(-50%, -6px);
    }

    .bands-favourites__dropdown.is-open {
        transform: translate(-50%, 0);
    }
}

.bands-favourites__header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #2E2E33;
    color: var(--fg);
}

.bands-favourites__header svg {
    width: 18px;
    height: 18px;
    color: hsl(152 75% 18%);
    fill: hsl(152 75% 18%);
}

.bands-favourites__header span:not(.bands-favourites__count-pill) {
    font-weight: 700;
    font-size: 15px;
    flex: 1;
}

.bands-favourites__count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.bands-favourites__body {
    max-height: 360px;
    overflow-y: auto;
}

.bands-favourites__empty {
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: hsl(0 0% 55%);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.bands-favourites__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    color: var(--fg);
    text-decoration: none;
    transition: background 0.15s ease;
    border-bottom: 1px solid rgba(46, 46, 51, 0.5);
}

.bands-favourites__item:last-of-type {
    border-bottom: 0;
}

.bands-favourites__item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.bands-favourites__item-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.bands-favourites__item-info {
    flex: 1;
    min-width: 0;
}

.bands-favourites__item-name {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bands-favourites__item-meta {
    font-size: 12px;
    color: hsl(0 0% 55%);
    margin: 2px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bands-favourites__item-remove {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: hsl(0 0% 55%);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.bands-favourites__item-remove:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--fg);
}

.bands-favourites__item-remove svg {
    width: 14px;
    height: 14px;
}

.bands-favourites__more {
    padding: 0.5rem 1rem;
    font-size: 12px;
    color: hsl(0 0% 55%);
    text-align: center;
    margin: 0;
}

.bands-favourites__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #2E2E33;
    gap: 1rem;
}

.bands-favourites__view-all {
    font-size: 13px;
    color: var(--fg);
    font-weight: 600;
    text-decoration: none;
}

.bands-favourites__view-all:hover {
    color: var(--primary);
}

.bands-favourites__clear {
    background: transparent;
    border: 0;
    font-size: 13px;
    color: hsl(0 0% 55%);
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease;
}

.bands-favourites__clear:hover {
    color: hsl(0 80% 65%);
}

a.bands-navbar__register,
.bands-navbar__register {
    display: none;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none;
}

a.bands-navbar__register:hover,
.bands-navbar__register:hover {
    background: var(--primary);
    color: #000 !important;
}

@media (min-width: 1024px) {
    a.bands-navbar__register,
    .bands-navbar__register {
        display: inline-block;
    }
}

a.bands-navbar__register--mobile,
.bands-navbar__register--mobile {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    text-decoration: none;
}

a.bands-navbar__register--mobile:hover,
.bands-navbar__register--mobile:hover {
    background: var(--primary);
    color: #000 !important;
}

@media (min-width: 1024px) {
    a.bands-navbar__register--mobile,
    .bands-navbar__register--mobile {
        display: none;
    }
}

.bands-navbar__icon-btn {
    padding: 0.5rem;
    border-radius: 6px;
    color: var(--fg);
    transition: background 0.2s ease;
}

.bands-navbar__icon-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}

.bands-navbar__icon-btn svg {
    width: 20px;
    height: 20px;
}

.bands-navbar__icon-btn--mobile-only {
    display: inline-block;
}

@media (min-width: 1280px) {
    .bands-navbar__icon-btn--mobile-only {
        display: none;
    }
}

.bands-navbar__divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.8);
}

/* ---------- Mega menu ---------------------------------------------------- */
.bands-mega-menu {
    position: relative;
    width: 100%;
    background: #1a1d23;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

.bands-mega-menu.is-open {
    max-height: min(760px, calc(100vh - 120px));
    opacity: 1;
}

.bands-mega-menu__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    max-height: min(760px, calc(100vh - 120px));
    display: flex;
    flex-direction: column;
    min-height: 0;
}

@media (min-width: 768px) {
    .bands-mega-menu__inner {
        padding: 2.5rem 4rem;
    }
}

.bands-mega-menu__header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.bands-mega-menu__label {
    color: hsl(0 0% 50%);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.bands-mega-menu__pill-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: opacity 0.2s ease;
}

.bands-mega-menu__pill-primary:hover {
    opacity: 0.9;
}

.bands-mega-menu__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bands-mega-menu__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: hsl(220 10% 80%);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.bands-mega-menu__pill:hover {
    background: var(--primary);
    color: var(--primary-fg);
    border-color: var(--primary);
}

.bands-mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .bands-mega-menu__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bands-mega-menu__body {
    position: relative;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 178, 0, 0.45) rgba(255, 255, 255, 0.08);
}

.bands-mega-menu__body::-webkit-scrollbar {
    width: 8px;
}

.bands-mega-menu__body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.bands-mega-menu__body::-webkit-scrollbar-thumb {
    background: rgba(255, 178, 0, 0.45);
    border-radius: 999px;
}

.bands-mega-menu__body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 178, 0, 0.7);
}

.bands-mega-menu__body::after {
    content: '';
    position: sticky;
    bottom: 0;
    display: block;
    height: 4.5rem;
    margin-top: -4.5rem;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, rgba(26, 29, 35, 0) 0%, rgba(26, 29, 35, 0.92) 62%, #1a1d23 100%);
    transition: opacity 0.18s ease;
}

.bands-mega-menu__body.has-more::after {
    opacity: 1;
}

.bands-mega-menu__scroll-cue {
    position: sticky;
    bottom: 0.875rem;
    z-index: 2;
    width: max-content;
    margin: -2.25rem auto 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(255, 178, 0, 0.28);
    border-radius: 999px;
    background: rgba(17, 19, 23, 0.84);
    color: rgba(255, 178, 0, 0.9);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(0.35rem);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.bands-mega-menu__scroll-cue svg {
    width: 0.875rem;
    height: 0.875rem;
    animation: bands-scroll-cue-bob 1.25s ease-in-out infinite;
}

.bands-mega-menu__body.has-more .bands-mega-menu__scroll-cue {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bands-scroll-cue-bob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

.bands-mega-menu__col {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .bands-mega-menu__col {
        grid-column: span var(--mega-sub-columns, 1);
    }
}

.bands-mega-menu__grid--titles {
    margin-bottom: 0;
}

.bands-mega-menu__col-title {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.bands-mega-menu__full-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 178, 0, 0.2);
    margin-bottom: 1.25rem;
}

.bands-mega-menu__col-title svg {
    width: 16px;
    height: 16px;
}

.bands-mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(var(--mega-sub-columns, 2), minmax(0, 1fr));
    column-gap: 2rem;
}

.bands-mega-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: hsl(220 10% 80%);
    font-size: 14px;
    font-weight: 500;
}

.bands-mega-menu__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.bands-mega-menu__list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 178, 0, 0.4);
    border-radius: 999px;
    display: block;
    transition: background 0.2s ease;
}

.bands-mega-menu__list li:hover {
    color: var(--primary);
}

.bands-mega-menu__list li:hover::before {
    background: var(--primary);
}

/* ==========================================================================
   MEGA MENU — MOBILE FULL-SCREEN OVERRIDE
   ========================================================================== */
html.bands-overlay-open,
body.bands-overlay-open {
    overflow: hidden !important;
    height: 100% !important;
    position: relative;
    touch-action: none;
    overscroll-behavior: contain;
}

.bands-mega-menu__mobile-close {
    display: none;
}

@media (max-width: 767.98px) {
    .bands-mega-menu__mobile-close {
        display: flex;
        position: sticky;
        top: 0;
        margin-left: auto;
        margin-bottom: 1rem;
        padding: 0.5rem;
        border-radius: 6px;
        background: transparent;
        border: none;
        color: var(--fg);
        cursor: pointer;
        transition: background 0.2s ease;
        z-index: 2;
    }

    .bands-mega-menu__mobile-close:hover,
    .bands-mega-menu__mobile-close:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .bands-mega-menu__mobile-close svg {
        width: 24px;
        height: 24px;
    }

    .bands-mega-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        z-index: 1100;
        border-bottom: none;
        box-shadow: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(100%);
        transition: transform 0.3s ease, opacity 0.2s ease;
        opacity: 0;
        pointer-events: none;
    }

    .bands-mega-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .bands-mega-menu__inner {
        padding: 1.5rem 1.25rem 3rem;
        min-height: 100%;
        max-height: none;
        display: block;
    }

    .bands-mega-menu__grid {
        gap: 1.5rem;
    }

    .bands-mega-menu__body {
        overflow: visible;
        padding-right: 0;
    }

    .bands-mega-menu__body::after,
    .bands-mega-menu__scroll-cue {
        display: none;
    }

    .bands-mega-menu__columns {
        grid-template-columns: 1fr;
        row-gap: 0.75rem;
    }

    .bands-mega-menu__header {
        flex-direction: column;
        gap: 1.25rem;
    }
}

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */
.bands-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 480px;
}

.bands-hero__official {
    position: absolute;
    top: 102px;
    left: 0;
    right: 0;
    z-index: 20;
}

.bands-hero__official-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .bands-hero__official-inner {
        padding: 0 4rem;
    }
}

.bands-hero__official-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767.98px) {
    .bands-hero__official-text {
        font-size: 10px;
    }
}

.bands-hero__viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.bands-hero__viewport:active {
    cursor: grabbing;
}

.bands-hero__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

.bands-hero__track.is-dragging {
    transition: none;
}

.bands-hero__slide img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.bands-hero__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
}

.bands-hero__bg {
    position: absolute;
    inset: 0;
}

.bands-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.bands-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, hsl(220 15% 8% / 0.4) 50%, transparent 100%);
}

.bands-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(220 15% 8% / 0.8) 0%, transparent 60%);
    z-index: 1;
}

.bands-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    z-index: 2;
}

.bands-hero__content-inner {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .bands-hero__content-inner {
        padding: 0 4rem;
    }
}

.bands-hero__copy {
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bands-hero__featured {
    display: inline-block;
    width: fit-content;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 178, 0, 0.2);
    border: 1px solid rgba(255, 178, 0, 0.5);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bands-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--fg);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

.bands-hero__desc {
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
    color: rgb(229, 231, 235);
    font-weight: 300;
    max-width: 36rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

a.bands-hero__cta,
.bands-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #000 !important;
    font-weight: 700;
    padding: 0 2rem;
    height: 48px;
    font-size: 1.125rem;
    border-radius: 6px;
    width: fit-content;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    text-decoration: none;
}

a.bands-hero__cta:hover,
.bands-hero__cta:hover {
    transform: scale(1.05);
    background: hsl(45 100% 45%);
    color: #000 !important;
}

.bands-hero__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 30;
}

.bands-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.bands-hero__dot.is-active {
    background: var(--primary);
    width: 24px;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.bands-trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: hsl(220 15% 12% / 0.5);
}

.bands-trust__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
    .bands-trust__inner {
        padding: 2rem 4rem;
    }
}

.bands-trust__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--fg);
    text-transform: uppercase;
    margin: 0 0 2rem;
}

@media (min-width: 768px) {
    .bands-trust__title {
        font-size: 1.625rem;
    }
}

.bands-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bands-trust__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.bands-trust__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.bands-trust__stat svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.bands-trust__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--fg);
}

@media (min-width: 768px) {
    .bands-trust__value {
        font-size: 1.875rem;
    }
}

.bands-trust__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(156, 163, 175);
}

/* ==========================================================================
   CAROUSEL ARROWS (shared: genres, artist rows, reviews)
   ========================================================================== */
.bands-carousel {
    position: relative;
}

.bands-carousel__drag-scroll {
    cursor: grab;
    overscroll-behavior-x: contain;
}

.bands-carousel__drag-scroll.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.bands-carousel__drag-scroll :where(a, img) {
    -webkit-user-drag: none;
    user-select: none;
}

.bands-carousel__drag-scroll.is-dragging :where(a, img) {
    pointer-events: none;
}

.bands-carousel__arrow {
    position: absolute;
    top: 0;
    height: 100%;
    width: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--fg);
    border: none;
    border-radius: 0;
    z-index: 30;
    opacity: 0.75;
    transition: opacity 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.bands-carousel:hover .bands-carousel__arrow {
    opacity: 1;
}

.bands-carousel__arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.bands-carousel__arrow svg {
    width: 24px;
    height: 24px;
}

.bands-carousel__arrow--prev {
    left: 0;
    transform: translateX(-50%);
}

.bands-carousel__arrow--next {
    right: 0;
    transform: translateX(50%);
}

/* Show arrows on desktop (touch users scroll natively on mobile) */
@media (min-width: 768px) {
    .bands-carousel__arrow {
        display: flex;
    }
}

/* ==========================================================================
   GENRE PILLS / POPULAR CATEGORIES
   ========================================================================== */
.bands-section {
    position: relative;
    z-index: 10;
}

.bands-genres {
    padding: 2.5rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bands-genres {
        padding: 2.5rem 4rem;
    }
}

.bands-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--fg);
    text-transform: uppercase;
    margin: 0 0 2rem;
}

@media (min-width: 768px) {
    .bands-section-title {
        font-size: 1.625rem;
    }
}

.bands-genres__scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.bands-genres__scroll::-webkit-scrollbar {
    display: none;
}

.bands-genres__card {
    position: relative;
    flex: 0 0 calc(50% - 0.5rem);
    height: 96px;
    background: var(--card);
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .bands-genres__card {
        flex: 0 0 calc(20% - 0.8rem);
        height: 128px;
    }
}

.bands-genres__card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(255, 178, 0, 0.2);
    transform: scale(1.05);
}

.bands-genres__card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    transition: opacity 0.3s ease, filter 0.5s ease;
    filter: grayscale(1);
}

.bands-genres__card:hover .bands-genres__card-bg {
    opacity: 0.4;
    filter: grayscale(0);
}

.bands-genres__card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bands-genres__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 178, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bands-genres__card:hover .bands-genres__card-overlay {
    opacity: 1;
}

.bands-genres__card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
}

.bands-genres__icon {
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.10);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bands-genres__card:hover .bands-genres__icon {
    background: var(--primary);
    color: var(--fg);
}

.bands-genres__icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .bands-genres__icon svg {
        width: 32px;
        height: 32px;
    }
}

.bands-genres__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .bands-genres__name {
        font-size: 18px;
    }
}

/* ==========================================================================
   ARTIST ROW
   ========================================================================== */
.bands-row {
    padding: 2rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bands-row {
        padding: 2rem 4rem;
    }
}

.bands-row__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--fg);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.bands-row__title:hover {
    color: var(--primary);
}

.bands-row__title svg {
    width: 20px;
    height: 20px;
    opacity: 0;
    margin-left: -0.5rem;
    transition: all 0.2s ease;
    color: var(--primary);
}

.bands-row__title:hover svg {
    opacity: 1;
    margin-left: 0;
}

@media (min-width: 768px) {
    .bands-row__title {
        font-size: 1.5rem;
    }
}

.bands-row__scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.bands-row__scroll::-webkit-scrollbar {
    display: none;
}

/* ---------- Artist card -------------------------------------------------- */
.bands-card {
    display: block;
    position: relative;
    flex: 0 0 calc(50% - 0.5rem);
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .bands-card {
        flex: 0 0 calc(33.333% - 0.667rem);
    }
}

@media (min-width: 1024px) {
    .bands-card {
        flex: 0 0 calc(20% - 0.8rem);
    }
}

.bands-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bands-card:hover .bands-card__img {
    transform: scale(1.1);
}

.bands-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 20;
    pointer-events: none;
}

.bands-card__hover-top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.2s ease;
}

.bands-card:hover .bands-card__hover-top {
    opacity: 1;
    transform: translateY(0);
}

.bands-card__exclusive {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.bands-card__exclusive img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.bands-card__exclusive-badge {
    padding: 2px 8px;
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.bands-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 2px;
}

.bands-card__rating svg {
    width: 12px;
    height: 12px;
    fill: var(--primary);
    color: var(--primary);
}

.bands-card__rating-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--fg);
}

.bands-card__rating-count {
    font-size: 10px;
    color: rgb(156, 163, 175);
}

.bands-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 20;
}

.bands-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--fg);
    line-height: 1.1;
    margin-bottom: 4px;
}

.bands-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgb(156, 163, 175);
    font-weight: 500;
}

.bands-card__location svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

.bands-card__view-overlay {
    position: absolute;
    inset: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bands-card:hover .bands-card__view-overlay {
    opacity: 1;
}

.bands-card__view-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--primary-fg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.bands-card:hover .bands-card__view-label {
    transform: translateY(0);
}

.bands-card__view-label svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.bands-how {
    padding: 4rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bands-how {
        padding: 4rem 4rem;
    }
}

.bands-how__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--fg);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .bands-how__title {
        font-size: 1.625rem;
    }
}

.bands-how__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.bands-how__card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease;
}

.bands-how__card:hover {
    border-color: rgba(255, 178, 0, 0.3);
}

.bands-how__card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bands-how__icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: rgba(255, 178, 0, 0.1);
    border: 1px solid rgba(255, 178, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.bands-how__icon svg {
    width: 24px;
    height: 24px;
}

.bands-how__number {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.875rem;
    color: rgba(255, 255, 255, 0.1);
}

.bands-how__heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--fg);
}

.bands-how__desc {
    font-size: 14px;
    color: rgb(156, 163, 175);
    line-height: 1.6;
}

.bands-how__connector {
    display: none;
}

@media (min-width: 768px) {
    .bands-how__card:not(:last-child) .bands-how__connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -16px;
        width: 32px;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.bands-reviews {
    max-width: var(--max-w);
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bands-reviews {
        padding: 0 4rem;
        margin-top: 2.5rem;
    }
}

.bands-reviews__scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.bands-reviews__scroll::-webkit-scrollbar {
    display: none;
}

.bands-review {
    flex: 0 0 calc(50% - 0.5rem);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .bands-review {
        flex: 0 0 calc(33.333% - 0.667rem);
    }
}

@media (min-width: 1024px) {
    .bands-review {
        flex: 0 0 calc(20% - 0.8rem);
    }
}

.bands-review__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bands-review__client {
    color: var(--fg);
    font-weight: 600;
    font-size: 16px;
}

.bands-review__booked {
    font-size: 12px;
    color: rgb(156, 163, 175);
}

.bands-review__right {
    text-align: right;
}

.bands-review__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.bands-review__stars svg {
    width: 16px;
    height: 16px;
}

.bands-review__stars svg.is-on {
    fill: var(--primary);
    color: var(--primary);
}

.bands-review__stars svg.is-off {
    fill: none;
    color: rgba(255, 255, 255, 0.3);
}

.bands-review__meta {
    font-size: 12px;
    color: rgb(156, 163, 175);
    margin-top: 4px;
}

.bands-review__text {
    font-size: 14px;
    color: rgb(209, 213, 219);
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bands-footer {
    margin-top: 5rem;
    border-top: 1px solid var(--border);
}

.bands-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .bands-footer__inner {
        padding: 3rem 4rem;
    }
}

.bands-footer__row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .bands-footer__row {
        flex-direction: row;
    }
}

@media (max-width: 767.98px) {
    .bands-footer__cols {
        order: 1;
    }
    .bands-footer__brand {
        order: 2;
    }
}

.bands-footer__brand {
    display: flex;
    flex-direction: column;
}

.bands-footer__brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.bands-footer__brand img:hover {
    opacity: 0.8;
}

.bands-footer__copy {
    font-size: 12px;
    color: hsl(0 0% 50%);
    margin-top: 0.5rem;
}

.bands-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1rem;
}

.bands-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgb(156, 163, 175);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bands-footer__socials a:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--primary) 55%, transparent);
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
}

.bands-footer__socials svg {
    width: 1.05rem;
    height: 1.05rem;
}

.bands-footer__cols {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
}

.bands-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bands-footer__col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.bands-footer__col-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bands-footer__col-links a {
    font-size: 14px;
    color: rgb(156, 163, 175);
    transition: color 0.2s ease;
}

.bands-footer__col-links a:hover {
    color: var(--fg);
}

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */
.bands-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bands-search-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bands-search-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
    background: #1a1d23;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bands-search-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.bands-search-panel__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.bands-search-panel__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bands-search-panel__top svg {
    width: 20px;
    height: 20px;
    color: rgb(156, 163, 175);
    flex-shrink: 0;
}

.bands-search-panel__input {
    flex: 1;
    background: transparent;
    color: var(--fg);
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
}

.bands-search-panel__input::placeholder {
    color: hsl(0 0% 50%);
}

.bands-search-panel__close {
    padding: 0.5rem;
    border-radius: 6px;
    color: rgb(156, 163, 175);
    transition: all 0.2s ease;
}

.bands-search-panel__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
}

.bands-search-panel__body {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    max-height: 60vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bands-search-panel__section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bands-search-panel__heading {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem;
}

.bands-search-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bands-search-panel__chip {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: hsl(220 10% 80%);
    transition: all 0.2s ease;
}

.bands-search-panel__chip:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.bands-search-panel__artists {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bands-search-panel__artist {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s ease;
    text-align: left;
}

.bands-search-panel__artist:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-search-panel__artist-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.bands-search-panel__artist-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 4px;
}

.bands-search-panel__artist-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    transition: color 0.2s ease;
}

.bands-search-panel__artist:hover .bands-search-panel__artist-name {
    color: var(--primary);
}

.bands-search-panel__artist-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1.2;
    color: hsl(0 0% 60%);
    min-width: 0;
}

.bands-search-panel__artist-sep {
    opacity: 0.6;
    user-select: none;
}

.bands-search-panel__artist-category {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.bands-search-panel__artist-city {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.bands-search-panel__artist-city svg {
    width: 11px;
    height: 11px;
    color: var(--primary);
    opacity: 0.85;
}

.bands-search-panel__empty {
    text-align: center;
    color: hsl(0 0% 50%);
    font-size: 14px;
    padding: 2rem 0;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.bands-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bands-mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 1280px) {
    .bands-mobile-menu-overlay,
    .bands-mobile-menu {
        display: none !important;
    }
}

.bands-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    max-width: 90vw;
    background: var(--bg);
    border-left: 1px solid var(--border);
    z-index: 51;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.bands-mobile-menu.is-open {
    transform: translateX(0);
}

.bands-mobile-menu__inner {
    padding: 1.5rem;
}

.bands-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.bands-mobile-menu__top img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.bands-mobile-menu__close {
    padding: 0.5rem;
    border-radius: 6px;
    color: var(--fg);
    transition: background 0.2s ease;
}

.bands-mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bands-mobile-menu__close svg {
    width: 20px;
    height: 20px;
}

a.bands-mobile-menu__register,
.bands-mobile-menu__register {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

a.bands-mobile-menu__register:hover,
.bands-mobile-menu__register:hover {
    background: var(--primary);
    color: #000 !important;
}

.bands-mobile-menu__section {
    margin-top: 1.5rem;
}

.bands-mobile-menu__section h3 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 178, 0, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.bands-mobile-menu__section a {
    display: block;
    color: hsl(220 10% 80%);
    font-size: 14px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.bands-mobile-menu__section a:hover {
    color: var(--primary);
}

/* ==========================================================================
   GENERIC PAGE LAYOUT (About, Contact, future content pages)
   ========================================================================== */
.bands-page {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .bands-page {
        padding: 4rem 4rem;
    }
}

.bands-page--above-fold {
    padding-top: calc(102px + 4rem);
}

.bands-page-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .bands-page-title {
        font-size: 3rem;
    }
}

.bands-page-title__accent {
    color: var(--primary);
}

.bands-page-lead {
    color: #9A9AA0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 3rem;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.bands-about-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    color: #9A9AA0;
    font-size: 14px;
    line-height: 1.7;
}

.bands-about-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--fg);
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
    .bands-about-section-title {
        font-size: 1.625rem;
    }
}

.bands-about-section p {
    margin: 0;
}

.bands-about-list {
    list-style: disc;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.bands-contact-header {
    margin-bottom: 3rem;
}

.bands-contact-lead {
    color: #9A9AA0;
    font-size: 14px;
    max-width: 56rem;
    margin: 0;
}

.bands-contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 6px;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    margin-bottom: 2.5rem;
}

.bands-contact-phone__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(245, 200, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.bands-contact-phone__icon svg {
    width: 20px;
    height: 20px;
}

.bands-contact-phone__details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}

.bands-contact-phone__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 50%);
    margin: 0 0 0.25rem;
}

.bands-contact-phone__number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fg);
    transition: color 0.2s ease;
}

.bands-contact-phone__number:hover {
    color: var(--primary);
}

.bands-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .bands-contact-grid {
        grid-template-columns: 1fr 380px;
        gap: 4rem;
    }
}

.bands-contact-section-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--fg);
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.bands-contact-section-title svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

/* Form */
.bands-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bands-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bands-form-group {
    display: flex;
    flex-direction: column;
}

.bands-form-group--narrow {
    max-width: 280px;
}

.bands-form-group--captcha {
    max-width: 220px;
}

.bands-form-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 50%);
    margin-bottom: 0.5rem;
}

.bands-form-label svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.bands-form-label__required {
    color: var(--primary);
}

.bands-form-input,
.bands-form-select,
.bands-form-textarea {
    width: 100%;
    padding: 0 1rem;
    height: 44px;
    border-radius: 6px;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.bands-form-input::placeholder,
.bands-form-textarea::placeholder {
    color: hsl(0 0% 40%);
}

.bands-form-input:focus,
.bands-form-select:focus,
.bands-form-textarea:focus {
    border-color: var(--primary);
}

.bands-form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px 14px;
}

.bands-form-select option {
    background: #1A1C22;
    color: var(--fg);
}

.bands-form-choice {
    position: relative;
}

.bands-form-choice__button {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0 1rem;
    border-radius: 6px;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.bands-form-choice__button:hover,
.bands-form-choice.is-open .bands-form-choice__button {
    border-color: rgba(197, 255, 136, 0.5);
    background: #202229;
}

.bands-form-choice.is-invalid .bands-form-choice__button {
    border-color: #EF4444;
}

.bands-form-choice__value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bands-form-choice__value.is-placeholder {
    color: hsl(0 0% 48%);
}

.bands-form-choice__chevron {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-right: 2px solid hsl(0 0% 62%);
    border-bottom: 2px solid hsl(0 0% 62%);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bands-form-choice.is-open .bands-form-choice__chevron {
    border-color: var(--primary);
    transform: translateY(2px) rotate(225deg);
}

.bands-form-choice__menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    padding: 0.35rem;
    border-radius: 8px;
    background: #111318;
    border: 1px solid #34363d;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.bands-form-choice__option {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 0.75rem;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: hsl(0 0% 82%);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.bands-form-choice__option:hover,
.bands-form-choice__option.is-selected {
    background: rgba(197, 255, 136, 0.1);
    color: var(--fg);
}

.bands-form-textarea {
    height: auto;
    min-height: 120px;
    padding: 0.75rem 1rem;
    resize: vertical;
    line-height: 1.5;
}

.bands-form-input.is-invalid,
.bands-form-select.is-invalid,
.bands-form-textarea.is-invalid {
    border-color: #EF4444;
}

.bands-form-input.is-invalid:focus,
.bands-form-select.is-invalid:focus,
.bands-form-textarea.is-invalid:focus {
    border-color: #EF4444;
}

.bands-form-error {
    color: #F87171;
    font-size: 12px;
    margin-top: 0.375rem;
}

.bands-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 2.5rem;
    background: var(--primary);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: filter 0.2s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.bands-form-submit:hover {
    filter: brightness(1.1);
}

.bands-form-submit svg {
    width: 16px;
    height: 16px;
}

/* Offices column */
.bands-offices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bands-office {
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.bands-office:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.bands-office__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bands-office__header svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.bands-office__city {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--fg);
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.bands-office__body {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bands-office__row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 14px;
}

.bands-office__row svg {
    width: 12px;
    height: 12px;
    color: hsl(0 0% 40%);
    flex-shrink: 0;
    margin-top: 4px;
}

.bands-office__row a {
    color: rgb(209, 213, 219);
    transition: color 0.2s ease;
}

.bands-office__row a:hover {
    color: var(--primary);
}

.bands-office__row p {
    color: #9A9AA0;
    margin: 0;
}

.bands-hours {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
}

.bands-hours__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.bands-hours__list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 14px;
    color: #9A9AA0;
}

.bands-hours__row {
    display: flex;
    justify-content: space-between;
}

.bands-hours__row strong {
    color: var(--fg);
    font-weight: 500;
}

.bands-hours__closed {
    color: hsl(0 0% 40%);
}

/* Success state */
.bands-contact-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.bands-contact-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(245, 200, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bands-contact-success__icon svg {
    width: 28px;
    height: 28px;
}

.bands-contact-success__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0 0 0.75rem;
}

.bands-contact-success__desc {
    color: #9A9AA0;
    font-size: 14px;
    max-width: 28rem;
    margin: 0 0 2rem;
}

.bands-contact-success__btn {
    height: 44px;
    padding: 0 2rem;
    background: var(--primary);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    transition: filter 0.2s ease;
}

.bands-contact-success__btn:hover {
    filter: brightness(1.1);
}

/* ==========================================================================
   REGISTER PAGE
   Reuses most of contact/about CSS. Adds location autocomplete inside form
   field + benefit cards + "how it works" numbered list.
   ========================================================================== */
.bands-form-location {
    position: relative;
}

.bands-form-location__input-wrap {
    position: relative;
}

.bands-form-location__input-wrap > svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: hsl(0 0% 50%);
    pointer-events: none;
}

.bands-form-location__input-wrap .bands-form-input {
    padding-left: 2.25rem;
}

.bands-form-location__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    max-height: 280px;
    overflow-y: auto;
}

.bands-form-location__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: transparent;
    border: none;
    color: rgb(209, 213, 219);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bands-form-location__item:last-child {
    border-bottom: none;
}

.bands-form-location__item:hover {
    background: #2E2E33;
    color: var(--fg);
}

.bands-form-location__item svg {
    width: 12px;
    height: 12px;
    color: hsl(0 0% 50%);
    flex-shrink: 0;
}

.bands-form-location__item-meta {
    color: hsl(0 0% 40%);
    font-size: 12px;
}

.bands-form-location__empty {
    padding: 0.75rem 1rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 50;
    font-size: 14px;
    color: hsl(0 0% 50%);
}

/* ----- Register form section divider ----- */
.bands-register-section-divider {
    padding-top: 1rem;
}

.bands-register-section-divider__title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0 0 1.25rem;
}

.bands-register-section-divider__title svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

/* ----- Benefit cards (right column) ----- */
.bands-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bands-benefit {
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.bands-benefit:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.bands-benefit__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bands-benefit__header svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.bands-benefit__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--fg);
}

.bands-benefit__text {
    padding-left: 1.5rem;
    font-size: 14px;
    color: #9A9AA0;
    line-height: 1.6;
    margin: 0;
}

/* ----- How It Works numbered list ----- */
.bands-howitworks {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
}

.bands-howitworks__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.bands-howitworks__steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 14px;
    color: #9A9AA0;
}

.bands-howitworks__step {
    display: flex;
    gap: 0.75rem;
}

.bands-howitworks__step-number {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(245, 200, 66, 0.1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==========================================================================
   LEGAL / DOC PAGES (Privacy, Terms, FAQs)
   Shared structure: page header + info card + TOC grid + numbered sections.
   ========================================================================== */
.bands-doc-meta {
    color: #9A9AA0;
    font-size: 14px;
    margin: 0 0 1.5rem;
}

.bands-doc-intro {
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.bands-doc-intro p {
    color: #9A9AA0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.bands-doc-intro p + p {
    margin-top: 0.75rem;
}

.bands-doc-intro strong {
    color: var(--fg);
    font-weight: 600;
}

.bands-doc-toc {
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    margin: 0 0 3rem;
}

.bands-doc-toc__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin: 0 0 1rem;
}

.bands-doc-toc__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.375rem 2rem;
    font-size: 14px;
}

@media (min-width: 768px) {
    .bands-doc-toc__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bands-doc-toc__grid a {
    color: #9A9AA0;
    transition: color 0.2s ease;
}

.bands-doc-toc__grid a:hover {
    color: var(--fg);
}

.bands-doc-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.bands-doc-section {
    scroll-margin-top: 140px;
}

.bands-doc-section__heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .bands-doc-section__heading {
        font-size: 1.625rem;
    }
}

.bands-doc-section__sub {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--fg);
    margin: 1.5rem 0 0.75rem;
}

@media (min-width: 768px) {
    .bands-doc-section__sub {
        font-size: 1.125rem;
    }
}

.bands-doc-section p {
    color: #9A9AA0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.bands-doc-section p strong,
.bands-doc-section li strong {
    color: #D4D4D8;
    font-weight: 600;
}

.bands-doc-section ul {
    color: #9A9AA0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 1rem 1.5rem;
    list-style: disc;
}

.bands-doc-section ul li {
    margin-bottom: 0.375rem;
}

.bands-doc-section ul li:last-child {
    margin-bottom: 0;
}

.bands-doc-section ol {
    color: #9A9AA0;
    font-size: 14px;
    line-height: 1.7;
    list-style-position: outside;
    margin: 0 0 1.25rem;
    padding: 1.25rem 1.5rem 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .bands-doc-section ol {
        padding: 1.5rem 1.75rem 1.5rem 3rem;
    }
}

.bands-doc-section ol li {
    margin-bottom: 0.625rem;
    padding-left: 0.25rem;
}

.bands-doc-section ol li:last-child {
    margin-bottom: 0;
}

.bands-doc-section ol li::marker {
    color: #6E6E76;
}

.bands-doc-section ol ol {
    margin: 0.625rem 0 0;
    padding: 0 0 0 1.5rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    list-style-type: lower-alpha;
}

.bands-doc-section ol ul {
    margin: 0.625rem 0 0 1.5rem;
}

.bands-doc-section a {
    color: var(--primary);
    text-decoration: none;
}

.bands-doc-section a:hover {
    text-decoration: underline;
}

.bands-doc-contact-card {
    margin-top: 3rem;
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
}

.bands-doc-contact-card p {
    color: #9A9AA0;
    font-size: 14px;
    margin: 0;
}

.bands-doc-contact-card p + p {
    margin-top: 0.5rem;
}

.bands-doc-contact-card strong {
    color: var(--fg);
    font-weight: 600;
}

.bands-doc-contact-card a {
    color: var(--primary);
}

.bands-doc-contact-card a:hover {
    text-decoration: underline;
}

/* ----- FAQ accordion ----- */
.bands-faq-jumplinks {
    padding: 1.25rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.bands-faq-jumplinks__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin: 0 0 1rem;
}

.bands-faq-jumplinks__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bands-faq-jumplinks__list a {
    padding: 0.5rem 1rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    color: rgb(209, 213, 219);
    font-size: 14px;
    transition: all 0.2s ease;
}

.bands-faq-jumplinks__list a:hover {
    color: var(--fg);
    border-color: rgba(245, 200, 66, 0.5);
}

.bands-faq-item {
    border-bottom: 1px solid #2E2E33;
}

.bands-faq-item__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    color: var(--fg);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.bands-faq-item__button:hover,
.bands-faq-item__button.is-open {
    color: var(--primary);
}

.bands-faq-item__button svg {
    width: 20px;
    height: 20px;
    color: hsl(0 0% 50%);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.bands-faq-item__button.is-open svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.bands-faq-item__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease, padding 0.2s ease;
}

.bands-faq-item__body.is-open {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.bands-faq-item__body p {
    color: #9A9AA0;
    font-size: 14px;
    line-height: 1.65;
    padding-right: 2rem;
    margin: 0;
}

.bands-faq-item__body a {
    color: var(--primary);
    text-decoration: none;
}

.bands-faq-item__body a:hover {
    text-decoration: underline;
}

.bands-faq-help {
    margin-top: 4rem;
    padding: 2rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    text-align: center;
}

.bands-faq-help__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--fg);
    margin: 0 0 0.5rem;
}

.bands-faq-help__desc {
    color: #9A9AA0;
    font-size: 14px;
    margin: 0 0 1.5rem;
}

.bands-faq-help__btn {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 2rem;
    background: var(--primary);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    transition: filter 0.2s ease;
}

.bands-faq-help__btn:hover {
    filter: brightness(1.1);
}

/* ==========================================================================
   LISTING DETAIL PAGE
   ========================================================================== */

/* ----- Back-to-Artists bar (fixed under the main navbar) ----- */
.bands-backbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 102px;
    z-index: 40;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--border);
    overflow: visible;
}

.bands-backbar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 56px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bands-backbar__inner {
        padding: 0.75rem 4rem;
    }
}

.bands-backbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    margin-left: -0.5rem;
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.bands-backbar__link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bands-backbar__link svg {
    width: 16px;
    height: 16px;
}

.bands-backbar__sticky-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bands-backbar__sticky-nav.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .bands-backbar__sticky-nav {
        display: flex;
    }
}

.bands-backbar__artist-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--fg);
    white-space: nowrap;
}

.bands-nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bands-nav-pill {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
    border: none;
    transition: all 0.15s ease;
}

.bands-nav-pill:hover {
    background: var(--primary);
    color: #000;
}

.bands-nav-pill.is-active {
    background: var(--primary);
    color: #000;
}

/* ----- Hero -----
   Matches React v6 exactly: hero starts at navbar + 8px, so the fixed back bar
   overlaps the top of the hero image. The absolutely-positioned content
   wrapper inside then uses top:0 + top padding to sit just below the back bar. */
.bands-listing-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-top: 110px;
}

.bands-listing-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bands-listing-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) 50%, transparent);
}

.bands-listing-hero__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .bands-listing-hero__content {
        padding: 4rem;
    }
}

.bands-listing-hero__row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .bands-listing-hero__row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.bands-listing-hero__left {
    flex: 1;
}

.bands-listing-hero__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .bands-listing-hero__name {
        font-size: 3rem;
    }
}

.bands-listing-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: rgb(209, 213, 219);
    font-size: 14px;
}

.bands-listing-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bands-listing-hero__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.bands-listing-hero__tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
}

.bands-listing-hero__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bands-listing-hero__rating svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    color: var(--primary);
}

.bands-listing-hero__rating-value {
    font-weight: 700;
    color: var(--fg);
}

.bands-listing-hero__rating-count {
    color: rgb(156, 163, 175);
}

.bands-listing-hero__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.bands-listing-hero__actions {
    display: flex;
    gap: 0.75rem;
}

.bands-listing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    height: 48px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bands-listing-btn svg {
    width: 18px;
    height: 18px;
}

.bands-listing-btn--outline {
    border: 1px solid var(--fg);
    color: var(--fg);
    background: transparent;
}

.bands-listing-btn--outline:hover {
    background: var(--fg);
    color: #000;
}

.bands-listing-btn--outline.is-favorite {
    background: hsl(152 75% 18%);
    border-color: hsl(152 75% 18%);
    color: #fff;
}

.bands-listing-btn--primary {
    padding: 0 2rem;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    border: none;
}

.bands-listing-btn--primary:hover {
    filter: brightness(1.1);
}

/* ----- Main two-column layout ----- */
.bands-listing-main {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .bands-listing-main {
        padding: 3rem 4rem;
    }
}

.bands-listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .bands-listing-grid {
        grid-template-columns: 1fr 340px;
    }
}

.bands-listing-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    min-width: 0;
}

/* ----- Section heading (shared) ----- */
.bands-listing-section {
    scroll-margin-top: 180px;
}

.bands-listing-heading {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .bands-listing-heading {
        font-size: 1.625rem;
    }
}

.bands-listing-heading svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

/* ----- Biography with truncation fade ----- */
.bands-biography__wrap {
    position: relative;
}

.bands-biography__body {
    color: rgb(209, 213, 219);
    font-size: 1.125rem;
    line-height: 1.65;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.bands-biography__body p {
    margin: 0 0 1rem;
}

.bands-biography__body p:last-child {
    margin-bottom: 0;
}

.bands-biography__body.is-collapsed {
    max-height: 200px;
}

.bands-biography__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg), hsl(220 15% 8% / 0.85), transparent);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bands-biography__body:not(.is-collapsed) + .bands-biography__fade {
    opacity: 0;
}

.bands-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    background: rgba(245, 200, 66, 0.1);
    border: 1px solid rgba(245, 200, 66, 0.3);
    color: var(--primary);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.bands-readmore:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.bands-readmore svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.bands-readmore.is-expanded svg {
    transform: rotate(180deg);
}

/* ----- Videos section ----- */
.bands-videos__featured {
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card);
    margin-bottom: 1rem;
}

.bands-videos__featured iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.bands-videos__native {
    position: relative;
    width: 100%;
    height: 100%;
}

.bands-videos__native video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.bands-videos__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bands-videos__play-overlay:hover {
    background: rgba(0, 0, 0, 0.15);
}

.bands-videos__play-overlay::before {
    content: "";
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.bands-videos__play-overlay:hover::before {
    background: var(--primary);
    transform: scale(1.05);
}

.bands-videos__play-overlay svg {
    position: absolute;
    width: 36px;
    height: 36px;
    color: #fff;
    fill: #fff;
    margin-left: 6px; /* optical centering for play triangle */
    transition: color 0.2s ease, fill 0.2s ease;
}

.bands-videos__play-overlay:hover svg {
    color: #000;
    fill: #000;
}

.bands-videos__strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.bands-video-thumb {
    position: relative;
    flex-shrink: 0;
    width: 140px;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card);
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.bands-video-thumb:hover {
    opacity: 1;
}

.bands-video-thumb.is-active {
    opacity: 1;
    border-color: var(--primary);
}

.bands-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bands-video-thumb__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bands-video-thumb__play span {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bands-video-thumb__play svg {
    width: 16px;
    height: 16px;
    color: var(--fg);
    fill: var(--fg);
}

.bands-video-thumb__active-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

/* ----- Photos section ----- */
.bands-photos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.bands-photo-card {
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card);
    cursor: pointer;
    padding: 0;
    border: none;
    display: block;
    transition: transform 0.3s ease;
}

.bands-photo-card:hover {
    transform: scale(1.03);
}

.bands-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bands-photos__strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.bands-photo-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card);
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    border: none;
    transition: opacity 0.2s ease;
}

.bands-photo-thumb:hover {
    opacity: 1;
}

.bands-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Song list ----- */
.bands-songlist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* Cap tall set lists (e.g. 685-song libraries) — scroll within the set list body
       instead of expanding the page. Short lists are unaffected because max-height
       only kicks in once content exceeds it. */
    max-height: 960px;
    overflow-y: auto;
    /* Breathing room on the right so scrollbar doesn't overlap song text */
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.bands-songlist::-webkit-scrollbar {
    width: 6px;
}

.bands-songlist::-webkit-scrollbar-track {
    background: transparent;
}

.bands-songlist::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.bands-songlist::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.bands-song {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsl(220 15% 12% / 0.5);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.bands-song:hover {
    background: hsl(220 15% 12% / 0.7);
    transform: translateX(5px);
}

.bands-song__number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bands-song__title {
    color: var(--fg);
    font-weight: 500;
    flex: 1;
}

.bands-song__play {
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
}

.bands-song__play:hover {
    color: var(--fg);
}

.bands-song__play svg {
    width: 16px;
    height: 16px;
}

/* ----- Set list accordion ----- */
.bands-setlists {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bands-setlist {
    background: hsl(220 15% 12% / 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.bands-setlist.is-open {
    background: hsl(220 15% 12% / 0.6);
    border-color: rgba(255, 255, 255, 0.12);
}

.bands-setlist__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--fg);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bands-setlist__header:hover {
    background: hsl(220 15% 12% / 0.3);
}

.bands-setlist__title {
    font-weight: 600;
    font-size: 1rem;
    flex: 1;
}

.bands-setlist__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.bands-setlist__count {
    color: var(--muted, #a1a1aa);
    font-size: 0.8125rem;
    font-weight: 500;
}

.bands-setlist__chevron {
    width: 16px;
    height: 16px;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.bands-setlist.is-open .bands-setlist__chevron {
    transform: rotate(180deg);
}

.bands-setlist__body {
    padding: 0 1.25rem 1.25rem;
}

.bands-setlist__empty {
    color: var(--muted, #a1a1aa);
    font-size: 0.875rem;
    margin: 0;
    padding: 0.5rem 0;
}

.bands-setlist__collapse-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.bands-setlist__collapse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--muted, #a1a1aa);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bands-setlist__collapse:hover {
    color: var(--fg);
    border-color: var(--primary);
    background: hsl(220 15% 12% / 0.5);
}

.bands-setlist__collapse svg {
    width: 14px;
    height: 14px;
}

/* ----- Reviews ----- */
.bands-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bands-review-row {
    padding: 1.5rem;
    background: hsl(220 15% 12% / 0.5);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bands-review-row__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.bands-review-row__stars {
    display: flex;
}

.bands-review-row__stars svg {
    width: 16px;
    height: 16px;
}

.bands-review-row__stars svg.is-on {
    fill: var(--primary);
    color: var(--primary);
}

.bands-review-row__stars svg.is-off {
    fill: none;
    color: rgb(75, 85, 99);
}

.bands-review-row__author {
    color: rgb(156, 163, 175);
    font-size: 14px;
}

.bands-review-row__text {
    color: rgb(209, 213, 219);
    margin: 0;
}

/* ----- Sticky sidebar ----- */
.bands-listing-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .bands-listing-sidebar {
        display: block;
    }
}

/*
    Sidebar positioning strategy:
    - Let the sidebar flow at its natural height (no max-height or internal scroll).
    - Use position: sticky with top: 120px so it stays visible as the user scrolls down.
    - When the sidebar is taller than the viewport, sticky degrades gracefully — the
      sidebar scrolls with the page until the bottom is visible, then sticks.
    - This prevents widgets being cut off by a viewport-capped sticky container.
*/
.bands-listing-sidebar__inner {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bands-quickinfo {
    padding: 1.25rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bands-quickinfo__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0;
}

.bands-quickinfo__rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bands-quickinfo__row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 14px;
    color: rgb(209, 213, 219);
}

.bands-quickinfo__row svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.bands-quickinfo__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.375rem;
}

.bands-quickinfo__tags > span:not(:last-child)::after {
    content: '·';
    color: hsl(0 0% 40%);
    margin-left: 0.375rem;
}

.bands-quickinfo__btn {
    width: 100%;
    padding: 0 1.25rem;
    height: 48px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: filter 0.2s ease;
}

.bands-quickinfo__btn:hover {
    filter: brightness(1.1);
}

/* ----- Tag accordion ----- */
.bands-tags-accordion {
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.bands-tags-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.bands-tags-accordion__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0;
}

.bands-tags-accordion__toggle {
    font-size: 12px;
    color: hsl(0 0% 50%);
    background: transparent;
    border: none;
    transition: color 0.2s ease;
}

.bands-tags-accordion__toggle:hover {
    color: var(--fg);
}

.bands-tag-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bands-tag-section:last-child {
    border-bottom: none;
}

.bands-tag-section__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    transition: background 0.2s ease;
    text-align: left;
}

.bands-tag-section__header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.bands-tag-section__title {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg);
}

.bands-tag-section__chevron {
    width: 16px;
    height: 16px;
    color: hsl(0 0% 50%);
    transition: transform 0.2s ease;
}

.bands-tag-section__chevron.is-open {
    transform: rotate(180deg);
}

.bands-tag-section__body {
    overflow: hidden;
}

.bands-tag-section__tags {
    padding: 0 1rem 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bands-tag-chip {
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    font-size: 12px;
    color: rgb(156, 163, 175);
    font-weight: 500;
}

/* ==========================================================================
   PHOTO LIGHTBOX (listing detail slice 2)
   ========================================================================== */
.bands-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.bands-lightbox-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bands-lightbox {
    position: fixed;
    inset: 0;
    z-index: 91;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bands-lightbox.is-open {
    opacity: 1;
    transform: scale(1);
}

.bands-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
    border-radius: 6px;
    border: none;
    z-index: 10;
    pointer-events: none;
    transition: background 0.2s ease;
}

.bands-lightbox.is-open .bands-lightbox__close {
    pointer-events: auto;
}

.bands-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bands-lightbox__close svg {
    width: 24px;
    height: 24px;
}

.bands-lightbox__counter {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
}

.bands-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
    border-radius: 6px;
    border: none;
    z-index: 10;
    pointer-events: none;
    transition: background 0.2s ease;
}

.bands-lightbox.is-open .bands-lightbox__arrow {
    pointer-events: auto;
}

.bands-lightbox__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bands-lightbox__arrow svg {
    width: 24px;
    height: 24px;
}

.bands-lightbox__arrow--prev {
    left: 1rem;
}

.bands-lightbox__arrow--next {
    right: 1rem;
}

@media (min-width: 768px) {
    .bands-lightbox__arrow--prev {
        left: 2rem;
    }
    .bands-lightbox__arrow--next {
        right: 2rem;
    }
}

.bands-lightbox__viewport {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 70vh;
    overflow-x: auto;
    overflow-y: hidden;
    pointer-events: none;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

.bands-lightbox__viewport::-webkit-scrollbar {
    display: none;
}

.bands-lightbox.is-open .bands-lightbox__viewport {
    pointer-events: auto;
    cursor: grab;
}

.bands-lightbox.is-open .bands-lightbox__viewport:active {
    cursor: grabbing;
}

.bands-lightbox__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    box-sizing: border-box;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.bands-lightbox__image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 6px;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.bands-lightbox__strip {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    max-width: 90vw;
    padding-bottom: 0.5rem;
    pointer-events: none;
}

.bands-lightbox.is-open .bands-lightbox__strip {
    pointer-events: auto;
}

.bands-lightbox__thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card);
    cursor: pointer;
    padding: 0;
    border: none;
    opacity: 0.4;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.bands-lightbox__thumb:hover {
    opacity: 0.8;
}

.bands-lightbox__thumb.is-active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--primary);
}

.bands-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lock body scroll when lightbox is open (class toggled by Alpine) */
body.bands-lightbox-open {
    overflow: hidden;
}

/* ==========================================================================
   ENQUIRY DRAWER (listing detail slice 3)
   Distinct classes + colours from the filters drawer so they don't collide.
   Tokens ported 1:1 from React v6:
     - shell #1A1A1F, input #252528, border #2E2E33, label #6B6B72
   ========================================================================== */
.bands-enquiry-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bands-enquiry-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bands-enquiry {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: #1A1A1F;
    border-left: 1px solid #2E2E33;
    z-index: 81;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.bands-enquiry.is-open {
    transform: translateX(0);
}

.bands-enquiry__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #2E2E33;
    flex-shrink: 0;
    gap: 1rem;
}

.bands-enquiry__title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0;
}

.bands-enquiry__subtitle {
    font-size: 14px;
    color: #6B6B72;
    margin: 0.25rem 0 0;
}

.bands-enquiry__close {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: rgb(156, 163, 175);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.bands-enquiry__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
}

.bands-enquiry__close svg {
    width: 20px;
    height: 20px;
}

.bands-enquiry__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bands-enquiry__row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bands-enquiry__field {
    display: flex;
    flex-direction: column;
}

.bands-enquiry__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6B6B72;
    margin-bottom: 0.375rem;
}

.bands-enquiry__input,
.bands-enquiry__select {
    width: 100%;
    height: 40px;
    padding: 0 0.75rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.bands-enquiry__input::placeholder {
    color: hsl(0 0% 40%);
}

.bands-enquiry__input:focus,
.bands-enquiry__select:focus {
    border-color: var(--primary);
}

.bands-enquiry__select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 12px 12px;
}

.bands-enquiry__select option {
    background: #1A1A1F;
    color: var(--fg);
}

.bands-enquiry__textarea {
    width: 100%;
    min-height: 110px;
    max-height: 50vh;
    padding: 0.625rem 0.75rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    resize: none;
    overflow-y: auto;
    transition: border-color 0.2s ease;
    line-height: 1.5;
}

.bands-enquiry__textarea:focus {
    border-color: var(--primary);
}

.bands-enquiry__textarea::placeholder {
    color: hsl(0 0% 40%);
}

.bands-enquiry__char-counter {
    margin-top: 0.375rem;
    text-align: right;
    font-size: 12px;
    color: hsl(0 0% 45%);
    transition: color 0.2s ease;
    font-variant-numeric: tabular-nums;
}

.bands-enquiry__char-counter.is-warn {
    color: hsl(35 90% 60%);
}

.bands-enquiry__char-counter.is-max {
    color: hsl(0 80% 60%);
}

/* Phone with country code */
.bands-enquiry__phone-row {
    display: flex;
    align-items: stretch;
}

.bands-enquiry__phone-row .bands-enquiry__select {
    width: 100px;
    flex-shrink: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    padding-right: 1.75rem;
    background-position: right 0.5rem center;
}

.bands-enquiry__phone-row .bands-enquiry__input {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Single day / Multi day toggle */
.bands-enquiry__toggle {
    display: flex;
    gap: 0.5rem;
}

.bands-enquiry__toggle-btn {
    flex: 1;
    height: 40px;
    padding: 0 1rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    color: rgb(209, 213, 219);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.2s ease;
}

.bands-enquiry__toggle-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.bands-enquiry__toggle-btn.is-active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* Footer with submit button */
.bands-enquiry__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #2E2E33;
    flex-shrink: 0;
}

.bands-enquiry__submit {
    width: 100%;
    height: 48px;
    padding: 0 1.25rem;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    transition: filter 0.2s ease;
}

.bands-enquiry__submit:hover {
    filter: brightness(1.1);
}

.bands-enquiry__error {
    color: #EF4444;
    font-size: 12px;
    margin-top: 0.25rem;
}

/* Success state */
.bands-enquiry__success {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    gap: 1rem;
}

.bands-enquiry__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(245, 200, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.bands-enquiry__success-icon svg {
    width: 28px;
    height: 28px;
}

.bands-enquiry__success-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0;
}

.bands-enquiry__success-desc {
    color: #6B6B72;
    font-size: 14px;
    max-width: 22rem;
    margin: 0;
}

.bands-enquiry__success-btn {
    margin-top: 0.5rem;
    height: 44px;
    padding: 0 1.75rem;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: filter 0.2s ease;
}

.bands-enquiry__success-btn:hover {
    filter: brightness(1.1);
}

/* Lock body scroll when drawer is open */
body.bands-enquiry-open {
    overflow: hidden;
}

/* ==========================================================================
   ENQUIRY DRAWER — Slice 4 custom popovers
   Shared base for country code / event type / venue / calendar popovers.
   ========================================================================== */
.bands-enquiry__popover {
    position: absolute;
    background: #1A1A1F;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bands-enquiry__popover-search {
    padding: 0.5rem;
    border-bottom: 1px solid #2E2E33;
    flex-shrink: 0;
}

.bands-enquiry__popover-search-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 32px;
    padding: 0 0.625rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
}

.bands-enquiry__popover-search-field svg {
    width: 14px;
    height: 14px;
    color: rgb(156, 163, 175);
    flex-shrink: 0;
}

.bands-enquiry__popover-search-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
}

.bands-enquiry__popover-search-field input::placeholder {
    color: hsl(0 0% 40%);
}

.bands-enquiry__popover-body {
    flex: 1;
    overflow-y: auto;
}

/* ----- Country code dropdown ----- */
.bands-enquiry__country-trigger {
    width: 72px;
    min-width: 72px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-right: none;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bands-enquiry__country-trigger:hover {
    background: #2E2E33;
}

.bands-enquiry__country-trigger svg {
    width: 12px;
    height: 12px;
    color: rgb(156, 163, 175);
}

.bands-enquiry__country-popover {
    top: calc(100% + 4px);
    left: 0;
    width: 240px;
    max-height: 280px;
}

.bands-enquiry__country-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bands-enquiry__country-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-enquiry__country-item.is-selected {
    color: var(--primary);
}

.bands-enquiry__country-item-code {
    color: rgb(156, 163, 175);
    width: 40px;
    text-align: right;
}

.bands-enquiry__country-item.is-selected .bands-enquiry__country-item-code {
    color: var(--primary);
}

.bands-enquiry__country-item-check {
    margin-left: auto;
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.bands-enquiry__popover-empty {
    padding: 1rem;
    text-align: center;
    color: rgb(156, 163, 175);
    font-size: 14px;
}

/* ----- Event type popover ----- */
.bands-enquiry__select-trigger {
    width: 100%;
    height: 40px;
    padding: 0 0.75rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: border-color 0.2s ease;
}

.bands-enquiry__select-trigger:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.bands-enquiry__select-trigger.is-placeholder {
    color: hsl(0 0% 40%);
}

.bands-enquiry__select-trigger svg {
    width: 16px;
    height: 16px;
    color: rgb(156, 163, 175);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.bands-enquiry__select-trigger.is-open svg {
    transform: rotate(180deg);
}

.bands-enquiry__select-trigger-clear {
    padding: 0.125rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: rgb(156, 163, 175);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
}

.bands-enquiry__select-trigger-clear:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bands-enquiry__select-trigger-clear svg {
    width: 14px;
    height: 14px;
    transform: none !important;
}

.bands-enquiry__event-popover {
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 320px;
}

.bands-enquiry__popover-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
    padding: 0 0.125rem;
}

.bands-enquiry__popover-label--primary {
    color: var(--primary);
}

.bands-enquiry__popover-label--muted {
    color: hsl(0 0% 50%);
}

.bands-enquiry__event-group {
    padding: 0.75rem;
}

.bands-enquiry__event-group + .bands-enquiry__event-group {
    border-top: 1px solid #2E2E33;
    margin-top: 0;
}

.bands-enquiry__event-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.5rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bands-enquiry__event-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-enquiry__event-item-emoji {
    font-size: 16px;
    line-height: 1;
}

.bands-enquiry__event-category-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0.5rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgb(209, 213, 219);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bands-enquiry__event-category-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--fg);
}

.bands-enquiry__event-category-count {
    font-size: 10px;
    color: hsl(0 0% 50%);
}

.bands-enquiry__event-result-meta {
    font-size: 10px;
    color: hsl(0 0% 50%);
    margin-left: 0.5rem;
}

/* ----- Venue autocomplete ----- */
.bands-enquiry__venue-wrap {
    position: relative;
}

.bands-enquiry__venue-input-wrap {
    position: relative;
}

.bands-enquiry__venue-input-wrap svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgb(156, 163, 175);
    pointer-events: none;
}

.bands-enquiry__venue-input-wrap input {
    padding-left: 2.25rem;
}

.bands-enquiry__venue-popover {
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 200px;
}

.bands-enquiry__venue-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bands-enquiry__venue-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-enquiry__venue-item svg {
    width: 14px;
    height: 14px;
    color: rgb(156, 163, 175);
    flex-shrink: 0;
}

/* ----- Calendar picker ----- */
.bands-enquiry__date-trigger {
    width: 100%;
    height: 40px;
    padding: 0 0.75rem;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s ease;
}

.bands-enquiry__date-trigger:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.bands-enquiry__date-trigger svg {
    width: 16px;
    height: 16px;
    color: rgb(156, 163, 175);
    flex-shrink: 0;
}

.bands-enquiry__date-trigger.is-placeholder span {
    color: hsl(0 0% 40%);
}

.bands-enquiry__date-trigger.is-invalid {
    border-color: #EF4444;
}

.bands-enquiry__date-trigger.is-invalid svg {
    color: #EF4444;
}

.bands-enquiry__calendar {
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    padding: 1rem;
}

.bands-enquiry__calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bands-enquiry__calendar-arrow {
    padding: 0.375rem;
    background: transparent;
    border: none;
    color: var(--fg);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bands-enquiry__calendar-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.bands-enquiry__calendar-arrow:disabled {
    color: rgb(75, 85, 99);
    cursor: not-allowed;
}

.bands-enquiry__calendar-arrow svg {
    width: 16px;
    height: 16px;
}

.bands-enquiry__calendar-my-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bands-enquiry__calendar-my-select-wrap {
    position: relative;
}

.bands-enquiry__calendar-my-select {
    height: 28px;
    padding: 0 1.25rem 0 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.2s ease;
}

.bands-enquiry__calendar-my-select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.bands-enquiry__calendar-my-select option {
    background: #1A1A1F;
    color: var(--fg);
}

.bands-enquiry__calendar-my-select-wrap svg {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    color: rgb(156, 163, 175);
    pointer-events: none;
}

.bands-enquiry__calendar-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.25rem;
}

.bands-enquiry__calendar-header {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(156, 163, 175);
    padding: 0.25rem 0;
}

.bands-enquiry__calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.bands-enquiry__calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bands-enquiry__calendar-day {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: transparent;
    border: none;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.bands-enquiry__calendar-day:hover:not(:disabled):not(.is-selected) {
    background: rgba(255, 255, 255, 0.1);
}

.bands-enquiry__calendar-day:disabled {
    color: rgb(75, 85, 99);
    cursor: not-allowed;
}

.bands-enquiry__calendar-day.is-selected {
    background: var(--primary);
    color: #000;
    font-weight: 700;
}

.bands-enquiry__calendar-day.is-in-range {
    background: rgba(245, 200, 66, 0.2);
    color: var(--fg);
}

/* ----- Time picker (hour / minute / AM-PM) ----- */
.bands-enquiry__time-picker {
    display: flex;
    align-items: center;
    height: 40px;
    background: #252528;
    border: 1px solid #2E2E33;
    border-radius: 6px;
    overflow: hidden;
}

.bands-enquiry__time-select-wrap {
    position: relative;
    flex: 1;
    height: 100%;
}

.bands-enquiry__time-select {
    width: 100%;
    height: 100%;
    padding: 0 0.25rem;
    background: transparent;
    border: none;
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.2s ease;
}

.bands-enquiry__time-select:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-enquiry__time-select option {
    background: #1A1A1F;
    color: var(--fg);
}

.bands-enquiry__time-select-wrap svg {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    color: rgb(75, 85, 99);
    pointer-events: none;
}

.bands-enquiry__time-colon {
    color: rgb(156, 163, 175);
    font-size: 14px;
    font-weight: 700;
}

.bands-enquiry__time-period {
    display: flex;
    height: 100%;
    border-left: 1px solid #2E2E33;
}

.bands-enquiry__time-period-btn {
    padding: 0 0.5rem;
    height: 100%;
    background: transparent;
    border: none;
    color: rgb(156, 163, 175);
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bands-enquiry__time-period-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--fg);
}

.bands-enquiry__time-period-btn.is-active {
    background: var(--primary);
    color: #000;
}

/* ==========================================================================
   BROWSE / ARTISTS PAGE
   ========================================================================== */
.bands-browse {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 7rem 1.5rem 5rem;
}

@media (min-width: 768px) {
    .bands-browse {
        padding: 7rem 4rem 5rem;
    }
}

/* Sticky header/filter bar — full-bleed background, content stays in container */
.bands-browse__sticky {
    position: sticky;
    top: 102px;
    z-index: 40;
    background: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.bands-browse-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bands-browse-header__title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bands-browse-header__accent {
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 999px;
}

.bands-browse-header__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0;
}

.bands-browse-header__desc {
    color: rgb(156, 163, 175);
    font-size: 14px;
    font-weight: 500;
    max-width: 42rem;
    margin: 0;
}

/* Favourites view header variant */
.bands-browse-header__accent--green {
    background: hsl(152 75% 18%);
}

.bands-browse-header__count {
    color: hsl(0 0% 55%);
    font-weight: 400;
    margin-left: 0.5rem;
    font-size: 1.5rem;
}

.bands-browse-header__exit {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    border: 1px solid #2E2E33;
    color: var(--fg);
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.bands-browse-header__exit:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

.bands-browse-header__exit svg {
    width: 14px;
    height: 14px;
}

/* Filter bar — matches React artists-v3 which uses overflow-visible so the
   location search dropdown can appear below without being clipped. On narrow
   viewports the row overflows horizontally along with the sticky wrapper. */
.bands-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: visible;
}

@media (max-width: 767.98px) {
    .bands-browse {
        overflow-x: clip;
    }

    .bands-browse__sticky {
        overflow: visible;
    }

    /* Mobile: hide FILTER label, city pills, divider, "or by" — keep only [Location] [All Filters] */
    .bands-filter-bar__label,
    .bands-filter-bar__divider,
    .bands-filter-bar__small,
    .bands-filter-bar > .bands-filter-pill {
        display: none;
    }

    .bands-filter-bar {
        gap: 0.5rem;
    }

    .bands-location-search {
        flex: 1;
        min-width: 0;
    }

    .bands-location-search__field,
    .bands-location-search__pill {
        width: 100%;
        height: 40px;
        min-height: 40px;
    }

    .bands-location-search__input {
        width: 100%;
        font-size: 14px;
    }

    .bands-filter-more,
    .bands-filter-more__clear {
        flex-shrink: 0;
        height: 40px;
    }

    .bands-filter-more__clear {
        width: 40px;
    }

}

/* ---------- Trigger button (compact summary) ---------------------------- */
.bands-location-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 32px;
    padding: 0 0.625rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--fg);
    cursor: pointer;
    transition: border-color 0.2s ease;
    text-align: left;
}

.bands-location-trigger:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.bands-location-trigger.is-open {
    border-color: rgba(245, 200, 66, 0.5);
}

.bands-location-trigger__icon {
    width: 14px;
    height: 14px;
    color: hsl(0 0% 50%);
    flex-shrink: 0;
}

.bands-location-trigger.has-selection .bands-location-trigger__icon {
    color: var(--primary);
}

.bands-location-trigger__label {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bands-location-trigger__placeholder {
    color: hsl(0 0% 50%);
    font-weight: 400;
}

.bands-location-trigger__more {
    margin-left: 0.25rem;
    padding: 1px 6px;
    background: rgba(245, 200, 66, 0.15);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
}

.bands-location-trigger__chev {
    width: 14px;
    height: 14px;
    color: hsl(0 0% 50%);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.bands-location-trigger__chev.is-open {
    transform: rotate(180deg);
}

/* ---------- Panel (expanding — realestate style) ----------------------- */
.bands-location-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    min-width: 320px;
    background: #1a1d23;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    flex-direction: column;
    max-height: min(520px, calc(100vh - 140px));
    overflow: hidden;
}

.bands-location-panel__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.875rem;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.bands-location-panel__header svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.bands-location-panel__title {
    flex: 1;
}

.bands-location-panel__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: hsl(0 0% 60%);
    cursor: pointer;
    transition: background 0.15s ease;
    flex-shrink: 0;
}

.bands-location-panel__close:hover,
.bands-location-panel__close:active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--fg);
}

.bands-location-panel__close svg {
    width: 16px;
    height: 16px;
}

/* Combo field inside panel — chips wrap, scrolls vertically after max-height */
.bands-location-panel__combo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    border-bottom: 1px solid var(--border);
    cursor: text;
    max-height: 120px;
    overflow-y: auto;
    flex-shrink: 0;
}

.bands-location-panel__combo-icon {
    width: 14px;
    height: 14px;
    color: hsl(0 0% 50%);
    flex-shrink: 0;
}

.bands-location-panel__input {
    flex: 1 0 120px;
    min-width: 120px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
}

.bands-location-panel__input::placeholder {
    color: hsl(0 0% 45%);
}

.bands-location-panel__body {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.bands-location-panel__clear-all {
    padding: 0.25rem 0.5rem;
    background: transparent;
    border: none;
    color: hsl(0 0% 65%);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.15s ease, color 0.15s ease;
    flex-shrink: 0;
}

.bands-location-panel__clear-all:hover,
.bands-location-panel__clear-all:active {
    color: var(--fg);
    background: rgba(255, 255, 255, 0.08);
}

.bands-location-panel__footer {
    padding: 0.625rem 0.875rem;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.bands-location-panel__done {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.bands-location-panel__done:hover {
    background: hsl(45 100% 45%);
}

.bands-location-panel__done:active {
    transform: scale(0.98);
}

/* ---------- Chip (inside panel combo) ---------------------------------- */
.bands-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 4px 4px 4px 10px;
    background: rgba(245, 200, 66, 0.15);
    color: var(--primary);
    border: 1px solid rgba(245, 200, 66, 0.35);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
}

.bands-location-chip__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.15s ease;
    opacity: 0.7;
}

.bands-location-chip__remove:hover,
.bands-location-chip__remove:active {
    background: rgba(245, 200, 66, 0.25);
    opacity: 1;
}

.bands-location-chip__remove svg {
    width: 10px;
    height: 10px;
}

/* Bar context: fixed-width trigger so layout stays stable */
.bands-location-search--bar {
    width: 220px;
    flex: 0 0 220px;
    min-width: 0;
    position: relative;
}

@media (max-width: 767.98px) {
    .bands-location-search--bar {
        width: auto;
        flex: 1 1 auto;
    }

    /* Panel full-width on mobile */
    .bands-location-panel--bar {
        position: fixed;
        top: auto;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-height: 70vh;
        z-index: 1000;
    }
}

/* Drawer context: panel fills drawer width */
.bands-location-search--drawer {
    position: relative;
    width: 100%;
}

.bands-location-panel--drawer {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 0.5rem;
    max-height: 420px;
    box-shadow: none;
}

/* Dropdown item — selected state (shows check + muted text) */
.bands-location-dropdown__item.is-selected {
    opacity: 0.6;
}

.bands-location-dropdown__check {
    width: 16px;
    height: 16px;
    color: var(--primary);
    margin-left: auto;
    flex-shrink: 0;
}

/* ---------- Map-search topbar inside location dropdown ----------------- */
.bands-location-dropdown__topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.bands-location-dropdown__topbar svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---------- Popular section inside location dropdown -------------------- */
.bands-location-dropdown__popular {
    padding: 0.5rem;
}

.bands-location-dropdown__heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 50%);
    padding: 0.375rem 0.75rem;
    margin: 0;
}

/* ---------- Location picker inside filter drawer ------------------------ */
.bands-drawer__location {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.bands-drawer__location-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 50%);
    margin: 0 0 0.5rem;
}

.bands-drawer__location-label svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.bands-location-search--drawer {
    display: block;
    width: 100%;
}

.bands-location-search--drawer .bands-location-search__field,
.bands-location-search--drawer .bands-location-search__pill {
    width: 100%;
    height: 40px;
    min-height: 40px;
}

.bands-location-search--drawer .bands-location-search__input {
    width: 100%;
    font-size: 14px;
}


.bands-filter-bar__label {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 50%);
}

.bands-filter-bar__small {
    flex-shrink: 0;
    font-size: 12px;
    color: hsl(0 0% 50%);
}

.bands-filter-bar__divider {
    flex-shrink: 0;
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
}

.bands-filter-pill {
    flex-shrink: 0;
    padding: 0 0.75rem;
    height: 32px;
    min-height: 32px;
    line-height: 1;
    box-sizing: border-box;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    color: rgb(156, 163, 175);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.bands-filter-pill:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--fg);
}

.bands-filter-pill.is-active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.bands-filter-pill.is-dim {
    color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.05);
}

.bands-filter-pill__count {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
}

/* Location search field */
.bands-location-search {
    position: relative;
    flex-shrink: 0;
}

.bands-location-search__field {
    display: flex;
    align-items: center;
    height: 32px;
    min-height: 32px;
    box-sizing: border-box;
    padding: 0 0.5rem 0 0.625rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.bands-location-search__field:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.bands-location-search__field:focus-within {
    border-color: rgba(245, 200, 66, 0.4);
}

.bands-location-search__field svg {
    width: 14px;
    height: 14px;
    color: hsl(0 0% 50%);
    flex-shrink: 0;
}

.bands-location-search__input {
    flex: 1;
    padding: 0 0.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--fg);
    font-size: 12px;
    font-weight: 500;
    width: 180px;
}

.bands-location-search__input::placeholder {
    color: hsl(0 0% 50%);
}

.bands-location-search__clear {
    padding: 0.25rem;
    border-radius: 4px;
    color: rgb(156, 163, 175);
    transition: all 0.2s ease;
}

.bands-location-search__clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
}

.bands-location-search__clear svg {
    width: 12px;
    height: 12px;
    color: inherit;
}

.bands-location-search__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 32px;
    min-height: 32px;
    line-height: 1;
    box-sizing: border-box;
    padding: 0 0.75rem;
    background: var(--primary);
    color: #000;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--primary);
}

.bands-location-search__pill svg {
    width: 14px;
    height: 14px;
}

.bands-location-search__pill-clear {
    margin-left: 0.25rem;
    padding: 2px;
    border-radius: 4px;
    color: #000;
    transition: background 0.2s ease;
}

.bands-location-search__pill-clear:hover {
    background: rgba(0, 0, 0, 0.1);
}

.bands-location-search__pill-clear svg {
    width: 12px;
    height: 12px;
}

/* Location dropdown */
.bands-location-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    background: #1a1d23;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.bands-location-dropdown__inner {
    padding: 0.5rem;
}

.bands-location-dropdown__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    text-align: left;
    transition: background 0.2s ease;
}

.bands-location-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-location-dropdown__item svg {
    width: 16px;
    height: 16px;
    color: hsl(0 0% 50%);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.bands-location-dropdown__item:hover svg {
    color: var(--primary);
}

.bands-location-dropdown__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    margin: 0;
    transition: color 0.2s ease;
}

.bands-location-dropdown__item:hover .bands-location-dropdown__name {
    color: var(--primary);
}

.bands-location-dropdown__meta {
    font-size: 10px;
    color: hsl(0 0% 50%);
    margin: 0;
}

.bands-location-dropdown__empty {
    padding: 1rem;
    text-align: center;
    color: hsl(0 0% 50%);
    font-size: 14px;
}

/* All Filters button wrap (holds button + clear X) */
.bands-filter-more-wrap {
    flex-shrink: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

/* All Filters button */
.bands-filter-more {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 0.75rem;
    height: 32px;
    min-height: 32px;
    line-height: 1;
    box-sizing: border-box;
    border-radius: 6px;
    background: transparent;
    color: rgb(156, 163, 175);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.bands-filter-more__clear {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: transparent;
    color: rgb(156, 163, 175);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bands-filter-more__clear svg {
    width: 14px;
    height: 14px;
}

.bands-filter-more__clear:hover,
.bands-filter-more__clear:active {
    color: var(--fg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.bands-filter-more:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--fg);
}

.bands-filter-more.is-active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.bands-filter-more svg {
    width: 14px;
    height: 14px;
}

/* Results grid */
.bands-browse-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 2.5rem;
}

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

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

/* Grid card overrides the flex-basis from horizontal row cards */
.bands-browse-grid .bands-card {
    flex: initial;
    width: auto;
}

/* Load more state */
.bands-browse-load {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.bands-browse-load__btn {
    height: 44px;
    padding: 0 2.5rem;
    background: #1A1C22;
    border: 1px solid #2E2E33;
    color: var(--fg);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.bands-browse-load__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.bands-browse-load__count {
    font-size: 10px;
    color: hsl(0 0% 40%);
}

.bands-browse-load__all {
    padding: 3rem 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 40%);
}

.bands-browse-empty {
    text-align: center;
    padding: 5rem 0;
    color: hsl(0 0% 50%);
    font-size: 18px;
}

.bands-browse-empty--favourites {
    padding: 4rem 1.5rem;
}

.bands-browse-empty--favourites p {
    margin: 0 0 0.5rem;
    font-size: 15px;
}

.bands-browse-empty--favourites p strong {
    font-size: 20px;
    color: var(--fg);
    font-weight: 700;
}

.bands-browse-empty__btn {
    margin-top: 1.25rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: #000;
    border: 0;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: filter 0.2s ease;
}

.bands-browse-empty__btn:hover {
    filter: brightness(1.1);
}


/* Heart button on browse cards */
.bands-card__fav {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    border: 0;
    border-radius: 999px;
    color: #fff;
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bands-card__fav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.06);
}

.bands-card__fav.is-favourite {
    background: hsl(152 75% 18%);
    color: #fff;
}

.bands-card__fav svg {
    width: 18px;
    height: 18px;
}

/* ----- Hover-to-play featured video on browse cards ----- */
.bands-card__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1;
}

/* Only reveal hover-video on pointer devices (desktop) — mobile/touch tap opens the profile instead */
@media (hover: hover) and (min-width: 768px) {
    .bands-card.has-video:hover .bands-card__video {
        opacity: 1;
    }

    .bands-card.has-video:hover .bands-card__img {
        opacity: 0;
        transition: opacity 0.25s ease;
    }
}

/* When video is fullscreen, force it visible regardless of hover state —
   otherwise the opacity:0 default makes fullscreen show as a black screen. */
.bands-card__video:fullscreen,
.bands-card__video:-webkit-full-screen {
    opacity: 1 !important;
    object-fit: contain;
    background: #000;
    pointer-events: auto;
}

.bands-card__video-controls {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.4rem;
    z-index: 4;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

/* Controls only appear on pointer devices — mobile doesn't need mute/fullscreen affordances */
@media (hover: hover) and (min-width: 768px) {
    .bands-card.has-video:hover .bands-card__video-controls {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.bands-card__vctl {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.bands-card__vctl:hover {
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.bands-card__vctl svg {
    width: 16px;
    height: 16px;
}

.bands-card__vctl--sound.is-unmuted {
    background: rgba(91, 128, 96, 0.85);
    border-color: rgba(91, 128, 96, 1);
}

/* Exclusive badge on hover (browse card) */
.bands-card__exclusive-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
    display: block;
}

/* ==========================================================================
   ALL FILTERS DRAWER
   ========================================================================== */
[x-cloak] { display: none !important; }

.bands-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bands-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bands-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: #111114;
    border-left: 1px solid var(--border);
    z-index: 61;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

/* Header */
.bands-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.bands-drawer__header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bands-drawer__icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.bands-drawer__header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fg);
    margin: 0;
}

.bands-drawer__active-count {
    background: var(--primary);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 0.125rem 0.5rem;
    border-radius: 6px;
}

.bands-drawer__close {
    padding: 0.5rem;
    border-radius: 6px;
    color: rgb(156, 163, 175);
    transition: all 0.2s ease;
}

.bands-drawer__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
}

.bands-drawer__close svg {
    width: 20px;
    height: 20px;
}

/* Search */
.bands-drawer__search {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.bands-drawer__search-count {
    margin: 0.5rem 0 0;
    font-size: 11px;
    font-weight: 600;
    color: hsl(0 0% 60%);
    text-align: left;
}

.bands-drawer__search-field {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.bands-drawer__search-field:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.bands-drawer__search-field:focus-within {
    border-color: rgba(245, 200, 66, 0.4);
}

.bands-drawer__search-field svg {
    width: 16px;
    height: 16px;
    color: hsl(0 0% 50%);
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.bands-drawer__search-field input {
    flex: 1;
    padding: 0.625rem 0.75rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
}

.bands-drawer__search-field input::placeholder {
    color: hsl(0 0% 50%);
}

.bands-drawer__search-clear {
    padding: 0.375rem;
    margin-right: 0.375rem;
    border-radius: 4px;
    color: rgb(156, 163, 175);
    transition: all 0.2s ease;
}

.bands-drawer__search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
}

.bands-drawer__search-clear svg {
    width: 14px;
    height: 14px;
    margin: 0;
    color: inherit;
}

/* Expand/Collapse All row */
.bands-drawer__expand-row {
    padding: 0.625rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.bands-drawer__expand-row button {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 50%);
    transition: color 0.2s ease;
}

.bands-drawer__expand-row button:hover {
    color: var(--primary);
}

/* Sections list container — scrollable */
.bands-drawer__sections {
    flex: 1;
    overflow-y: auto;
}

/* Drawer sections list inherits the global scrollbar style from .bands-body */

/* Section block */
.bands-drawer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bands-drawer-section__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    transition: color 0.2s ease;
}

.bands-drawer-section__header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bands-drawer-section__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--fg);
    transition: color 0.2s ease;
}

.bands-drawer-section__header:hover .bands-drawer-section__title {
    color: var(--primary);
}

.bands-drawer-section__count {
    background: rgba(245, 200, 66, 0.2);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 6px;
}

.bands-drawer-section__chevron {
    width: 16px;
    height: 16px;
    color: hsl(0 0% 50%);
    transition: transform 0.2s ease;
}

.bands-drawer-section__chevron.is-open {
    transform: rotate(180deg);
}

.bands-drawer-section__body {
    overflow: hidden;
}

.bands-drawer-section__content {
    padding: 0 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bands-drawer-section__select-all {
    padding: 0 1.5rem 0.5rem;
    display: flex;
    justify-content: flex-end;
}

.bands-drawer-section__select-all button {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(0 0% 50%);
    transition: color 0.2s ease;
}

.bands-drawer-section__select-all button:hover {
    color: var(--primary);
}

.bands-drawer-section__scroll-wrap {
    position: relative;
    display: flex;
    padding: 0 1.5rem 1rem;
}

.bands-drawer-section__scroll {
    flex: 1;
    overflow-y: auto;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-right: 0.25rem;
}

.bands-drawer-section__scroll--tall {
    max-height: 420px;
}

/* Drawer expanded-section scroller inherits the global scrollbar style */

.bands-drawer-letter-header {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 200, 66, 0.6);
    margin: 0.75rem 0 0.375rem;
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    background: #111114;
    z-index: 1;
}

.bands-drawer-letter-header:first-child {
    margin-top: 0;
}

/* Checkbox row */
.bands-drawer-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.bands-drawer-checkbox-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-drawer-checkbox-row.is-selected {
    background: rgba(245, 200, 66, 0.1);
    border-color: rgba(245, 200, 66, 0.3);
}

.bands-drawer-checkbox-row__label {
    font-size: 14px;
    font-weight: 500;
    color: rgb(209, 213, 219);
    transition: color 0.2s ease;
}

.bands-drawer-checkbox-row.is-selected .bands-drawer-checkbox-row__label {
    color: var(--primary);
}

.bands-drawer-checkbox-row:hover .bands-drawer-checkbox-row__label {
    color: var(--fg);
}

.bands-drawer-checkbox-row.is-selected:hover .bands-drawer-checkbox-row__label {
    color: var(--primary);
}

.bands-drawer-checkbox-row--child {
    margin-left: 0;
}

.bands-drawer-children {
    margin-left: 1.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

/* Checkbox square */
.bands-drawer-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.bands-drawer-checkbox-row:hover .bands-drawer-checkbox {
    border-color: rgba(255, 255, 255, 0.4);
}

.bands-drawer-checkbox.is-on {
    background: var(--primary);
    border-color: var(--primary);
}

.bands-drawer-checkbox svg {
    width: 12px;
    height: 12px;
    color: #000;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.bands-drawer-checkbox.is-on svg {
    opacity: 1;
}

/* Radio (sort) */
.bands-drawer-radio-list {
    padding: 0 1.5rem 1rem;
}

.bands-drawer-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.bands-drawer-radio:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-drawer-radio.is-selected {
    background: rgba(245, 200, 66, 0.1);
    border-color: rgba(245, 200, 66, 0.3);
}

.bands-drawer-radio__dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s ease;
}

.bands-drawer-radio__dot.is-on {
    border-color: var(--primary);
}

.bands-drawer-radio__dot span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.bands-drawer-radio__dot.is-on span {
    opacity: 1;
}

.bands-drawer-radio__label {
    font-size: 14px;
    font-weight: 500;
    color: rgb(209, 213, 219);
    transition: color 0.15s ease;
}

.bands-drawer-radio:hover .bands-drawer-radio__label {
    color: var(--fg);
}

.bands-drawer-radio.is-selected .bands-drawer-radio__label {
    color: var(--primary);
}

/* Rating */
.bands-drawer-rating-list {
    padding: 0 1.5rem 1rem;
}

.bands-drawer-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.bands-drawer-rating:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bands-drawer-rating.is-selected {
    background: rgba(245, 200, 66, 0.1);
    border-color: rgba(245, 200, 66, 0.3);
}

.bands-drawer-rating__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.bands-drawer-rating__star {
    width: 14px;
    height: 14px;
}

.bands-drawer-rating__star.is-on {
    color: var(--primary);
    fill: var(--primary);
}

.bands-drawer-rating__star.is-off {
    color: rgb(75, 85, 99);
    fill: none;
}

.bands-drawer-rating__label {
    font-size: 12px;
    color: hsl(0 0% 50%);
}

.bands-drawer-rating__label.is-selected {
    color: var(--primary);
}

/* Price range slider (dual range inputs) */
.bands-drawer-price {
    padding: 0 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bands-drawer-price__values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.bands-drawer-price__values > span:first-child,
.bands-drawer-price__values > span:last-child {
    color: var(--fg);
    font-weight: 500;
}

.bands-drawer-price__dash {
    color: hsl(0 0% 50%);
}

.bands-drawer-price__slider {
    position: relative;
    height: 20px;
}

.bands-drawer-price__track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    transform: translateY(-50%);
}

.bands-drawer-price__range {
    position: absolute;
    top: 50%;
    height: 6px;
    background: var(--primary);
    border-radius: 999px;
    transform: translateY(-50%);
}

.bands-drawer-price__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.bands-drawer-price__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #111114;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    cursor: grab;
    pointer-events: auto;
}

.bands-drawer-price__input::-webkit-slider-thumb:active {
    cursor: grabbing;
}

.bands-drawer-price__input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #111114;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    cursor: grab;
    pointer-events: auto;
}

.bands-drawer-price__input::-moz-range-track {
    background: transparent;
}

.bands-drawer-price__bounds {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(75, 85, 99);
}

/* Alpha sidebar (A-Z jump) */
.bands-drawer-alpha {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0.25rem 0.25rem 0.25rem 0.5rem;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

.bands-drawer-alpha__letter {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    color: rgb(156, 163, 175);
    transition: all 0.15s ease;
}

.bands-drawer-alpha__letter:hover {
    color: var(--primary);
    background: rgba(245, 200, 66, 0.1);
}

.bands-drawer-alpha__letter.is-disabled {
    color: rgb(55, 65, 81);
    cursor: default;
}

.bands-drawer-alpha__letter.is-disabled:hover {
    background: transparent;
    color: rgb(55, 65, 81);
}

/* Footer */
.bands-drawer__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.bands-drawer__footer-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bands-drawer__footer-btn {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    transition: all 0.2s ease;
}

.bands-drawer__footer-btn--clear {
    background: transparent;
    color: rgb(209, 213, 219);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bands-drawer__footer-btn--clear:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--fg);
}

.bands-drawer__footer-btn--apply {
    background: var(--primary);
    color: #000;
}

.bands-drawer__footer-btn--apply:hover {
    filter: brightness(1.1);
}

/* Hide body scroll when drawer is open */
body.bands-drawer-open {
    overflow: hidden;
}

/* ================================================================
   Listing detail — MOBILE-ONLY layout (≤767px)
   Splits the cluttered hero into 3 clear zones:
   - Name + meta: top of image (pushed below back bar)
   - Pills: bottom of image (tab-bar affordance)
   - Save + Book Now: below image, full-width, side-by-side
   Desktop layout untouched.
   ================================================================ */
@media (max-width: 767.98px) {
    .bands-listing-hero {
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .bands-listing-hero__img,
    .bands-listing-hero__overlay {
        height: 60vh;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .bands-listing-hero__overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.55));
    }

    .bands-listing-hero__content {
        position: relative;
        top: auto;
        padding: 0;
    }

    .bands-listing-hero__row {
        position: relative;
        gap: 0;
    }

    .bands-listing-hero__left {
        padding: 5rem 1.25rem 1rem;
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .bands-listing-hero__name {
        font-size: 2rem;
        margin-bottom: 0;
    }

    /* Hide meta over the image on mobile — re-rendered below as meta-mobile */
    .bands-listing-hero__left .bands-listing-hero__meta {
        display: none;
    }

    .bands-listing-hero__right {
        display: contents;
    }

    /* Hero pills hidden on mobile — sticky nav in back-bar replaces them */
    .bands-nav-pills--hero {
        display: none;
    }

    .bands-listing-hero__actions {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 0.75rem;
        padding: 1.25rem 1.25rem 0;
    }

    /* Meta strip below image, above CTAs */
    .bands-listing-hero__meta-mobile {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 1.25rem 0;
        color: rgb(209, 213, 219);
        font-size: 14px;
    }

    /* Show sticky nav pills on mobile too — same scroll-linked behaviour as desktop.
       Hide the artist name inside it to save width; the pills are what matters. */
    .bands-backbar__sticky-nav {
        display: flex;
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .bands-backbar__sticky-nav .bands-backbar__artist-name {
        display: none;
    }

    .bands-backbar__sticky-nav .bands-nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
        gap: 0.375rem;
    }

    .bands-backbar__sticky-nav .bands-nav-pills::-webkit-scrollbar {
        display: none;
    }

    .bands-backbar__sticky-nav .bands-nav-pill {
        flex-shrink: 0;
        padding: 0.25rem 0.625rem;
        font-size: 13px;
    }

    /* Back-bar inner: tighten gap on mobile so pills have more room */
    .bands-backbar__inner {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    /* Collapse "Back to Artists" label to just the arrow icon on mobile.
       The label is redundant with the arrow itself and frees width for the pills. */
    .bands-backbar__link {
        flex-shrink: 0;
        font-size: 0;
        padding: 0.375rem 0.5rem;
    }

    .bands-backbar__link svg {
        width: 18px;
        height: 18px;
    }

    .bands-listing-hero__actions .bands-listing-btn {
        width: 100%;
        justify-content: center;
        height: 52px;
        padding: 0;
    }
}
