        /* Icons */
        .icon-nav { width: 14px; height: 14px; fill: var(--text-primary); transition: var(--transition-fast); }

        /* HEADER */
        header {
            background-color: var(--dark);
            color: var(--text-primary);
            padding: 30px 0 50px;
            position: relative;
            z-index: 1;
            border-bottom: none;
            overflow: visible;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
        }
        header .nav { margin-bottom: 40px; }
        .header-media {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            contain: paint;
            background: var(--surface-body) url('/assets/video/hero-bg-poster.jpg') center / cover no-repeat;
        }
        .header-media__video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            backface-visibility: hidden;
            transform: translateZ(0);
        }
        .header-media--static .header-media__video { display: none; }
        .header-media__veil {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.6) 40%, rgba(10,10,10,1) 100%),
                radial-gradient(65% 60% at 50% 40%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
        }
        @media (prefers-reduced-motion: reduce) {
            .header-media__video { display: none; }
            .hero > h1, .hero > p, .hero > .search,
            .section-reveal, .item {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
            .scroll-progress { display: none; }
        }

        /* Scroll progress bar — disabled (caused GPU flickering) */
        .scroll-progress { display: none !important; }

        .container {
            width: 100%;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        @media (min-width: 1240px) { .container { padding: 0; } }

        /* ============ SEARCH BAR ZONE (UNVRS-style segmented) ============ */
        .search-bar {
            display: flex;
            align-items: center;
            background: var(--border-glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-light);
            border-radius: 4px;
            padding: 4px;
            transition: border-color .15s, box-shadow .15s;
        }
        .search-bar:focus-within {
            border-color: var(--border-strong);
            box-shadow: 0 0 0 2px var(--hover-tint);
        }
        .search-bar input[type="search"] {
            flex: 1; min-width: 0;
            background: none; border: none; outline: none;
            color: var(--text-primary); font-size: 16px; font-weight: 600;
            padding: 14px 16px;
            font-family: inherit;
        }
        .search-bar input[type="search"]::placeholder { color: var(--text-ghost); }
        .search-bar .search-clear {
            position: static; display: none;
            width: 28px; height: 28px;
            background: none; border: none;
            color: var(--text-secondary); font-size: 22px;
            cursor: pointer; flex-shrink: 0;
            align-items: center; justify-content: center;
        }
        .search-bar .search-clear:hover { color: var(--text-primary); }
        .search.has-value .search-bar .search-clear { display: inline-flex; }
        .search-bar__divider {
            width: 1px; height: 24px;
            background: var(--border-glass);
            flex-shrink: 0;
        }
        .search-bar__zone {
            display: flex; align-items: center; gap: 5px;
            padding: 8px 12px;
            background: none; border: none; border-radius: 4px;
            color: var(--text-faint);
            font-size: 12px; font-weight: 600;
            font-family: inherit; text-transform: uppercase;
            letter-spacing: 0.3px;
            cursor: pointer; white-space: nowrap;
            transition: background .15s, color .15s;
        }
        .search-bar__zone:hover { background: var(--hover-tint); color: var(--text-primary); }
        .search-bar__zone-pin { width: 12px; height: 12px; flex-shrink: 0; opacity: 0.5; }
        .search-bar__zone:hover .search-bar__zone-pin { opacity: 0.8; }
        .search-bar__zone-arrow { width: 8px; height: 8px; opacity: 0.4; transition: transform .15s; }
        .search-bar__zone:hover .search-bar__zone-arrow { opacity: 0.6; }
        .search-zone-dropdown.open .search-bar__zone-arrow,
        .search-bar__zone.open-arrow { transform: rotate(180deg); }

        /* Zone dropdown from search bar */
        .search-zone-dropdown {
            position: absolute; top: calc(100% + 6px); right: 0;
            min-width: 180px;
            background: var(--surface-secondary); border: 1px solid var(--border-default); border-radius: 4px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.5);
            padding: 6px 0;
            display: none; z-index: 101;
        }
        .search-zone-dropdown.open {
            display: block;
            animation: szd-in .15s ease-out;
        }
        @keyframes szd-in {
            from { opacity: 0; transform: translateY(-6px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .search-zone-dropdown__option {
            display: block; width: 100%; padding: 10px 16px; text-align: left;
            background: none; border: none; color: var(--text-secondary);
            font-size: 14px; font-weight: 700; font-family: inherit;
            cursor: pointer; transition: background .1s, color .1s;
        }
        .search-zone-dropdown__option:hover { background: var(--surface-elevated); color: var(--text-primary); }
        .search-zone-dropdown__option.is-active { color: var(--red); background: rgba(205,14,14,0.08); }
        .search-zone-dropdown__divider { height: 1px; background: var(--border-modal); margin: 4px 0; }

        .sticky-zone-btn {
            display: inline-flex; align-items: center; gap: 5px;
            background: none; border: none; color: var(--text-primary);
            font-size: 13px; font-weight: 700; font-family: inherit;
            text-transform: uppercase; cursor: pointer; padding: 0;
            transition: color .15s;
        }
        .sticky-zone-btn:hover { color: var(--red); }
        .sticky-zone-btn svg { opacity: 0.7; }

        /* Hero */
        .hero { text-align: center; max-width: 1100px; margin: 0 auto; }
        .hero h1 {
            font-size: clamp(40px, 6vw, 64px); font-weight: 900; text-transform: uppercase;
            margin-bottom: 40px; letter-spacing: -2px; line-height: 1.15;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .hero-island {
            display: inline-block;
            color: #b80c0c;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .hero-island.fade-out {
            opacity: 0;
            transform: translateY(-10px);
        }
        .hero-island.fade-in {
            opacity: 0;
            transform: translateY(10px);
        }

        /* Hero — no reveal animation (prevents flickering) */
        .hero > h1, .hero > p, .hero > .search {
            opacity: 1; transform: none;
        }

        /* Scroll-triggered section reveals — disabled on mobile, subtle on desktop */
        .section-reveal {
            opacity: 1; transform: none;
        }
        @media (min-width: 769px) {
            .section-reveal {
                opacity: 0; transform: translateY(16px);
                transition: opacity 0.4s ease-out, transform 0.4s ease-out;
            }
            .section-reveal.is-visible { opacity: 1; transform: translateY(0); }
            header .section-reveal { opacity: 1; transform: none; }
        }

        /* ===== LIGHT THEME: cards, buttons, filters ===== */

        /* Cards (list view) */
        [data-theme="light"] .item { background: #fff; border: 1.5px solid #222; box-shadow: none; }
        [data-theme="light"] .item:hover { border-color: #000; box-shadow: none; transform: translateY(-2px); }
        [data-theme="light"] .img-box { background: #f5f5f5; border-right: 1.5px solid #222; }

        /* Cards (grid view) — borders, no shadows, slight lift */
        [data-theme="light"] .list.grid-view .item { background: #fff; border: 1.5px solid #222 !important; box-shadow: none !important; }
        [data-theme="light"] .list.grid-view .item:hover { box-shadow: none !important; transform: translateY(-4px) !important; border-color: #000; }
        [data-theme="light"] .list.grid-view .content { background: #fff; }
        [data-theme="light"] .list.grid-view .img-box { border-right: none; border-bottom: 1.5px solid #222; }
        [data-theme="light"] .list.grid-view .img-box::after { display: none; }

        /* Buttons — price: lift only, BUY: lift + black, no red glow anywhere */
        [data-theme="light"] .btn-pri { color: #fff; }
        [data-theme="light"] .btn-pri:hover { background: #111; border-color: #111; color: #fff; box-shadow: none; transform: translateY(-2px); }
        [data-theme="light"] .actions .btn-sec { border-color: #222; border-width: 1.5px; box-shadow: none; }
        [data-theme="light"] .actions .btn-sec:hover,
        [data-theme="light"] .list.grid-view .btn-sec:hover { background: transparent; color: inherit; border-color: #000; transform: translateY(-2px); box-shadow: none; }
        [data-theme="light"] .actions .btn-sec.free:hover,
        [data-theme="light"] .list.grid-view .btn-sec.free:hover { background: var(--btn-fill); color: var(--btn-fill-text); border-color: var(--btn-border); transform: translateY(-2px); box-shadow: none; }
        [data-theme="light"] .actions .btn-sec.free,
        [data-theme="light"] .list.grid-view .btn-sec.free,
        [data-theme="light"] .mob-btns .btn-sec.free { background: var(--btn-fill); color: var(--btn-fill-text); border-color: var(--btn-border); }
        [data-theme="light"] .actions .btn-sec.sold-out,
        [data-theme="light"] .list.grid-view .btn-sec.sold-out,
        [data-theme="light"] .mob-btns .btn-sec.sold-out { background: rgba(205,14,14,0.08); color: var(--red); border-color: rgba(205,14,14,0.3); opacity: 0.85; }
        [data-theme="light"] .btn-load-more,
        [data-theme="light"] .list.grid-view .btn-load-more { background: #fff; color: #111; border: 1.5px solid #222; box-shadow: none; }
        [data-theme="light"] .btn-load-more:hover,
        [data-theme="light"] .list.grid-view .btn-load-more:hover { background: #111; color: #fff; border-color: #111; box-shadow: none; }
        [data-theme="light"] .filter-action-btn.primary { color: #fff; }
        [data-theme="light"] .filter-action-btn.primary:hover { background: #111; border-color: #111; color: #fff; box-shadow: none; }

        /* Display switch (grid/list) — black when active */
        [data-theme="light"] #events-display-switch .display-btn { border-color: #222; border-width: 1.5px; background: #fff; }
        [data-theme="light"] #events-display-switch .display-btn.active,
        [data-theme="light"] #events-display-switch .display-btn.is-active { background: #111; border-color: #111; }
        [data-theme="light"] #events-display-switch .display-btn.active svg,
        [data-theme="light"] #events-display-switch .display-btn.is-active svg { fill: #fff; }

        /* Filters — black borders */
        [data-theme="light"] .events-filter__field { border-color: #222; border-width: 1.5px; background: #fff; box-shadow: none; }

        /* Dropdowns / popups — filter bar: light in light theme */
        [data-theme="light"] .custom-select__dropdown,
        [data-theme="light"] .custom-date__calendar { background: #fff; border-color: #222; border-width: 1.5px; box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
        [data-theme="light"] .custom-select__option.selected { color: #fff; }

        /* Hero search dropdowns — ALWAYS DARK (on dark header bg) */
        [data-theme="light"] .search-autocomplete,
        [data-theme="light"] .search-zone-dropdown {
            background: #1a1a1a !important;
            border-color: #333 !important;
            box-shadow: 0 12px 36px rgba(0,0,0,0.5) !important;
        }
        [data-theme="light"] .search-zone-dropdown__option { color: rgba(255,255,255,0.65); }
        [data-theme="light"] .search-zone-dropdown__option:hover { background: #2a2a2a; color: #fff; }
        [data-theme="light"] .search-zone-dropdown__divider { background: #333; }
        [data-theme="light"] .autocomplete-header { color: rgba(255,255,255,0.4) !important; }
        [data-theme="light"] .autocomplete-item:hover { background: #2a2a2a !important; }
        [data-theme="light"] .autocomplete-info h4 { color: #fff !important; }
        [data-theme="light"] .autocomplete-info p { color: rgba(255,255,255,0.55) !important; }
        [data-theme="light"] .autocomplete-empty { color: rgba(255,255,255,0.5) !important; }

        /* Calendar */
        [data-theme="light"] .cal-day.range-start,
        [data-theme="light"] .cal-day.range-end { color: #fff; }

        /* Free price green */
        [data-theme="light"] .autocomplete-meta .ac-price.free { color: var(--text-primary); }

        /* Search (Main Hero Search) */
        .search { position: relative; z-index: 60; max-width: 600px; margin: 0 auto 80px; }
        /* Hide native search clear button */
        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
        input[type="search"]::-ms-clear { display: none; }

        /* Trending Cards */
        .trend-section {
            margin-top: 14px;
            margin-bottom: 0;
        }
        .trend-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
            border-bottom: 1px solid var(--border-modal);
            padding-bottom: 12px;
        }
        .trend-head__text {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .trend-title {
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            color: var(--text-primary);
            line-height: 1;
            display: flex;
            align-items: baseline;
            gap: 10px;
        }
        .trend-title__count {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-ghost);
        }
        .trend-controls {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }
        .trend-nav-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 4px;
            border: 1px solid var(--border-default);
            background: var(--sticky-bg);
            color: var(--text-primary);
            font-weight: 800;
            font-size: 18px;
            line-height: 1;
            transition: var(--transition-normal);
        }
        .trend-nav-btn:hover {
            border-color: var(--btn-border);
            background: var(--surface-primary);
        }
        .trend-nav-btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
            border-color: var(--border-modal);
            background: var(--surface-body);
        }
        .trend-nav-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }


        .trending-grid {
            --trend-card-size: clamp(188px, 12.6vw, 228px);
            display: flex;
            align-items: flex-start;
            gap: 18px;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 2px;
        }
        .trending-grid::-webkit-scrollbar {
            display: none;
        }

        .trend-card {
            display: flex;
            flex-direction: column;
            flex: 0 0 var(--trend-card-size);
            width: var(--trend-card-size);
            min-width: var(--trend-card-size);
            max-width: var(--trend-card-size);
            color: inherit;
            text-decoration: none;
            transition: transform var(--transition-normal);
        }
        .trend-card:hover {
            transform: translateY(-5px);
        }
        .trend-card:hover .trend-card__media {
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }

        .trend-card__media {
            aspect-ratio: 1 / 1;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--surface-elevated);
            background: var(--surface-secondary);
            margin-bottom: 10px;
        }
        .trend-card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }
        .trend-card:hover .trend-card__media img {
            transform: scale(1.06);
        }

        .trend-card__title {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.22;
            margin: 0 0 6px;
            display: block !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            height: 1.22em;
        }
        .trend-card__date,
        .trend-card__venue,
        .trend-card__price {
            font-size: 14px;
            line-height: 1.3;
            margin: 0 0 4px;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 1.3em;
        }
        .trend-card__row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 0;
        }
        .trend-card__date {
            color: var(--red);
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .trend-card__venue {
            color: var(--text-tertiary);
            font-weight: 600;
        }
        .trend-card__price {
            color: var(--text-primary);
            font-weight: 800;
            margin-bottom: 0;
        }
        .trend-card__price--sold-out {
            color: var(--red);
            opacity: 0.85;
        }
        .trend-card--empty {
            border: 1px dashed var(--border-default);
            border-radius: 4px;
            padding: 16px;
            min-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            background: var(--hover-tint);
            min-width: 100%;
        }

        /* Search Autocomplete */
        .search-autocomplete {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: var(--surface-secondary);
            border: 1px solid var(--border-default);
            border-radius: 4px;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
            z-index: 100;
            max-height: 520px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--border-default) transparent;
        }
        .search-autocomplete::-webkit-scrollbar { width: 6px; }
        .search-autocomplete::-webkit-scrollbar-track { background: transparent; }
        .search-autocomplete::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 3px; }
        .search-autocomplete::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

        .autocomplete-header {
            padding: 10px 14px 6px;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-ghost);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: none;
        }

        .autocomplete-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            cursor: pointer;
            border-bottom: none;
            transition: background var(--t-normal);
        }

        .autocomplete-item:last-child {
            border-bottom: none;
        }

        .autocomplete-item:hover {
            background: var(--surface-elevated);
        }

        .autocomplete-item picture { display: contents; }
        .autocomplete-img {
            width: 56px;
            height: 56px;
            object-fit: cover;
            border-radius: 4px;
            flex-shrink: 0;
            background: var(--surface-primary);
        }

        .autocomplete-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 2px;
            flex: 1;
            min-width: 0;
        }

        .autocomplete-info h4 {
            font-size: 15px;
            font-weight: 800;
            margin: 0 !important;
            color: var(--text-primary);
            text-align: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            line-height: 1.2;
        }

        .autocomplete-date {
            margin: 0 !important;
            color: var(--red);
            font-size: 11px;
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .autocomplete-meta {
            font-size: 12px;
            color: var(--text-dim);
            margin: 0 !important;
            text-align: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            line-height: 1.2;
        }
        .autocomplete-meta .ac-price {
            color: var(--text-primary);
            font-weight: 700;
        }
        .autocomplete-meta .ac-price.free {
            color: var(--text-primary);
        }
        .autocomplete-meta .ac-price.tba {
            color: var(--text-ghost);
            font-weight: 600;
        }
        .autocomplete-info p {
            margin: 0 !important;
        }

        .autocomplete-no-results {
            padding: 14px 16px;
            font-size: 13px;
            color: var(--text-dim);
            text-align: center;
            border-bottom: 1px solid var(--border-modal);
        }

        .autocomplete-empty {
            padding: 20px 16px;
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }


        /* --- MAIN WRAPPER (full-width bg to block parallax bleed) --- */
        .main-wrapper {
            width: 100%;
            background: var(--dark);
            position: relative;
            z-index: 2;
        }
        /* --- MAIN CONTENT --- */
        main {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 12px 0 60px;
            position: relative;
            width: 100%;
        }
        @media (max-width: 1240px) { main { padding-left: 20px; padding-right: 20px; } }

        /* --- EVENTS FILTER (BEM) --- */
        .events-filter {
            position: relative;
            z-index: 50;
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            margin-bottom: 42px;
        }
        .events-filter__wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .listings_filters_wrapper {
            flex: 1 1 100%;
            max-width: 100%;
            min-width: 0;
        }
        .listings_filters_wrapper form {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr 1fr auto;
            gap: 15px;
        }
        .filter_wrapper { min-width: 0; }
        .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

        .events-filter__label--display {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
            margin-left: auto;
            justify-self: end;
            justify-content: flex-end;
        }
        .events-filter__display-buttons {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .events-filter__display-option,
        #events-display-switch .display-btn {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-default);
            border-radius: 4px;
            background: var(--surface-primary);
            transition: var(--transition-normal);
            cursor: pointer;
            padding: 0;
        }
        .events-filter__display-option:hover,
        #events-display-switch .display-btn:hover {
            background: var(--surface-secondary);
            transform: none;
        }
        .events-filter__display-option.active,
        #events-display-switch .display-btn.active,
        #events-display-switch .display-btn.is-active {
            background: var(--red);
            border-color: var(--red);
        }
        .events-filter__display-option svg,
        #events-display-switch .display-btn svg {
            width: 18px;
            height: 18px;
            fill: var(--text-tertiary);
            transition: var(--transition-normal);
        }
        .events-filter__display-option.active svg,
        #events-display-switch .display-btn.active svg,
        #events-display-switch .display-btn.is-active svg {
            fill: var(--text-primary);
        }

        .events-filter__field {
            position: relative;
            display: flex;
            align-items: stretch;
            border: 1px solid var(--border-default);
            border-radius: 4px;
            background: var(--surface-primary);
            overflow: visible;
            transition: border-color var(--transition-normal);
        }
        .events-filter__field:hover {
            background: var(--surface-secondary);
            border-color: var(--border-hover);
        }
        .events-filter__field:focus-within {
            border-color: var(--text-faint);
            background: var(--surface-secondary);
        }
        .events-filter__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
            flex-shrink: 0;
            background: transparent;
            transition: var(--transition-normal);
        }
        .events-filter__icon svg {
            width: 16px;
            height: 16px;
            fill: var(--text-faint);
            transition: var(--transition-normal);
        }
        .events-filter__control {
            flex: 1;
            min-width: 0;
            padding: 0 12px 0 0;
            border: none;
            border-radius: 0;
            background: transparent;
            height: 44px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            transition: var(--transition-normal);
            cursor: pointer;
        }
        .events-filter__control--search { padding-left: 0; }
        .events-filter__control:hover, .events-filter__control:focus {
            outline: none;
        }
        .events-filter__control::placeholder { color: var(--text-primary); font-family: 'Inter', sans-serif; font-weight: 600; opacity: 0.5; }
        .events-filter__control option { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; padding: 8px; color: var(--text-primary); }

        /* --- CUSTOM DROPDOWN --- */
        .custom-select { position: relative; }
        .custom-select__trigger {
            display: flex;
            align-items: center;
            width: 100%;
            height: 48px;
            cursor: pointer;
            gap: 0;
        }
        .custom-select__value {
            flex: 1;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-faint);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 8px;
        }
        .custom-select__value.has-value { color: var(--text-primary); font-size: clamp(10px, 1.1vw, 13px); }
        .custom-select__arrow {
            width: 10px; height: 10px;
            margin-right: 12px;
            flex-shrink: 0;
            transition: var(--transition-normal);
        }
        .custom-select__arrow path { fill: var(--text-tertiary); }
        .custom-select.open .custom-select__arrow { transform: rotate(180deg); }

        .custom-select__dropdown {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: var(--surface-secondary);
            border: 1px solid var(--border-default);
            border-radius: 4px;
            z-index: 100;
            opacity: 0;
            transform: translateY(-8px) scaleY(0.96);
            transform-origin: top center;
            pointer-events: none;
            transition: opacity var(--transition-normal), transform var(--transition-normal);
            overflow: hidden;
        }
        .custom-select.open .custom-select__dropdown {
            opacity: 1;
            transform: translateY(0) scaleY(1);
            pointer-events: auto;
        }
        .custom-select__option {
            padding: 12px 14px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-fast);
        }
        .custom-select__option:hover { background: var(--surface-elevated); }
        .custom-select__option.selected { background: var(--red); color: var(--text-primary); }

        /* --- CUSTOM CALENDAR --- */
        .custom-date { position: relative; }
        .custom-date__trigger {
            display: flex;
            align-items: center;
            height: 48px;
            cursor: pointer;
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }
        .custom-date__value {
            flex: 1;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-faint);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 8px;
        }
        .custom-date__value.has-value { color: var(--text-primary); font-size: clamp(10px, 1.1vw, 13px); }

        .custom-date__calendar {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            width: min(280px, 90vw);
            background: var(--surface-secondary);
            border: 1px solid var(--border-default);
            border-radius: 4px;
            z-index: 100;
            padding: 16px;
            opacity: 0;
            transform: translateY(-8px) scaleY(0.96);
            transform-origin: top center;
            pointer-events: none;
            transition: opacity var(--transition-normal), transform var(--transition-normal);
        }
        .custom-date.open .custom-date__calendar {
            opacity: 1;
            transform: translateY(0) scaleY(1);
            pointer-events: auto;
        }
        .cal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }
        .cal-header__title {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 800;
            color: var(--text-primary);
            text-transform: uppercase;
        }
        .cal-header__btn {
            width: 28px; height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-default);
            border-radius: 4px;
            background: var(--border-subtle);
            cursor: pointer;
            transition: var(--transition-fast);
        }
        .cal-header__btn:hover { background: var(--border-default); transform: scale(1.1); }
        .cal-header__btn svg { width: 14px; height: 14px; fill: var(--text-primary); }

        .cal-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            margin-bottom: 6px;
        }
        .cal-weekdays span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-ghost);
            text-align: center;
            text-transform: uppercase;
            padding: 4px 0;
        }
        .cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
        }
        .cal-day {
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition-fast);
            border: 1px solid transparent;
            position: relative;
        }
        .cal-day:hover { background: var(--border-modal); transform: scale(1.1); }
        .cal-day.today { border-color: var(--red); }
        .cal-day.today::after {
            content: '';
            position: absolute;
            bottom: 2px;
            width: 4px; height: 4px;
            background: var(--red);
            border-radius: 50%;
        }
        .cal-day.range-start,
        .cal-day.range-end { background: var(--red); color: var(--text-primary); border-color: var(--red); }
        .cal-day.in-range { background: var(--border-default); color: var(--text-primary); }
        .cal-day.in-range:hover { background: var(--border-default); }
        .cal-day.other-month { color: var(--text-ghost); }
        .cal-day.empty { pointer-events: none; }

        /* List Container */
        .list {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .events-list__state {
            padding: 60px 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 16px;
            font-weight: 600;
            width: 100%;
        }

        .item {
            display: flex;
            background: var(--surface-primary);
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 0;
        }
        .img-box {
            width: 20%;
            min-width: 180px;
            max-width: 240px;
            height: 220px;
            flex-shrink: 0;
            background: var(--surface-body);
            border-right: 1px solid var(--border-subtle);
        }
        .img-box picture, .trend-card__media picture { display: contents; }
        .img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .content {
            flex-grow: 1;
            padding: 0 clamp(20px, 3vw, 40px);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .desc h3 {
            margin-bottom: 10px;
            font-size: 24px;
            font-weight: 900;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .meta {
            color: var(--text-tertiary);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-weight: 600;
            text-transform: uppercase;
        }
        .meta div { display: flex; align-items: center; gap: 10px; }
        .meta svg { width: 16px; height: 16px; fill: var(--text-tertiary); }

        .actions { display: flex; align-items: center; gap: 20px; }
        .mob-btns { display: none; }

        .btn {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 48px;
            width: clamp(140px, 12vw, 160px);
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 4px;
            letter-spacing: 0.5px;
            transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), transform var(--transition-fast);
        }
        .btn-sec {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }
        .btn-sec:hover { border-color: var(--text-faint); background: transparent; transform: translateY(-2px); }
        .actions .btn-sec { border: 1px solid var(--border-default); background: transparent; color: var(--text-primary); font-weight: 800; cursor: default; }
        .actions .btn-sec:hover { transform: translateY(-2px); background: transparent; border-color: var(--text-faint); }
        .actions .btn-sec:active { transform: translateY(-2px) !important; }
        .actions .btn-sec.free { background: var(--btn-fill); color: var(--btn-fill-text); border-color: var(--btn-border); }
        .actions .btn-sec.sold-out { background: rgba(205,14,14,0.12); color: var(--red); border-color: rgba(205,14,14,0.4); opacity: 0.85; }
        .btn-pri {
            background-color: var(--red);
            color: var(--text-primary);
            border: 2px solid var(--red);
            transition: background-color var(--t-normal), border-color var(--t-normal),
                        transform var(--t-fast), box-shadow var(--t-normal);
        }
        .btn-pri:hover {
            background-color: #a00b0b; border-color: #a00b0b; transform: translateY(-2px);
            box-shadow: 0 0 30px var(--red-glow), 0 4px 12px rgba(205,14,14,0.2);
        }

        .item--skeleton {
            pointer-events: none;
        }
        .item--skeleton .img-box,
        .item--skeleton .skeleton-line {
            background: linear-gradient(90deg, var(--surface-secondary) 25%, var(--border-modal) 37%, var(--surface-secondary) 63%);
            background-size: 400% 100%;
            animation: shimmer 1.8s ease-in-out infinite;
        }
        .item--skeleton .img-box { border-right: 1px solid var(--border-subtle); }
        .item--skeleton .skeleton-line {
            display: block;
            border-radius: 4px;
        }
        .item--skeleton .skeleton-title {
            width: 82%;
            height: 16px;
            margin-bottom: 8px;
        }
        .item--skeleton .skeleton-meta {
            width: 66%;
            height: 13px;
            margin-bottom: 5px;
        }
        .item--skeleton .skeleton-meta:last-child {
            width: 44%;
            margin-bottom: 0;
        }
        @keyframes shimmer {
            0%   { background-position: 100% 0; }
            100% { background-position: -100% 0; }
        }

        .btn-load-more {
            display: block;
            width: 100%;
            max-width: 400px;
            margin: 30px auto;
            background: var(--surface-secondary);
            color: var(--text-primary);
            border: 1px solid var(--border-default);
            border-radius: 4px;
            padding: 16px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: background var(--transition-normal), border-color var(--transition-normal);
        }
        .btn-load-more:hover {
            background: var(--surface-elevated);
            border-color: var(--border-hover);
        }
        .list.grid-view .btn-load-more {
            grid-column: 1 / -1;
            justify-self: center;
            width: min(100%, 400px);
            margin: 8px auto 6px;
        }

        /* === UNVRS-STYLE DARK CARDS === */
        .list.grid-view {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }
        .list.grid-view .item {
            flex-direction: column;
            padding: 0;
            overflow: hidden;
            background: var(--surface-primary);
            border: none;
            border-radius: 4px;
            position: relative;
            transition: transform .35s ease, box-shadow .35s ease, opacity .5s ease-out;
        }
        .list.grid-view .item:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }
        .list.grid-view .img-box {
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            height: auto;
            aspect-ratio: 3 / 4;
            border-bottom: none;
            border-right: none;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }
        .list.grid-view .img-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, var(--surface-primary) 100%);
            pointer-events: none;
            transition: opacity .2s;
        }
        .list.grid-view .item:hover .img-box img {
            transform: scale(1.04);
        }
        .list.grid-view .img-box img {
            transition: transform .35s ease;
        }
        .list.grid-view .content {
            flex: 1;
            flex-direction: column;
            align-items: flex-start;
            padding: 18px 16px 16px;
            margin-top: -2px;
            background: var(--surface-primary);
            border-radius: 0;
            position: relative;
            z-index: 1;
        }
        .list.grid-view .desc {
            flex: 1;
            min-height: auto;
            width: 100%;
        }
        .list.grid-view .desc h3 {
            font-size: 16px;
            line-height: 1.3;
            height: calc(16px * 1.3 * 2);
            margin: 0 0 8px;
            letter-spacing: -0.2px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .list.grid-view .desc h3 a {
            color: var(--text-primary) !important;
        }
        .list.grid-view .meta {
            gap: 4px;
            text-transform: none;
            margin-bottom: 6px;
        }
        .list.grid-view .meta div:nth-child(1) {
            color: var(--text-tertiary);
            font-weight: 700;
            font-size: 13px;
        }
        .list.grid-view .meta div:nth-child(2) {
            color: var(--text-faint);
            font-weight: 600;
            font-size: 13px;
        }
        .list.grid-view .meta div:nth-child(3) {
            color: var(--text-faint);
            font-weight: 600;
            font-size: 13px;
        }
        .list.grid-view .actions {
            width: 100%;
            padding-top: 12px;
            border-top: 1px solid var(--border-subtle);
            gap: 10px;
        }
        .list.grid-view .actions .btn {
            flex: 1;
            width: auto;
            min-width: 0;
        }
        .list.grid-view .btn-sec {
            background: transparent;
            border-color: var(--border-default);
            color: var(--text-primary);
            font-size: 13px;
            height: 38px;
        }
        .list.grid-view .btn-sec:hover {
            border-color: var(--btn-border);
            background: transparent;
        }
        .list.grid-view .btn-sec.free {
            background: var(--btn-fill);
            color: var(--btn-fill-text);
            border-color: var(--btn-border);
        }
        .list.grid-view .btn-sec.sold-out {
            background: rgba(205,14,14,0.12);
            color: var(--red);
            border-color: rgba(205,14,14,0.4);
            opacity: 0.85;
        }
        .list.grid-view .btn-pri {
            height: 38px;
            font-size: 13px;
            border-radius: 4px;
        }
        .list.grid-view .btn-load-more {
            background: var(--border-subtle);
            border: 1px solid var(--border-default);
            border-radius: 4px;
        }
        .list.grid-view .btn-load-more:hover {
            background: var(--border-default);
            border-color: var(--border-hover);
        }
        @media (max-width: 1280px) {
            .list.grid-view { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        @media (max-width: 980px) {
            .list.grid-view { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 560px) {
            .list.grid-view { grid-template-columns: 1fr; gap: 14px; }
            .list.grid-view .img-box { aspect-ratio: 16 / 9; }
        }

        @media (max-width: 1024px) {
            .desc h3 { font-size: 20px; }
        }

        /* === MICRO-INTERACTIONS === */
        .btn-pri:active, .btn-sec:active, .btn-manage:active,
        .btn-load-more:active, .trend-nav-btn:active {
            transform: scale(0.96) !important;
            transition-duration: 0.08s;
        }
        #events-display-switch .display-btn {
            transition: var(--t-normal), transform var(--t-fast);
        }
        #events-display-switch .display-btn:active {
            transform: scale(0.9);
        }
        #events-display-switch .display-btn.is-active {
            box-shadow: 0 0 0 1px var(--border-light);
        }
        .custom-select__option.selected {
            box-shadow: inset 0 0 0 1px rgba(205,14,14,0.3);
        }

        /* Card stagger animation */
        .js-loaded .item { opacity: 0; transform: translateY(20px); }
        .js-loaded .item.card-visible { opacity: 1; transform: translateY(0); }

        /* Autocomplete animation */
        .search-autocomplete {
            transition: opacity 0.2s ease-out, transform 0.2s ease-out;
        }
        .search-autocomplete:not(.ac-visible) {
            opacity: 0; transform: translateY(-8px); pointer-events: none;
        }
        .search-autocomplete.ac-visible {
            opacity: 1; transform: translateY(0); pointer-events: auto;
        }

        @media (max-width: 900px) {
            .hero h1 { font-size: 42px; }
            .events-filter__wrapper { flex-wrap: wrap; }
            .listings_filters_wrapper { flex: 1 1 100%; max-width: 100%; }
            .listings_filters_wrapper form { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 980px) {
            .sticky-zone-btn { display: none; }
        }
        @media (max-width: 768px) {
            main { margin-top: 0; padding-top: 20px; }
            header { padding-bottom: 30px; min-height: 70vh; }
            .grid { grid-template-columns: 1fr; }
            .hero h1 {
                font-size: 38px;
                line-height: 0.95;
                letter-spacing: -2px;
            }
            .search { margin-bottom: 40px; }
            .search-bar__zone { font-size: 11px; padding: 6px 10px; gap: 4px; }
            .search-bar__zone-pin { width: 10px; height: 10px; }
            .search-bar__zone-arrow { width: 7px; height: 7px; }
            .search-bar__divider { height: 20px; }

            /* Фильтры mobile: Row1 = Search + toggle, Row2 = Date/Location/Sort */
            .events-filter__wrapper {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
            }

            .listings_filters_wrapper {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .listings_filters_wrapper form {
                display: grid !important;
                grid-template-columns: 1fr 1fr 1fr !important;
                gap: 4px !important;
                flex-wrap: unset !important;
            }

            .search_filter {
                grid-column: 1 / 3;
                grid-row: 1;
            }

            .display_filter {
                grid-column: 3;
                grid-row: 1;
                align-self: center;
                justify-self: stretch;
                width: 100%;
                display: flex;
                justify-content: stretch;
            }
            .display_filter .events-filter__display-buttons {
                width: 100%;
                gap: 6px;
            }
            .display_filter .events-filter__display-buttons .display-btn {
                width: auto;
                flex: 1 1 0;
            }

            .date_filter {
                grid-column: 1;
                grid-row: 2;
            }
            .location_filter {
                grid-column: 2;
                grid-row: 2;
            }
            .sort_by {
                grid-column: 3;
                grid-row: 2;
            }

            /* Разрешить dropdown'ам выходить за границы */
            .events-filter__field {
                overflow: visible;
            }

            /* Иконки в фильтрах — отступ от края */
            .events-filter__icon {
                padding: 0 6px 0 10px;
            }

            /* Уменьшить margin у стрелки */
            .custom-select__arrow {
                margin-right: 4px;
            }

            /* Обрезать текст в trigger'ах вместо родителя */
            .custom-select__trigger,
            .custom-date__trigger {
                overflow: hidden;
            }

            /* Гарантировать ellipsis для value */
            .custom-select__value,
            .custom-date__value {
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            /* Повысить z-index для dropdown'ов */
            .custom-select__dropdown,
            .custom-date__calendar {
                z-index: 1000;
            }

            /* Убрать вспышку при тапе — только весь блок, не отдельный trigger */
            .events-filter__field:active {
                background: var(--surface-secondary);
            }

            /* Показать переключатель list/grid на мобилке */
            .events-filter__label--display {
                display: flex;
                margin-left: 0;
                justify-self: start;
                width: auto;
            }

            /* Карточки: фон как body, картинка 150x150 слева */
            .item {
                display: block;
                background: var(--bg);
                border: 1px solid var(--border-subtle);
                border-radius: var(--radius);
                overflow: hidden;
                transition: box-shadow var(--t-normal), transform var(--t-normal), border-color var(--t-normal);
            }

            .item:hover {
                box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
                transform: translateY(-2px);
            }

            .img-box {
                width: 130px !important;
                height: 130px !important;
                min-width: 130px;
                max-width: 130px;
                float: left;
                margin: 12px;
                border-radius: 4px;
                overflow: hidden;
                flex-shrink: 0;
                border-right: none;
            }

            /* Адаптивные размеры для маленьких экранов */
            @media (max-width: 400px) {
                .img-box {
                    width: 120px !important;
                    height: 120px !important;
                    min-width: 120px;
                    max-width: 120px;
                    margin: 12px;
                }
            }

            @media (max-width: 350px) {
                .img-box {
                    width: 100px !important;
                    height: 100px !important;
                    min-width: 100px;
                    max-width: 100px;
                    margin: 10px;
                }
            }

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

            .content {
                padding: 12px 12px 0 0;
                overflow: hidden;
            }

            .desc h3 {
                font-size: 17px;
                font-weight: 700;
                margin-bottom: 8px;
                line-height: 1.25;
            }

            .meta {
                font-size: 13px;
                gap: 5px;
            }

            .meta div {
                margin-bottom: 0;
            }

            .meta svg {
                width: 14px;
                height: 14px;
                flex-shrink: 0;
            }


            .actions {
                display: none;
            }

            .mob-btns {
                display: flex;
                padding: 10px 12px 12px;
                gap: 8px;
                clear: both;
            }

            .mob-btns .btn-sec {
                flex: 0 0 25%;
                height: 42px;
                background: transparent;
                border: 1px solid var(--border-default);
                border-radius: 4px;
                font-size: 15px;
                font-weight: 700;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--text-primary);
                text-transform: uppercase;
            }

            .mob-btns .btn-sec.free {
                background: var(--btn-fill);
                color: var(--btn-fill-text);
                border-color: var(--btn-border);
            }
            .mob-btns .btn-sec.sold-out {
                background: rgba(205,14,14,0.12);
                color: var(--red);
                border-color: rgba(205,14,14,0.4);
                opacity: 0.85;
            }

            .mob-btns .btn-pri {
                flex: 0 0 calc(75% - 8px);
                height: 42px;
                background: var(--red);
                color: var(--text-primary);
                border: 1px solid var(--red);
                border-radius: 4px;
                font-size: 15px;
                font-weight: 800;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
            }

            /* Trending on mobile */
            .trend-section {
                margin-top: 40px;
            }

            .trend-head {
                align-items: center;
                gap: 12px;
                margin-bottom: 14px;
            }

            .trend-title {
                font-size: 20px;
            }

            .trend-controls {
                margin-left: auto;
            }
            .trend-nav-btn {
                width: 38px;
                height: 38px;
            }

            .trend-card__media {
                border-radius: 4px;
                margin-bottom: 6px;
            }
            .trending-grid {
                gap: 8px;
            }
            .trend-card {
                flex: 0 0 calc((100% - 16px) / 3);
                width: calc((100% - 16px) / 3);
                min-width: calc((100% - 16px) / 3);
                max-width: calc((100% - 16px) / 3);
            }

            .trend-card__title {
                font-size: 11px;
                line-height: 1.18;
            }

            .trend-card__date,
            .trend-card__venue,
            .trend-card__price {
                font-size: 10px;
                line-height: 1.2;
            }

            .trend-card__venue {
                margin-top: 1px;
            }

            .trend-card__price {
                margin-top: 2px;
            }

            /* Autocomplete на мобильном */
            .search-autocomplete {
                max-height: 300px;
                border-radius: 4px;
            }

            .autocomplete-header {
                padding: 10px 12px 6px;
                font-size: 12px;
            }

            .autocomplete-item {
                padding: 8px 12px;
                gap: 10px;
                align-items: center;
            }

            .autocomplete-img {
                width: 48px;
                height: 48px;
                border-radius: 4px;
            }

            .autocomplete-info h4 {
                font-size: 14px;
                line-height: 1.25;
            }

            .autocomplete-date {
                font-size: 10px;
            }

            .autocomplete-meta {
                font-size: 9px;
                color: var(--text-dim);
            }

            /* Grid view on mobile: keep true card layout */
            .list.grid-view {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
            }
            .list.grid-view .item {
                display: flex;
                background: var(--surface-primary);
                border: 1px solid var(--border-subtle);
                border-radius: 4px;
                overflow: hidden;
                transform: none !important;
                box-shadow: none !important;
            }
            .list.grid-view .img-box {
                float: none;
                margin: 0;
                width: 100% !important;
                min-width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
                aspect-ratio: 1 / 1;
                border-radius: 0;
                border-right: none;
                border-bottom: 1px solid var(--border-subtle);
            }
            .list.grid-view .content {
                padding: 10px;
            }
            .list.grid-view .desc h3 {
                font-size: 14px;
                margin-bottom: 5px;
            }
            .list.grid-view .meta {
                font-size: 11px;
                gap: 3px;
            }
            .list.grid-view .meta svg {
                width: 12px;
                height: 12px;
            }
            .list.grid-view .meta div {
                gap: 6px;
            }
            .list.grid-view .actions {
                display: flex;
                gap: 6px;
                padding-left: 2px;
                padding-right: 2px;
            }
            .list.grid-view .btn-sec,
            .list.grid-view .btn-pri {
                flex: 1 1 0;
                min-width: 0;
                width: 0;
                height: 36px;
                padding: 0 4px;
                font-size: 12px;
                border-width: 1.5px;
            }
            .list.grid-view .mob-btns {
                display: none !important;
            }
        }
        @media (max-width: 480px) {
            .list.grid-view {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
            }
        }

        /* ===== LIGHT THEME: page background, layout, search ===== */
        [data-theme="light"] body { background: #111; }
        [data-theme="light"] .main-wrapper { background: #f0f0f0; }
        /* search-bar: stays dark like in dark theme (inside hero) */
        [data-theme="light"] .autocomplete-img { background: #f5f5f5; }
        [data-theme="light"] .cal-day.in-range { background: rgba(205,14,14,0.08); }
        [data-theme="light"] .events-list__state { color: #666; }
        [data-theme="light"] .mob-btns .btn-pri { color: #fff; }
        [data-theme="light"] .mob-btns .btn-pri:hover { background: #111; border-color: #111; color: #fff; }
        [data-theme="light"] .actions .btn-sec.free,
        [data-theme="light"] .mob-btns .btn-sec.free { background: rgba(205,14,14,0.08); border-color: rgba(205,14,14,0.3); color: var(--red); }
        [data-theme="light"] .actions .btn-sec.sold-out,
        [data-theme="light"] .mob-btns .btn-sec.sold-out { background: rgba(205,14,14,0.08); border-color: rgba(205,14,14,0.3); color: var(--red); opacity: 0.85; }

        /* Scroll to top button */
        .scroll-top-btn {
            position: fixed; bottom: 32px; right: 32px;
            width: 44px; height: 44px; border-radius: 4px;
            border: 1px solid var(--border-default);
            background: var(--surface-primary); color: var(--text-primary);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; opacity: 0; pointer-events: none;
            transform: translateY(12px); transition: opacity 0.3s, transform 0.3s;
            z-index: 1100; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        .scroll-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
        @media (hover: hover) {
            .scroll-top-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
            [data-theme="light"] .scroll-top-btn:hover { background: #111; border-color: #111; color: #fff; }
        }
        .scroll-top-btn:focus { outline: none; background: var(--surface-primary); color: var(--text-primary); }
        .scroll-top-btn:active, .scroll-top-btn.pressed { background: var(--red); border-color: var(--red); color: #fff; }
        [data-theme="light"] .scroll-top-btn:active, [data-theme="light"] .scroll-top-btn.pressed { background: #111; border-color: #111; color: #fff; }
        .scroll-top-btn svg { width: 20px; height: 20px; fill: currentColor; }
        [data-theme="light"] .scroll-top-btn { border-color: #222; box-shadow: 8px 8px 0 rgba(0,0,0,0.1); }
        @media (max-width: 768px) {
            .scroll-top-btn { bottom: 90px; }
        }

        /* Why Party Isla — dark promo */
        .promo-why { background: #0a0a0a; color: #fff; }
        .promo-why__line { display: none; }
        .promo-why__inner { max-width: var(--max-w); margin: 0 auto; padding: 28px 20px; box-sizing: border-box; }
        @media (min-width: 1240px) { .promo-why__inner { padding: 28px 0; } }
        .promo-why__title { font-family: var(--heading-font); font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1; margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--red); color: #fff; text-align: left; }
        @media (max-width: 768px) { .promo-why__title { font-size: 20px; } }
        .promo-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
        .promo-why__item h3 { font-family: var(--heading-font); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 10px; color: #fff; }
        .promo-why__item p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0; }
        @media (max-width: 768px) {
            .promo-why__grid { grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
            .promo-why__inner { padding: 16px 16px; }
            .promo-why__item h3 { font-size: 0.75rem; margin-bottom: 2px; }
            .promo-why__item p { font-size: 0.7rem; line-height: 1.3; }
            .promo-why__title { font-size: 16px; margin-bottom: 10px; padding-bottom: 8px; }
        }

        /* --- FAQ Section --- */
        .home-faq { background: #0a0a0a; color: #fff; border-top: 1px solid rgba(255,255,255,0.06); }
        .home-faq__inner { max-width: var(--max-w); margin: 0 auto; padding: 40px 20px; box-sizing: border-box; }
        @media (min-width: 1240px) { .home-faq__inner { padding: 48px 0; } }
        .home-faq__title { font-family: var(--heading-font); font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1; margin: 0 0 20px; padding-bottom: 12px; border-bottom: 1px solid var(--red); color: #fff; text-align: left; }
        .home-faq__list { display: flex; flex-direction: column; gap: 0; }
        .home-faq__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
        .home-faq__item summary { font-family: var(--heading-font); font-size: 1rem; font-weight: 700; padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: #fff; }
        .home-faq__item summary::-webkit-details-marker { display: none; }
        .home-faq__item summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--red); transition: transform 0.2s; flex-shrink: 0; margin-left: 16px; }
        .home-faq__item[open] summary::after { content: '\2212'; }
        .home-faq__item p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 0 0 16px; padding: 0; }
        @media (max-width: 768px) {
            .home-faq__title { font-size: 20px; }
            .home-faq__inner { padding: 24px 16px; }
            .home-faq__item summary { font-size: 0.85rem; padding: 12px 0; }
            .home-faq__item p { font-size: 0.8rem; line-height: 1.5; }
        }

