.neighborhood-section {
    background: #ececec;
    padding: 90px 0 110px;
}

.neighborhood-section .section-header {
    text-align: center;
    margin-bottom: 38px;
}

.neighborhood-section .section-header h2 {
    margin: 0;
    font-family: 'Cardo', serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 400;
    color: #242424;
}

.neighborhood-section .section-header .divider {
    display: block;
    width: 42px;
    height: 2px;
    background: #7f7190;
    margin: 16px auto 14px;
}

.neighborhood-section .section-address {
    margin: 0;
    font-family: 'Assistant', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6f5757;
}

.neighborhood-map-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.neighborhood-map-shell {
    position: relative;
}

.neighborhood-map-frame {
    position: relative;
    overflow: hidden;
    background: #dcdcdc;
    min-height: 580px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.neighborhood-map-frame iframe {
    display: block;
    width: 100%;
    height: 580px;
    border: 0;
    filter: saturate(.88) contrast(.98) brightness(1.02);
}

.neighborhood-map-branding {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 3;
    font-family: 'Assistant', sans-serif;
    font-size: 13px;
    color: #5b8e63;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 3px;
    pointer-events: none;
}

.neighborhood-map-tools {
    position: absolute;
    top: 140px;
    left: 8px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.neighborhood-map-tools .map-tool-btn,
.neighborhood-map-tools .map-distance-pill {
    width: 46px;
    height: 46px;
    border: 0;
    background: rgba(255,255,255,0.95);
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.neighborhood-map-tools .map-tool-btn {
    cursor: pointer;
    font-size: 20px;
}

.neighborhood-map-tools .map-distance-pill {
    width: 52px;
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #5f635f;
    background: #dbf1df;
}

.neighborhood-map-tools .map-tool-locate {
    margin-top: 110px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    align-self: flex-start;
}

.neighborhood-category-bar {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.neighborhood-category {
    flex: 1 1 auto;
    min-width: 150px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: rgba(255,255,255,0.96);
    cursor: pointer;

    text-decoration: none;
    text-align: center;
    font-family: 'Assistant', sans-serif;
    font-size: 15px;
    /* font-weight: 600; */
    color: #444;
    border-right: 1px solid #ececec;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.neighborhood-category:last-child {
    border-right: 0;
}

.neighborhood-category i {
    font-size: 25px;
    line-height: 1;
    flex-shrink: 0;
}

.neighborhood-category span,
.neighborhood-category i {
    pointer-events: none;
}

.neighborhood-category:hover,
.neighborhood-category.is-active {
    background: #f6f6f6;
    color: #1d1d1d;
}

.neighborhood-category:hover {
    transform: translateY(-1px);
}

.neighborhood-category:focus {
    outline: none;
}

@media (max-width: 1200px) {
    .neighborhood-map-frame,
    .neighborhood-map-frame iframe {
        height: 520px;
        min-height: 520px;
    }

    .neighborhood-category {
        min-width: 25%;
    }
}

@media (max-width: 991px) {
    .neighborhood-section {
        padding: 75px 0 90px;
    }

    .neighborhood-section .section-header h2 {
        font-size: 34px;
    }

    .neighborhood-map-frame,
    .neighborhood-map-frame iframe {
        height: 500px;
        min-height: 500px;
    }

    .neighborhood-category {
        min-width: 33.333%;
        font-size: 14px;
        padding: 14px 14px;
    }

    .neighborhood-category i {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .neighborhood-section {
        padding: 65px 0 80px;
    }

    .neighborhood-section .section-header {
        margin-bottom: 28px;
    }

    .neighborhood-section .section-header h2 {
        font-size: 30px;
    }

    .neighborhood-section .section-address {
        font-size: 14px;
        padding: 0 10px;
    }

    .neighborhood-map-tools {
        top: 140px;
        left: 8px;
    }

    .neighborhood-map-tools .map-tool-btn,
    .neighborhood-map-tools .map-distance-pill {
        width: 40px;
        height: 40px;
    }

    .neighborhood-map-tools .map-distance-pill {
        width: 48px;
        font-size: 14px;
    }

    .neighborhood-map-tools .map-tool-locate {
        margin-top: 70px;
        width: 36px;
        height: 36px;
    }

    .neighborhood-map-frame,
    .neighborhood-map-frame iframe {
        height: 520px;
        min-height: 520px;
    }

    .neighborhood-category-bar {
        position: static;
        margin-top: 0;
        box-shadow: none;
        background: #fff;
    }

    .neighborhood-category {
        min-width: 50%;
        justify-content: flex-start;
        text-align: left;
        border-right: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .neighborhood-map-frame,
    .neighborhood-map-frame iframe {
        height: 470px;
        min-height: 470px;
    }

    .neighborhood-category {
        min-width: 100%;
    }
}