/* ==========================================================================
   GoTo Venue Search - Search Bar Styles (v4 — compact, refined)
   3 segments + Filtre button + Søg button
   ========================================================================== */

:root {
    --gvs-primary: #FF4455;
    --gvs-primary-hover: #e63946;
    --gvs-primary-light: rgba(255, 68, 85, 0.08);
    --gvs-primary-border: rgba(255, 68, 85, 0.3);
    --gvs-primary-glow: rgba(255, 68, 85, 0.15);
    --gvs-dark: #151a1f;
    --gvs-text: #ffffff;
    --gvs-text-dark: #1a1a1a;
    --gvs-text-muted: #6b7280;
    --gvs-bg-light: #f8f9fa;
    --gvs-bg-active: #f0f1f3;
    --gvs-bg-white: #ffffff;
    --gvs-border: #e2e5e9;
    --gvs-border-hover: #c0c5cc;
    --gvs-radius: 10px;
    --gvs-radius-bar: 50px;
    --gvs-radius-panel: 14px;
    --gvs-radius-tile: 8px;
    --gvs-grid-gap: 20px;
    --gvs-shadow-bar: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    --gvs-shadow-bar-hover: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
    --gvs-shadow-panel: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    --gvs-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --gvs-transition-fast: 0.15s ease-out;
    --gvs-transition: 0.2s ease;
    --gvs-transition-slow: 0.3s ease;
}

/* Wrapper */
.gvs-search-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Search Bar
   ========================================================================== */

.gvs-searchbar-wrapper {
    padding: 24px 0 8px;
    display: flex;
    justify-content: center;
}

.gvs-searchbar {
    display: flex;
    align-items: center;
    background: var(--gvs-bg-white);
    border-radius: var(--gvs-radius-bar);
    box-shadow: var(--gvs-shadow-bar);
    transition: box-shadow var(--gvs-transition);
    position: relative;
    width: 100%;
    max-width: 960px;
    padding: 8px;
}

.gvs-searchbar:hover {
    box-shadow: var(--gvs-shadow-bar-hover);
}

/* ==========================================================================
   Segments (shared)
   ========================================================================== */

.gvs-segment {
    position: relative;
    min-width: 0;
}

.gvs-segment--search {
    flex: 2;
}

.gvs-segment--guests,
.gvs-segment--eventtype {
    flex: 1;
}

.gvs-segment--filters {
    flex-shrink: 0;
    position: relative;
}

/* Segment dividers */
.gvs-segment__divider {
    width: 1px;
    background: var(--gvs-border);
    align-self: center;
    height: 28px;
    flex-shrink: 0;
}

/* ==========================================================================
   Segment 1: Free-text Search Input — seamless in bar
   ========================================================================== */

.gvs-search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 0 8px 0 20px;
    gap: 8px;
    min-height: 64px;
}

.gvs-search-input__icon {
    flex-shrink: 0;
    color: var(--gvs-text-muted);
}

.gvs-search-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: inherit;
    color: var(--gvs-text-dark) !important;
    outline: none !important;
    min-width: 0;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.4;
    height: auto !important;
}

.gvs-search-input::placeholder {
    color: var(--gvs-text-muted);
    opacity: 1;
}

/* ==========================================================================
   Segment Clear Buttons (✕)
   ========================================================================== */

.gvs-segment__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: none;
    background: var(--gvs-bg-light);
    border-radius: 50%;
    color: var(--gvs-text-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color var(--gvs-transition), color var(--gvs-transition);
    padding: 0;
}

.gvs-segment__clear:hover {
    background: var(--gvs-border);
    color: var(--gvs-text-dark);
}

.gvs-segment__clear[hidden] {
    display: none;
}

.gvs-segment__clear--inline {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 22px;
    height: 22px;
    background: #151a1f;
    color: #ffffff;
}

.gvs-segment__clear--inline:hover {
    background: #252d36;
    color: #ffffff;
}

.gvs-segment__clear--dark {
    width: 22px;
    height: 22px;
    background: #151a1f;
    color: #ffffff;
}

.gvs-segment__clear--dark:hover {
    background: #252d36;
    color: #ffffff;
}

/* ==========================================================================
   Segment Buttons (Guests, Eventtype) — compact
   ========================================================================== */

