:root {
    --hn-orange: #FF5527;
    --hn-orange-dark: #e64920;
    --hn-green: #128C7E;
    --hn-green-dark: #006A4E;
    --hn-text: #222222;
    --hn-muted: #6C757D;
    --hn-bg: #F7F7F7;
    --hn-soft-bg: #FAFAFA;
    --hn-border: #EAEAEA;
}

.wa-svg-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    flex-shrink: 0;
    background-color: #128C7E;
    -webkit-mask: url("/assets/img/free-booking-page/Whatsapp.svg") center / contain no-repeat;
    mask: url("/assets/img/free-booking-page/Whatsapp.svg") center / contain no-repeat;
}

a:hover .wa-svg-icon,
button:hover .wa-svg-icon,
a:active .wa-svg-icon,
button:active .wa-svg-icon {
    background-color: #006A4E;
}

.stay-footer__btn--whatsapp .wa-svg-icon,
.stay-footer__btn--whatsapp:hover .wa-svg-icon,
.stay-footer__btn--whatsapp:active .wa-svg-icon {
    background-color: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    background: #fff;
}

body.stay-body {
    background: #fff;
}

body.modal-open {
    overflow: hidden;
}

.booking-modal,
.gallery-lightbox,
.video-modal,
.stay-detail-modal {
    display: none;
}

