.venue-archive-container * {
    font-family: 'Poppins', sans-serif !important;
}

/* Venue Archive Styles */
.venue-archive-wrapper {
    width: 100%;
    background: #fff;
    /* min-height: 100vh; */
    padding-bottom: 40px;
}

/* .venue-archive-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
} */

/* Top Filter Bar - Sticky after header */

.venue-top-bar .inner_wrapper {
    /* position: sticky; */
    /* top: 80px; */
    z-index: 50;
    background: #fff !important;
    border-radius: 0;
    /* padding: 15px 0px; */
    padding-top: 15px;
    padding-bottom: 15px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    transition: box-shadow 0.2s ease;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
}

.venue-top-bar {
    background: #fff;
    /* border-bottom: 1px solid rgba(224, 224, 224, 1); */
}

/* Add shadow when scrolled */


.top-bar-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    max-width: 75% !important;
    width: 100%;
}

.top-bar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Top Filter Dropdown */
.top-filter-dropdown {
    position: relative;
}

.top-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #FAFAFA;
    border: 1px solid #BABDC1;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #667593;
    transition: all 0.2s;
    white-space: nowrap;
    height: 48px;
}

.top-filter-btn:hover {
    border-color: #999;
    background: #f8f9ff;
}

/* .top-filter-btn.active {
    border-color: #4285f4;
    background: #f8f9ff;
} */

/* .top-filter-btn.has-selection {
    border-color: #4285f4;
    background: #e8f0fe;
    color: #1967d2;
} */

.filters-modal-btn {
    width: 68px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 2px;
    background: #EFF2F5;
    border: none !important;
}

.search_wrapper {
    background: #EFF2F5;
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-radius: 2px;
}

.venue-archive-container .mobile.bottom {
    display: none !important;
}

/* 
.filters-modal-btn.has-selection {
    background: #ff4081;
    border-color: #ff4081;
    color: #fff;
} */
/* ---------- pill setup ---------- */
.filter-pills .filter-pill {
    position: relative;
    overflow: hidden;
    transition: transform .15s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- giant gray wave ---------- */
.filter-pills .filter-pill::after {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(162, 162, 162, 0.3);
    /* neutral gray wave */
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .7s, height .7s, opacity .8s;
    opacity: 0;
}

.filter-pills .filter-pill:hover {
    background-color: rgba(46, 84, 235, 0.2);
}

/* ---------- trigger ---------- */
.filter-pills .filter-pill:active::after {
    width: 500px;
    /* much wider wave */
    height: 500px;
    opacity: 1;
    transition: 0s;
    /* instant bloom */
}

.dropdown-arrow {
    transition: transform 0.2s;
}

.top-filter-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Top Filter Dropdown Menu */
.top-filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 170px;
    max-height: 400px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.top-filter-dropdown-menu.active {
    display: flex;
}

.location-dropdown {
    min-width: 165px;
}

.dropdown-search {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

/* .dropdown-search-input:focus {
    outline: none;
    border-color: #4285f4;
} */

.location-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.location-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.location-tab.active {
    color: #4285f4;
    border-bottom-color: #4285f4;
}

.dropdown-options {
    padding: 0px;
    overflow-y: auto;
    max-height: 300px;
}

.dropdown-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 0px;
    transition: background 0.2s;
    font-size: 14px;
}

.dropdown-options label:hover {
    background: #f5f5f5;
}

.dropdown-options input[type="checkbox"],
.dropdown-options input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: none;
}

/* Guest Count Input (Top Bar) */
.guest-count-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 16px;
    background: #FAFAFA;
    border: 1px solid #BABDC1;
    border-radius: 2px;
    transition: all 0.2s;
    height: 46.5px;
}

/* .guest-count-wrapper:focus-within {
    border-color: #4285f4;
    background: #f8f9ff;
} */

.guest-count-wrapper svg {
    flex-shrink: 0;
}

#guest-count-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #667593;
    width: 100px;
}

#guest-count-input::placeholder,
.venue-search-input-simple::placeholder {
    color: #999;
    font-weight: 500 !important;
}

