: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,
.contact-modal,
.gallery-lightbox,
.video-modal,
.stay-detail-modal {
    display: none;
}

.booking-modal.is-open {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.contact-modal.is-open {
    display: flex;
    align-items: center;
    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,
.contact-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-gallery-video-tile {
    position: relative;
    overflow: hidden;
    border: 0;
    background: #111;
    padding: 0;
    cursor: pointer;
}

.stay-gallery-video-tile > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .68;
    transition: transform 420ms ease, opacity 180ms ease;
}

.stay-gallery-video-tile:hover > img {
    transform: scale(1.025);
    opacity: .74;
}

.stay-gallery-video-tile__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .38));
    color: #fff;
    text-align: center;
}

.stay-gallery-video-tile__overlay small {
    color: rgba(255, 255, 255, .78);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.stay-gallery-video-tile__overlay strong {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(20px, 2.5vw, 29px);
    font-weight: 900;
    letter-spacing: -.025em;
}

.stay-gallery-video-tile__overlay > span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    border-radius: 999px;
    background: var(--hn-orange);
    color: #fff;
    padding: 0 17px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.stay-gallery-video-tile:hover .stay-gallery-video-tile__overlay > span {
    background: var(--hn-orange-dark);
}

.stay-gallery-video-tile__overlay svg {
    width: 16px;
    height: 16px;
}

.stay-gallery-grid--video-only {
    grid-template-columns: 1fr;
    grid-template-rows: 360px;
}

.stay-gallery-grid--video-only .stay-gallery-video-tile {
    grid-row: auto;
    border-radius: 30px;
}

.stay-about-card,
.stay-location-card {
    max-width: 900px;
    margin-inline: auto;
}

.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 {
    display: flex;
    flex-direction: column;
}

.stay-room-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.stay-room-card__price {
    margin-top: auto !important;
}

.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__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__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-gallery-grid--video-only {
        grid-template-columns: 1fr;
        grid-template-rows: 230px;
    }

    .stay-gallery-grid--video-only .stay-gallery-video-tile {
        grid-column: auto;
        border-radius: 24px !important;
    }

    .stay-gallery-video-tile__overlay {
        padding: 20px;
    }

    .stay-gallery-video-tile__overlay strong {
        font-size: 21px;
    }

    .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; }

/* Shared social-channel landing layout (/ig, /yt, /wa and /gbp). */
body.stay-social-variant {
    background: #f4f4f2;
}

.stay-social-intro {
    padding: 0 0 18px;
    background: #f4f4f2;
}

.stay-social-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.stay-social-card {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 50px rgba(34, 34, 34, 0.09);
}

.stay-social-media {
    position: relative;
    aspect-ratio: 9 / 12;
    overflow: hidden;
    background: #171717;
}

.stay-social-cover,
.stay-social-video,
.stay-social-video > img {
    width: 100%;
    height: 100%;
}

.stay-social-cover,
.stay-social-video > img {
    display: block;
    object-fit: cover;
}

.stay-social-video {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    cursor: pointer;
    text-align: left;
    background: #171717;
}

.stay-social-video__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.7) 100%);
}

.stay-social-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 85, 39, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
}

.stay-social-video__play svg {
    width: 25px;
    height: 25px;
    margin-left: 3px;
    fill: currentColor;
}

.stay-social-video__label {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    color: #fff;
}

.stay-social-video__label small,
.stay-social-video__label strong {
    display: block;
}

.stay-social-video__label small {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.78;
}

.stay-social-video__label strong {
    font-size: clamp(24px, 8vw, 38px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.stay-social-copy {
    padding: 24px 20px 20px;
}

.stay-social-logo {
    display: block;
    max-width: 170px;
    max-height: 52px;
    margin-bottom: 16px;
    object-fit: contain;
    object-position: left center;
}

.stay-social-business {
    margin: 0 0 10px;
    color: #ff5527;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.stay-social-copy h1 {
    margin: 0;
    color: #222;
    font-size: clamp(31px, 9vw, 45px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.stay-social-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.stay-social-facts span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #4d4d4d;
    background: #f4f4f2;
    font-size: 11px;
    font-weight: 800;
}

.stay-social-facts svg {
    width: 14px;
    height: 14px;
}

.stay-social-description {
    margin: 17px 0 0;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
}

.stay-social-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 21px;
}

.stay-social-primary {
    min-height: 48px;
    flex: 1;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #ff5527;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255, 85, 39, 0.24);
}

.stay-social-contact {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border: 1px solid #ff5527;
    border-radius: 999px;
    color: #ff5527;
    background: #fff;
}

.stay-social-contact svg {
    width: 20px;
    height: 20px;
}

.stay-social-contact .wa-svg-icon {
    background-color: #ff5527;
}

.stay-social-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border-top: 1px solid #ececea;
    background: #ececea;
}

.stay-social-summary__item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    padding: 15px;
    background: #fafafa;
}