.gvs-segment__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    border-radius: var(--gvs-radius-bar);
    transition: background-color var(--gvs-transition);
    outline: none;
    min-height: 64px;
    font-family: inherit;
}

.gvs-segment__btn:hover {
    background: var(--gvs-bg-light);
}

.gvs-segment__btn:focus-visible {
    box-shadow: inset 0 0 0 2px var(--gvs-primary);
}

.gvs-segment__icon {
    flex-shrink: 0;
    color: var(--gvs-text-muted);
    display: flex;
    align-items: center;
}

.gvs-segment__icon svg {
    width: 16px;
    height: 16px;
}

.gvs-segment__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.gvs-segment__label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gvs-text-muted);
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
    display: none;
    transition: color var(--gvs-transition);
}

.gvs-segment__value {
    font-size: 15px;
    font-weight: 500;
    color: var(--gvs-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    transition: color var(--gvs-transition);
}

/* Active segment */
.gvs-segment--active .gvs-segment__btn {
    background: var(--gvs-bg-active);
    box-shadow: none;
    z-index: auto;
}

/* Filled segment */
.gvs-segment--filled .gvs-segment__label {
    display: block;
    color: var(--gvs-text-muted);
}

.gvs-segment--filled .gvs-segment__value {
    color: var(--gvs-text-dark);
    font-weight: 500;
}

/* ==========================================================================
   Filtre Button (outlined pill style) — compact
   ========================================================================== */

.gvs-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1.5px solid var(--gvs-border);
    border-radius: 50%;
    background: var(--gvs-bg-white);
    color: var(--gvs-text-dark);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--gvs-transition), background-color var(--gvs-transition), box-shadow var(--gvs-transition);
    outline: none;
    margin-right: 10px;
    flex-shrink: 0;
}

.gvs-filter-btn:hover {
    border-color: var(--gvs-border-hover);
    background: var(--gvs-bg-light);
}

.gvs-filter-btn:focus-visible {
    box-shadow: 0 0 0 3px var(--gvs-primary-glow);
}

/* Filter count badge */
.gvs-filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--gvs-primary);
    color: var(--gvs-text);
    font-size: 11px;
    font-weight: 700;
    border-radius: 9px;
    line-height: 1;
}

.gvs-filter-btn__count[hidden] {
    display: none;
}

/* Active filter button state */
.gvs-filter-btn--active {
    border-color: var(--gvs-primary);
    color: var(--gvs-primary);
}

/* ==========================================================================
   Search Button — compact
   ========================================================================== */

.gvs-searchbar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 32px;
    margin: 0;
    background: var(--gvs-primary);
    color: var(--gvs-text);
    border: none;
    border-radius: var(--gvs-radius-bar);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: stretch;
    transition: background-color var(--gvs-transition), transform var(--gvs-transition), box-shadow var(--gvs-transition);
    outline: none;
}

.gvs-searchbar__btn:hover {
    background: var(--gvs-primary-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 68, 85, 0.3);
}

.gvs-searchbar__btn:active {
    transform: scale(0.98);
}

.gvs-searchbar__btn:focus-visible {
    box-shadow: 0 0 0 3px var(--gvs-primary-glow);
}

.gvs-searchbar__btn svg {
    flex-shrink: 0;
}

/* ==========================================================================
   Panels (Dropdowns) — compact
   ========================================================================== */

.gvs-panel {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    z-index: 100;
    min-width: 260px;
    background: var(--gvs-bg-white);
    border-radius: var(--gvs-radius-panel);
    box-shadow: var(--gvs-shadow-panel);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--gvs-transition), transform var(--gvs-transition);
}

.gvs-panel[hidden] {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.gvs-panel.gvs-panel--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.gvs-panel__inner {
    padding: 14px 16px;
}

.gvs-panel__heading {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: var(--gvs-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 8px !important;
    line-height: 1.3 !important;
}

/* ==========================================================================
   Autocomplete Dropdown
   ========================================================================== */

.gvs-autocomplete {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 260px;
    background: var(--gvs-bg-white);
    border-radius: var(--gvs-radius-panel);
    box-shadow: var(--gvs-shadow-panel);
    z-index: 110;
    max-height: 300px;
    overflow-y: auto;
    padding: 6px 0;
}

.gvs-autocomplete[hidden] {
    display: none;
}

.gvs-autocomplete__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    cursor: pointer;
    transition: background-color var(--gvs-transition-fast);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    color: var(--gvs-text-dark);
}

.gvs-autocomplete__item:hover {
    background: var(--gvs-bg-light);
}

.gvs-autocomplete__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gvs-text-muted);
}