/* Simple Search Input */
.venue-search-input-simple {
    padding: 0px 0px;
    border: 0px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500 !important;
    width: 75%;
    background: transparent;
    height: 48px;
    color: #667593;
}

.search_wrapper .search_inner_wrapper {
    padding: 0 15px;
    gap: 8px;
    display: flex;
    align-items: center;
    width: 90%;
}

.venue-search-input-simple:focus {
    outline: none;
    /* border-color: #4285f4; */
}

/* Filters Modal */
.filters-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.filters-modal.active {
    display: flex;
}

.filters-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.filters-modal-content {
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 2px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    /* animation: modalSlideIn 0.3s ease-out; */
    transition: transform 0.3s ease-out;
    padding: 20px 24px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filters-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-bottom: 24px;
}

.filters-modal-header h2 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    margin: 0px;
    text-align: center;
}

.close-modal-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100000;
    transition: background 0.3s ease;
}

.close-modal-btn svg {
    fill: #333;
}

.close-modal-btn:hover {
    background: #e0e0e0;
}

.filters-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0px;
}

.filter-section {
    margin-bottom: 24px;
}

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

.filter-section-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    gap: 25px;
}

.filter-section-header h3 {
    color: #455064;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
}

.filter-section-header svg {
    transition: transform 0.2s;
    transform: rotate(-180deg);
}

.filter-section-header.collapsed svg {
    transform: rotate(0deg);
}

.filter-section-content {
    max-height: 1000px;
    overflow: visible;
    transition: max-height 0.3s ease;
}

.filter-section-content.collapsed {
    max-height: 0;
    overflow: hidden;
}

/* Toggle Filter */
.toggle-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* ---------- HIDE NATIVE CHECKBOX ---------- */
.toggle-filter input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

/* ---------- TRACK ---------- */
.toggle-slider {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 18px;
    background: #e4e6ef;
    border-radius: 26px;
    cursor: pointer;
    transition: background .25s cubic-bezier(.4, 0, .2, 1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .06), 0 0 0 1px rgba(0, 0, 0, .04);
}

/* ---------- THUMB ---------- */
.toggle-slider::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15), 0 0 0 1px rgba(0, 0, 0, .03);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

div#blace-exclusive-section {
    padding-left: 5px;
}

/* ---------- ON STATE ---------- */
.toggle-filter input:checked+.toggle-slider {
    background: #2E54EB;
    /* translucent tint */
}

.toggle-filter input:checked+.toggle-slider::before {
    transform: translateX(22px);
}

/* ---------- FOCUS RING (a11y) ---------- */
.toggle-filter input:focus-visible+.toggle-slider {
    outline: 2px solid #0052ff;
    outline-offset: 2px;
}

/* ---------- HOVER MICRO-INTERACTION ---------- */
.toggle-slider:hover {
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, .06),
        0 0 0 4px rgba(0, 0, 0, .03);
}

.toggle-filter input:checked+.toggle-slider:hover {
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, .06),
        0 0 0 4px rgba(0, 56, 184, .13);
}

.toggle-filter input {
    display: none;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Filter Pills */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pills .filter-pill {
    background-color: #f5f7f9;
    color: #455064;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border-radius: 30px;
    cursor: pointer;
}

/* .filter-pills .filter-pill:hover {
    background-color: #e9effc;
    color: #205cdf;
} */

.filter-pills .filter-pill.selected {
    background-color: #e9effc;
    color: #205cdf;
}

.filter-pills .filter-pill.filter-pill-hidden {
    display: none !important;
}

.show-more-btn {
    color: #205cdf !important;
    background-color: transparent !important;
    border: none !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 14px !important;
    display: inline !important;
    max-width: fit-content;
    margin: 0px !important;
    padding: 5px 10px !important;
    font-family: "Poppins";
}

.show-more-btn:hover {
    opacity: 0.8;
}

/* Filter Options (for radio buttons) */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
    font-size: 14px;
}

.filter-options label:hover {
    background: #f5f5f5;
}

.filter-options input[type="checkbox"],
.filter-options input[type="radio"] {
    cursor: pointer;
}

/* Filters Modal Footer */
.filters-modal-footer {
    display: flex;
    gap: 12px;
    padding: 0px;
    padding-top: 10px;
}