.stay-social-summary__item > span {
    display: grid;
    width: 34px;
    height: 34px;
    grid-row: 1 / 3;
    place-items: center;
    border-radius: 12px;
    color: #009b7a;
    background: #eaf8f5;
}

.stay-social-summary__item svg {
    width: 16px;
    height: 16px;
}

.stay-social-summary__item small {
    align-self: end;
    color: #8a8a8a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stay-social-summary__item strong {
    overflow: hidden;
    color: #333;
    font-size: 11px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.stay-social-variant #media {
    padding-top: 18px !important;
}

@media (min-width: 621px) {
    .stay-social-intro {
        padding: 28px 20px;
    }

    .stay-social-card {
        border-radius: 32px;
    }

    .stay-social-media {
        aspect-ratio: 9 / 10;
    }
}

@media (min-width: 900px) {
    .stay-social-intro {
        padding: 48px 24px;
    }

    .stay-social-card {
        display: grid;
        min-height: 620px;
        grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
        grid-template-rows: minmax(0, 1fr) auto;
    }

    .stay-social-media {
        min-height: 620px;
        grid-row: 1 / 3;
        aspect-ratio: auto;
    }

    .stay-social-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 48px 44px 32px;
    }

    .stay-social-copy h1 {
        font-size: clamp(42px, 4vw, 58px);
    }

    .stay-social-description {
        font-size: 15px;
    }

    .stay-social-summary {
        border-top: 1px solid #ececea;
        border-left: 1px solid #ececea;
    }

    body.stay-social-variant #media {
        padding-top: 54px !important;
    }
}

/* Reference-led full-bleed channel hero. These rules intentionally override the
   earlier card composition while retaining the same channel data and controls. */
.stay-social-intro {
    padding: 0;
    background: #111;
}

.stay-social-shell {
    width: 100%;
    max-width: none;
}

.stay-social-card {
    display: block;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
}

.stay-social-media {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 720px;
    max-height: 920px;
    aspect-ratio: auto;
    overflow: hidden;
}

.stay-social-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-social-video__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 16, 21, 0.58) 0%, rgba(7, 16, 21, 0.1) 42%, rgba(7, 16, 21, 0.52) 72%, rgba(7, 16, 21, 0.78) 100%),
        linear-gradient(90deg, rgba(7, 16, 21, 0.24), rgba(7, 16, 21, 0.02));
}

.stay-social-heading {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 22px;
    left: 22px;
    color: #fff;
}

.stay-social-logo {
    max-width: 180px;
    max-height: 58px;
    margin: 0 0 18px;
    padding: 7px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
}

.stay-social-business {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.32);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.stay-social-heading h1 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 10.5vw, 58px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.36);
}

.stay-social-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-top: 20px;
}

.stay-social-facts span {
    gap: 8px;
    padding: 3px 14px;
    border-radius: 0;
    color: #fff;
    background: transparent;
    font-size: 13px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
}

.stay-social-facts span:first-child {
    padding-left: 0;
}

.stay-social-facts span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.stay-social-facts svg {
    width: 18px;
    height: 18px;
    color: #70e0cd;
    stroke-width: 2.4;
}

.stay-social-video {
    position: absolute;
    z-index: 3;
    top: 47%;
    left: 50%;
    display: flex;
    width: auto;
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    text-align: center;
    transform: translate(-50%, -50%);
}

.stay-social-video > strong,
.stay-social-video > small {
    display: block;
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
}

.stay-social-video > strong {
    font-size: 20px;
}

