.home-serve-map-shell {
    display: grid;
    grid-template-columns: 330px 1fr;
    background: #f5f5f7;
    border: 1px solid #d6d8dd;
    border-radius: 18px;
    overflow: hidden;
    min-height: 620px;
    margin-bottom: 42px;
    box-shadow: 0 15px 30px rgba(16, 17, 20, 0.1);
}

.home-serve-map-sidebar {
    background: #eef0f2;
    border-right: 1px solid #d6d8dd;
    padding: 20px 14px;
}

.home-serve-map-sidebar h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #111318;
}

.home-serve-map-sidebar p {
    margin: 8px 0 14px;
    color: #5b616d;
    font-size: 13px;
}

.home-city-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-more-cities {
    margin-top: 6px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: #000;
    background: #fff3e6;
    border: 2px solid #ff7243;
    border-radius: 999px;
    padding: 10px 12px;
    letter-spacing: 0.02em;
}

.home-city-item {
    width: 100%;
    border: 1px solid #d3d6dc;
    border-radius: 12px;
    background: #ffffff;
    text-align: left;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-city-item:hover {
    border-color: #ff7243;
    transform: translateX(2px);
}

.home-city-item.active {
    border-color: #ff7243;
    box-shadow: 0 6px 16px rgba(255, 139, 0, 0.22);
}

.home-city-item h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #17191e;
}

.home-city-item p {
    margin: 6px 0 0;
    font-size: 12px;
    color: #626875;
}

.home-city-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: #ff7243;
    border-radius: 999px;
    padding: 6px 10px;
    text-decoration: none;
}

.home-city-link:hover {
    background: #e87900;
}

.home-serve-map {
    min-height: 620px;
}

.home-map-popup {
    font-family: Arial, sans-serif;
    min-width: 150px;
    text-align: center;
}

.home-map-popup h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #15171c;
}

.home-map-popup a {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: #ff7243;
    border-radius: 999px;
    padding: 8px 14px;
    text-decoration: none;
}

.home-map-popup a:hover {
    background: #ff7243;
}

.home-map-popup-coming-soon {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
    color: #000;
    background: #fff3e6;
    border: 2px solid #ff7243;
    border-radius: 999px;
    padding: 7px 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (max-width: 991px) {
    .home-serve-map-shell {
        grid-template-columns: 1fr;
        min-height: 520px;
    }

    .home-serve-map-sidebar {
        border-right: 0;
        border-bottom: 1px solid #d6d8dd;
    }

    .home-serve-map {
        min-height: 520px;
    }
}