.clear-filters-btn {
    flex: 1;
    height: 40px;
    padding: 0px 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #667593;
    background-color: #eff2f5;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    outline: none;
    font-family: "poppins";
}

.clear-filters-btn:hover {
    opacity: 0.8;

}

.apply-filters-btn {
    flex: 2;
    background-color: #205cdf;
    color: #fff;
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    transition: all 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "poppins";

}

.apply-filters-btn:hover {
    opacity: 0.8;
}

/* Search Wrapper */
.search-wrapper {
    display: flex;
    align-items: center;
}

.venue-search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
}

.search-btn {
    padding: 10px 16px;
    background: #2E54EB;
    border: 1px solid #2E54EB;
    border-radius: 0 2px 2px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.search-btn:hover {
    opacity: 0.8;
}

/* Map Toggle */
.map-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #B2BAC9;
    border-radius: 0px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    height: 48px;
    color: #667593;
}

.map-toggle-btn:hover {
    background: #f5f5f5;
}

/* Active Filters */
.active-filters {
    display: none !important;
    gap: 8px;
    flex-wrap: wrap;
    /* margin-top: 12px; */
}

.venue-archive-container .mobile.bottom .row {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;

}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #4285f4;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #4285f4;
    transition: all 0.2s;
}

.active-filter-tag:hover {
    background: #1967d2;
    border-color: #1967d2;
}

.active-filter-tag button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    margin-left: 4px;
    font-weight: 700;
    transition: transform 0.2s;
}

.active-filter-tag button:hover {
    transform: scale(1.2);
}

.clear-all-filters {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
}

.clear-all-filters:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

/* Grid Header */
.venue-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.results-count {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: none;
}


.view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    padding: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.view-btn:hover {
    background: #f5f5f5;
}

.view-btn.active {
    background: #4285f4;
    border-color: #4285f4;
    color: #fff;
}

.view-btn.active svg {
    fill: #fff;
    stroke: #fff;
}

/* Venue Grid */
.venue-grid {
    margin-top: 3px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.venue-grid.list-view {
    grid-template-columns: 1fr;
}

/* Venue Card */
.venue-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 2px 8px 2px rgba(224, 224, 224, 1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.venue-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Highlight when hovered from map marker */
/* .venue-card.hovered-from-map {
    background: #fce4ec;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 64, 129, 0.2);
    border: 2px solid #ff4081;
} */

/* Venue Card Image - Override other styles */
.venue-archive-wrapper .venue-card-image,
.venue-card-image {
    position: relative;
    width: 100%;
    height: 200px !important;
    /* Fixed height instead of aspect ratio for Swiper */
    padding-top: 0 !important;
    /* Override any aspect ratio padding */
    aspect-ratio: unset !important;
    /* Override aspect-ratio from other CSS */
    overflow: hidden;
}

.venue-archive-wrapper .venue-card-image img,
.venue-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-exclusive-badge {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    padding: 6px 12px !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    z-index: 20 !important;
    border-radius: 4px 0px 0px 0px !important;
    display: block !important;
    pointer-events: none;
}

.venue-card-content {
    padding: 7px 16px;
    padding-bottom: 10px;
}

.venue-card-location {
    font-family: "Poppins";
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    line-height: 16.8px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 2px !important;
    color: rgba(0, 0, 0, 1);

}

.venue-card-title {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 1);
    margin: 0px;

}

.venue-card-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(97, 97, 97, 1);
    border-top: 1px solid rgba(238, 238, 238, 1);
    padding-top: 10px;
    margin-top: 8px;
}

.venue-card-meta-item {
    display: flex;
    align-items: center;
    gap: 2px;
}

.venue-card-meta-item svg {
    width: 14px;
    height: 14px;
}

/* List View Card */
.venue-archive-wrapper .venue-grid.list-view .venue-card {
    display: flex;
}

.venue-archive-wrapper .venue-grid.list-view .venue-card-image {
    width: 300px;
    padding-top: 0 !important;
    height: 200px !important;
    aspect-ratio: unset !important;
}

