/* Search Property Type — Square Yards-style icon row with manual slider */
body.nine-properties {
    --pm-everything-border: #e1e1e1;
    --pm-everything-text: #333;
    --pm-property-type-item-width: 209px;
}

body.nine-properties .nine-pm-everything-band {
    width: 100%;
    background: transparent;
    box-sizing: border-box;
}

body.nine-properties .nine-pm-everything-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

body.nine-properties .nine-pm-everything-section.white-box {
    background: transparent;
    border: none;
    box-shadow: none;
}

body.nine-properties .nine-pm-everything-section .title-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.nine-properties .nine-pm-everything-section .title-box .title {
    margin: 0;
    color: var(--pm-everything-text);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

body.nine-properties .nine-pm-everything-section .white-body {
    padding-top: 15px;
}

body.nine-properties .nine-pm-everything-section .nine-pm-everything-body {
    border-radius: 15px;
    background: #fff;
    border: 1px solid var(--pm-everything-border);
    min-height: 160px;
    overflow: hidden;
}

body.nine-properties .nine-pm-property-type-slider {
    position: relative;
}

body.nine-properties .nine-pm-property-type-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

body.nine-properties .nine-pm-property-type-slider__viewport::-webkit-scrollbar {
    display: none;
}

body.nine-properties .nine-pm-everything-section .nine-pm-everything-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    width: max-content;
    min-width: 100%;
}

body.nine-properties .nine-pm-everything-section .nine-pm-property-type-item {
    flex: 0 0 var(--pm-property-type-item-width);
    width: var(--pm-property-type-item-width);
    position: relative;
    list-style: none;
}

body.nine-properties .nine-pm-everything-section .nine-pm-property-type-item ~ .nine-pm-property-type-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 60px;
    height: 41px;
    width: 1px;
    background: var(--pm-everything-border);
}

body.nine-properties .nine-pm-everything-section .nine-pm-everything-list .link {
    padding: 34px 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: relative;
    justify-content: center;
    color: var(--pm-everything-text);
    text-decoration: none;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    transition: color 0.2s ease, transform 0.2s ease;
}

body.nine-properties .nine-pm-everything-section .nine-pm-everything-list .link:hover {
    color: var(--nine-pm-brand-third, #f24e09);
}

body.nine-properties .nine-pm-everything-section .nine-pm-everything-list .link:hover .nine-pm-property-type-icon {
    transform: translateY(-2px);
}

body.nine-properties .nine-pm-everything-section .nine-pm-everything-list figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 79px;
    min-height: 79px;
    margin: 0;
}

body.nine-properties .nine-pm-property-type-icon {
    display: block;
    width: 79px;
    height: 79px;
    transition: transform 0.2s ease;
}

body.nine-properties .nine-pm-everything-section .nine-pm-everything-list strong {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    max-width: 100%;
}

body.nine-properties .nine-pm-property-type-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    border: none;
    border-radius: 50%;
    background: rgb(0 0 0 / 72%);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    transition: background 0.2s ease;
}

body.nine-properties .nine-pm-property-type-slider__nav:hover {
    background: rgb(0 0 0 / 88%);
}

body.nine-properties .nine-pm-property-type-slider__nav[hidden] {
    display: none !important;
}

body.nine-properties .nine-pm-property-type-slider__nav--prev {
    left: 8px;
}

body.nine-properties .nine-pm-property-type-slider__nav--next {
    right: 8px;
}

body.nine-properties .nine-pm-property-type-slider.is-scrollable .nine-pm-property-type-slider__viewport {
    scroll-snap-type: x proximity;
}

body.nine-properties .nine-pm-property-type-slider.is-scrollable .nine-pm-property-type-item {
    scroll-snap-align: start;
}

@media (max-width: 991px) {
    body.nine-properties {
        --pm-property-type-item-width: 160px;
    }
}

@media (max-width: 575px) {
    body.nine-properties {
        --pm-property-type-item-width: 140px;
    }

    body.nine-properties .nine-pm-everything-section .title-box .title {
        font-size: 22px;
    }

    body.nine-properties .nine-pm-everything-section .nine-pm-everything-list .link {
        padding: 28px 8px 20px;
    }

    body.nine-properties .nine-pm-everything-section .nine-pm-everything-list figure {
        width: 64px;
        min-height: 64px;
    }

    body.nine-properties .nine-pm-property-type-icon {
        width: 64px;
        height: 64px;
    }

    body.nine-properties .nine-pm-everything-section .nine-pm-everything-list strong {
        font-size: 13px;
    }

    body.nine-properties .nine-pm-property-type-slider__nav {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }
}
