/* ===========================
   LAYOUT WRAPPER
=========================== */
.explore-wrapper {
    /* display: grid;
    gap: 25px;
    margin-bottom: 20px; */

     display: grid;
    grid-template-columns: 3fr 2fr; /* left 3 parts, right 2 parts */
    gap: 25px;
    margin-bottom: 20px;
}


.listing-left {
    /* height: calc(100vh - 150px); */
    overflow-y: auto;
    padding-right: 10px;

}


#exploreResults {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}


.airbnb-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    min-height: 390px;    
    max-height: 400px; 
}

.airbnb-card:hover {
    transform: translateY(-5px);
}


.airbnb-card .card-img {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.airbnb-card .card-img img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}





.card-badge {
    /* position: absolute; */
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}


.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.card-city {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    line-height: 20px;
    white-space: normal;
    overflow: visible;
}

/* BUTTON */
.view-btn {
    background: #000 !important;
    color: #fff !important;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    transition: 0.25s;
}

.view-btn:hover {
    background: #333 !important;
}


.map-right {
    position: sticky;
    top: 80px;
    height: 85vh;
}

#map {
    border-radius: 16px;
    height: 100%;
}


.filter-box {
    display: flex;
    gap: 12px;
    /* margin-bottom: 25px; */
}

.filter-input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    height: 48px;
}

.near-me-btn {
    background: #000 !important;
    color: #fff !important;
    padding: 5px 18px;
    line-height: 20px;
    height: 50px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.near-me-btn:hover {
    background: #333 !important;
}


@media (max-width: 1100px) {
    .explore-wrapper {
        grid-template-columns: 1fr;
    }
    .map-right {
        position: relative;
        height: 350px;
        top: 0;
    }
}

@media (max-width: 768px) {
    #exploreResults {
        grid-template-columns: 1fr;
    }
    .filter-box {
        flex-direction: column;
    }
    .near-me-btn {
        width: 100%;
    }
}









  .card-badge img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        padding: 4px !important;

    }

    .inline-badge {
        width: 22px !important;
        height: 22px !important;
        object-fit: contain !important;
        vertical-align: middle !important;
    }

    .card-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #222;
        display: flex;
        align-items: center;
        gap: 8px;

        flex-wrap: wrap;

    }


    .level-filters {
        display: flex;
        gap: 12px;
        margin-bottom: 25px;
    }




    /* .level-btn, .near-me-btn {
    background: #000;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
}

.level-btn:hover, .level-btn.active, .near-me-btn:hover {
    background: #333;
}

 */






  
  /* ---------------------------
   HALAL HUB DETAIL PAGE
---------------------------- */


.detail-wrapper {
    margin-top: 40px;
}


.detail-hero {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 35px;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,rgba(0,0,0,0.2),rgba(0,0,0,0.6));
}


.detail-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.detail-city {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}


.detail-badges span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    margin-right: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.halal-certified {
    background: #000;
    color: #fff;
    font-weight: 600;
}

.badge-gray {
    background: #f3f3f3;
    color: #333;
}


.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}


.info-item {
    margin-bottom: 10px;
    font-size: 15px;
}

.gallery-img {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    object-fit: cover;
}

.sidebar-box {
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.sidebar-restaurant {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-restaurant img {
    width: 75px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.sidebar-restaurant-name {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.sidebar-restaurant a {
    text-decoration: none;
}



.bg-green{
    background-color: green;
    color: #fff;
}

.bg-blue{
    background-color: blue;
    color: #fff;
}

.bg-gold{
    background-color: gold;
    color: #fff;
}

.pac-container {
    display: none !important;
}


body > div.container.detail-wrapper > div > div.col-lg-8 > div.detail-hero > div {
    min-height: 350px;
}