.venue-grid.list-view .venue-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Map */
.venue-map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Pagination */
.venue-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination-btn {
    padding: 5px 12px;
    background: #fff;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-btn svg {
    max-width: 7px;
}

.pagination-btn:hover:not(:disabled) {
    background: #f5f5f5;
}

.pagination-btn.active {
    background: rgba(0, 0, 0, 0.08);
    color: #212121;
}

.pagination-btn {
    color: #212121;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4285f4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* No Results */
.no-results,
.error-message {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.no-results-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon svg {
    width: 100px;
    height: 100px;
}

.no-results-text {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.no-results p,
.error-message p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.reset-filters-btn {
    padding: 12px 32px;
    background: #2E54EB;
    color: #fff;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-filters-btn:hover {
    opacity: 0.8;
}

/* Map Info Window */
.map-info-window {
    padding: 8px;
}

.map-info-window h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.map-info-window p {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #666;
}

.map-info-window a {
    color: #4285f4;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

/* Pagination Ellipsis */
.pagination-ellipsis {
    padding: 8px 4px;
    color: #999;
}

/* Responsive */
@media (max-width: 1200px) {
    .venue-map-section {
        width: 40%;
    }
}

@media (max-width: 968px) {
    .venue-content-wrapper {
        flex-direction: column;
    }

    .venue-map-section {
        width: 100%;
        position: relative;
        height: 400px;
    }

    .venue-top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .top-bar-filters {
        width: 100%;
        justify-content: space-between;
    }

    .top-bar-actions {
        width: 100%;
    }

    .search-wrapper {
        flex: 1;
    }

    .top-filter-dropdown-menu {
        left: 0;
        right: 0;
        width: 100%;
    }

    .filters-modal-content {
        width: 95%;
        max-height: 95vh;
    }
}

@media (max-width: 640px) {
    .venue-grid {
        grid-template-columns: 1fr;
    }

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

    .venue-archive-wrapper .venue-grid.list-view .venue-card-image {
        width: 100%;
        padding-top: 0 !important;
        height: 180px !important;
        aspect-ratio: unset !important;
    }

    /* .top-bar-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    } */
    /* 
    .guest-count-wrapper {
        min-width: 140px;
    } */

    #guest-count-input {
        max-width: 100px;
    }
}

.venue-top-bar {
    transition: all 0.3s ease;
}

.venue-top-bar.stick {
    position: sticky;
    top: 80px;
    z-index: 999;
}

.venue-archive-container .venue-grid-section {
    padding-right: 15px;
}

/* custom    */
@media (max-width:1024.98px) {
    .venue-grid-section {
        padding-right: 0px !important;
    }

    .venue-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width:991.98px) {
    .filters-modal-content {
        padding: 15px 0px !important;
        padding-top: 25px !important;
    }

    .filters-modal-footer,
    .filters-modal-header,
    .filters-modal-body {
        padding-left: 15px;
        padding-right: 15px;
    }

    .filters-modal-header {
        padding-bottom: 15px;
        padding-top: 5px;
    }


    .top-bar-filters {
        max-width: 100% !important;
        width: 100%;
    }

    .results-count {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .venue-top-bar {
        top: 56px;
        background-color: #000014;
    }

    .filters-modal-content {
        max-width: 100%;
    }

    .venue-top-bar .inner_wrapper {
        background-color: transparent !important;
        border: none;
    }

    .venue-archive-container .mobile.bottom {
        display: flex !important;

    }

    .venue-top-bar .inner_wrapper .top-bar-actions {
        display: none;
    }

    .venue-top-bar .inner_wrapper .filters-modal-btn {
        display: none !important;
    }

    .venue-top-bar.stick .inner_wrapper .filters-modal-btn {
        display: flex !important;
    }


    .venue-top-bar.stick {
        top: 56px;
    }

    .top-filter-dropdown {
        max-width: 100%;
        width: 100%;
    }

    .top-filter-dropdown .top-filter-btn {
        width: 100%;
    }

    .top-filter-dropdown .top-filter-btn .dropdown-arrow {
        margin-left: auto;
    }

    .guest-count-wrapper {
        max-width: 45%;
        width: 100%;
    }

    .top-filter-dropdown.location_wrapper {
        max-width: 48%;
        width: 100%;
    }

    .search_wrapper {
        max-width: 100%;
        width: 100%;
    }

    .top-bar-filters {
        justify-content: space-between !important;
    }

    .venue-top-bar.stick .search_wrapper {
        max-width: 87.9%;
        width: 100%;
    }

    .venue-top-bar .inner_wrapper {
        padding-top: 0px;
    }

    .venue-archive-container .container.bottom_wrapper {
        padding: 0px !important;

    }

    .venue-archive-container .venue-content-wrapper {
        margin-top: 0px !important;
    }


    .venue-archive-container .venue-grid-section {
        padding: 0px 15px !important;
        padding-bottom: 50px !important;
    }

    .results-count {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #333 !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        line-height: 24px !important;
        letter-spacing: 0% !important;
        text-align: center !important;
        color: rgba(69, 80, 100, 1) !important;
        display: block !important;
        text-align: center !important;
        justify-content: center !important;
        margin: auto !important;
        margin-bottom: 20px !important;
    }

    .venue-card-meta-item svg {
        width: 10px;
        height: 10px;
    }

    .top-bar-filters {
        row-gap: 12px !important;
        column-gap: 2% !important;
    }

    .top-filter-btn {
        padding: 10px 10px;
    }

    .guest-count-wrapper {
        padding: 0px 10px;
    }

    .search_wrapper .search_inner_wrapper {
        padding: 0 10px;
    }

    #location-label {
        max-width: 56%;
        overflow: hidden;
    }

    .filters-modal-btn {
        width: 58px;
    }

    .venue-card-content {
        padding: 10px 10px;
        padding-bottom: 10px;
    }

    .top-filter-dropdown-menu {
        top: calc(100% + 2px);
    }


}

@media (max-width:640.98px) {
    .venue-top-bar.stick .search_wrapper {
        max-width: 84.9%;
    }

    .guest-count-wrapper {
        max-width: 44%;
    }

    .venue-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width:520.98px) {
    .guest-count-wrapper {
        max-width: 44% !important;
    }

    .venue-top-bar.stick .search_wrapper {
        max-width: 81% !important;
    }

    .search_inner_wrapper>svg {
        display: none !important;
    }

    .search-btn {
        padding: 10px 10px;
    }
}

@media (max-width:460.98px) {
    .guest-count-wrapper {
        max-width: 41% !important;
    }

    .venue-top-bar.stick .search_wrapper {
        max-width: 79% !important;
    }

    .map-toggle-btn {
        height: 40px !important;
    }

    .filters-modal-btn {
        height: 40px !important;
    }

    .guest-count-wrapper {
        height: 38.5px !important;
    }

    .top-filter-btn {
        height: 40px !important;
    }

    .venue-search-input-simple {
        height: 40px !important;
    }

    .top-bar-filters {
        row-gap: 10px !important;
    }
}

@media (max-width:375.98px) {
    .guest-count-wrapper {
        max-width: 42% !important;
    }

    .venue-top-bar.stick .search_wrapper {
        max-width: 75% !important;
    }


}

@media (max-width:350.98px) {
    .guest-count-wrapper {
        max-width: 100% !important;
    }

    .venue-top-bar.stick .search_wrapper {
        max-width: 75% !important;
    }

    .top-filter-dropdown.location_wrapper {
        max-width: 100%;
        width: 100%;
    }



}

/* custom    */

/* Google Maps InfoWindow Styling */
.gm-style .gm-style-iw-c {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.venue-info-window {
    width: 280px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.venue-info-header {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.venue-info-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.venue-info-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-info-slide.active {
    opacity: 1;
}

.venue-info-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-info-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.venue-info-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.venue-info-prev,
.venue-info-next {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 1);
    background-color: #eff2f5;
    opacity: 0.7;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
}

.venue-info-prev:hover,
.venue-info-next:hover {
    opacity: 1 !important;
}

.venue-info-prev {
    margin-left: 7px;
}

.venue-info-next {
    margin-right: 7px;
}

.venue-info-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px !important;
}

.venue-info-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
    transform: scale(.66) !important;
    cursor: pointer;
}

.venue-info-dot.active {
    transform: scale(1) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.venue-info-content {
    padding: 7px 10px;
    padding-bottom: 10px;
}

.venue-info-location {
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 2px;
}

.venue-info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 1);

}

.venue-info-details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 1);
}

