.star-venue-wrapper {
    width: 100%;
    position: relative;
}


/* =========================================
   SEARCH
========================================= */

.star-venue-search {
    width: 100%;
    margin-bottom: 30px;
    position: sticky;
    top: -1;
    z-index: 10;
    background: #fff;
}

.star-venue-search-input-wrapper {
    position: relative;
    width: 100%;
}

.star-venue-search-input {
    width: 100%;
    height: 51px;
    padding: 0 20px 0 48px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #fff;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Poppins';
    color: #000000;
}

.star-venue-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 18px;
}

.star-venue-search-button {
    width: 100%;
    height: 40px;
    margin-top: 12px;
    border: none;
    border-radius: 5px;
    background: #f5222d;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins';
}

.star-venue-search-button:hover {
    opacity: 0.9;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.star-venue-layout {
    /*display: block;*/
    /*width: 100%;*/
    display: flex;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}


/* =========================================
   LEFT LISTING COLUMN
========================================= */

.star-venue-list-column {
    /*width: 50%;*/
    /*box-sizing: border-box;*/
    
    width: 50%;
    height: 100vh;
    max-height: 100vh;

    overflow-y: scroll;
    overflow-x: hidden;

    box-sizing: border-box;
    padding-right: 25px;

    min-height: 0;

    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    
}


/* =========================================
   RIGHT FIXED MAP
========================================= */

.star-venue-map-column {
    /*width: 38%;*/
    /*position: fixed;*/
    /*top: 0;*/
    /*right: 22px;*/
    /*height: 100%;*/
    
    width: 50%;
    position: absolute;
    top: 0;
    right: 0px;
    height: 700px;
    padding-left: 30px;
}


/* =========================================
   MAP
========================================= */

.star-venue-map {
    width: 100%;
    height: 100%;

    min-height: 100vh;
}


/* =========================================
   VENUE GRID
========================================= */

.star-venue-grid {
    display: grid;
    grid-template-columns:
        repeat(
            var(--venue-columns),
            minmax(0, 1fr)
        );
    gap: 28px;
}


/* =========================================
   VENUE CARD
========================================= */

.star-venue-card {
    cursor: pointer;
    min-width: 0;
}

.star-venue-card-image {
    width: 100%;
    height: 244px;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
}

.star-venue-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.star-venue-card:hover
.star-venue-card-image img {
    transform: scale(1.05);
}

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

.star-venue-card-content h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    font-family: Poppins;
    color: #000000;
}

/*html,*/
/*body {*/
/*    overflow: hidden !important;*/
/*}*/

/* =========================================
   MAP
========================================= */


.star-venue-map {
    width: 100%;
    height: 100vh;
}


/* =========================================
   NO RESULTS
========================================= */

.star-venue-no-results {
    display: none;
    padding: 40px 0;
    text-align: center;
}

.star-venue-empty {
    padding: 40px 0;
    text-align: center;
}


/* =========================================
   MAP INFO WINDOW
========================================= */

.star-venue-info-window {
    width: 260px;
}

.star-venue-info-window-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.star-venue-info-window-content {
    padding: 12px;
}

.star-venue-info-window h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
}

.star-venue-info-window p {
    margin: 5px 0;
    font-size: 13px;
    line-height: 1.5;
}

.star-venue-info-window a {
    color: #f5222d;
    text-decoration: none;
}


/* =========================================
   CUSTOM POPUP OVERLAY
========================================= */

.star-venue-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.star-venue-modal.active {
    display: flex;
}

.star-venue-modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.star-venue-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
}

.star-venue-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 5;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 22px;
    cursor: pointer;
}

.star-venue-modal-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.star-venue-modal-body {
    padding: 20px;
}

.star-venue-modal-title {
    margin: 0 0 10px;
    font-size: 60px;
    font-weight: 800;
    color: #000000;
    font-family: 'Poppins';
    text-transform: uppercase;
}

.star-venue-modal-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.star-venue-modal-detail ,
.star-venue-modal-detail a{
    font-size: 16px;
    font-family: 'Poppins';
    color: #000000;
    font-weight: 600;
}

.star-venue-modal-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.star-venue-modal-social a {
    text-decoration: none;
    color: #111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .star-venue-layout {
        grid-template-columns: 1fr;
    }

    .star-venue-map-column {
        position: relative;
        top: auto;
        height: 500px;
        right: 0;
    }

}




/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-venue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .star-venue-card-image {
        height: 130px;
    }

    .star-venue-modal-title {
        font-size: 26px;
    }

    .star-venue-modal-image {
        height: 200px;
    }

    .star-venue-layout {
        display: flex;
        flex-direction: column;
        height: auto !important;
        max-height: none !important;
    }

    .star-venue-list-column {
        order: 1;
        width: 100%;
        padding-right: 0px;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: auto;
    }
    

    .star-venue-map-column {
        order: 2;
        width: 100%;
        padding-left: 0px;
        margin-top: 20px;
    }

}


@media (max-width: 480px) {

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

    .star-venue-card-image {
        height: 200px;
    }

}


.star-venue-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


.star-venue-carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
}


.star-venue-carousel-track {
    display: flex;
    gap: 20px;

    transition: transform 0.5s ease;

    will-change: transform;
}


.star-venue-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
}

.star-venue-carousel-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


.star-venue-carousel-image {
    width: 100%;
    height: 550px;

    overflow: hidden;

    position: relative;
}


.star-venue-carousel-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.star-venue-carousel-link:hover
.star-venue-carousel-image img {
    transform: scale(1.05);
}


.star-venue-carousel-title {
    padding: 15px 0;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    color: black;
}


/* Previous / Next buttons */

.star-venue-carousel-prev,
.star-venue-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 0;
    background: #FF0000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 5;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.star-venue-carousel-prev {
    left: 0;
}


.star-venue-carousel-next {
    right: 0;
}


/* Disabled button */

.star-venue-carousel-prev.is-disabled,
.star-venue-carousel-next.is-disabled {
    opacity: 0.35;
    cursor: default;
}