.stay-social-video > small {
    font-size: 15px;
}

.stay-social-video__play {
    position: static;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff7a31, #ff3d1f);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
    transform: none;
}

.stay-social-video__play svg {
    width: 32px;
    height: 32px;
}

.stay-social-summary {
    position: absolute;
    z-index: 4;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.stay-social-summary__item {
    min-height: 76px;
    padding: 14px;
    background: transparent;
}

.stay-social-summary__item:nth-child(even) {
    border-left: 1px solid #e8e8e8;
}

.stay-social-summary__item:nth-child(n+3) {
    border-top: 1px solid #e8e8e8;
}

.stay-social-summary__item > span {
    color: #078d7b;
    background: #edf8f6;
}

.stay-social-summary__item small {
    font-size: 8px;
}

.stay-social-summary__item strong {
    font-size: 11px;
}

body.stay-social-variant #rooms {
    padding-top: 42px !important;
}

@media (min-width: 900px) {
    .stay-social-intro {
        padding: 0;
    }

    .stay-social-card {
        min-height: 0;
    }

    .stay-social-media {
        min-height: 760px;
        max-height: 900px;
        grid-row: auto;
    }

    .stay-social-heading {
        top: 64px;
        right: max(48px, calc((100% - 1160px) / 2));
        left: max(48px, calc((100% - 1160px) / 2));
    }

    .stay-social-heading h1 {
        max-width: 820px;
        font-size: clamp(64px, 6vw, 88px);
    }

    .stay-social-facts span {
        font-size: 18px;
    }

    .stay-social-video {
        top: 54%;
    }

    .stay-social-video > strong {
        font-size: 25px;
    }

    .stay-social-video > small {
        font-size: 19px;
    }

    .stay-social-video__play {
        width: 110px;
        height: 110px;
    }

    .stay-social-summary {
        right: 50%;
        bottom: 28px;
        left: auto;
        width: min(900px, calc(100% - 96px));
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-radius: 32px;
        transform: translateX(50%);
    }

    .stay-social-summary__item {
        min-height: 104px;
        padding: 20px;
    }

    .stay-social-summary__item:nth-child(n+3) {
        border-top: 0;
    }

    .stay-social-summary__item + .stay-social-summary__item {
        border-left: 1px solid #e8e8e8;
    }

    .stay-social-summary__item small {
        font-size: 9px;
    }

    .stay-social-summary__item strong {
        font-size: 13px;
    }
}
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);
}

/* Owner-selectable Social public-page theme. */
body.stay-theme-social {
    --hn-orange: #ff5527;
    --hn-orange-dark: #e64920;
    --stay-brand-rgb: 255, 85, 39;
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
    background: #efefed;
}

body.stay-theme-social .stay-social-intro,
body.stay-theme-social #rooms,
body.stay-theme-social #media,
body.stay-theme-social #about,
body.stay-theme-social #stay-info,
body.stay-theme-social #location,
body.stay-theme-social .stay-social-amenities-section,
body.stay-theme-social .stay-footer {
    width: min(100%, 600px);
    margin-right: auto;
    margin-left: auto;
}

body.stay-theme-social .stay-social-intro {
    overflow: hidden;
    background: #111;
}

body.stay-theme-social .stay-social-media {
    height: min(880px, 100svh);
    min-height: 720px;
    max-height: 880px;
}

body.stay-theme-social .stay-social-hero-gallery {
    position: absolute;
    inset: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}

body.stay-theme-social .stay-social-hero-gallery::-webkit-scrollbar {
    display: none;
}

body.stay-theme-social .stay-social-hero-gallery .stay-social-cover {
    position: relative;
    inset: auto;
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}

body.stay-theme-social .stay-social-video__shade {
    z-index: 1;
    pointer-events: none;
}