.venue-info-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.venue-info-details span svg {
    max-width: 11px;
}

.venue-info-price {
    font-weight: 600;
    color: #333;
}

.venue-info-link {
    display: inline-block;
    background: #4f46e5;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.venue-info-link:hover {
    background: #3730a3;
    text-decoration: none;
    color: white;
}


/* Venue Card Swiper Styles */
.venue-archive-wrapper .venue-card-swiper {
    width: 100%;
    height: 200px !important;
    /* Match the venue-card-image height */
    position: relative;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.venue-archive-wrapper .venue-card-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    /* Ensure slides don't interfere with badge positioning */
}

.venue-archive-wrapper .venue-card-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Remove border radius from individual images */
}

/* Navigation Arrows */
.venue-card-swiper .swiper-button-next,
.venue-card-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 1);
    background-color: #eff2f5;
    opacity: 0.7;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

.venue-card:hover .venue-card-swiper .swiper-button-next,
.venue-card:hover .venue-card-swiper .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.venue-card-swiper .swiper-button-next::after,
.venue-card-swiper .swiper-button-prev::after {
    font-size: 0px;
    font-weight: bold;
    color: #333;
}

.venue-card-swiper .swiper-button-next svg,
.venue-card-swiper .swiper-button-prev svg {
    width: 15px;
    height: auto;
}