.gvs-autocomplete__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.gvs-autocomplete__title {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    display: block;
}

.gvs-autocomplete__subtitle {
    font-size: 11px;
    color: var(--gvs-text-muted);
    line-height: 1.2;
    display: block;
    margin-top: 1px;
}

/* ==========================================================================
   Guests Panel — Stepper + Quickpicks
   ========================================================================== */

.gvs-panel--guests {
    min-width: 240px;
}

/* Stepper component */
.gvs-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
    border: 1.5px solid var(--gvs-border);
    border-radius: 50px;
    overflow: hidden;
    background: var(--gvs-bg-white);
}

.gvs-stepper__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #151a1f;
    color: #ffffff;
    cursor: pointer;
    transition: background-color var(--gvs-transition), color var(--gvs-transition);
    flex-shrink: 0;
    padding: 0;
}

.gvs-stepper__btn:hover {
    background: #252d36;
    color: #ffffff;
}

.gvs-stepper__btn:active {
    background: #0d1117;
}

.gvs-stepper__input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    text-align: center;
    font-size: 14px !important;
    font-weight: 600;
    font-family: inherit;
    color: var(--gvs-text-dark) !important;
    outline: none !important;
    padding: 6px 4px !important;
    margin: 0 !important;
    box-shadow: none !important;
    -moz-appearance: textfield;
    min-width: 0;
    height: auto !important;
}

.gvs-stepper__input::-webkit-inner-spin-button,
.gvs-stepper__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.gvs-stepper__input::placeholder {
    color: var(--gvs-text-muted);
    font-weight: 400;
}

/* Quick picks — compact */
.gvs-quickpicks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gvs-quickpick {
    padding: 5px 10px;
    border: 1px solid var(--gvs-border);
    border-radius: 16px;
    background: var(--gvs-bg-white);
    color: var(--gvs-text-dark);
    font-size: 11px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: border-color var(--gvs-transition), background-color var(--gvs-transition), color var(--gvs-transition);
    outline: none;
    white-space: nowrap;
}

.gvs-quickpick:hover {
    border-color: var(--gvs-border-hover);
    background: var(--gvs-bg-light);
}

.gvs-quickpick--active {
    border-color: var(--gvs-primary);
    background: var(--gvs-primary-light);
    color: var(--gvs-primary);
    font-weight: 600;
}

.gvs-quickpick:focus-visible {
    box-shadow: 0 0 0 3px var(--gvs-primary-light);
}

/* ==========================================================================
   Eventtype Panel — compact tiles, no icons
   ========================================================================== */

.gvs-panel--eventtype {
    min-width: 280px;
}

.gvs-event-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.gvs-event-tile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--gvs-border);
    border-radius: var(--gvs-radius-tile);
    background: var(--gvs-bg-white);
    color: var(--gvs-text-dark);
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    position: relative;
    transition: border-color var(--gvs-transition), background-color var(--gvs-transition), transform var(--gvs-transition-fast);
    outline: none;
}

.gvs-event-tile:hover {
    border-color: var(--gvs-border-hover);
    background: var(--gvs-bg-light);
    transform: translateY(-1px);
}

.gvs-event-tile--active {
    border-color: var(--gvs-primary);
    background: var(--gvs-primary-light);
}

.gvs-event-tile:focus-visible {
    box-shadow: 0 0 0 3px var(--gvs-primary-light);
}

.gvs-event-tile__label {
    flex: 1;
}