body.stay-theme-social .stay-social-media-tools {
    position: absolute;
    z-index: 6;
    top: 22px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.stay-theme-social .stay-social-photo-count,
body.stay-theme-social .stay-social-share {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.38);
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

body.stay-theme-social .stay-social-photo-count {
    min-width: 58px;
    padding: 0 12px;
}

body.stay-theme-social .stay-social-share {
    width: 40px;
    padding: 0;
    cursor: pointer;
}

body.stay-theme-social .stay-social-share svg {
    width: 17px;
    height: 17px;
}

body.stay-theme-social .stay-social-heading {
    top: 78px;
}

body.stay-theme-social .stay-social-summary {
    bottom: calc(90px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.stay-theme-social .stay-social-summary__item:nth-child(n+3) {
    border-top: 1px solid #e8e8e8;
}

body.stay-theme-social #rooms .stay-shell,
body.stay-theme-social #media .stay-shell,
body.stay-theme-social #about .stay-shell,
body.stay-theme-social #stay-info .stay-shell,
body.stay-theme-social #location .stay-shell,
body.stay-theme-social .stay-social-amenities-section .stay-shell {
    max-width: 600px;
}

body.stay-theme-social #rooms > .stay-shell > .\!grid {
    grid-template-columns: minmax(0, 1fr) !important;
}

body.stay-theme-social .stay-room-image-wrap {
    height: clamp(240px, 68vw, 360px) !important;
}

body.stay-theme-social .stay-room-card__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

body.stay-theme-social .stay-social-gallery-section .stay-gallery-grid {
    min-height: 0;
}

body.stay-theme-social .stay-social-amenities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

body.stay-theme-social .stay-social-amenities > span {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    border-radius: 18px;
    color: #343434;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(34, 34, 34, 0.05);
}

body.stay-theme-social .stay-social-amenities > span svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    color: #0f8f7d;
}

body.stay-theme-social .stay-social-view-all {
    min-height: 46px;
    margin-top: 16px;
    padding: 0 18px;
    border: 1px solid #dedede;
    border-radius: 999px;
    color: #222;
    background: #fff;
    font-size: 12px;
    font-weight: 900;
}

body.stay-theme-social .stay-about-copy {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

body.stay-theme-social .stay-about-copy.is-expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

body.stay-theme-social .stay-social-about-toggle {
    margin-top: 14px;
}

body.stay-theme-social .sticky-stay-cta {
    padding-bottom: calc(8px + env(safe-area-inset-bottom)) !important;
}

body.stay-theme-social .sticky-stay-cta__inner {
    max-width: 580px !important;
}

body.stay-theme-social .sticky-stay-cta__summary {
    display: none;
}

body.stay-theme-social .sticky-stay-cta__primary {
    min-height: 48px;
    flex: 1 1 auto;
    font-size: 13px !important;
}

body.stay-theme-social :is(button, a):focus-visible {
    outline: 3px solid rgba(255, 85, 39, 0.42);
    outline-offset: 3px;
}

@media (min-width: 601px) {
    body.stay-theme-social .stay-social-intro {
        margin-top: 28px;
        border-radius: 34px 34px 0 0;
        box-shadow: 0 22px 60px rgba(34, 34, 34, 0.12);
    }

    body.stay-theme-social .stay-social-media {
        min-height: 820px;
        max-height: 880px;
    }

    body.stay-theme-social .stay-social-heading {
        top: 84px;
        right: 30px;
        left: 30px;
    }

    body.stay-theme-social .stay-social-heading h1 {
        font-size: 58px;
    }

    body.stay-theme-social .stay-social-video {
        top: 48%;
    }

    body.stay-theme-social .stay-social-summary {
        right: 22px;
        bottom: calc(96px + env(safe-area-inset-bottom));
        left: 22px;
        width: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        transform: none;
    }

    body.stay-theme-social .stay-social-summary__item {
        min-height: 82px;
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.stay-theme-social * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Dedicated Social Booking Page (/social and tracked social aliases). */
body.stay-theme-social {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    padding: 0;
    background: #f3f1ed;
}

body.stay-theme-social .social-booking-page {
    width: min(100%, 600px);
    min-height: 100vh;
    min-height: 100dvh;
    margin-inline: auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 22px 70px rgba(25, 32, 38, .12);
}

.social-booking-hero {
    position: relative;
    height: clamp(270px, 36dvh, 350px);
    overflow: hidden;
    background: #15211c;
}

.social-booking-hero__gallery {
    position: absolute;
    inset: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}

.social-booking-hero__gallery::-webkit-scrollbar {
    display: none;
}

.social-booking-hero__gallery img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    scroll-snap-align: start;
    cursor: pointer;
}

.social-booking-hero__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(4, 10, 8, .38), rgba(4, 10, 8, .05) 32%, rgba(4, 10, 8, .82));
}

.social-booking-share,
.social-booking-count,
.social-booking-hero__copy {
    position: absolute;
    z-index: 3;
}

.social-booking-share {
    top: max(18px, env(safe-area-inset-top));
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 999px;
    color: #17201c;
    background: rgba(255, 255, 255, .96);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.social-booking-share {
    right: 16px;
    gap: 7px;
    padding: 0 16px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.social-booking-share svg {
    width: 18px;
    height: 18px;
}

.social-booking-hero__copy {
    right: 72px;
    bottom: 24px;
    left: 18px;
    color: #fff;
}

.social-booking-label {
    display: inline-flex;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(0, 0, 0, .28);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.social-booking-hero__copy h1 {
    max-width: 480px;
    margin: 0;
    color: #fff;
    font-size: clamp(29px, 8.5vw, 44px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.05em;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .38);
}

.social-booking-hero__copy p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 9px 0 0;
    font-size: 12px;
    font-weight: 700;
}

.social-booking-hero__copy p svg {
    width: 15px;
    height: 15px;
}

.social-booking-hero__copy > strong {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

.social-booking-hero__copy > strong b {
    color: #ff6b37;
    font-size: 20px;
}

.social-booking-hero__copy > button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    border: 0;
    border-radius: 999px;
    padding: 0 13px;
    color: #222;
    background: #fff;
    font-size: 11px;
    font-weight: 850;
}

.social-booking-hero__copy > button svg {
    width: 17px;
    height: 17px;
    color: var(--hn-orange);
}

.social-booking-count {
    right: 16px;
    bottom: 24px;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.social-booking-content {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 10px;
    margin-top: -12px;
    padding: 0 14px calc(82px + env(safe-area-inset-bottom));
    background: #fff;
    border-radius: 20px 20px 0 0;
}

.social-booking-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 70px;
    overflow: hidden;
    border: 1px solid #e8e7e3;
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 28px rgba(25, 32, 38, .09);
}

.social-booking-summary > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px;
    text-align: center;
}

.social-booking-summary > div + div {
    border-left: 1px solid #ecebe7;
}

.social-booking-summary svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    color: #0a8a77;
}

.social-booking-summary strong {
    max-width: 100%;
    overflow: hidden;
    color: #222;
    font-size: 11px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-booking-summary span {
    color: #656565;
    font-size: 8px;
    font-weight: 650;
}

.social-booking-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 2px 0;
}

.social-booking-section-head h2 {
    margin: 0;
    color: #222;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.social-booking-section-head button {
    border: 0;
    color: var(--hn-orange);
    background: transparent;
    font-size: 10px;
    font-weight: 850;
}

.social-featured-room {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 128px;
    overflow: hidden;
    border: 1px solid #e9e8e4;
    border-radius: 18px;
    padding: 0;
    color: #222;
    background: #fff;
    text-align: left;
    box-shadow: 0 9px 25px rgba(25, 32, 38, .07);
}

.social-featured-room__media {
    position: relative;
    display: block;
    min-height: 128px;
    overflow: hidden;
}

.social-featured-room__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-featured-room__media > small {
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 999px;
    padding: 4px 7px;
    color: #222;
    background: rgba(255, 255, 255, .94);
    font-size: 8px;
    font-weight: 850;
}

.social-featured-room__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
}