.venue-card-swiper .swiper-button-next:hover,
.venue-card-swiper .swiper-button-prev:hover {
    background: rgb(255, 255, 255);
    background-color: #ffffff;
    opacity: 0.7;
}

.venue-card-swiper .swiper-button-next {
    right: 8px;
}

.venue-card-swiper .swiper-button-prev {
    left: 8px;
}

/* Pagination Dots */
.venue-card-swiper .swiper-pagination {
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    gap: 2px !important;
}

.venue-card-swiper .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
    transform: scale(.66) !important;

}

.venue-card-swiper .swiper-pagination-bullet-active {
    background-color: #fff !important;
    transform: scale(1) !important;

}

.venue-card-swiper .swiper-pagination-bullet:hover {
    transform: scale(1) !important;
    background-color: #fff !important;
}

/* Dynamic bullets for more than 5 images */
.venue-card-swiper .swiper-pagination-bullet-active-main {
    background-color: #fff;
}

.venue-card-swiper .swiper-pagination-bullet-active-prev,
.venue-card-swiper .swiper-pagination-bullet-active-next {
    background: rgba(0, 0, 0, 0.2) !important;
    transform: scale(.66) !important;
}

.venue-card-swiper .swiper-pagination-bullet-active-prev-prev,
.venue-card-swiper .swiper-pagination-bullet-active-next-next {
    background: rgba(0, 0, 0, 0.2) !important;
    transform: scale(.66) !important;
}

/* Venue Card Placeholder */
.venue-archive-wrapper .venue-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px !important;
    /* Match the venue-card-image height */
    background: #f5f5f5;
    border-radius: 12px 12px 0 0;
    color: #999;
}

/* Prevent click propagation during sliding */
.venue-card-swiper.sliding {
    pointer-events: none;
}

.venue-card-swiper.sliding * {
    pointer-events: none;
}

/* Ensure navigation elements are clickable */
.venue-card-swiper .swiper-button-next,
.venue-card-swiper .swiper-button-prev,
.venue-card-swiper .swiper-pagination {
    pointer-events: auto;
    z-index: 10;
}

/* Mobile responsive adjustments */
@media (max-width: 1024.98px) {
    .venue-archive-container .venue-content-wrapper {
        margin-top: 0px !important;
        max-height: fit-content !important;
    }
  .venue-pagination {
    margin-bottom: 0px;
}
 .venue-archive-wrapper {
    padding-bottom: 0px;
}
}
@media (max-width: 991.98px) {
    .venue-archive-container .venue-content-wrapper {
        margin-top: 0px !important;
        max-height: fit-content !important;
    }

 .venue-archive-wrapper {
    padding-bottom: 0px;
}
    .venue-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    .venue-pagination {
    margin-bottom: 0px;
}
}