.booking-modal.is-open {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gallery-lightbox.is-open,
.video-modal.is-open,
.stay-detail-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.modal-open .sticky-stay-cta {
    display: none;
}

.booking-modal-card,
.gallery-lightbox-card,
.video-modal-card,
.stay-detail-modal-card {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.stay-detail-modal-card {
    width: min(680px, calc(100vw - 28px));
    max-height: calc(100svh - 48px);
}

.stay-detail-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.stay-detail-modal-grid img {
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.stay-detail-modal-list {
    display: grid;
    gap: 10px;
}

.stay-detail-modal-list__item {
    border: 1px solid var(--hn-border);
    border-radius: 16px;
    background: var(--hn-soft-bg);
    padding: 14px 16px;
    color: var(--hn-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.stay-detail-modal-list__item small {
    display: block;
    margin-top: 4px;
    color: var(--hn-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.stay-modal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--hn-border);
    border-radius: 999px;
    background: #fff;
    color: var(--hn-orange);
    padding: 0 16px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.stay-room-show-more {
    min-height: 36px;
    width: fit-content;
    background: transparent;
    box-shadow: none;
    padding-inline: 0;
    border-color: transparent;
}

.stay-detail-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stay-detail-card-button {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--hn-border);
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    color: var(--hn-text);
    text-align: left;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stay-detail-card-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 85, 39, 0.32);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.075);
}

.stay-detail-card-button span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #FFF3EF;
    color: var(--hn-orange);
}

.stay-detail-card-button span i,
.stay-detail-card-button span svg {
    width: 20px;
    height: 20px;
}

.stay-detail-card-button strong {
    display: block;
    color: var(--hn-text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.stay-detail-card-button small {
    display: block;
    margin-top: 5px;
    color: var(--hn-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.video-modal-card {
    width: min(1040px, calc(100vw - 28px));
    max-height: calc(100svh - 48px);
}

.video-frame,
.video-frame iframe,
.stay-video-iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.video-frame iframe,
.stay-video-iframe {
    border: 0;
}

.room-choice:has(input:checked),
.room-choice.is-selected {
    border-color: var(--hn-orange) !important;
    background: #fff7ed !important;
    box-shadow: 0 14px 40px rgba(255, 85, 39, 0.12) !important;
}

.stay-shell {
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 22px;
}

.stay-section {
    padding-block: 52px;
}

.stay-section-compact {
    padding-block: 38px;
}

.stay-soft-section {
    background:
        radial-gradient(circle at top left, rgba(255, 85, 39, 0.045), transparent 28rem),
        var(--hn-bg);
}

.stay-card {
    border: 1px solid var(--hn-border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.055);
}

.stay-card-hover {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stay-card-hover:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 85, 39, 0.22);
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.10);
}

.stay-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    background: #fff4ef;
    color: var(--hn-orange);
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.stay-hero {
    min-height: 82vh;
}

.stay-hero__overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, .82) 0%,
        rgba(0, 0, 0, .62) 42%,
        rgba(0, 0, 0, .18) 100%
    );
}

.stay-hero__fade {
    background: linear-gradient(to top, rgba(255, 255, 255, .80), rgba(255, 255, 255, .25), transparent);
}

.stay-hero-card {
    background: rgba(20, 20, 20, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.stay-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px 58px;
    align-items: center;
    gap: 12px;
    max-width: 620px;
}

.stay-hero-availability-btn,
.stay-hero-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.stay-hero-availability-btn {
    border: 1px solid #FF5527;
    background: #FF5527;
    color: #fff;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(255, 85, 39, 0.28);
}

.stay-hero-availability-btn:hover {
    background: #e64920;
    border-color: #e64920;
}

.stay-hero-icon-btn {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 2px solid rgba(255, 85, 39, 0.95);
    background: rgba(255, 255, 255, 0.96);
    color: #FF5527;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.stay-hero-icon-btn svg,
.stay-hero-icon-btn i {
    color: #FF5527 !important;
    stroke: #FF5527 !important;
}
.stay-hero-icon-btn .wa-svg-icon{background-color: #FF5527 !important; }

.stay-hero-icon-btn:hover {
    transform: translateY(-1px);
    background: #fff7f2;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.stay-hero-availability-btn:active,
.stay-hero-icon-btn:active {
    transform: scale(0.98);
}

.stay-hero-actions a,
.stay-hero-actions button {
    min-height: 54px;
}

.stay-floating-checker {
    margin-top: -34px;
    position: relative;
    z-index: 20;
}

.stay-floating-checker .stay-card {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.10);
}

.stay-info-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
}

.stay-info-strip__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 18px;
    border-right: 1px solid var(--hn-border);
}

.stay-info-strip__item:last-child {
    border-right: 0;
}

.stay-info-strip__icon,
.stay-amenity-preview__icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #F0FAF7;
    color: var(--hn-green-dark);
}

.stay-info-strip__icon i,
.stay-amenity-preview__icon i {
    width: 18px;
    height: 18px;
}

.stay-info-strip__label {
    display: block;
    color: var(--hn-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.stay-info-strip__value {
    display: block;
    margin-top: 4px;
    color: var(--hn-text);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.stay-amenity-preview {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.stay-amenity-preview__item {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--hn-border);
    border-radius: 22px;
    background: #fff;
    padding: 12px 10px;
    color: var(--hn-text);
    text-align: center;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.stay-amenity-preview__name {
    display: block;
    color: var(--hn-text);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
}

.stay-amenity-preview__more {
    background: #FFF4EF;
    color: var(--hn-orange);
}

.stay-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.stay-action-grid--single {
    grid-template-columns: 1fr;
}

.stay-contact-btn {
    min-height: 48px;
}

.stay-map-card {
    overflow: hidden;
    border: 1px solid var(--hn-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.stay-map-card__preview {
    position: relative;
    min-height: 148px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
        linear-gradient(135deg, #e8f4ef 0%, #f8fbf9 42%, #fff3ee 100%);
}

.stay-map-card__preview::before,
.stay-map-card__preview::after {
    position: absolute;
    inset: auto;
    content: "";
}

.stay-map-card__preview::before {
    width: 170px;
    height: 170px;
    right: -48px;
    top: -58px;
    border-radius: 999px;
    background: rgba(18, 140, 126, 0.10);
}

.stay-map-card__preview::after {
    width: 120px;
    height: 120px;
    left: -36px;
    bottom: -42px;
    border-radius: 999px;
    background: rgba(255, 85, 39, 0.12);
}

.stay-map-card__road {
    position: absolute;
    left: -12%;
    display: block;
    width: 125%;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.05);
}

.stay-map-card__road--one {
    top: 35px;
    transform: rotate(-14deg);
}

.stay-map-card__road--two {
    top: 86px;
    transform: rotate(11deg);
}

.stay-map-card__road--three {
    top: 112px;
    left: 34%;
    width: 18px;
    height: 120px;
    transform: rotate(21deg);
}

.stay-map-card__pin {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    border-radius: 999px;
    background: var(--hn-orange);
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 85, 39, 0.28);
    transform: translate(-50%, -50%);
}

.stay-map-card__pin i,
.stay-map-card__pin svg {
    width: 25px;
    height: 25px;
}

.stay-map-card__body {
    padding: 17px;
}

.stay-map-card__eyebrow {
    display: inline-flex;
    color: var(--hn-orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.stay-map-card__body strong {
    display: block;
    margin-top: 8px;
    color: var(--hn-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.stay-map-card__body small {
    display: block;
    margin-top: 5px;
    overflow-wrap: anywhere;
    color: var(--hn-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.stay-map-card__link {
    display: inline-flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--hn-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(255, 85, 39, 0.18);
    transition: background 180ms ease, transform 180ms ease;
}

.stay-map-card__link:hover {
    background: var(--hn-orange-dark);
    transform: translateY(-1px);
}

.sticky-stay-cta {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
    visibility: hidden;
    padding-top: 8px !important;
    padding-bottom: max(8px, env(safe-area-inset-bottom)) !important;
}

.sticky-stay-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.sticky-stay-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px 42px auto;
    align-items: center;
    gap: 8px;
}

.sticky-stay-cta__inner--solo {
    grid-template-columns: minmax(0, 1fr) auto;
}

.sticky-stay-cta__inner--single-contact {
    grid-template-columns: minmax(0, 1fr) 42px auto;
}

.sticky-stay-cta__summary {
    display: block !important;
}

.sticky-stay-cta__action {
    min-height: 42px !important;
    border-radius: 999px !important;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sticky-stay-cta__primary {
    min-width: 0;
    border: 1px solid var(--hn-orange) !important;
    background: var(--hn-orange) !important;
    padding-inline: 14px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    box-shadow: 0 10px 22px rgba(255, 85, 39, 0.18) !important;
}

.sticky-stay-cta__primary:hover,
.sticky-stay-cta__primary:active {
    background: var(--hn-orange-dark) !important;
    border-color: var(--hn-orange-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 85, 39, 0.24) !important;
}

.sticky-stay-cta__contact {
    width: 42px !important;
    height: 42px !important;
    border: 1.5px solid var(--hn-orange) !important;
    background: #fff !important;
    color: var(--hn-orange) !important;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08) !important;
}

.sticky-stay-cta__contact:hover,
.sticky-stay-cta__contact:active {
    background: #FFF3EF !important;
    border-color: var(--hn-orange-dark) !important;
    color: var(--hn-orange-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 85, 39, 0.18) !important;
}

.sticky-stay-cta__contact svg,
.sticky-stay-cta__contact i {
    width: 19px !important;
    height: 19px !important;
    margin: 0 !important;
    color: var(--hn-orange) !important;
    stroke: var(--hn-orange) !important;
}

.sticky-stay-cta__contact:hover svg,
.sticky-stay-cta__contact:hover i,
.sticky-stay-cta__contact:active svg,
.sticky-stay-cta__contact:active i {
    color: var(--hn-orange-dark) !important;
    stroke: var(--hn-orange-dark) !important;
}

.sticky-stay-cta__contact .wa-svg-icon {
    width: 21px !important;
    height: 21px !important;
    background-color: var(--hn-orange) !important;
}

.sticky-stay-cta__contact:hover .wa-svg-icon,
.sticky-stay-cta__contact:active .wa-svg-icon {
    background-color: var(--hn-orange-dark) !important;
}


.stay-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 10px;
}

.stay-gallery-grid button {
    overflow: hidden;
    background: #f3f4f6;
}

.stay-gallery-grid button:first-child {
    grid-row: span 2;
    border-radius: 30px 0 0 30px;
}

.stay-gallery-grid button:nth-child(3) {
    border-radius: 0 30px 0 0;
}

.stay-gallery-grid button:nth-child(5),
.stay-gallery-grid button:last-child {
    border-radius: 0 0 30px 0;
}

.stay-room-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .30), transparent 48%);
    opacity: 0;
    transition: opacity 180ms ease;
}

.stay-room-card:hover .stay-room-image-wrap::after {
    opacity: 1;
}

.stay-room-image-wrap {
    border: 0;
    cursor: pointer;
    padding: 0;
}

.stay-room-card__description {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.stay-room-card__amenities {
    min-height: 32px;
    max-height: 76px;
    overflow: hidden;
}

.stay-room-more-chip {
    border: 1px solid #EAEAEA;
    border-radius: 999px;
    background: #fff;
    color: #6C757D;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
}

.stay-room-more-chip:hover,
.stay-room-more-chip[aria-expanded="true"] {
    border-color: #FFD8CB;
    color: #FF5527;
}

.stay-room-card__amenity-hidden {
    display: none;
}

.stay-room-card__amenity-hidden.is-visible {
    display: inline-flex;
}

.room-photo-rail [data-open-room-gallery] {
    cursor: pointer;
}

.room-photo-rail .has-photo-more::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
}

.room-photo-rail .has-photo-more span {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.stay-room-detail-modal {
    display: grid;
    gap: 18px;
}

.stay-room-detail-modal__facts,
.stay-room-detail-modal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stay-room-detail-modal__facts span,
.stay-room-detail-modal__chips span {
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
}

.stay-room-detail-modal__facts span {
    background: #F7F7F7;
    color: #222;
}

.stay-room-detail-modal__chips span {
    border: 1px solid #EAEAEA;
    background: #fff;
    color: #6C757D;
}

.stay-room-detail-modal p {
    margin: 0;
    color: #5F6872;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

[data-room-photo].is-selected {
    border-color: var(--hn-orange) !important;
    box-shadow: 0 10px 22px rgba(255, 85, 39, .16);
}

.room-photo-rail {
    margin-inline: -2px;
    padding-inline: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.room-photo-rail::-webkit-scrollbar {
    display: none;
}

.room-photo-rail [data-room-photo] {
    scroll-snap-align: start;
}

.stay-mini-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.82);
    padding: 12px 0;
    backdrop-filter: blur(14px);
}

.stay-mini-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(234, 234, 234, 0.9);
    border-radius: 999px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.stay-mini-nav-links {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stay-mini-nav-links::-webkit-scrollbar {
    display: none;
}

.stay-mini-nav-link {
    flex: 0 0 auto;
    border-radius: 999px;
    color: var(--hn-text);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.stay-mini-nav-link:hover {
    background: #FFF3EF;
    color: var(--hn-orange);
}

.stay-mini-nav-cta {
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--hn-orange);
    color: #fff;
    padding: 11px 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(255, 85, 39, 0.20);
    transition: background 0.18s ease, transform 0.18s ease;
}

.stay-mini-nav-cta:hover {
    background: var(--hn-orange-dark);
    transform: translateY(-1px);
}

.stay-footer {
    margin-top: 48px;
    border-top: 1px solid var(--hn-border);
    background: var(--hn-soft-bg);
    color: var(--hn-text);
    padding-bottom: 88px;
}

.stay-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px 20px 24px;
}

.stay-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}

.stay-footer__brand {
    min-width: 0;
}

.stay-footer__eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 85, 39, 0.08);
    color: var(--hn-orange);
    padding: 7px 12px 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.stay-footer__title {
    margin: 14px 0 0;
    color: var(--hn-text);
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.stay-footer__location {
    margin: 10px 0 0;
    color: var(--hn-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.stay-footer__contact {
    border: 1px solid var(--hn-border);
    border-radius: 24px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 16px 44px rgba(17, 24, 39, 0.06);
}

.stay-footer__contact h2 {
    margin: 0 0 8px;
    color: var(--hn-text);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
}

.stay-footer__contact p {
    margin: 0;
    color: var(--hn-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.stay-footer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.stay-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.stay-footer__btn:hover {
    transform: translateY(-1px);
}

.stay-footer__btn--light {
    border-color: var(--hn-border);
    background: var(--hn-bg);
    color: var(--hn-text);
}

.stay-footer__btn--light:hover {
    border-color: rgba(34, 34, 34, 0.12);
    background: #fff;
    color: var(--hn-text);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.07);
}

.stay-footer__btn--whatsapp {
    border-color: var(--hn-green);
    background: var(--hn-green);
    color: #fff;
}

.stay-footer__btn--whatsapp:hover {
    background: var(--hn-green-dark);
    border-color: var(--hn-green-dark);
    color: #fff;
    box-shadow: 0 10px 22px rgba(18, 140, 126, 0.22);
}

.stay-footer__social {
    margin-top: 20px;
    border-top: 1px solid var(--hn-border);
    padding-top: 18px;
}

.stay-footer__social h3 {
    margin: 0 0 12px;
    color: var(--hn-text);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
}

.stay-footer__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.stay-footer__social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    gap: 8px;
    border: 1px solid var(--hn-border);
    border-radius: 999px;
    background: var(--hn-bg);
    color: var(--hn-text);
    padding: 0 13px 0 8px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.stay-footer__social-links a:hover {
    border-color: rgba(255, 85, 39, 0.35);
    color: var(--hn-orange);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.07);
    transform: translateY(-1px);
}

.stay-footer__social-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--hn-orange);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.stay-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--hn-border);
    color: var(--hn-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.75;
}

.stay-footer__bottom p {
    max-width: 880px;
    margin: 0;
}

.stay-footer__bottom a {
    color: var(--hn-text);
    font-weight: 900;
    text-decoration: none;
}

.stay-footer__bottom a:hover {
    color: var(--hn-orange);
    text-decoration: underline;
}

.stay-info-section {
    background: var(--hn-soft-bg);
    color: var(--hn-text);
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.stay-info-panel {
    border: 1px solid var(--hn-border);
    border-radius: 20px;
    background: var(--hn-soft-bg);
    padding: 32px;
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.04);
}

.stay-info-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    min-height: 230px;
    overflow: hidden;
    border-radius: 18px;
}

.stay-info-hero > div:first-child {
    position: relative;
    z-index: 2;
}

.stay-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 85, 39, 0.14);
    border-radius: 999px;
    background: #FFF3EF;
    color: var(--hn-orange);
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.stay-info-badge svg,
.stay-info-icon svg,
.stay-info-mini-icon svg,
.stay-rule-icon svg,
.stay-policy-icon svg,
.stay-info-notice-icon svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.stay-info-title {
    margin-top: 18px;
    color: var(--hn-text);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.stay-info-subtitle {
    max-width: 620px;
    margin-top: 8px;
    color: var(--hn-muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

.stay-info-illustration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(58%, 650px);
    overflow: hidden;
    border-radius: 18px;
    pointer-events: none;
}

.stay-info-illustration::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, #FAFAFA 0%, rgba(250, 250, 250, 0.92) 18%, rgba(250, 250, 250, 0.25) 48%, rgba(250, 250, 250, 0) 100%),
        linear-gradient(180deg, rgba(250, 250, 250, 0.18) 0%, rgba(250, 250, 250, 0) 42%, rgba(250, 250, 250, 0.22) 100%);
    content: "";
}

.stay-info-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.stay-info-card {
    border: 1px solid var(--hn-border);
    border-radius: 20px;
    background: #fff;
    padding: 28px;
	margin-bottom: 14px;
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.035);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stay-info-card + .stay-info-card,
.stay-info-notice {
    margin-top: 22px;
}

.stay-info-card:hover {
    border-color: #DDDDDD;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
    transform: translateY(-2px);
}

.stay-info-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.stay-info-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #FFF3EF;
    color: var(--hn-orange);
    font-size: 22px;
}

.stay-info-icon-blue {
    background: #F4F8FF;
    color: #2563EB;
}

.stay-info-icon-green {
    background: #F4FBF6;
    color: #16A34A;
}

.stay-info-heading {
    color: var(--hn-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.stay-info-copy {
    margin-top: 5px;
    color: var(--hn-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.stay-time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.stay-time-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #DCE7F7;
    border-radius: 14px;
    background: #F4F8FF;
    padding: 14px 16px;
}

.stay-info-mini-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    color: #2563EB;
    font-size: 19px;
}

.stay-time-label {
    display: block;
    margin-bottom: 4px;
    color: #2563EB;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.stay-time-value {
    display: block;
    color: var(--hn-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.stay-time-note {
    display: block;
    margin-top: 4px;
    color: var(--hn-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}

.stay-rules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stay-rule-card {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--hn-border);
    border-radius: 16px;
    background: var(--hn-soft-bg);
    padding: 18px 20px;
}

.stay-rule-card.is-allowed {
    border-color: #DCEFE2;
    background: #F4FBF6;
}

.stay-rule-card.is-restricted {
    border-color: #F3DADA;
    background: #FFF6F6;
}

.stay-rule-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: var(--hn-muted);
    font-size: 22px;
}

.stay-rule-card.is-allowed .stay-rule-icon {
    color: #16A34A;
}

.stay-rule-card.is-restricted .stay-rule-icon {
    color: #DC2626;
}

.stay-rule-text {
    color: var(--hn-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.stay-rule-text small {
    display: block;
    margin-top: 3px;
    color: var(--hn-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.stay-policy-stack {
    display: grid;
    gap: 10px;
}

.stay-policy-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--hn-border);
    border-radius: 14px;
    background: var(--hn-soft-bg);
    padding: 14px 16px;
}

.stay-policy-card.is-success,
.stay-policy-card.is-warning,
.stay-policy-card.is-danger {
    border-color: var(--hn-border);
    background: var(--hn-soft-bg);
}

.stay-policy-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #2563EB;
    font-size: 17px;
}

.stay-policy-card.is-success .stay-policy-icon {
    color: #16A34A;
}

.stay-policy-card.is-warning .stay-policy-icon {
    color: #D97706;
}

.stay-policy-card.is-danger .stay-policy-icon {
    color: #DC2626;
}

.stay-policy-title {
    display: block;
    color: var(--hn-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.stay-policy-text {
    margin-top: 4px;
    color: #1F2937;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.stay-info-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--hn-border);
    border-radius: 999px;
    background: var(--hn-soft-bg);
    padding: 14px 18px;
    color: var(--hn-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.stay-info-notice-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #2563EB;
    font-size: 20px;
}

@media (min-width: 640px) {
    .booking-modal.is-open {
        align-items: center;
    }
}

@media (min-width: 768px) {
    .stay-footer__top {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
        gap: 32px;
    }

    .stay-footer__brand {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .sticky-stay-cta {
        display: none !important;
    }

    .stay-footer {
        padding-bottom: 0;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .stay-info-title {
        font-size: 34px;
    }

    .stay-detail-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stay-rules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .stay-shell {
        padding-inline: 16px;
    }

    .stay-section {
        padding-block: 36px;
    }

    .stay-section-compact {
        padding-block: 28px;
    }

    .stay-hero,
    .stay-hero .stay-shell {
        min-height: 72vh !important;
    }

    .stay-hero .stay-shell {
        padding-top: 96px !important;
        padding-bottom: 82px !important;
    }

    .stay-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, .24) 0%,
            rgba(0, 0, 0, .45) 34%,
            rgba(0, 0, 0, .78) 100%
        );
    }

    .stay-floating-checker {
        margin-top: -28px;
    }

    .stay-info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stay-info-strip__item {
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid var(--hn-border);
    }

    .stay-info-strip__item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .stay-info-strip__icon,
    .stay-amenity-preview__icon {
        width: 34px;
        height: 34px;
        border-radius: 14px;
    }

    .stay-amenity-preview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stay-amenity-preview__item {
        min-height: 86px;
        border-radius: 20px;
    }

    .stay-action-grid {
        grid-template-columns: 1fr;
    }

    .stay-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .stay-gallery-grid button:first-child {
        grid-column: span 2;
        grid-row: auto;
        border-radius: 24px 24px 12px 12px;
    }

    .stay-gallery-grid button {
        border-radius: 14px !important;
    }

    .stay-mini-nav-wrap {
        display: none;
    }

    .booking-modal-card {
        max-height: calc(100dvh - 18px) !important;
        padding-bottom: calc(20px + env(safe-area-inset-bottom)) !important;
        border-radius: 28px 28px 0 0 !important;
    }

    .gallery-lightbox-card {
        max-height: calc(100dvh - 24px) !important;
        padding-bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    }

    .stay-detail-modal.is-open {
        align-items: flex-end;
    }

    .stay-detail-modal-card {
        width: 100%;
        max-height: calc(100dvh - 18px) !important;
        border-radius: 28px 28px 0 0 !important;
        padding-bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    }

    .stay-detail-modal-grid {
        grid-template-columns: 1fr;
    }

    .sticky-stay-cta {
        padding-inline: 12px !important;
    }

    .sticky-stay-cta__inner {
        max-width: 430px !important;
    }

    .stay-footer {
        margin-top: 40px;
        padding-bottom: 148px;
    }

    .stay-footer__inner {
        padding: 28px 16px 22px;
    }

    .stay-footer__contact {
        border-radius: 22px;
        padding: 18px;
    }

    .stay-footer__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .stay-footer__btn {
        width: 100%;
    }

    .stay-footer__bottom {
        margin-top: 22px;
    }

    .stay-info-panel {
        padding: 24px;
    }

    .stay-info-hero {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stay-info-illustration {
        display: none;
    }

    .stay-info-title {
        font-size: 28px;
    }

    .stay-info-subtitle {
        font-size: 15px;
    }

    .stay-info-card {
        padding: 24px;
    }

    .stay-info-heading {
        font-size: 18px;
    }

    .stay-time-grid,
    .stay-rules-grid,
    .stay-detail-card-grid {
        grid-template-columns: 1fr;
    }

    .stay-detail-card-button {
        min-height: 112px;
        border-radius: 16px;
    }

    .stay-time-card {
        padding: 13px 14px;
    }

    .stay-time-value {
        font-size: 17px;
    }

    .stay-rule-text,
    .stay-policy-text {
        font-size: 15px;
    }

    .stay-info-notice {
        align-items: flex-start;
        border-radius: 16px;
    }
}

/* Listing-selected public page branding. */
body.stay-body { font-family: var(--stay-body-font, "Poppins"), system-ui, sans-serif; }
body.stay-font-poppins { --stay-body-font: "Poppins"; --stay-heading-font: "Poppins"; }
body.stay-font-dm_sans { --stay-body-font: "DM Sans"; --stay-heading-font: "DM Sans"; }
body.stay-font-manrope { --stay-body-font: "Manrope"; --stay-heading-font: "Manrope"; }
body.stay-font-playfair_inter { --stay-body-font: "Inter"; --stay-heading-font: "Playfair Display"; }
body.stay-body h1, body.stay-body h2 { font-family: var(--stay-heading-font, "Poppins"), system-ui, sans-serif; }
body.stay-brand-hopnest { --hn-orange: #FF5527; --hn-orange-dark: #e64920; --stay-brand-rgb: 255, 85, 39; }
body.stay-brand-forest { --hn-orange: #26734D; --hn-orange-dark: #1B5939; --stay-brand-rgb: 38, 115, 77; }
body.stay-brand-coastal { --hn-orange: #1677B8; --hn-orange-dark: #0E5E94; --stay-brand-rgb: 22, 119, 184; }
body.stay-brand-rosewood { --hn-orange: #B74754; --hn-orange-dark: #913641; --stay-brand-rgb: 183, 71, 84; }
body.stay-body .stay-hero-availability-btn, body.stay-body [data-open-booking] { background: var(--hn-orange) !important; border-color: var(--hn-orange) !important; box-shadow: 0 14px 30px rgba(var(--stay-brand-rgb), .24) !important; }
body.stay-body .stay-hero-availability-btn:hover, body.stay-body [data-open-booking]:hover { background: var(--hn-orange-dark) !important; border-color: var(--hn-orange-dark) !important; }
body.stay-body .stay-hero-icon-btn, body.stay-body .sticky-stay-cta__contact { border-color: var(--hn-orange) !important; color: var(--hn-orange) !important; }
body.stay-body .stay-hero-icon-btn svg, body.stay-body .stay-hero-icon-btn i, body.stay-body .sticky-stay-cta__contact svg, body.stay-body .sticky-stay-cta__contact i { color: var(--hn-orange) !important; stroke: var(--hn-orange) !important; }
body.stay-body .stay-hero-icon-btn .wa-svg-icon, body.stay-body .sticky-stay-cta__contact .wa-svg-icon { background-color: var(--hn-orange) !important; }
body.stay-body .stay-eyebrow, body.stay-body .stay-footer__eyebrow { color: var(--hn-orange); background: rgba(var(--stay-brand-rgb), .09); }
body.stay-body .stay-detail-card-button:hover, body.stay-body .stay-card-hover:hover { border-color: rgba(var(--stay-brand-rgb), .32); }
body.stay-body .stay-detail-card-button span, body.stay-body .stay-amenity-preview__more { color: var(--hn-orange); background: rgba(var(--stay-brand-rgb), .09); }
body.stay-body .stay-info-section { font-family: var(--stay-body-font, "Poppins"), system-ui, sans-serif; }
/* Supporting palette accents for listing-selected public page branding. */
body.stay-brand-hopnest { --stay-support: #0F766E; --stay-support-soft: #F0FAF7; --stay-support-border: #CDEEE7; }
body.stay-brand-forest { --stay-support: #496A8E; --stay-support-soft: #F2F6FA; --stay-support-border: #D7E2EC; }
body.stay-brand-coastal { --stay-support: #16726A; --stay-support-soft: #EEF9F7; --stay-support-border: #CBEAE5; }
body.stay-brand-rosewood { --stay-support: #76598A; --stay-support-soft: #F7F2FA; --stay-support-border: #E5D9EF; }

body.stay-body .stay-info-strip__icon,
body.stay-body .stay-amenity-preview__icon,
body.stay-body .stay-info-icon-blue {
    background: var(--stay-support-soft);
    color: var(--stay-support);
}

body.stay-body .stay-time-card {
    border-color: var(--stay-support-border);
    background: var(--stay-support-soft);
}

body.stay-body .stay-info-mini-icon {
    color: var(--stay-support);
}

body.stay-body .stay-time-label,
body.stay-body .stay-policy-icon,
body.stay-body .stay-info-notice-icon {
    color: var(--stay-support);
}