.social-featured-room__body > span:first-child {
    display: grid;
    gap: 5px;
}

.social-featured-room__body strong {
    overflow: hidden;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-featured-room__body b {
    font-size: 13px;
    font-weight: 900;
}

.social-featured-room__body b small {
    color: #686868;
    font-size: 9px;
    font-weight: 650;
}

.social-featured-room__body em {
    display: flex;
    max-height: 48px;
    flex-wrap: wrap;
    gap: 5px;
    overflow: hidden;
    font-style: normal;
}

.social-featured-room__body em span {
    border-radius: 999px;
    padding: 5px 7px;
    color: #4f4f4f;
    background: #f4f4f2;
    font-size: 8px;
    font-weight: 750;
}

.social-booking-section-head--quick {
    padding-top: 1px;
}

.social-quick-info {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.social-quick-info button {
    display: flex;
    min-width: 0;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 0;
    padding: 0;
    color: #292929;
    background: transparent;
    font-size: 8px;
    font-weight: 800;
}

.social-quick-info button svg {
    width: 38px;
    height: 38px;
    border: 1px solid #e6e6e2;
    border-radius: 14px;
    padding: 9px;
    color: #078d7b;
    background: #fff;
    box-shadow: 0 5px 16px rgba(25, 32, 38, .05);
}

.social-booking-trust,
.social-booking-full-link {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 11px;
    border-radius: 15px;
    padding: 9px 12px;
}

.social-booking-trust {
    color: #075f55;
    background: linear-gradient(90deg, #edf8f5, #f5fbf9);
}

.social-booking-trust > svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}

.social-booking-trust span,
.social-booking-full-link span {
    min-width: 0;
}

.social-booking-trust strong,
.social-booking-trust small,
.social-booking-full-link strong,
.social-booking-full-link small {
    display: block;
}

.social-booking-trust strong,
.social-booking-full-link strong {
    font-size: 11px;
    font-weight: 900;
}

.social-booking-trust small,
.social-booking-full-link small {
    margin-bottom: 2px;
    font-size: 8px;
    font-weight: 650;
}

.social-booking-full-link {
    justify-content: space-between;
    border: 1px solid #e9e8e4;
    color: #222;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(25, 32, 38, .05);
}

.social-booking-full-link strong,
.social-booking-full-link > svg {
    color: var(--hn-orange);
}

body.stay-theme-social .sticky-stay-cta {
    z-index: 120 !important;
}

body.stay-theme-social .sticky-stay-cta__inner {
    display: flex;
    width: min(100%, 580px);
}

body.stay-theme-social .sticky-stay-cta__primary {
    min-width: 150px;
}

body.stay-theme-social .gallery-lightbox.is-open,
body.stay-theme-social .stay-detail-modal.is-open,
body.stay-theme-social .booking-modal.is-open {
    align-items: flex-end;
}

body.stay-theme-social .gallery-lightbox-card,
body.stay-theme-social .social-sheet__card,
body.stay-theme-social .booking-modal-card,
body.stay-theme-social [id^="room-details-"] .stay-detail-modal-card,
body.stay-theme-social [id^="room-gallery-"] .stay-detail-modal-card {
    width: min(100%, 600px);
    max-height: min(92dvh, 860px);
    margin: 0 !important;
    border-radius: 28px 28px 0 0 !important;
    padding: 18px !important;
}

.social-sheet__head {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    margin-bottom: 16px;
}

.social-sheet__head button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #333;
    background: #f4f4f2;
}

.social-sheet__head h2 {
    margin: 0;
    color: #222;
    font-size: 17px;
    font-weight: 900;
    text-align: center;
}

.social-room-list {
    display: grid;
    gap: 10px;
}

.social-room-list > button {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    border: 1px solid #e8e7e3;
    border-radius: 16px;
    padding: 8px;
    color: #222;
    background: #fff;
    text-align: left;
}

.social-room-list img {
    width: 74px;
    height: 62px;
    border-radius: 12px;
    object-fit: cover;
}

.social-room-list strong,
.social-room-list small {
    display: block;
}

.social-room-list strong {
    font-size: 13px;
    font-weight: 900;
}

.social-room-list small {
    margin-top: 3px;
    color: #6b6b6b;
    font-size: 9px;
}

.social-room-list b {
    font-size: 10px;
}

.social-stay-information {
    display: grid;
    gap: 8px;
}

.social-sheet-content {
    padding: 2px 2px 8px;
}

.social-sheet-content--prose {
    color: #5f625f;
    font-size: 12px;
    line-height: 1.75;
}

.social-sheet-content--prose p {
    margin: 0 0 14px;
}

.social-sheet-content--prose ul {
    display: grid;
    gap: 8px;
    margin: 14px 0;
    padding: 0;
    list-style: none;
}

.social-sheet-content--prose li {
    padding: 11px 12px;
    border-radius: 13px;
    color: #252525;
    background: #f6f6f4;
}

.social-sheet-content--prose li small {
    display: block;
    margin-top: 3px;
    color: #6b6b6b;
}

.social-sheet-destination {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #222;
    font-size: 14px;
}

.social-sheet-destination svg {
    width: 18px;
    height: 18px;
    color: #078d7b;
}

.social-stay-info-section {
    border: 1px solid #e8e7e3;
    border-radius: 15px;
    padding: 13px;
    background: #fff;
}

.social-stay-info-section h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    color: #222;
    font-size: 12px;
    font-weight: 850;
}

