        #offcanvasScrolling {
            z-index: 99999 !important;
            width: 385px;
            max-width: 100vw;
            border: 0;
        }

        .offcanvas-backdrop {
            z-index: 99998 !important;
        }

        .venue-sort-offcanvas {
            z-index: 100000 !important;
            height: auto;
            border: 0;
            border-radius: 16px 16px 0 0;
        }

        .venue-sort-offcanvas .offcanvas-header {
            padding: 1rem 1rem 0.9rem;
            border-bottom: 1px solid #edf0f4;
        }

        .venue-sort-offcanvas .offcanvas-title {
            font-weight: 700;
            color: #06142d;
        }

        .venue-sort-offcanvas .offcanvas-body {
            padding: 0.35rem 1rem 1.5rem;
        }

        .venue-sort-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-height: 42px;
            color: #344054;
            text-decoration: none;
        }

        .venue-sort-radio {
            position: relative;
            width: 22px;
            height: 22px;
            min-width: 22px;
            border: 1px solid #98a2b3;
            border-radius: 50%;
            background: #fff;
        }

        .venue-sort-radio.is-active {
            border-color: #06142d;
        }

        .venue-sort-radio.is-active::after {
            content: "";
            position: absolute;
            inset: 5px;
            border-radius: 50%;
            background: #06142d;
        }

        #offcanvasScrolling .offcanvas-header {
            min-height: 52px;
            padding: 0.85rem 0.9rem;
            background: #f3f6f9;
            border-bottom: 0;
        }

        #offcanvasScrolling .offcanvas-title {
            font-size: 1rem;
            font-weight: 700;
            color: #06142d;
        }

        #offcanvasScrolling .offcanvas-body {
            padding: 0 0.85rem 1rem;
            background: #fff;
        }

        #venueResults.list-view > .venue-result {
            width: 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }

        #venueResults.list-view .venue-card {
            flex-direction: row;
        }

        #venueResults.list-view .venue-card .flight-thumb-wrapper {
            width: 416px;
            min-width: 416px;
            max-width: 416px;
            aspect-ratio: auto;
            height: 338px;
        }

        #venueResults.list-view .venue-card .touritem-middle {
            width: 100%;
        }

        .venue-grid-image-wrap {
            aspect-ratio: 11 / 9;
            width: 100%;
            overflow: hidden;
            background: #eef2f6;
        }

        #venueResults:not(.list-view) .venue-card .flight-thumb-wrapper {
            min-height: 250px;
        }

        .venue-grid-image-link {
            width: 100%;
            height: 100%;
        }

        .venue-grid-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .venue-mobile-gallery,
        .venue-mobile-category-badge,
        .venue-mobile-media-overlay,
        .venue-mobile-map-toggle {
            display: none;
        }

        .card-location-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            min-width: 0;
        }

        .card-location-row .ellipsis-container {
            flex: 1 1 auto;
            min-width: 0;
        }

        .card-map-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            flex: 0 0 auto;
            padding: 0.1rem 0;
        }

        .card-map-toggle-input {
            appearance: none;
            width: 40px;
            height: 22px;
            border-radius: 999px;
            background: #e6ebf2;
            position: relative;
            cursor: pointer;
            transition: background 0.2s ease;
            border: 1px solid #d7dee8;
            flex: 0 0 40px;
        }

        .card-map-toggle-input::after {
            content: "";
            position: absolute;
            top: 2px;
            left: 2px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
            transition: transform 0.2s ease;
        }

        .card-map-toggle-input:checked {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
        }

        .card-map-toggle-input:checked::after {
            transform: translateX(18px);
        }

        .card-map-toggle-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: #64748b;
            white-space: nowrap;
            user-select: none;
        }

        .venue-card .flight-thumb-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 11 / 9;
            perspective: 1200px;
            background: #eef2f6;
        }

        .venue-card .card-media-pane img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #eef2f6;
        }

        .card-media-pane,
        .card-map-pane {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
        }

        .card-media-pane {
            z-index: 2;
            opacity: 1;
            transform: rotateY(0deg);
        }

        .card-map-pane {
            z-index: 1;
            opacity: 0;
            transform: rotateY(180deg);
            pointer-events: none;
            background: #eef2f6;
        }

        .venue-card.map-active .card-media-pane {
            opacity: 0;
            transform: rotateY(-180deg);
        }

        .venue-card.map-active .card-map-pane {
            opacity: 1;
            transform: rotateY(0deg);
            pointer-events: auto;
        }

        .venue-card-map-frame {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .venue-card-map-fallback {
            width: 100%;
            height: 100%;
            min-height: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eef2f6;
            color: #475569;
            text-align: center;
            padding: 1rem;
        }

        #venueResults.list-view .venue-card .popFlights-item-overHidden {
            height: 338px;
            min-height: 338px;
            max-height: 338px;
            overflow: hidden;
        }

        #venueResults.list-view .venue-card .card-media-pane img {
            height: 338px;
        }

        .view-toggle .btn.active {
            background: var(--bs-primary);
            color: #fff;
            border-color: var(--bs-primary);
        }

        .view-toggle .btn {
            padding: 0.5rem 0.85rem;
            font-size: 0.9rem;
            line-height: 1.1;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .premium-search-shell {
            position: relative;
            min-height: 420px;
            border-radius: 0;
            overflow: hidden;
            background: #0a1220;
        }

        .premium-hero-slide {
            position: relative;
            min-height: 420px;
        }

        .premium-hero-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(6, 12, 22, 0.92) 0%, rgba(6, 12, 22, 0.8) 28%, rgba(6, 12, 22, 0.34) 58%, rgba(6, 12, 22, 0.7) 100%);
            z-index: 1;
        }

        .premium-hero-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .premium-hero-inner {
            position: relative;
            z-index: 2;
            min-height: 420px;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
            align-items: center;
            column-gap: 2rem;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 5.5rem;
        }

        .premium-hero-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 2.5rem 0;
            color: #fff;
            max-width: 620px;
        }

        .premium-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            width: fit-content;
            padding: 0.45rem 0.8rem;
            border-radius: 10px;
            background: rgba(9, 18, 32, 0.76);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255,255,255,0.88);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .premium-hero-title {
            font-size: clamp(2.1rem, 2.8vw, 3.15rem);
            line-height: 1.08;
            font-weight: 800;
            margin: 0 0 0.9rem;
            max-width: 560px;
            letter-spacing: -0.03em;
            color: #ffffff;
            text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
        }

        .premium-hero-description {
            max-width: 520px;
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.82);
            margin-bottom: 1.25rem;
        }

        .premium-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.1rem;
        }

        .premium-hero-actions .btn {
            min-width: 170px;
            border-radius: 10px;
            padding: 0.82rem 1.15rem;
            font-weight: 700;
            box-shadow: none;
        }

        .premium-hero-actions .btn-premium {
            background: var(--bs-primary);
            color: #fff;
            border: 1px solid var(--bs-primary);
        }

        .premium-hero-actions .btn-premium:hover,
        .premium-hero-actions .btn-premium:focus {
            background: var(--bs-primary-bg-dark);
            border-color: var(--bs-primary-bg-dark);
            color: #fff;
        }

        .premium-hero-actions .btn-ghost {
            background: rgba(9,18,32,0.5);
            border: 1px solid rgba(255,255,255,0.16);
            color: #fff;
        }

        .premium-hero-summary {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            flex-wrap: wrap;
            color: rgba(255,255,255,0.86);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .premium-hero-summary span {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .premium-hero-divider {
            width: 1px;
            height: 14px;
            background: rgba(255,255,255,0.22);
        }

        .premium-hero-preview {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 2rem 0;
            margin-left: 0;
        }

        .premium-hero-preview-stack {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            width: min(100%, 420px);
            margin-left: auto;
        }

        .premium-hero-preview-card {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 320px;
            overflow: hidden;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(9,18,32,0.18);
        }

        .premium-hero-preview-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .premium-hero-preview-card::after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 38%;
            background: linear-gradient(180deg, rgba(5,10,17,0) 0%, rgba(5,10,17,0.55) 100%);
        }

        .premium-hero-preview-gallery {
            position: absolute;
            right: 0.95rem;
            bottom: 0.95rem;
            z-index: 4;
            display: flex;
            gap: 0.45rem;
            align-items: center;
        }

        .premium-hero-preview-thumb {
            appearance: none;
            padding: 0;
            width: 52px;
            height: 52px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.26);
            box-shadow: 0 8px 18px rgba(0,0,0,0.18);
            background: rgba(9,18,32,0.36);
            cursor: pointer;
        }

        .premium-hero-preview-thumb.is-active {
            border-color: rgba(255,255,255,0.92);
            box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), 0.42);
        }

        .premium-hero-preview-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .premium-hero-preview-thumb-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 52px;
            height: 52px;
            padding: 0 0.6rem;
            border-radius: 8px;
            background: rgba(9, 18, 32, 0.86);
            color: #fff;
            font-size: 0.82rem;
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.16);
        }

        .premium-hero-preview-badge {
            position: absolute;
            left: 1rem;
            top: 1rem;
            z-index: 3;
            padding: 0.42rem 0.68rem;
            border-radius: 9px;
            background: rgba(8, 17, 29, 0.78);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .premium-hero-preview-meta {
            position: relative;
            z-index: 3;
            padding: 0.85rem 0.15rem 0;
            color: #fff;
            text-align: left;
        }

        .premium-hero-preview-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0;
            line-height: 1.35;
        }

        .premium-hero-preview-text {
            color: rgba(255,255,255,0.82);
            font-size: 0.88rem;
        }

        .venue-hero-search-panel {
            position: relative;
            z-index: 2;
            width: min(100%, 460px);
            justify-self: end;
            padding: 1.1rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 24px 44px rgba(0,0,0,0.18);
        }

        .venue-hero-search-panel .form-control,
        .venue-hero-search-panel .form-select {
            min-height: 48px;
            border: 1px solid #e3e8f0;
            border-radius: 8px;
            font-weight: 600;
        }

        .venue-hero-search-panel .btn {
            min-height: 50px;
            border-radius: 8px;
            font-weight: 700;
        }

        .premium-search-shell .carousel-control-prev,
        .premium-search-shell .carousel-control-next {
            width: 64px;
            opacity: 1;
            z-index: 4;
        }

        .premium-search-shell .carousel-control-prev {
            justify-content: flex-start;
            padding-left: 1rem;
        }

        .premium-search-shell .carousel-control-next {
            justify-content: flex-end;
            padding-right: 1rem;
        }

        .premium-search-shell .carousel-control-prev-icon,
        .premium-search-shell .carousel-control-next-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background-color: rgba(9,18,32,0.34);
            background-size: 42% 42%;
            border: 1px solid rgba(255,255,255,0.14);
        }

        .premium-search-shell .carousel-indicators {
            z-index: 4;
            justify-content: center;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1.15rem;
        }

        .premium-search-shell .carousel-indicators [data-bs-target] {
            width: 34px;
            height: 4px;
            margin: 0;
            border: 0;
            border-radius: 4px;
            background: rgba(255,255,255,0.45);
            opacity: 1;
        }

        .premium-search-shell .carousel-indicators .active {
            width: 48px;
            background: linear-gradient(90deg, rgb(126 89 194), rgb(101 66 167));
        }

        .premium-field {
            background: #fff;
            border-radius: 22px;
            padding: 0.85rem 1rem 1rem;
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
            height: 100%;
        }

        .premium-field-label {
            display: block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #6b7a90;
            margin-bottom: 0.55rem;
        }

        .premium-search-shell .form-control,
        .premium-search-shell .form-select {
            border: 0;
            background: transparent;
            padding-left: 0;
            padding-right: 0;
            box-shadow: none;
            font-weight: 600;
        }

        .premium-search-shell .inputIicon {
            background: transparent;
            border: 0;
            padding: 0;
        }

        .premium-search-shell .myIcon {
            color: var(--bs-primary);
            font-size: 1rem;
            margin-right: 0.75rem;
        }

        .premium-panel {
            border: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .premium-offcanvas-title {
            font-weight: 800;
            letter-spacing: 0.01em;
        }

        .filter-group {
            padding: 1rem 0;
            border-bottom: 1px solid #e1e6ee;
        }

        .filter-group:last-child {
            border-bottom: 0;
        }

        .filter-group-title {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0;
            text-transform: none;
            color: #06142d;
            margin-bottom: 0.75rem;
        }

        .filter-surface {
            background: transparent;
            border: 0;
            border-radius: 0;
            padding: 0;
        }

        .filter-searchBar-head {
            padding: 1.6rem 0 1rem;
        }

        .filter-searchBar-body .form-control,
        .filter-searchBar-body .form-select {
            min-height: 38px;
            border: 1px solid #eef1f5;
            border-radius: 4px;
            background: #f4f7fb;
            color: #536173;
            font-size: 0.9rem;
        }

        .filter-chip-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.65rem;
        }

        .filter-chip-grid .col-12,
        .filter-chip-grid .col-6 {
            width: 100%;
        }

        .rating-option {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.85rem;
            width: 100%;
            border: 0;
            background: transparent;
            padding: 0.2rem 0;
            cursor: pointer;
            transition: 0.2s ease;
            text-align: left;
        }

        .rating-option:hover .rating-option-box {
            border-color: #bfd3eb;
            background: #f8fbff;
        }

        .rating-option.active .rating-option-box {
            border-color: rgba(4, 102, 200, 0.4);
            background: rgba(4, 102, 200, 0.12);
            box-shadow: inset 0 0 0 1px rgba(4, 102, 200, 0.1);
        }

        .rating-option-box {
            width: 1.3rem;
            height: 1.3rem;
            border-radius: 0.45rem;
            border: 1px solid #d5deea;
            background: #fff;
            flex: 0 0 1.3rem;
            transition: 0.2s ease;
            position: relative;
        }

        .rating-option.active .rating-option-box::after {
            content: "";
            position: absolute;
            left: 0.38rem;
            top: 0.16rem;
            width: 0.34rem;
            height: 0.68rem;
            border: solid var(--bs-primary);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .rating-option-stars {
            color: #f4b400;
            font-size: 0.95rem;
            display: flex;
            gap: 0.15rem;
            align-items: center;
            min-width: 6rem;
        }

        .rating-option-label {
            font-size: 0.96rem;
            font-weight: 700;
            color: #1e293b;
        }

        .rating-option-count {
            margin-left: auto;
            color: #7a8799;
            font-weight: 600;
            font-size: 0.9rem;
            min-width: 2rem;
            text-align: right;
        }

        .toolbar-pill {
            border-radius: 8px;
            padding-inline: 1rem;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .venue-mobile-result-count {
            display: none;
        }

        @media (max-width: 991.98px) {
            /* Tema section { padding: 80px } bu sayfada mobilde başlık üstünde fazla boşluk bırakıyor */
            section.gray-simple.venues-index-listing {
                padding-top: 15px;
                padding-bottom: 2.5rem;
            }

            #main-wrapper {
                padding-bottom: 0 !important;
            }

            body > .d-lg-none.position-fixed.start-0.end-0.bottom-0.bg-white.border-top.shadow-lg {
                display: none !important;
            }

            .premium-search-shell,
            .premium-hero-slide {
                min-height: auto;
                background: #fff;
            }

            .premium-hero-slide::after {
                display: none;
            }

            .premium-hero-image {
                display: none;
            }

            .premium-hero-inner {
                grid-template-columns: 1fr;
                min-height: auto;
                padding: 1.25rem 1.65rem 1rem;
                align-items: center;
            }

            .premium-hero-copy {
                display: none;
            }

            .premium-hero-preview {
                padding: 0;
                justify-content: center;
                margin: 0;
            }

            .premium-hero-preview-stack {
                width: 100%;
                margin-left: 0;
            }

            .premium-hero-preview-card {
                width: 100%;
                min-height: 240px;
                height: 240px;
                border-radius: 10px;
            }

            .premium-hero-preview-badge {
                left: 1rem;
                top: 1rem;
                border-radius: 7px;
                font-size: 0.72rem;
            }

            .premium-hero-preview-meta {
                padding-top: 0.75rem;
                color: #0f172a;
            }

            .premium-hero-preview-title {
                max-width: none;
                overflow: visible;
                text-overflow: clip;
                white-space: normal;
                font-size: 1.02rem;
            }

            .premium-hero-preview-thumb,
            .premium-hero-preview-thumb-count {
                width: 52px;
                min-width: 52px;
                height: 52px;
            }

            .premium-search-shell .carousel-control-prev,
            .premium-search-shell .carousel-control-next {
                width: 44px;
            }

            .premium-search-shell .carousel-control-prev {
                padding-left: 0.75rem;
            }

            .premium-search-shell .carousel-control-next {
                padding-right: 0.75rem;
            }

            .premium-search-shell .carousel-control-prev-icon,
            .premium-search-shell .carousel-control-next-icon {
                width: 32px;
                height: 32px;
                border-radius: 8px;
            }

            .premium-search-shell .carousel-indicators {
                top: auto;
                bottom: 0.5rem;
                margin: 0;
            }

            .venue-grid-image-wrap {
                aspect-ratio: 650 / 430;
            }

            .venue-results-count-top,
            .venue-toolbar-clear,
            #gridViewBtn {
                display: none !important;
            }

            .venue-results-toolbar {
                justify-content: flex-start !important;
            }

            .venue-toolbar-actions {
                gap: 0.75rem !important;
            }

            .view-toggle {
                display: none !important;
            }

            .venue-result {
                width: 100%;
                flex: 0 0 100%;
                max-width: 100%;
            }

            #venueResults:not(.list-view) .venue-card .flight-thumb-wrapper {
                aspect-ratio: 650 / 430;
            }

            #venueResults.list-view .venue-card {
                flex-direction: column;
            }

            /* Ana sayfa preferred-score ile aynı oran: sabit 220px yerine genişliğe göre daha dengeli kırpma */
            #venueResults.list-view .venue-card .flight-thumb-wrapper {
                width: 100%;
                min-width: 100%;
                max-width: 100%;
                height: 394px;
                aspect-ratio: auto;
            }

            #venueResults.list-view .venue-card .popFlights-item-overHidden {
                height: 100%;
                min-height: 0;
                max-height: none;
                overflow: hidden;
            }

            .venue-card .venue-primary-image {
                display: none !important;
            }

            .venue-mobile-gallery {
                display: flex;
                width: 100%;
                height: 100%;
                min-height: 394px;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -webkit-overflow-scrolling: touch;
            }

            .venue-mobile-gallery::-webkit-scrollbar {
                display: none;
            }

            .venue-mobile-gallery-slide {
                flex: 0 0 100%;
                width: 100%;
                min-width: 100%;
                scroll-snap-align: start;
                position: relative;
            }

            .venue-mobile-gallery-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                display: block;
            }

            .venue-mobile-category-badge {
                position: absolute;
                left: 1rem;
                top: 1rem;
                z-index: 5;
                display: inline-flex;
            }

            .venue-mobile-media-overlay {
                position: absolute;
                inset: auto 0 0 0;
                z-index: 4;
                display: flex;
                flex-direction: column;
                gap: 0.55rem;
                padding: 4.5rem 1rem 1rem;
                color: #fff;
                background: linear-gradient(180deg, rgba(9, 18, 32, 0) 0%, rgba(9, 18, 32, 0.72) 45%, rgba(9, 18, 32, 0.9) 100%);
                pointer-events: none;
            }

            .venue-mobile-overlay-top {
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
                align-items: center;
                gap: 0.75rem;
            }

            .venue-mobile-district {
                min-width: 0;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 90%;
            }

            .venue-mobile-rating {
                justify-self: end;
                white-space: nowrap;
            }

            .venue-mobile-rating i {
                color: #ffc107;
            }

            .venue-mobile-dots {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.35rem;
            }

            .venue-mobile-dot {
                width: 6px;
                height: 6px;
                border-radius: 999px;
                background: rgba(255, 255, 255, 0.54);
            }

            .venue-mobile-dot.is-active {
                width: 17px;
                background: #fff;
            }

            .venue-mobile-overlay-title {
                color: #fff !important;
                margin: 0;
            }

            .venue-mobile-capacity {
                display: inline-flex;
                align-items: center;
                color: rgba(255, 255, 255, 0.92);
                font-size: 90%;
            }

            .venue-mobile-detail-slide::after {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(9, 18, 32, 0.45);
            }

            .venue-mobile-detail-link {
                position: absolute;
                left: 50%;
                top: 50%;
                z-index: 5;
                transform: translate(-50%, -50%);
                border: 1px solid rgba(255, 255, 255, 0.9);
                border-radius: 8px;
                color: #fff;
                background: rgba(9, 18, 32, 0.36);
                padding: 0.45rem 1.75rem;
                font-weight: 700;
                white-space: nowrap;
            }

            .venue-card .touritem-middle .touritem-flexxer > .d-flex:first-child,
            .venue-card .card-location-row,
            .venue-card .touritem-flexxer > .d-flex.align-items-center.gap-2.mb-2.flex-wrap.w-100 {
                display: none !important;
            }

            .venue-card .aments-lists {
                margin-top: 0 !important;
                margin-bottom: -0.7rem;
            }

            .venue-card .aments-lists ul {
                align-items: center !important;
                row-gap: 0.45rem !important;
            }

            .venue-mobile-map-toggle {
                display: inline-flex;
                margin-left: auto;
            }

            .venue-capacity-list-item {
                display: none !important;
            }

            #venueResults.list-view .venue-card .card-media-pane img {
                height: 100%;
                min-height: 0;
            }

            .rating-option-stars {
                min-width: auto;
            }

            .venue-related-searches {
                order: 90;
            }

            .venue-pagination {
                order: 80;
            }

            .venue-mobile-result-count {
                display: block;
                order: 100;
            }
        }
