/* Booking search layout — scoped so reservation page styles stay intact */

.sk-home .booking-page {
    background: none;
    height: auto;
    min-height: 0;
    width: auto;
    padding: 72px 0 96px !important;
}

.bk-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.bk-filters {
    display: grid;
    gap: 18px;
}

.bk-filter-card {
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    overflow: hidden;
}

.sk-home .booking-page .locations-section-header,
.sk-home .booking-page .units-section-header,
.sk-home .booking-page .size-sqft-section-header {
    background: var(--sk-soft);
    border: none;
    color: var(--sk-dark);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    margin: 0;
    z-index: auto;
}

.sk-home .booking-page .locations-section-body,
.sk-home .booking-page .units-section-body,
.sk-home .booking-page .size-sqft-section-body {
    background: #fff;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 8px 18px 18px;
}

.sk-home .booking-page .lbl {
    display: block;
    color: var(--sk-dark);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: none;
    margin: 12px 0 6px;
}

.sk-home .booking-page select.form-control {
    width: 100%;
    height: auto;
    padding: 12px 14px;
    border: 1.5px solid var(--sk-line);
    border-radius: 10px;
    background: var(--sk-soft);
    color: var(--sk-dark);
    font-size: 14px;
    margin-bottom: 0;
}

.sk-home .booking-page .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
}

.sk-home .booking-page .check-container {
    padding: 0;
    font-size: 14px;
    color: var(--sk-dark);
    font-weight: 500;
}

.sk-home .booking-page .size-sqft-section-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
}

.sk-home .booking-page .size-container {
    font-family: inherit;
    width: 100%;
    min-width: 0;
    height: auto;
    margin: 0;
    border-radius: 50px;
    border: 1.5px solid var(--sk-line);
    background: var(--sk-soft);
    color: var(--sk-dark);
    position: relative;
}

.sk-home .booking-page .size-container span {
    position: static;
    display: block;
    width: auto;
    height: auto;
    padding: 8px 12px;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
}

.sk-home .booking-page .size-container.checked {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
}

.bk-results-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 22px;
}

.bk-range {
    margin: 0 !important;
    font-size: 13px !important;
    color: var(--sk-muted);
}

.bk-head-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.bk-perpage {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sk-dark);
    margin: 0;
}

.bk-perpage select {
    width: auto;
    min-width: 88px;
    height: auto;
    padding: 8px 32px 8px 12px;
    border: 1.5px solid var(--sk-line);
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23123a63' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 10px;
    color: var(--sk-dark);
    font-size: 14px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.bk-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--sk-line);
}

.bk-pages {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    margin-left: auto;
}

.bk-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid var(--sk-line);
    background: #fff;
    color: var(--sk-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
}

a.bk-page-btn:hover {
    border-color: var(--sk-accent);
    color: var(--sk-accent-2);
}

.bk-page-btn.is-active {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
}

.bk-page-btn.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.bk-page-btn.is-gap {
    min-width: 18px;
    padding: 0;
    border: none;
    background: transparent;
    pointer-events: none;
    color: var(--sk-muted);
}

.bk-results-head h2 {
    font-size: 26px;
    margin-bottom: 4px;
}

.bk-results-head p {
    margin: 0;
    color: var(--sk-muted);
    font-size: 14.5px;
}

.bk-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--sk-accent-2);
    background: var(--sk-soft);
    border-radius: 50px;
    padding: 8px 14px;
    white-space: nowrap;
}

.bk-unit {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    padding: 18px;
    margin-bottom: 16px;
    align-items: center;
}

.sk-home .booking-page .apartment {
    display: grid;
    width: auto;
    border: 1px solid var(--sk-line);
    background: #fff;
}

.bk-unit-img,
.sk-home .booking-page .apartment-img {
    height: 160px;
    width: auto;
    max-width: none;
    max-height: none;
    border-radius: 12px;
    background: var(--sk-soft) center/cover no-repeat;
    padding: 0;
    margin: 0;
}

.sk-home .booking-page .apartment-img > img {
    display: none;
}

.bk-unit-body h3,
.sk-home .booking-page .apartment-size {
    font-size: 18px;
    margin: 6px 0 12px;
    font-family: inherit;
}

.bk-unit-body h3 span {
    color: var(--sk-muted);
    font-weight: 500;
    font-size: 14px;
}

.sk-home .booking-page .city-name-option {
    color: var(--sk-accent-2);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: normal;
}

.sk-home .booking-page .area-name {
    color: var(--sk-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
}

.bk-unit-tags,
.sk-home .booking-page .apartment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.sk-home .booking-page .feature-name {
    border: 1px solid var(--sk-line);
    background: var(--sk-soft);
    color: var(--sk-dark);
    border-radius: 50px;
    padding: 4px 10px;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

.sk-home .booking-page .btn-reserve {
    display: inline-flex;
    width: auto;
    margin-top: 0;
    text-transform: none;
}

.sk-home .booking-page .btn:last-child {
    padding: 15px 30px !important;
    border-radius: 50px;
}

.bk-empty {
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    padding: 48px 28px;
    text-align: center;
    color: var(--sk-muted);
}

.bk-empty i {
    font-size: 28px;
    color: var(--sk-accent);
    margin-bottom: 12px;
}

.bk-empty h3 {
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .sk-home .booking-page {
        padding: 48px 0 80px !important;
    }

    .bk-results-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .bk-layout {
        grid-template-columns: 1fr;
    }

    .bk-pager {
        flex-direction: column;
        align-items: flex-start;
    }

    .bk-pages {
        margin-left: 0;
        flex-wrap: wrap;
    }

    .bk-unit,
    .sk-home .booking-page .apartment {
        grid-template-columns: 1fr;
    }

    .bk-unit-img,
    .sk-home .booking-page .apartment-img {
        height: 180px;
        width: 100%;
        margin: 0;
    }
}