.social-stay-info-section h3 svg {
    width: 18px;
    height: 18px;
    color: #078d7b;
}

.social-stay-info-section ul {
    margin: 0;
}

.social-stay-information details {
    border: 1px solid #e8e7e3;
    border-radius: 15px;
    padding: 0 13px;
    background: #fff;
}

.social-stay-information summary {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #222;
    font-size: 12px;
    font-weight: 850;
    list-style: none;
}

.social-stay-information summary::-webkit-details-marker {
    display: none;
}

.social-stay-information summary svg {
    width: 18px;
    height: 18px;
    color: #078d7b;
}

.social-stay-information details > :not(summary) {
    margin-bottom: 13px;
}

.social-stay-information p {
    color: #666;
    font-size: 11px;
    line-height: 1.65;
}

.social-stay-information ul {
    display: grid;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.social-stay-information li {
    padding: 9px 10px;
    border-radius: 11px;
    background: #f6f6f4;
    font-size: 11px;
}

.social-stay-information li small {
    display: block;
    margin-top: 3px;
    color: #6b6b6b;
}

.social-stay-information__times {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.social-stay-information__times span {
    padding: 10px;
    border-radius: 12px;
    background: #f5f8f7;
}

.social-stay-information__times small,
.social-stay-information__times strong {
    display: block;
}

.social-stay-information__times small {
    color: #6b6b6b;
    font-size: 8px;
}

.social-stay-information__times strong {
    margin-top: 3px;
    font-size: 12px;
}

.social-stay-information__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.social-stay-information__chips span {
    border-radius: 999px;
    padding: 6px 9px;
    background: #f3f4f2;
    font-size: 9px;
    font-weight: 750;
}

.social-room-detail-hero {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 0;
    border-radius: 18px;
    padding: 0;
}

.social-room-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-room-detail-hero span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #fff;
    background: rgba(0, 0, 0, .68);
    font-size: 9px;
    font-weight: 800;
}

.social-gallery-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.social-gallery-rail::-webkit-scrollbar {
    display: none;
}

.social-gallery-rail > img {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 4 / 5;
    flex: 0 0 100%;
    border-radius: 18px;
    object-fit: cover;
    scroll-snap-align: start;
}

.social-gallery-thumbs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    margin-top: 10px;
    padding-bottom: 3px;
}

.social-gallery-thumbs button {
    width: 58px;
    height: 46px;
    flex: 0 0 58px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0;
}

.social-gallery-thumbs button.is-selected {
    border-color: var(--hn-orange);
}

.social-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-gallery-hint {
    margin: 9px 0 0;
    color: #6a6a6a;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

@media (max-height: 720px), (orientation: landscape) {
    body.stay-theme-social {
        overflow-y: auto;
    }

    .social-booking-hero {
        height: 270px;
    }
}

@media (max-width: 380px) and (min-height: 721px) {
    .social-booking-hero {
        height: 265px;
    }
}

@media (min-width: 700px) {
    body.stay-theme-social {
        padding: 24px 0;
    }

    body.stay-theme-social .social-booking-page {
        border-radius: 30px;
    }

    .social-booking-content {
        border-radius: 20px 20px 30px 30px;
    }

    body.stay-theme-social .sticky-stay-cta {
        right: 50% !important;
        left: auto !important;
        width: 600px;
        border: 1px solid #e5e5e1;
        border-radius: 22px 22px 0 0;
        transform: translateX(50%) translateY(120%);
    }

    body.stay-theme-social .sticky-stay-cta.is-visible {
        transform: translateX(50%) translateY(0);
    }
}