@media (max-width: 767.98px) {
    .venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

    .venue-pagination {
        margin-bottom: 0px !important;
    }

    .venue-archive-container .venue-content-wrapper {
        margin-top: 0px !important;
        max-height: fit-content !important;
    }

    .venue-archive-wrapper {
        width: 100%;
        background: #fff;
        padding-bottom: 0px;
    }

    .toggle-slider {
        width: 36px;
        height: 16px;
    }

    .toggle-slider::before {
        width: 20px;
        height: 20px;
    }

    .venue-archive-wrapper .venue-card-image,
    .venue-card-image,
    .venue-archive-wrapper .venue-card-swiper,
    .venue-archive-wrapper .venue-card-placeholder {
        height: 180px !important;
        /* Slightly smaller on mobile */
    }

    .venue-card-swiper .swiper-button-next,
    .venue-card-swiper .swiper-button-prev {
        width: 28px;
        height: 28px;
    }

    .venue-card-swiper .swiper-button-next::after,
    .venue-card-swiper .swiper-button-prev::after {
        font-size: 0px;
    }

    .venue-card-swiper .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
    }
}

/* Sticky Map Layout */
.venue-content-wrapper {
    display: flex;
    gap: 20px;
    height: calc(100vh - 140px);
    max-height: 1000px;
    /* Adjust for sticky top bar height */
    overflow: hidden;
    margin-top: 25px;
}

.venue-grid-section {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    /* padding-right: 10px; */
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #ccc #ffffff;
    padding-bottom: 50px;
}

.venue-grid-section::-webkit-scrollbar {
    width: 8px;
}

.venue-grid-section::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 4px;
}