.gvs-event-tile__check {
    display: none;
    width: 16px;
    height: 16px;
    background: var(--gvs-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.gvs-event-tile--active .gvs-event-tile__check {
    display: flex;
}

/* ==========================================================================
   Filters Panel (Landsdel + Indoor/Outdoor checkboxes)
   ========================================================================== */

.gvs-panel--filters {
    min-width: 360px;
    right: 0;
    left: auto;
    transform: translateY(-4px);
}

.gvs-panel--filters.gvs-panel--visible {
    transform: translateY(0);
}

/* Landsdel tiles — compact */
.gvs-landsdel-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.gvs-landsdel-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid var(--gvs-border);
    border-radius: var(--gvs-radius-tile);
    background: var(--gvs-bg-white);
    color: var(--gvs-text-dark);
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: border-color var(--gvs-transition), background-color var(--gvs-transition);
    outline: none;
}

.gvs-landsdel-tile:hover {
    border-color: var(--gvs-border-hover);
    background: var(--gvs-bg-light);
}

.gvs-landsdel-tile--active {
    border-color: var(--gvs-primary);
    background: var(--gvs-primary-light);
    color: var(--gvs-primary);
    font-weight: 600;
}

.gvs-landsdel-tile:focus-visible {
    box-shadow: 0 0 0 3px var(--gvs-primary-light);
}

/* Checkbox group (Indoor/Outdoor) */
.gvs-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gvs-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: var(--gvs-text-dark);
    user-select: none;
}

.gvs-checkbox__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.gvs-checkbox__box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--gvs-border);
    border-radius: 4px;
    background: var(--gvs-bg-white);
    flex-shrink: 0;
    transition: border-color var(--gvs-transition), background-color var(--gvs-transition);
    color: transparent;
}

.gvs-checkbox__input:checked + .gvs-checkbox__box {
    border-color: var(--gvs-primary);
    background: var(--gvs-primary);
    color: white;
}

.gvs-checkbox:hover .gvs-checkbox__box {
    border-color: var(--gvs-border-hover);
}

.gvs-checkbox__input:focus-visible + .gvs-checkbox__box {
    box-shadow: 0 0 0 3px var(--gvs-primary-light);
}

.gvs-checkbox__label {
    line-height: 1.3;
}

/* ==========================================================================
   Facility Toggle Tags
   ========================================================================== */

.gvs-facility-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gvs-facility-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid var(--gvs-border);
    border-radius: 50px;
    background: var(--gvs-bg-white);
    color: var(--gvs-text-dark);
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: border-color var(--gvs-transition), background-color var(--gvs-transition), color var(--gvs-transition);
    outline: none;
}

.gvs-facility-tag:hover {
    border-color: var(--gvs-border-hover);
    background: var(--gvs-bg-light);
}

.gvs-facility-tag--active {
    border-color: var(--gvs-primary);
    background: rgba(255, 68, 85, 0.08);
    color: var(--gvs-primary);
    font-weight: 600;
}

.gvs-facility-tag svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.gvs-facility-tag--active svg {
    opacity: 1;
    stroke: var(--gvs-primary);
}

/* ==========================================================================
   Inspiration Tags — compact
   ========================================================================== */

.gvs-inspiration {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 10px 0 14px;
    justify-content: center;
}

.gvs-inspiration__label {
    font-size: 11px;
    color: var(--gvs-text-muted);
    font-weight: 500;
}

.gvs-inspiration__tag {
    padding: 4px 10px;
    border: 1px solid var(--gvs-border);
    border-radius: 16px;
    background: var(--gvs-bg-white);
    color: var(--gvs-text-dark);
    font-size: 11px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: border-color var(--gvs-transition), background-color var(--gvs-transition), color var(--gvs-transition), transform var(--gvs-transition-fast);
    outline: none;
    white-space: nowrap;
    animation: gvs-fade-in-up 0.4s ease-out both;
}

.gvs-inspiration__tag:nth-child(2) { animation-delay: 50ms; }
.gvs-inspiration__tag:nth-child(3) { animation-delay: 100ms; }
.gvs-inspiration__tag:nth-child(4) { animation-delay: 150ms; }
.gvs-inspiration__tag:nth-child(5) { animation-delay: 200ms; }
.gvs-inspiration__tag:nth-child(6) { animation-delay: 250ms; }
.gvs-inspiration__tag:nth-child(7) { animation-delay: 300ms; }

.gvs-inspiration__tag:hover {
    border-color: var(--gvs-primary);
    background: var(--gvs-primary-light);
    color: var(--gvs-primary);
    transform: translateY(-1px);
}

.gvs-inspiration__tag:focus-visible {
    box-shadow: 0 0 0 3px var(--gvs-primary-light);
}

