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


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

.star-venue-search {
    width: 100%;
    margin-bottom: 30px;
}

.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%;
}


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

.star-venue-list-column {
    width: 50%;
    box-sizing: border-box;
}


/* =========================================
   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;
}


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


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


/* =========================================
   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: 767px) {

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

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

    .star-venue-map-column {
        width: 100%;
        position: relative;
        float: left;
        top: 0;
        right: 0;
        padding: 20px;
    }

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

    .star-venue-modal-image {
        height: 200px;
    }
    .star-venue-list-column{
        width:100%;
        padding:20px;
    }

}


@media (max-width: 480px) {

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

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

}