.traveler-hero {
    min-height: 460px;
    justify-content: flex-start;
    overflow: visible;
}
.traveler-hero .hero-card {
    position: relative;
    order: 1;
    margin-bottom: 28px;
    transform: none;
}
.traveler-hero-copy {
    order: 2;
    width: 100%;
    max-width: 1120px;
    text-align: center;
}
.traveler-hero-copy p { text-align: center; }
.traveler-date-trigger {
    display: flex;
    width: 100%;
    height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #c9d7e4;
    border-radius: 8px;
    background: #fff;
    color: #273746;
    font: inherit;
    cursor: pointer;
    text-align: left;
}
.traveler-date-trigger span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.traveler-date-trigger i {
    color: var(--blue);
    font-size: 14px;
    font-style: normal;
}
.traveler-date-trigger:hover,
.traveler-date-trigger:focus {
    border-color: var(--blue);
    outline: 0;
    box-shadow: 0 0 0 3px #1766ad1c;
}
.traveler-destination-field {
    display: grid;
    gap: 0;
}
.traveler-destination-field > label,
.traveler-destination-field > input {
    grid-column: 1 / -1;
}
.traveler-map-search {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0 12px;
    border: 1px solid var(--blue);
    border-radius: 6px;
    background: #eef6fc;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}
.traveler-map-search:hover {
    background: var(--blue);
    color: #fff;
}
.traveler-search-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr .8fr;
    gap: 10px;
    align-items: center;
}
.traveler-map-action {
    display: grid;
    grid-column: 1;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.traveler-map-action .traveler-map-search {
    width: auto;
}
.traveler-map-action small {
    min-width: 0;
    color: #647789;
    font-size: 10px;
    line-height: 1.3;
}
.traveler-search-button {
    grid-column: 2 / -1;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
}
html { scroll-behavior: smooth; }
.traveler-calendar[hidden] { display: none; }
.traveler-calendar {
    position: absolute;
    z-index: 40;
    top: 86px;
    left: 14px;
    width: min(720px, calc(100% - 28px));
    padding: 18px;
    border: 1px solid #d0dae2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 55px #071d2b38;
    color: #17232c;
}
.traveler-calendar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 0 4px 13px;
    border-bottom: 1px solid var(--border);
}
.traveler-calendar-head div { display: grid; gap: 4px; }
.traveler-calendar-head strong { font-size: 17px; }
.traveler-calendar-head span { color: var(--muted); font-size: 12px; }
.traveler-calendar-close {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #eef4f8;
    color: #28475f;
    font-size: 23px;
    cursor: pointer;
}
.traveler-calendar-nav {
    position: absolute;
    top: 79px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.traveler-calendar-nav button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid #cbd6df;
    border-radius: 50%;
    background: #fff;
    color: #183f62;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
}
.traveler-calendar-nav button:disabled { opacity: .3; cursor: not-allowed; }
.traveler-calendar-months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    padding: 16px 4px 10px;
}
.traveler-calendar-month h3 {
    margin: 0 0 14px;
    text-align: center;
    font-size: 15px;
    text-transform: capitalize;
}
.traveler-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.traveler-calendar-grid > span,
.traveler-calendar-grid > button {
    display: grid;
    min-width: 34px;
    aspect-ratio: 1;
    place-items: center;
}
.traveler-calendar-weekday { color: #7b8994; font-size: 11px; font-weight: 900; }
.traveler-calendar-grid button {
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #263746;
    font-size: 13px;
    cursor: pointer;
}
.traveler-calendar-grid button:hover { background: #e4f0f8; }
.traveler-calendar-grid button:disabled { color: #c2c9ce; cursor: not-allowed; }
.traveler-calendar-grid button.today { box-shadow: inset 0 0 0 1px #5a758c; }
.traveler-calendar-grid button.in-range {
    border-radius: 0;
    background: #8fc5e8;
    color: #0b3657;
    font-weight: 900;
}
.traveler-calendar-grid button.range-start,
.traveler-calendar-grid button.range-end {
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
}
.traveler-calendar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 4px 0;
    border-top: 1px solid var(--border);
    color: #52677d;
    font-size: 12px;
}
.traveler-calendar-clear {
    border: 0;
    background: transparent;
    color: var(--blue);
    font-weight: 900;
    cursor: pointer;
    text-decoration: underline;
}
.traveler-calendar-apply {
    min-height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.traveler-calendar-apply:disabled {
    background: #d5dde3;
    color: #84919b;
    cursor: not-allowed;
}
.traveler-results-tools {
    display: flex;
    width: min(1180px, 90vw);
    align-items: center;
    gap: 9px;
    margin: 22px auto 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.traveler-filter-button,
.traveler-filter-chip {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid #b8c5cf;
    border-radius: 999px;
    background: #fff;
    color: #223543;
    font-weight: 800;
    cursor: pointer;
}
.traveler-filter-button { border-radius: 8px; }
.traveler-filter-button span { margin-right: 6px; font-size: 17px; }
.traveler-filter-chip.active { border-color: var(--blue); background: #eaf4fb; color: var(--blue); }
.traveler-results-count { margin-left: auto; color: var(--muted); font-size: 13px; }
.traveler-hero-results {
    min-height: 245px;
    padding-top: 34px;
    padding-bottom: 28px;
}
.traveler-hero-results .hero-card { margin-bottom: 0; }
.traveler-hero-results .traveler-hero-copy { display: none; }
.traveler-split-results {
    display: grid;
    grid-template-columns: minmax(560px, 56%) minmax(420px, 44%);
    align-items: start;
    width: 100%;
    margin-top: 0;
}
.traveler-split-results .traveler-results-list {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 25px 26px 55px max(26px, 4vw);
}
.traveler-results-list .section-head { align-items: center; }
.traveler-results-list .section-head h2 { font-size: 25px; }
.traveler-results-list > .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.traveler-results-map {
    position: sticky;
    top: 0;
    height: 100vh;
    margin: 0;
    border-left: 1px solid var(--border);
    background: #dce9f1;
}
.traveler-results-map .map-heading {
    position: absolute;
    z-index: 4;
    top: 16px;
    left: 16px;
    width: auto;
    max-width: calc(100% - 80px);
    margin: 0;
    padding: 11px 14px;
    border: 1px solid #c7d6e1;
    border-radius: 8px;
    background: #ffffffed;
    box-shadow: 0 6px 20px #071d2b20;
}
.traveler-results-map .map-heading h2 { font-size: 18px; }
.traveler-results-map .map-heading p { margin: 4px 0 0; font-size: 11px; }
.traveler-results-map #property-map {
    height: 100%;
    min-height: 100%;
    border: 0;
}
.map-price-marker { transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.map-price-marker.highlighted {
    background: #e5484d;
    box-shadow: 0 6px 22px #071d2b80;
    transform: scale(1.22) translateY(-3px);
}
.traveler-results-list .property-card:hover,
.traveler-results-list .property-card:focus-within {
    border-color: #7fa8c6;
    box-shadow: 0 12px 30px #0c2f4f25;
    transform: translateY(-2px);
}
.property-card-heart {
    border: 0;
    cursor: pointer;
    line-height: 1;
}
.property-card-heart:hover { transform: scale(1.08); }
.property-card-heart.loading { opacity: .55; cursor: wait; }
.property-card-heart.error { box-shadow: 0 0 0 3px #ef444466; }
.traveler-filter-dialog {
    width: min(720px, 94vw);
    height: min(760px, 88vh);
    max-height: 88vh;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 25px 70px #061a2866;
    color: #17232c;
}
.traveler-filter-form{display:grid;height:100%;min-height:0;grid-template-rows:auto minmax(0,1fr) auto;overflow:hidden}
.traveler-filter-dialog::backdrop { background: #071d2b8c; }
.traveler-filter-form > header {
    position: relative;
    display: grid;
    min-height: 64px;
    place-items: center;
    border-bottom: 1px solid var(--border);
}
.traveler-filter-form > header h2 { margin: 0; font-size: 17px; }
.traveler-filter-close {
    position: absolute;
    left: 18px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #263746;
    font-size: 25px;
    cursor: pointer;
}
.traveler-filter-close:hover { background: #eef3f6; }
.traveler-filter-content { min-height:0;max-height:none;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;padding:0 28px;scrollbar-gutter:stable; }
.traveler-price-filter { padding: 28px 0 34px; }
.traveler-price-filter h3 { margin: 0 0 7px; font-size: 23px; }
.traveler-price-filter > p { margin: 0; color: var(--muted); font-size: 14px; }
.traveler-price-histogram {
    display: flex;
    height: 120px;
    align-items: flex-end;
    gap: 3px;
    margin: 26px 7px 0;
    border-bottom: 2px solid #263746;
}
.traveler-price-histogram i {
    min-width: 4px;
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: #8dbbd8;
}
.traveler-price-sliders {
    --price-left: 0%;
    --price-right: 0%;
    position: relative;
    height: 28px;
    margin: -15px 0 18px;
}
.traveler-price-sliders::before {
    content: "";
    position: absolute;
    top: 13px;
    right: var(--price-right);
    left: var(--price-left);
    height: 4px;
    border-radius: 2px;
    background: var(--blue);
}
.traveler-price-sliders input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    margin: 0;
    appearance: none;
    -moz-appearance: none;
    background: transparent;
    pointer-events: none;
}
.traveler-price-sliders #price-range-min { z-index: 3; }
.traveler-price-sliders #price-range-max { z-index: 4; }
.traveler-price-sliders input::-webkit-slider-runnable-track {
    height: 4px;
    border: 0;
    background: transparent;
}
.traveler-price-sliders input::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    margin-top: -9px;
    border: 1px solid #87949e;
    border-radius: 50%;
    appearance: none;
    background: #fff;
    box-shadow: 0 1px 5px #071d2b55;
    cursor: grab;
    pointer-events: auto;
}
.traveler-price-sliders input::-moz-range-track {
    height: 4px;
    border: 0;
    background: transparent;
}
.traveler-price-sliders input::-moz-range-progress { background: transparent; }
.traveler-price-sliders input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 1px solid #87949e;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 5px #071d2b55;
    cursor: grab;
    pointer-events: auto;
}
.traveler-price-sliders input:active::-webkit-slider-thumb,
.traveler-price-sliders input:active::-moz-range-thumb { cursor: grabbing; }
.traveler-price-sliders input:focus-visible::-webkit-slider-thumb { outline: 3px solid #1d77b955; outline-offset: 2px; }
.traveler-price-sliders input:focus-visible::-moz-range-thumb { outline: 3px solid #1d77b955; outline-offset: 2px; }
.traveler-price-inputs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.traveler-price-inputs label {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 58px;
    align-items: end;
    padding: 8px 13px;
    border: 1px solid #9faeb9;
    border-radius: 10px;
}
.traveler-price-inputs label span { grid-column: 1 / -1; color: var(--muted); font-size: 11px; }
.traveler-price-inputs label b { padding: 4px 4px 4px 0; font-weight: 500; }
.traveler-price-inputs input { width: 100%; min-width: 0; padding: 4px 0; border: 0; outline: 0; font: 16px Arial; }
.traveler-price-inputs em { color: #87949e; font-style: normal; }
.traveler-filter-form > footer {
    position:relative;
    z-index:3;
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 22px;
    border-top: 1px solid var(--border);
    background:#fff;
}
.traveler-filter-form > footer a { color: #263746; font-weight: 900; text-decoration: underline; }
.traveler-filter-form > footer .button { min-width: 180px; }
@media (max-width: 760px) {
    .traveler-hero {
        min-height: 520px;
        justify-content: flex-start;
    }
    .traveler-calendar {
        position: fixed;
        top: 50%;
        left: 50%;
        width: min(94vw, 520px);
        max-height: 88vh;
        overflow: auto;
        transform: translate(-50%, -50%);
    }
    .traveler-calendar-months { grid-template-columns: 1fr; }
    .traveler-calendar-month:nth-child(2) { display: none; }
    .traveler-calendar-footer { align-items: flex-start; flex-direction: column; }
    .traveler-hero .hero-card { margin-bottom: 24px; }
    .traveler-hero .hero-card { transform: none; }
    .traveler-search-button {
        grid-column: 1;
        width: 100%;
        margin-left: 0;
    }
    .traveler-search-row {
        grid-template-columns: 1fr;
    }
    .traveler-destination-field {
        grid-template-columns: 1fr;
    }
    .traveler-destination-field > label,
    .traveler-destination-field > input,
    .traveler-map-search {
        grid-column: 1;
    }
    .traveler-map-action {
        grid-template-columns: 1fr;
    }
    .traveler-map-action .traveler-map-search {
        width: 100%;
    }
    .traveler-results-tools { overflow-x: auto; }
    .traveler-results-count { display: none; }
    .traveler-price-inputs { gap: 7px; }
    .traveler-filter-content { padding: 0 18px; }
    .traveler-hero-results { min-height: 420px; }
    .traveler-split-results { display: block; }
    .traveler-split-results .traveler-results-list { padding: 22px 18px; }
    .traveler-results-list > .grid { grid-template-columns: 1fr; }
    .traveler-results-map { position: relative; height: 62vh; min-height: 420px; border-left: 0; }
}
@media (min-width: 761px) and (max-width: 1100px) {
    .traveler-split-results { grid-template-columns: minmax(480px, 58%) minmax(360px, 42%); }
    .traveler-results-list > .grid { grid-template-columns: 1fr; }
}
.traveler-pagination{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;margin:28px 0 4px;padding-top:22px;border-top:1px solid #d9e2ea;color:#496078;font-size:14px}.traveler-pagination>div{display:flex;align-items:center;gap:5px}.traveler-pagination a{display:inline-flex;min-width:38px;height:38px;box-sizing:border-box;align-items:center;justify-content:center;padding:0 12px;border:1px solid #b9cad8;border-radius:6px;background:#fff;color:#124f84;font-weight:800;text-decoration:none}.traveler-pagination a:hover{border-color:#155f9e;background:#edf6fc}.traveler-pagination a.active{border-color:#155f9e;background:#155f9e;color:#fff}.traveler-pagination a.disabled{pointer-events:none;opacity:.42}.traveler-pagination>span{font-weight:700}@media(max-width:700px){.traveler-pagination{gap:9px}.traveler-pagination>span{order:-1;width:100%;text-align:center}.traveler-pagination a{min-width:36px;padding:0 9px}}
.traveler-amenity-filter{padding:27px 0;border-bottom:1px solid var(--border)}.traveler-amenity-filter h3{margin:0 0 18px;font-size:20px}.traveler-recommended-amenities{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.traveler-recommended-amenities label,.traveler-amenity-pills label{cursor:pointer}.traveler-recommended-amenities input,.traveler-amenity-pills input{position:absolute;opacity:0;pointer-events:none}.traveler-recommended-amenities span{display:flex;min-height:94px;box-sizing:border-box;align-items:center;justify-content:center;flex-direction:column;gap:10px;padding:12px;border:1px solid #d3dce4;border-radius:8px;text-align:center;font-size:12px}.traveler-recommended-amenities i{display:grid;width:38px;height:38px;place-items:center;border-radius:50%;background:#e8f3f8;color:#155b8e;font-size:10px;font-style:normal;font-weight:900;text-transform:uppercase}.traveler-recommended-amenities input:checked+span{border:2px solid #145b90;background:#eef7fc}.traveler-amenity-pills{display:flex;gap:9px;flex-wrap:wrap}.traveler-amenity-pills span{display:inline-flex;min-height:40px;align-items:center;padding:0 14px;border:1px solid #d3dce4;border-radius:20px;font-size:13px}.traveler-amenity-pills input:checked+span{border:2px solid #145b90;background:#eef7fc;color:#124f84;font-weight:800}.traveler-accessibility-filter{border-bottom:1px solid var(--border)}.traveler-accessibility-filter summary{display:flex;min-height:72px;align-items:center;justify-content:space-between;cursor:pointer;font-size:18px;font-weight:800;list-style:none}.traveler-accessibility-filter summary::-webkit-details-marker{display:none}.traveler-accessibility-filter summary span{font-size:20px;transition:transform .2s}.traveler-accessibility-filter[open] summary span{transform:rotate(180deg)}.traveler-accessibility-filter>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 24px;padding:0 0 24px}.traveler-accessibility-filter label{display:flex;align-items:flex-start;gap:10px;padding:10px 0;color:#364c60;font-size:13px;line-height:1.35}.traveler-accessibility-filter input{width:18px;height:18px;flex:0 0 18px;accent-color:#145b90}@media(max-width:600px){.traveler-recommended-amenities{grid-template-columns:repeat(2,1fr)}.traveler-accessibility-filter>div{grid-template-columns:1fr}}
.traveler-amenity-filter .traveler-recommended-amenities i{width:42px;height:42px;font-size:0;font-weight:400;text-transform:none}.traveler-recommended-amenities i svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8}
.traveler-booking-options{display:flex;gap:10px;flex-wrap:wrap}.traveler-booking-options label{cursor:pointer}.traveler-booking-options input{position:absolute;opacity:0;pointer-events:none}.traveler-booking-options span{display:grid;grid-template-columns:32px auto;grid-template-rows:auto auto;min-height:62px;box-sizing:border-box;align-items:center;padding:10px 16px;border:1px solid #d3dce4;border-radius:8px}.traveler-booking-options b{grid-row:1/3;color:#145b90;font-size:24px}.traveler-booking-options strong{font-size:14px}.traveler-booking-options small{color:#6d7e8c;font-size:11px}.traveler-booking-options input:checked+span{border:2px solid #145b90;background:#eef7fc}
.traveler-stay-type-filter{padding:27px 0;border-bottom:1px solid var(--border)}.traveler-stay-type-filter h3{margin:0 0 16px;font-size:20px}.traveler-stay-type-filter>div{display:grid;grid-template-columns:repeat(3,1fr);overflow:hidden;border:1px solid #d2d9df;border-radius:10px}.traveler-stay-type-filter label{position:relative}.traveler-stay-type-filter label+label{border-left:1px solid #d2d9df}.traveler-stay-type-filter input{position:absolute;opacity:0}.traveler-stay-type-filter span{display:grid;min-height:48px;place-items:center;padding:0 12px;text-align:center;font-size:13px;font-weight:800}.traveler-stay-type-filter input:checked+span{box-shadow:inset 0 0 0 2px #17232c;border-radius:9px;background:#f7f7f7}