/* Inspiration reset button (dark pill) */
.gvs-inspiration__reset {
    padding: 4px 10px;
    border: none;
    border-radius: 16px;
    background: #151a1f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
    outline: none;
}

.gvs-inspiration__reset:hover {
    background: #252d36;
}

.gvs-inspiration__reset[hidden] {
    display: none;
}

/* ==========================================================================
   Filters Panel — Clear/Reset Button
   ========================================================================== */

.gvs-filters-clear-btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 8px;
    border: 1px solid var(--gvs-border);
    border-radius: var(--gvs-radius-tile);
    background: var(--gvs-bg-white);
    color: var(--gvs-text-muted);
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.gvs-filters-clear-btn:hover {
    border-color: var(--gvs-primary);
    color: var(--gvs-primary);
    background: var(--gvs-primary-light);
}

/* ==========================================================================
   Panel Heading Spacing Modifier
   ========================================================================== */

.gvs-panel__heading--spaced {
    margin-top: 16px !important;
}

/* ==========================================================================
   No-results Clear Button
   ========================================================================== */

.gvs-clear-btn--large {
    padding: 8px 20px;
    font-size: 13px;
    font-family: inherit;
    border: 1px solid var(--gvs-border);
    border-radius: 16px;
    background: var(--gvs-bg-white);
    color: var(--gvs-text-muted);
    cursor: pointer;
    transition: border-color var(--gvs-transition), color var(--gvs-transition), background-color var(--gvs-transition);
    white-space: nowrap;
    margin-top: 12px;
}

.gvs-clear-btn--large:hover {
    border-color: var(--gvs-primary);
    color: var(--gvs-primary);
    background: var(--gvs-primary-light);
}

/* ==========================================================================
   Loading State
   ========================================================================== */

.gvs-loading {
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.gvs-loading.gvs-loading--active {
    display: flex;
}

.gvs-loading[hidden] {
    display: none !important;
}

.gvs-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gvs-border);
    border-top-color: var(--gvs-primary);
    border-radius: 50%;
    animation: gvs-spin 0.7s linear infinite;
}

.gvs-results-grid--loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity var(--gvs-transition);
}

/* ==========================================================================
   No Results
   ========================================================================== */

.gvs-no-results {
    text-align: center;
    padding: 50px 20px;
    color: var(--gvs-text-muted);
}

.gvs-no-results-icon {
    margin-bottom: 12px;
    opacity: 0.4;
}

.gvs-no-results p {
    font-size: 14px;
    margin: 0 0 8px;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes gvs-spin {
    to { transform: rotate(360deg); }
}

@keyframes gvs-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Mobile Panel Backdrop
   ========================================================================== */

.gvs-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
    opacity: 0;
    transition: opacity var(--gvs-transition);
    pointer-events: none;
}

.gvs-panel-backdrop--visible {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Mobile Trigger Bar — hidden on desktop, shown on mobile via responsive.css
   ========================================================================== */

.gvs-mobile-trigger {
    display: none;
}

.gvs-mobile-trigger__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gvs-bg-white);
    border-radius: var(--gvs-radius-bar);
    box-shadow: var(--gvs-shadow-bar);
    padding: 14px 16px;
    cursor: pointer;
    transition: box-shadow var(--gvs-transition);
}

.gvs-mobile-trigger__bar:active {
    box-shadow: var(--gvs-shadow-bar-hover);
}

.gvs-mobile-trigger__icon {
    flex-shrink: 0;
    color: var(--gvs-text-dark);
}

.gvs-mobile-trigger__text {
    flex: 1;
    font-size: 15px;
    color: var(--gvs-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gvs-mobile-trigger__text--active {
    color: var(--gvs-text-dark);
    font-weight: 500;
}

.gvs-mobile-trigger__chevron {
    flex-shrink: 0;
    color: var(--gvs-text-muted);
}

/* ==========================================================================
   Mobile Overlay Header — hidden on desktop
   ========================================================================== */

.gvs-mobile-overlay-header {
    display: none;
}

.gvs-mobile-overlay-header__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gvs-bg-light);
    border-radius: 50%;
    color: var(--gvs-text-dark);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.gvs-mobile-overlay-header__close:active {
    background: var(--gvs-border);
}

.gvs-mobile-overlay-header__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gvs-text-dark);
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