.venue-grid-section::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.venue-grid-section::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.venue-map-section {
    width: 40%;
    height: 100%;
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

.venue-map-section.hidden {
    display: none;
}

.venue-map {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
}

/* When map is hidden */
.venue-content-wrapper.map-hidden {
        display: block;
    height: fit-content !important;
    max-height: 100% !important;
    overflow: visible !important;
}

.venue-content-wrapper.map-hidden .venue-grid-section {
    padding-bottom: 0px !important;
}

.venue-content-wrapper.map-hidden .venue-grid-section {
    height: auto;
    overflow: visible;
    padding-right: 0px;
}

.venue-content-wrapper.map-hidden .venue-map-section {
    display: none;
}

/* Mobile responsive - stack vertically */
@media (max-width: 1024px) {
    .venue-content-wrapper {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .venue-grid-section {
        overflow: visible;
        height: auto;
    }

    .venue-map-section {
        width: 100%;
        height: 400px;
        position: relative;
        order: -1;
        /* Show map first on mobile */
    }
}

@media (max-width: 767.98px) {
    .venue-map-section {
        height: 450px;
    }

}

/* Responsive sticky top bar positioning */
@media (max-width: 767.98px) {
    .venue-top-bar {
        top: 60px;
        /* Smaller header on mobile */
    }
}

@media (min-width: 1200px) {
    .venue-top-bar {
        /* top: 100px; */
        /* Larger header on desktop */
    }
}

/* Mobile Drawer Styles for Filters Modal */
@media (max-width: 767.98px) {
    .filters-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .filters-modal {
        display: flex;
        visibility: visible;
        opacity: 1;
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
    }

    .filters-modal.active {
        transform: translateY(0);

    }

    .close-modal-btn {
        right: 15px;
    }

    .filters-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .filters-modal.active .filters-modal-overlay {
        opacity: 1;
    }

    .filters-modal-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 85vh;
        background: #fff;
        border-radius: 2px 2px 0 0;


        display: flex;
        flex-direction: column;
        /* box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15); */
    }

    .filters-modal.active .filters-modal-content {}

    /* Drag Handle */
    .filters-modal-content::before {
        content: '';
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #ddd;
        border-radius: 2px;
        cursor: grab;
        transition: background 0.2s ease;
    }

    .filters-modal-content:hover::before {
        background: #bbb;
    }

    .filters-modal-content.dragging::before {
        cursor: grabbing;
        background: #999;
    }

    .filters-modal-header {
        /* padding: 24px 20px 16px; */
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
    }

    .filters-modal-header h2 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

    .filters-modal-body {
        flex: 1;
        overflow-y: auto;
        /* padding: 0 20px; */
        -webkit-overflow-scrolling: touch;
    }

    .filters-modal-content {
        padding: 15px 15px;
        padding-top: 25px;
    }

    .filters-modal-footer {
        /* padding: 16px 20px 24px; */
        border-top: 1px solid #eee;
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }

    /* 
    .filters-modal-footer button {
        flex: 1;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .clear-filters-btn {
        background: #f5f5f5;
        color: #666;
    }

    .clear-filters-btn:hover {
        background: #e8e8e8;
    }

    .apply-filters-btn {
        background: #4285f4;
        color: #fff;
    } */

    /* .apply-filters-btn:hover {
        background: #3367d6;
    } */
    /* 
    .close-modal-btn {
        width: 32px;
        height: 32px;
        border: none;
        background: #f5f5f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .close-modal-btn:hover {
        background: #e8e8e8;
    } */

    .close-modal-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Hide filter dropdowns on mobile - use drawer instead */
@media (max-width: 767.98px) {
    /* .top-filter-dropdown {
        display: none !important;
    } */

    /* .guest-count-wrapper {
        display: none !important;
    } */
    .top-bar-filters {
        flex-wrap: wrap;
        align-items: center;
        max-width: 100% !important;
        width: 100%;
    }

    /* Keep only the filters modal button and search on mobile */
    .top-bar-filters {
        justify-content: center;
    }

    .filters-modal-btn {
        display: flex !important;
    }

    /* Adjust top bar layout for mobile */
    /* .venue-top-bar {
        padding: 12px 16px;
    } */

    .top-bar-actions {
        flex: 1;
        justify-content: flex-end;
    }

    .venue-search-input-simple {
        max-width: 90%;
    }
}

@media (max-width:450px) {
    .venue-map-section {
        height: 450px;
    }



    .venue-info-dots {
        gap: 0px !important;
    }

}

/* Inline Close Button for Filter Buttons */
.inline-close-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    margin-left: 8px;
    transition: all 0.2s;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inline-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    transform: scale(1.1);
}

.top-filter-btn.has-selection .inline-close-btn {
    color: #455064;
}

.top-filter-btn.has-selection span>span {
    max-width: 70px;
    overflow: hidden;
    display: inline-flex;
}

.top-filter-btn.has-selection .inline-close-btn:hover {
    background: rgba(25, 103, 210, 0.1);
    color: #455064;
}

/* map slider */
.gm-style-iw-chr {
    position: absolute;
    z-index: 9;
    right: 7px;
    top: 7px;
}

button.gm-ui-hover-effect {
    background: #fff !important;
    border-radius: 100%;
    width: 30px !important;
    height: 30px !important;
}

button.gm-ui-hover-effect span {
    /* background: #fff !important; */
    border-radius: 100%;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    margin: auto !important;
}

@media (max-width:767.98px) {

    .top-filter-btn.has-selection span>span {
        max-width: 200px;
    }

}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.5) !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.7) !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1) !important;
}

/* map slider */

/* Skeleton Loading Cards */
.skeleton-card {
    pointer-events: none;
    opacity: 0.7;
    animation: skeleton-fade-in 0.3s ease-in;
}

@keyframes skeleton-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

.skeleton-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
    height: 200px;
}

.skeleton-location {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    height: 12px;
    width: 60%;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-title {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    height: 16px;
    width: 80%;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-meta {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    height: 10px;
    width: 40%;
    border-radius: 4px;
    margin-bottom: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Skeleton cards responsive */
@media (max-width: 768px) {
    .skeleton-image {
        height: 180px;
    }
}

/* Smooth transition when real content loads */
.venue-card:not(.skeleton-card) {
    animation: content-fade-in 0.4s ease-in;
}

@keyframes content-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}