/* Base tokens — overridden per theme on body.theme-* */
:root {
    --hotel-navy: #1a2332;
    --hotel-navy-light: #2d3a4f;
    --hotel-gold: #c9a962;
    --hotel-gold-dark: #a88b4a;
    --hotel-cream: #faf8f5;
    --hotel-cream-dark: #f0ebe3;
    --hotel-text: #2c3440;
    --hotel-heading: #1a2332;
    --hotel-muted: #6b7280;
    --hotel-price-on-gold: #1a2332;
    --hotel-price-color: #a88b4a;
    --hotel-price-badge-bg: var(--hotel-gold);
    --hotel-price-badge-text: var(--hotel-price-on-gold);
    --hotel-price-panel-bg: var(--hotel-surface);
    --hotel-price-panel-border: var(--hotel-gold);
    --hotel-price-highlight-bg: rgba(201, 169, 98, 0.14);
    --hotel-promo-desc: var(--hotel-muted);
    --hotel-tag-bg: #f0ebe3;
    --hotel-tag-text: #4b5563;
    --hotel-tag-border: transparent;
    --hotel-surface: #ffffff;
    --hotel-surface-alt: #ffffff;
    --hotel-border: #e5e7eb;
    --hotel-radius: 4px;
    --hotel-radius-btn: 2px;
    --font-display: 'Nunito Sans', 'DM Sans', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-price: var(--font-body);
    --room-amenity-bg: var(--hotel-surface);
    --room-amenity-border: var(--hotel-border);
    --room-amenity-text: var(--hotel-text);
    --room-amenity-icon: var(--hotel-gold);
    --room-amenity-shadow: none;
    --room-offers-bg: var(--hotel-navy);
    --room-offers-border: transparent;
    --room-offers-title: var(--hotel-gold);
    --room-offers-discount: var(--hotel-gold);
    --room-offers-name: #ffffff;
    --room-offers-desc: rgba(255, 255, 255, 0.72);
    --room-review-bg: var(--hotel-surface);
    --room-review-border: var(--hotel-border);
    --room-review-shadow: var(--hotel-card-shadow);
    --room-cta-bg: var(--hotel-navy);
    --room-cta-border: transparent;
    --room-cta-text: #ffffff;
    --room-cta-label: rgba(255, 255, 255, 0.72);
    --room-cta-price: var(--hotel-gold);
    --room-hero-panel-bg: var(--hotel-surface);
    --hotel-navbar-bg: rgba(26, 35, 50, 0.97);
    --hotel-navbar-text: #ffffff;
    --hotel-navbar-text-muted: rgba(255, 255, 255, 0.9);
    --hotel-navbar-border: rgba(255, 255, 255, 0.1);
    --hotel-footer-bg: var(--hotel-navy);
    --hotel-footer-text: rgba(255, 255, 255, 0.75);
    --hotel-footer-heading: #ffffff;
    --hotel-footer-muted: rgba(255, 255, 255, 0.6);
    --hotel-footer-border: rgba(255, 255, 255, 0.1);
    --hotel-card-bg: #ffffff;
    --hotel-card-text: var(--hotel-text);
    --hotel-card-shadow: 0 4px 24px rgba(26, 35, 50, 0.08);
    --hotel-card-shadow-hover: 0 12px 40px rgba(26, 35, 50, 0.12);
    --hotel-input-bg: #ffffff;
    --hotel-input-border: #d1d5db;
    --hotel-input-focus: rgba(201, 169, 98, 0.2);
    --hotel-hero-overlay-start: rgba(26, 35, 50, 0.85);
    --hotel-hero-overlay-mid: rgba(26, 35, 50, 0.3);
    --hotel-modal-backdrop: rgba(26, 35, 50, 0.6);
    --hotel-btn-primary-bg: var(--hotel-gold);
    --hotel-btn-primary-text: var(--hotel-navy);
    --hotel-btn-primary-hover-bg: var(--hotel-gold-dark);
    --hotel-btn-primary-hover-text: #ffffff;
    --hotel-btn-outline-border: var(--hotel-gold);
    --hotel-btn-outline-text: var(--hotel-gold);
    --hotel-btn-outline-hover-bg: var(--hotel-gold);
    --hotel-btn-outline-hover-text: var(--hotel-navy);
    --hotel-locale-border: rgba(255, 255, 255, 0.22);
    --hotel-locale-bg: rgba(255, 255, 255, 0.06);
    --hotel-locale-text: rgba(255, 255, 255, 0.92);
    --hotel-product-image-bg: var(--hotel-card-bg);
    --hotel-product-aspect: 1/1;
}

[x-cloak] { display: none !important; }

body.hotel-site {
    font-family: var(--font-body);
    color: var(--hotel-text);
    background: var(--hotel-cream);
}

.hotel-display { font-family: var(--font-display); }

.hotel-nav-brand {
    color: var(--hotel-navbar-text);
}

.hotel-navbar__brand {
    text-decoration: none;
}

.hotel-navbar__name {
    line-height: 1.15;
    font-weight: 600;
}

.hotel-nav-link {
    color: var(--hotel-navbar-text-muted);
    transition: color 0.2s ease;
}

.hotel-nav-link:hover {
    color: var(--hotel-gold);
}

.hotel-nav-icon {
    color: var(--hotel-navbar-text);
}

.hotel-nav-mobile {
    border-color: var(--hotel-navbar-border);
}

.hotel-footer-brand {
    color: var(--hotel-footer-heading);
}

.hotel-footer-heading {
    color: var(--hotel-footer-heading);
}

.hotel-footer-muted {
    color: var(--hotel-footer-muted);
}

.hotel-footer-divider {
    border-color: var(--hotel-footer-border);
}

.hotel-footer a:hover {
    color: var(--hotel-gold);
}

.hotel-logo {
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
}

.hotel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--hotel-radius-btn);
    transition: all 0.2s ease;
}

.hotel-btn-primary {
    background: var(--hotel-btn-primary-bg);
    color: var(--hotel-btn-primary-text);
}
.hotel-btn-primary:hover {
    background: var(--hotel-btn-primary-hover-bg);
    color: var(--hotel-btn-primary-hover-text);
}

.hotel-btn-outline {
    border: 1px solid var(--hotel-btn-outline-border);
    color: var(--hotel-btn-outline-text);
    background: transparent;
}
.hotel-btn-outline:hover {
    background: var(--hotel-btn-outline-hover-bg);
    color: var(--hotel-btn-outline-hover-text);
}

.hotel-btn-dark {
    background: var(--hotel-navy);
    color: #fff;
}
.hotel-btn-dark:hover { background: var(--hotel-navy-light); }

.hotel-section { padding: 4rem 0; }
@media (min-width: 768px) { .hotel-section { padding: 5.5rem 0; } }

.hotel-heading {
    color: var(--hotel-heading);
}

.hotel-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.hotel-price {
    color: var(--hotel-price-color);
    font-family: var(--font-price, var(--font-body));
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hotel-price--md {
    font-size: 1.375rem;
}

.hotel-price--lg {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.hotel-price--xl {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
}

.hotel-price-suffix {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--hotel-muted);
}

.hotel-price-badge {
    display: inline-block;
    background: var(--hotel-price-badge-bg);
    color: var(--hotel-price-badge-text);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.45rem 0.85rem;
    border-radius: var(--hotel-radius-btn);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hotel-price-panel {
    background: var(--hotel-price-panel-bg);
    border-radius: var(--hotel-radius);
    box-shadow: var(--hotel-card-shadow);
    border-top: 4px solid var(--hotel-price-panel-border);
}

.hotel-price-panel .hotel-price {
    margin-top: 0.25rem;
}

.hotel-price-panel__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hotel-muted);
}

.hotel-price-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: var(--hotel-price-highlight-bg);
    border-radius: var(--hotel-radius-btn);
}

.hotel-promo-price,
.hotel-promo-card__discount,
.hotel-promo-banner__discount {
    color: var(--hotel-price-color);
    font-family: var(--font-price, var(--font-body));
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums lining-nums;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hotel-promo-desc,
.hotel-promo-card__desc,
.hotel-promo-banner__desc {
    color: var(--hotel-promo-desc);
}

.hotel-hero .hotel-price-highlight {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hotel-hero .hotel-price-highlight .hotel-price {
    color: var(--hotel-gold);
}

.hotel-tag {
    background: var(--hotel-tag-bg);
    color: var(--hotel-tag-text);
    border: 1px solid var(--hotel-tag-border);
}

.hotel-section-sub {
    color: var(--hotel-muted);
    margin-top: 0.75rem;
    max-width: 36rem;
}

.hotel-surface {
    background: var(--hotel-surface);
}

.hotel-surface-alt {
    background: var(--hotel-surface-alt);
}

/* Related rooms — room detail & fastbooking */
.hotel-related-rooms {
    padding: 2.5rem 0 3.5rem;
    margin-top: 2rem;
    background: var(--hotel-cream-dark);
    border-top: 1px solid var(--hotel-border);
}

.hotel-related-rooms__header {
    text-align: center;
    max-width: 34rem;
    margin: 0 auto 2rem;
}

.hotel-related-rooms__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 2.375rem);
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.hotel-related-rooms__title::after {
    content: '';
    display: block;
    width: 2.75rem;
    height: 2px;
    margin: 0.875rem auto 0;
    background: linear-gradient(90deg, transparent, var(--hotel-gold), transparent);
}

.hotel-related-rooms__sub {
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--hotel-muted);
    line-height: 1.55;
}

.hotel-related-rooms__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hotel-related-rooms {
        padding: 3rem 0 4rem;
    }

    .hotel-related-rooms__header {
        margin-bottom: 2.25rem;
    }

    .hotel-related-rooms__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hotel-related-rooms__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.hotel-related-card {
    height: 100%;
}

.hotel-related-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--hotel-card-bg);
    border: 1px solid var(--hotel-border);
    border-radius: var(--hotel-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--hotel-card-shadow);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hotel-related-card__link:hover,
.hotel-related-card__link:focus-visible {
    border-color: var(--hotel-gold);
    box-shadow: var(--hotel-card-shadow-hover);
    transform: translateY(-3px);
}

.hotel-related-card__media {
    flex-shrink: 0;
}

.hotel-related-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.125rem 1.125rem;
    min-width: 0;
}

.hotel-related-card__type {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hotel-muted);
    line-height: 1.2;
}

.hotel-related-card__name {
    margin-top: 0.35rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color 0.2s ease;
}

.hotel-related-card__link:hover .hotel-related-card__name,
.hotel-related-card__link:focus-visible .hotel-related-card__name {
    color: var(--hotel-gold-dark);
}

.hotel-related-card__price {
    margin-top: 0.5rem;
    font-size: 1.125rem;
}

.hotel-related-card__action {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
    padding-top: 0.875rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--hotel-gold-dark);
    letter-spacing: 0.02em;
}

.hotel-related-card__arrow {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.hotel-related-card__link:hover .hotel-related-card__arrow,
.hotel-related-card__link:focus-visible .hotel-related-card__arrow {
    transform: translateX(4px);
}

.hotel-card {
    background: var(--hotel-card-bg);
    color: var(--hotel-card-text);
    border-radius: var(--hotel-radius);
    overflow: hidden;
    box-shadow: var(--hotel-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hotel-card-shadow-hover);
}

.hotel-navbar {
    background: var(--hotel-navbar-bg);
    backdrop-filter: blur(8px);
    color: var(--hotel-navbar-text);
}

.hotel-navbar.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }

.hotel-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hotel-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}
.hotel-hero-slide.is-active { opacity: 1; }

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--hotel-hero-overlay-start) 0%, var(--hotel-hero-overlay-mid) 50%, transparent 100%);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0 5rem;
}

.hotel-sticky-book {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.hotel-gallery-thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.hotel-gallery-thumb.is-active,
.hotel-gallery-thumb:hover { opacity: 1; }

/* Product image frame — rigid aspect ratio, image scaled to fit */
.hotel-product-image-frame {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--hotel-product-image-bg, var(--hotel-card-bg, var(--hotel-surface)));
    aspect-ratio: var(--hotel-product-aspect, 1/1);
}

.hotel-product-image-frame picture,
.hotel-product-image-frame > img {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel-product-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hotel-room-gallery__stage.hotel-product-image-frame {
    background: var(--hotel-product-image-bg, var(--hotel-card-bg, var(--hotel-surface)));
}

.hotel-room-gallery__stage.hotel-product-image-frame img,
.hotel-room-gallery__thumb.hotel-product-image-frame img {
    object-fit: contain;
    object-position: center;
}

/* Room detail gallery */
.hotel-room-gallery {
    outline: none;
}

.hotel-room-gallery__stage {
    position: relative;
}

.hotel-room-gallery__controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hotel-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hotel-gallery-nav:hover {
    background: rgba(0, 0, 0, 0.62);
}

.hotel-gallery-nav--prev { left: 0.75rem; }
.hotel-gallery-nav--next { right: 0.75rem; }

.hotel-gallery-counter {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 4;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.hotel-room-gallery__thumb {
    cursor: pointer;
    opacity: 0.72;
    border: 2px solid transparent;
    transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-room-gallery__thumb.is-active,
.hotel-room-gallery__thumb:hover {
    opacity: 1;
}

.hotel-room-gallery__thumb.is-active {
    border-color: var(--hotel-gold);
    box-shadow: 0 0 0 1px var(--hotel-gold);
}

.hotel-room-gallery__thumb--cell.is-active {
    border-color: var(--hotel-gold);
}

.hotel-room-gallery__dots {
    z-index: 2;
    pointer-events: auto;
}

.hotel-room-gallery__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hotel-room-gallery__dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

.hotel-room-gallery--modern {
    width: 100%;
}

.hotel-room-gallery--modern .hotel-gallery-counter {
    bottom: 3.25rem;
}

.hotel-room-gallery--grid .hotel-room-gallery__stage--hero:not(.hotel-product-image-frame) {
    min-height: 12rem;
}

.hotel-modal-backdrop {
    background: var(--hotel-modal-backdrop);
    backdrop-filter: blur(4px);
}

.hotel-modal-panel {
    background: var(--hotel-surface);
    color: var(--hotel-text);
}

.hotel-modal-header {
    background: var(--hotel-surface);
    border-color: var(--hotel-border);
}

body.hotel-no-scroll {
    overflow: hidden;
    overscroll-behavior: none;
}

/* Booking modal */
.hotel-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hotel-booking-modal__backdrop {
    position: absolute;
    inset: 0;
}

.hotel-booking-modal__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 32rem;
    max-height: min(90vh, 100%);
    border-radius: var(--hotel-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hotel-booking-modal__handle {
    display: none;
}

.hotel-booking-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-shrink: 0;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--hotel-border);
}

.hotel-booking-modal__title {
    margin: 0;
    font-size: 1.375rem;
    line-height: 1.25;
}

.hotel-booking-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    margin: -0.375rem -0.5rem -0.375rem 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--hotel-muted);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.hotel-booking-modal__close:hover {
    color: var(--hotel-heading);
    background: var(--hotel-cream-dark);
}

.hotel-booking-modal__form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.hotel-booking-modal__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel-booking-modal__footer {
    flex-shrink: 0;
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--hotel-border);
    background: var(--hotel-surface);
}

.hotel-booking-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 0;
}

.hotel-booking-modal__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.35;
}

.hotel-booking-modal__optional {
    font-weight: 400;
    color: var(--hotel-muted);
}

.hotel-booking-modal__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hotel-booking-modal__textarea {
    resize: vertical;
    min-height: 5.5rem;
}

.hotel-booking-modal__submit {
    width: 100%;
    min-height: 3rem;
    font-size: 1rem;
}

.hotel-booking-modal__hint {
    margin: 0.625rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    text-align: center;
    color: var(--hotel-muted);
}

.hotel-booking-modal .hotel-input:not(textarea),
.hotel-booking-modal select.hotel-input {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 2.75rem;
    min-height: 2.75rem;
    max-height: 2.75rem;
    padding: 0 0.85rem;
    line-height: 1.25;
}

.hotel-booking-modal input[type="date"].hotel-input,
.hotel-booking-modal input[type="number"].hotel-input {
    appearance: none;
    -webkit-appearance: none;
}

.hotel-booking-modal input[type="date"].hotel-input::-webkit-date-and-time-value {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    text-align: left;
}

.hotel-booking-modal input[type="date"].hotel-input::-webkit-calendar-picker-indicator {
    width: 1.125rem;
    height: 1.125rem;
    margin: 0 0 0 0.25rem;
    padding: 0;
    cursor: pointer;
    opacity: 0.65;
}

.hotel-booking-modal input[type="number"].hotel-input::-webkit-inner-spin-button,
.hotel-booking-modal input[type="number"].hotel-input::-webkit-outer-spin-button {
    margin: 0;
}

@media (max-width: 639px) {
    .hotel-booking-modal {
        align-items: flex-end;
        padding: 0;
    }

    .hotel-booking-modal__panel {
        max-width: none;
        max-height: 92vh;
        max-height: min(92dvh, 100%);
        border-radius: 1rem 1rem 0 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .hotel-booking-modal__handle {
        display: block;
        flex-shrink: 0;
        width: 2.5rem;
        height: 0.25rem;
        margin: 0.625rem auto 0;
        border-radius: 999px;
        background: var(--hotel-border);
    }

    .hotel-booking-modal__header {
        padding: 0.875rem 1.125rem 1rem;
    }

    .hotel-booking-modal__title {
        font-size: 1.25rem;
    }

    .hotel-booking-modal__body {
        padding: 0.875rem 1.125rem 1rem;
        gap: 0.875rem;
    }

    .hotel-booking-modal__footer {
        padding: 0.875rem 1.125rem calc(0.875rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
    }

    .hotel-booking-modal__row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .hotel-booking-modal .hotel-input,
    .hotel-booking-modal select.hotel-input,
    .hotel-booking-modal textarea.hotel-input {
        font-size: 16px;
    }

    .hotel-booking-modal__submit {
        min-height: 3.25rem;
    }
}

.hotel-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--hotel-input-border);
    border-radius: var(--hotel-radius-btn);
    font-size: 0.9375rem;
    background: var(--hotel-input-bg);
    color: var(--hotel-text);
}
.hotel-input:focus {
    outline: none;
    border-color: var(--hotel-gold);
    box-shadow: 0 0 0 3px var(--hotel-input-focus);
}

.hotel-toast {
    position: fixed;
    top: 5rem;
    right: 1rem;
    z-index: 60;
    max-width: 22rem;
    padding: 1rem 1.25rem;
    background: var(--hotel-card-bg);
    color: var(--hotel-text);
    border-left: 4px solid var(--hotel-gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    animation: hotelToastIn 0.35s ease;
}
@keyframes hotelToastIn {
    from { opacity: 0; transform: translateX(1rem); }
    to { opacity: 1; transform: translateX(0); }
}

img.lazyload.is-loaded { opacity: 1; }
img.lazyload { opacity: 0; transition: opacity 0.4s ease; }

.hotel-star { color: var(--hotel-gold); }

.hotel-footer {
    background: var(--hotel-footer-bg);
    color: var(--hotel-footer-text);
}

.hotel-breadcrumb a { color: var(--hotel-gold); }
.hotel-breadcrumb a:hover { text-decoration: underline; }

.hotel-filter-bar {
    background: var(--hotel-card-bg);
    border-radius: var(--hotel-radius);
    padding: 1.25rem;
    box-shadow: var(--hotel-card-shadow);
}

.hotel-room-detail-sticky {
    position: sticky;
    top: 6rem;
}

.hotel-room-gallery__stage--zoomable {
    cursor: zoom-in;
}

.hotel-room-gallery__stage--swipeable {
    touch-action: none;
    user-select: none;
}

.hotel-room-gallery__slide-image {
    transition: transform 0.15s ease;
}

.hotel-room-gallery__slide-image.is-dragging {
    transition: none;
}

.hotel-room-gallery__expand {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    pointer-events: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hotel-room-gallery__stage--zoomable:hover .hotel-room-gallery__expand,
.hotel-room-gallery__stage--zoomable:focus-visible .hotel-room-gallery__expand {
    background: rgba(0, 0, 0, 0.62);
    transform: scale(1.05);
}

.hotel-fullscreen-gallery {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(4px);
}

.hotel-fullscreen-gallery__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hotel-fullscreen-gallery__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hotel-fullscreen-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hotel-fullscreen-gallery__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hotel-fullscreen-gallery__nav--prev { left: 0.75rem; }
.hotel-fullscreen-gallery__nav--next { right: 0.75rem; }

.hotel-fullscreen-gallery__viewport {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(96vw, 72rem);
    max-height: 90vh;
    touch-action: none;
    user-select: none;
    cursor: grab;
}

.hotel-fullscreen-gallery__viewport:active {
    cursor: grabbing;
}

.hotel-fullscreen-gallery__image {
    max-width: 100%;
    max-height: calc(90vh - 4rem);
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.15s ease;
    will-change: transform;
}

.hotel-fullscreen-gallery__image.is-dragging {
    transition: none;
}

.hotel-fullscreen-gallery__counter {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
}

.hotel-fullscreen-gallery__hint {
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

@media (min-width: 768px) {
    .hotel-fullscreen-gallery__nav {
        width: 3.25rem;
        height: 3.25rem;
    }

    .hotel-fullscreen-gallery__nav--prev { left: 1.25rem; }
    .hotel-fullscreen-gallery__nav--next { right: 1.25rem; }
}

@media (max-width: 639px) {
    .hotel-fullscreen-gallery__hint {
        display: block;
    }

    .hotel-fullscreen-gallery__nav {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.75rem;
    }
}

@media (min-width: 640px) {
    .hotel-fullscreen-gallery__hint {
        display: none;
    }
}

/* Language picker (navbar) */
.locale-picker {
    display: inline-flex;
    vertical-align: middle;
}
.locale-picker__field {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.locale-picker__field::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    width: 0.35rem;
    height: 0.35rem;
    margin-top: -0.2rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    pointer-events: none;
}
.locale-picker__icon {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.875rem;
    height: 0.875rem;
    pointer-events: none;
}
.locale-picker__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.25;
}
.locale-picker__select:focus {
    outline: none;
}
.locale-picker--frontend .locale-picker__field {
    min-height: 2.125rem;
    border-radius: var(--hotel-radius-btn);
    border: 1px solid var(--hotel-locale-border);
    background: var(--hotel-locale-bg);
    color: var(--hotel-locale-text);
}
.locale-picker--frontend .locale-picker__field::after {
    opacity: 1;
}
.locale-picker--frontend .locale-picker__field:hover {
    border-color: var(--hotel-gold);
    background: var(--hotel-locale-bg);
}
.locale-picker--frontend .locale-picker__field:focus-within {
    border-color: var(--hotel-gold);
    box-shadow: 0 0 0 2px var(--hotel-input-focus);
}
.locale-picker--frontend .locale-picker__icon {
    color: var(--hotel-gold);
    opacity: 0.95;
}
.locale-picker--frontend .locale-picker__select {
    color: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.375rem 1.5rem 0.375rem 2rem;
    min-width: 6.25rem;
    max-width: 9rem;
}
.locale-picker--frontend .locale-picker__field:hover .locale-picker__select {
    color: var(--hotel-gold);
}
.locale-picker--frontend.locale-picker--compact .locale-picker__field {
    min-height: 2rem;
}
.locale-picker--frontend.locale-picker--compact .locale-picker__select {
    min-width: 5.5rem;
    max-width: 7rem;
    font-size: 0.6875rem;
    padding-right: 1.375rem;
}

/* Homepage section custom backgrounds */
.layout-section-has-bg .hotel-section-title,
.layout-section-has-bg .hotel-section-sub,
.layout-section-has-bg .hotel-display:not(.hotel-card .hotel-display) {
    color: #fff;
}
.layout-section-has-bg .hotel-section-sub {
    color: rgba(255, 255, 255, 0.78);
}
.layout-section-has-bg .hotel-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}
.layout-section-has-bg .hotel-card {
    background: rgba(255, 255, 255, 0.96);
}
.layout-section-has-bg .hotel-card .hotel-display,
.layout-section-has-bg .hotel-card cite,
.layout-section-has-bg .hotel-card p {
    color: var(--hotel-navy);
}

.layout-section-has-bg.hotel-amenities-section--surface,
.layout-section-has-bg.hotel-promotions-section--cards,
.layout-section-has-bg.hotel-promotions-section--minimal {
    background: transparent;
}

.layout-section-has-bg .hotel-amenity-card--grid,
.layout-section-has-bg .hotel-amenity-card--icons {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.layout-section-has-bg .hotel-amenity-card--grid:hover,
.layout-section-has-bg .hotel-amenity-card--icons:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: none;
}

.layout-section-has-bg .hotel-amenity-card--minimal {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.layout-section-has-bg .hotel-amenity-card__name {
    color: #fff;
}

.layout-section-has-bg .hotel-promo-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    box-shadow: none;
}

.layout-section-has-bg .hotel-promo-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: none;
}

.layout-section-has-bg .hotel-promo-card__discount {
    color: var(--hotel-gold);
}

.layout-section-has-bg .hotel-promo-card__title {
    color: #fff;
}

.layout-section-has-bg .hotel-promo-card__desc {
    color: rgba(255, 255, 255, 0.72);
}

.layout-section-has-bg .hotel-promo-banner {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.layout-section-has-bg .hotel-promo-banner__discount {
    color: var(--hotel-gold);
}

.layout-section-has-bg .hotel-promo-banner__title {
    color: #fff;
}

.layout-section-has-bg .hotel-promo-banner__desc {
    color: rgba(255, 255, 255, 0.72);
}

/* Room detail page */
.hotel-room-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.2;
    letter-spacing: 0;
}

.hotel-room-heading {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.25;
    letter-spacing: 0;
}

.hotel-room-meta {
    font-family: var(--font-body);
    color: var(--hotel-muted);
}

.hotel-room-body {
    font-family: var(--font-body);
    color: var(--hotel-text);
}

.hotel-room-amenity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--room-amenity-text);
    background: var(--room-amenity-bg);
    border: 1px solid var(--room-amenity-border);
    border-radius: var(--hotel-radius);
    box-shadow: var(--room-amenity-shadow);
}

.hotel-room-amenity__icon {
    color: var(--room-amenity-icon);
    font-weight: 700;
    flex-shrink: 0;
}

.hotel-room-amenity__icon--image {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

/* Homepage — amenities section */
.hotel-amenities-section--surface {
    background: var(--hotel-cream-dark);
}

.hotel-amenities-section__header {
    margin-bottom: 2.5rem;
}

.hotel-amenities-section__header--center {
    text-align: center;
}

.hotel-amenities-section__header--center .hotel-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.hotel-amenities-grid {
    display: grid;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hotel-amenities-grid--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .hotel-amenities-grid--grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hotel-amenities-grid--grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.hotel-amenities-grid--icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .hotel-amenities-grid--icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hotel-amenities-grid--icons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.hotel-amenities-grid--minimal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
}

.hotel-amenity-card {
    list-style: none;
}

.hotel-amenity-card--grid,
.hotel-amenity-card--icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--hotel-surface);
    border: 1px solid var(--hotel-border);
    border-radius: var(--hotel-radius);
    box-shadow: var(--hotel-card-shadow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-amenity-card--grid:hover,
.hotel-amenity-card--icons:hover {
    box-shadow: var(--hotel-card-shadow-hover);
    transform: translateY(-2px);
}

.hotel-amenity-card--grid {
    align-items: flex-start;
    text-align: left;
}

.hotel-amenity-card--grid .hotel-amenity-card__icon-wrap {
    margin: 0;
}

.hotel-amenity-card--minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--hotel-surface);
    border: 1px solid var(--hotel-border);
    border-radius: 999px;
    box-shadow: none;
}

.hotel-amenity-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--hotel-price-highlight-bg);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.hotel-amenity-card--minimal .hotel-amenity-card__icon-wrap {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--hotel-price-highlight-bg);
    border: none;
}

.hotel-amenity-card__icon {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.hotel-amenity-card__fallback {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--hotel-gold);
}

.hotel-amenity-card--minimal .hotel-amenity-card__icon {
    width: 1.125rem;
    height: 1.125rem;
}

.hotel-amenity-card__name {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--hotel-heading);
}

.hotel-amenity-card--minimal .hotel-amenity-card__name {
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Homepage — promotions section */
.hotel-promotions-section--cards,
.hotel-promotions-section--minimal {
    background: var(--hotel-cream-dark);
}

.hotel-promotions-section--banner {
    background: var(--room-offers-bg);
    color: #fff;
}

.hotel-promotions-section--banner .hotel-section-title {
    color: var(--room-offers-title);
}

.hotel-promotions-section--banner .hotel-section-sub {
    color: var(--room-offers-desc);
}

.hotel-promotions-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hotel-promotions-section__header .hotel-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.hotel-promo-grid {
    display: grid;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hotel-promo-grid--cards,
.hotel-promo-grid--minimal {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .hotel-promo-grid--cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hotel-promo-grid--cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .hotel-promo-grid--minimal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hotel-promo-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--room-offers-bg);
    border: 1px solid var(--room-offers-border);
    border-radius: var(--hotel-radius);
    box-shadow: 0 6px 24px rgba(26, 35, 50, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-promo-card:hover {
    box-shadow: 0 10px 32px rgba(26, 35, 50, 0.14);
    transform: translateY(-2px);
}

.hotel-promotions-section--minimal .hotel-promo-card {
    background: var(--hotel-surface);
    border-color: var(--hotel-border);
    box-shadow: var(--hotel-card-shadow);
}

.hotel-promotions-section--minimal .hotel-promo-card:hover {
    box-shadow: var(--hotel-card-shadow-hover);
}

.hotel-promo-card__discount {
    margin: 0;
    color: var(--room-offers-discount);
}

.hotel-promotions-section--minimal .hotel-promo-card__discount {
    color: var(--hotel-price-color);
}

.hotel-promo-card__title {
    margin: 0.5rem 0 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--room-offers-name);
}

.hotel-promotions-section--minimal .hotel-promo-card__title {
    color: var(--hotel-heading);
}

.hotel-promo-card__desc {
    margin: 0.5rem 0 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--room-offers-desc);
}

.hotel-promotions-section--minimal .hotel-promo-card__desc {
    color: var(--hotel-promo-desc);
}

.hotel-promo-banner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--room-offers-border);
    border-radius: var(--hotel-radius);
    background: rgba(255, 255, 255, 0.06);
}

.hotel-promo-banner__discount {
    margin: 0;
    color: var(--room-offers-discount);
}

.hotel-promo-banner__title {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--room-offers-name);
}

.hotel-promo-banner__desc {
    margin: 0.75rem 0 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--room-offers-desc);
}

.hotel-room-offers {
    padding: 1.5rem;
    background: var(--room-offers-bg);
    border: 1px solid var(--room-offers-border);
    border-radius: var(--hotel-radius);
}

.hotel-room-offers__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--room-offers-title);
    margin-bottom: 1rem;
}

.hotel-room-offers__discount {
    font-family: var(--font-price, var(--font-body));
    font-variant-numeric: tabular-nums lining-nums;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--room-offers-discount);
    line-height: 1.2;
}

.hotel-room-offers__name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--room-offers-name);
    margin-top: 0.25rem;
}

.hotel-room-offers__desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--room-offers-desc);
    margin-top: 0.35rem;
}

.hotel-room-review {
    padding: 1.25rem;
    background: var(--room-review-bg);
    border: 1px solid var(--room-review-border);
    border-radius: var(--hotel-radius);
    box-shadow: var(--room-review-shadow);
}

.hotel-room-hero-panel {
    background: var(--room-hero-panel-bg);
    color: var(--hotel-text);
}

.hotel-room-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--room-cta-bg);
    border: 1px solid var(--room-cta-border);
    border-radius: var(--hotel-radius);
    box-shadow: var(--hotel-card-shadow);
}

.hotel-room-cta-bar__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--room-cta-label);
}

.hotel-room-cta-bar .hotel-price,
.hotel-room-cta-mobile .hotel-price {
    color: var(--room-cta-price, var(--hotel-price-color));
    margin-top: 0.15rem;
}

.hotel-room-cta-bar .hotel-price-suffix,
.hotel-room-cta-mobile .hotel-price-suffix {
    color: var(--room-cta-label);
}

.hotel-room-cta-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--room-cta-bg);
    border-top: 1px solid var(--room-cta-border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
}

.hotel-room-cta-mobile__price {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hotel-room-cta-mobile .hotel-btn {
    flex-shrink: 0;
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
}

/* Room detail — responsive mobile (frontend + fastbooking) */
@media (max-width: 1023px) {
    .hotel-room-page.layout-room--responsive .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    .hotel-room-page.layout-room--responsive .lg\:col-span-2 {
        width: 100%;
        max-width: 100%;
    }

    .hotel-room-page.layout-room--responsive .hotel-room-detail-sticky,
    .hotel-room-page.layout-room--responsive .fastbooking-room-sidebar {
        display: none !important;
    }

    .hotel-room-page .hotel-room-mobile-cta .hotel-room-cta-bar {
        display: none !important;
    }

    .hotel-room-page .hotel-room-mobile-cta .hotel-room-cta-mobile {
        display: flex !important;
    }

    .hotel-room-page.layout-room-modern .lg\:grid {
        display: flex !important;
        flex-direction: column;
    }

    .hotel-room-page.layout-room-modern .lg\:grid > div:first-child {
        min-height: auto;
        max-height: none;
    }

    .hotel-room-page.layout-room-modern .hotel-room-hero-panel {
        padding: 1.25rem 1rem 0;
    }

    .hotel-room-page.layout-room-modern .hotel-room-title {
        font-size: clamp(1.375rem, 4.5vw, 1.75rem);
        margin-top: 0.75rem;
    }

    .hotel-room-page.layout-room-modern .max-w-md {
        max-width: 100%;
    }

    .hotel-room-page.layout-room-modern > div:last-child {
        padding: 1.5rem 1rem 2rem;
    }

    .hotel-room-page .hotel-room-title {
        font-size: clamp(1.375rem, 4.5vw, 2rem);
        line-height: 1.25;
    }

    .hotel-room-page .hotel-room-heading,
    .hotel-room-page .hotel-room-offers__title {
        font-size: clamp(1.125rem, 2.8vw, 1.5rem);
    }

    .hotel-room-page .hotel-room-meta {
        font-size: 0.875rem;
    }

    .hotel-room-page .hotel-room-body {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .hotel-room-page .hotel-room-block .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .hotel-room-page .hotel-room-amenity {
        font-size: 0.8125rem;
        padding: 0.625rem 0.75rem;
    }

    .hotel-room-page .hotel-room-gallery__thumbs {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .hotel-room-page .hotel-related-rooms__title {
        font-size: clamp(1.375rem, 4.5vw, 1.75rem);
    }

    .hotel-room-page .hotel-related-rooms__sub {
        font-size: 0.875rem;
    }

    .hotel-room-page .hotel-room-cta-mobile {
        z-index: 35;
        background: var(--hotel-surface);
        border-top: 4px solid var(--hotel-gold);
        box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.16);
        padding: 1rem 1.125rem calc(1rem + env(safe-area-inset-bottom, 0px));
        gap: 1rem;
    }

    .hotel-room-page .hotel-room-cta-mobile .hotel-room-cta-bar__label {
        color: var(--hotel-muted);
        font-weight: 700;
        font-size: 0.8125rem;
    }

    .hotel-room-page .hotel-room-cta-mobile .hotel-price {
        color: var(--hotel-price-color);
        font-size: 1.25rem;
    }

    .hotel-room-page .hotel-room-cta-mobile .hotel-btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
        min-height: 2.75rem;
        font-weight: 700;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    }

    .hotel-site:has(.hotel-room-mobile-cta) .hotel-site-footer {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }

    .hotel-site:has(.hotel-room-page) .hotel-sticky-book-mobile {
        display: none !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .hotel-room-page .hotel-room-block .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hotel-room-page .hotel-room-mobile-cta {
        display: none !important;
    }

    .hotel-room-page .hotel-room-detail-sticky,
    .hotel-room-page .fastbooking-room-sidebar {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hotel-room-page.layout-room--responsive .grid.lg\:grid-cols-3 {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 2rem !important;
        align-items: start;
    }

    .hotel-room-page.layout-room--responsive .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .hotel-room-page.layout-room-modern .lg\:grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Tailwind utility overrides per theme */
body.hotel-site .bg-white {
    background-color: var(--hotel-surface) !important;
}

/* Fast booking (/fastbooking) */
.fastbooking-page {
    font-family: var(--font-body);
    background: var(--hotel-cream);
    color: var(--hotel-text);
    overflow-x: hidden;
    width: 100%;
}

/* Layout fallbacks — works without Tailwind when resizing / slow CDN */
@media (max-width: 1023px) {
    .fastbooking-page .layout-room--fastbooking .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    .fastbooking-page .layout-room--fastbooking .lg\:col-span-2 {
        width: 100%;
        max-width: 100%;
    }

    .fastbooking-page .layout-room-fullwidth .hotel-room-cta-bar {
        display: none !important;
    }

    .fastbooking-page .layout-room-fullwidth .hotel-room-cta-mobile {
        display: flex !important;
    }
}

@media (min-width: 1024px) {
    .fastbooking-page .layout-room--fastbooking .grid.lg\:grid-cols-3 {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 2rem !important;
        align-items: start;
    }

    .fastbooking-page .layout-room--fastbooking .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .fastbooking-page .layout-room-modern .lg\:grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

.fastbooking-page .layout-room--fastbooking .hotel-room-block .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .fastbooking-page .layout-room--fastbooking .hotel-room-block .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.fastbooking-page .hotel-product-image-frame {
    aspect-ratio: var(--hotel-product-aspect, 1/1);
    background: var(--hotel-product-image-bg, var(--hotel-card-bg, var(--hotel-surface)));
}

.fastbooking-page .hotel-room-gallery__stage img,
.fastbooking-page .fastbooking-room-item__media img,
.fastbooking-page .hotel-room-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.fastbooking-page .fastbooking-room-item__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.fastbooking-page .hotel-room-gallery__mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .fastbooking-page .hotel-room-gallery__mosaic {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fastbooking-page .hotel-room-gallery__stage--hero {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.fastbooking-page .hotel-section .grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .fastbooking-page .hotel-section .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .fastbooking-page .hotel-section .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.fastbooking-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--hotel-surface);
    border-bottom: 1px solid var(--hotel-border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.fastbooking-header__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.875rem 1rem;
}

@media (min-width: 1024px) {
    .fastbooking-header__inner {
        padding: 1rem 2rem;
    }
}

.fastbooking-header__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--hotel-cream-dark);
    color: var(--hotel-heading);
    font-size: 1.625rem;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease;
}

.fastbooking-header__back:hover {
    background: var(--hotel-border);
}

.fastbooking-header__back--placeholder {
    visibility: hidden;
}

.fastbooking-header__brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
}

.fastbooking-header__logo {
    flex-shrink: 0;
}

.fastbooking-header__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0;
    color: var(--hotel-heading);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .fastbooking-header__name {
        font-size: 1.25rem;
    }
}

.fastbooking-header__tagline {
    margin-top: 0.1rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--hotel-muted);
    line-height: 1.35;
}

@media (min-width: 768px) {
    .fastbooking-header__tagline {
        font-size: 0.875rem;
    }
}

.fastbooking-main {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem 1rem 2.5rem;
}

@media (min-width: 768px) {
    .fastbooking-main {
        padding: 1.5rem 1.5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .fastbooking-main {
        padding: 2rem 2rem 3.5rem;
    }
}

.fastbooking-list__intro {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .fastbooking-list__intro {
        margin-bottom: 2rem;
    }
}

.fastbooking-list__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.fastbooking-list__sub {
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--hotel-muted);
    line-height: 1.5;
    max-width: 36rem;
}

.fastbooking-list__empty {
    padding: 3rem 0;
    text-align: center;
    font-family: var(--font-body);
    color: var(--hotel-muted);
}

.fastbooking-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .fastbooking-list__items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .fastbooking-list__items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.fastbooking-room-item {
    display: grid;
    grid-template-columns: 5.25rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0.5rem 0.75rem;
    padding: 0.625rem;
    background: var(--hotel-surface);
    border: 1px solid var(--hotel-border);
    border-radius: var(--hotel-radius);
    box-shadow: var(--hotel-card-shadow);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .fastbooking-room-item {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
}

.fastbooking-room-item:active,
.fastbooking-room-item:hover {
    border-color: var(--hotel-gold);
    box-shadow: var(--hotel-card-shadow-hover), 0 0 0 1px rgba(201, 169, 98, 0.15);
}

.fastbooking-room-item:active {
    transform: scale(0.985);
}

@media (min-width: 768px) {
    .fastbooking-room-item:hover {
        transform: translateY(-2px);
    }

    .fastbooking-room-item:active {
        transform: translateY(-1px) scale(0.995);
    }
}

.fastbooking-room-item__media {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    flex-shrink: 0;
    align-self: start;
    height: auto;
    border-radius: calc(var(--hotel-radius) - 1px);
    overflow: hidden;
    background: var(--hotel-product-image-bg, var(--hotel-card-bg, var(--hotel-surface)));
}

.fastbooking-room-item__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0.5rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--hotel-muted);
}

@media (min-width: 640px) {
    .fastbooking-room-item__media {
        width: 100%;
        border-radius: 0;
    }
}

.fastbooking-room-item__body {
    grid-row: 1;
    grid-column: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

@media (min-width: 640px) {
    .fastbooking-room-item__body {
        grid-row: auto;
        grid-column: auto;
        flex: 1;
        padding: 1rem 1.125rem 0.75rem;
    }
}

.fastbooking-room-item__type {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hotel-muted);
    line-height: 1.2;
}

.fastbooking-room-item__name {
    margin-top: 0.15rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.3;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media (min-width: 640px) {
    .fastbooking-room-item__type {
        font-size: 0.6875rem;
    }

    .fastbooking-room-item__name {
        font-size: 1.0625rem;
        -webkit-line-clamp: 3;
    }
}

@media (min-width: 768px) {
    .fastbooking-room-item__name {
        font-size: 1.125rem;
    }
}

.fastbooking-room-item__price {
    margin-top: 0.35rem;
    line-height: 1.2;
}

.fastbooking-room-item__cta {
    grid-row: 2;
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    margin-top: 0;
    padding: 0.5rem 0.875rem;
    border-radius: var(--hotel-radius-btn);
    background: linear-gradient(135deg, var(--hotel-gold) 0%, var(--hotel-gold-dark) 100%);
    color: var(--hotel-btn-primary-text, var(--hotel-navy));
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    animation: fastbooking-cta-pulse 2.5s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
    .fastbooking-room-item__cta {
        grid-row: auto;
        grid-column: auto;
        width: calc(100% - 2.25rem);
        align-self: center;
        margin: 0 1.125rem 1.125rem;
        padding: 0.4375rem 0.875rem;
        animation: none;
    }
}

.fastbooking-room-item:hover .fastbooking-room-item__cta,
.fastbooking-room-item:focus-visible .fastbooking-room-item__cta {
    animation: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.fastbooking-room-item__cta-arrow {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.fastbooking-room-item:hover .fastbooking-room-item__cta-arrow,
.fastbooking-room-item:active .fastbooking-room-item__cta-arrow {
    transform: translateX(3px);
}

@keyframes fastbooking-cta-pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(201, 169, 98, 0.35);
    }
    50% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16), 0 0 0 4px rgba(201, 169, 98, 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fastbooking-room-item__cta {
        animation: none;
    }

    .fastbooking-room-item__cta-arrow {
        transition: none;
    }
}

/* Fastbooking — footer */
.hotel-site-footer {
    margin-top: 1.5rem;
    background: var(--hotel-footer-bg);
    color: var(--hotel-footer-text);
    border-top: 1px solid var(--hotel-footer-border);
}

.hotel-site-footer__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1rem 1.5rem;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hotel-site-footer__inner {
        padding: 2.5rem 1.5rem 2rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 2.5rem;
    }

    .hotel-site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .hotel-site-footer__inner {
        padding: 3rem 2rem 2rem;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr);
        gap: 2.5rem;
        align-items: start;
    }

    .hotel-site-footer__brand {
        grid-column: auto;
    }
}

.hotel-site-footer__brand {
    text-align: center;
}

@media (min-width: 1024px) {
    .hotel-site-footer__brand {
        text-align: left;
    }
}

.hotel-site-footer__brand-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

@media (min-width: 1024px) {
    .hotel-site-footer__brand-link {
        align-items: flex-start;
    }
}

.hotel-site-footer__brand-link:hover {
    opacity: 0.92;
}

.hotel-site-footer__logo {
    width: 4.5rem !important;
    height: 4.5rem !important;
}

@media (min-width: 768px) {
    .hotel-site-footer__logo {
        width: 5.5rem !important;
        height: 5.5rem !important;
    }
}

.hotel-site-footer__title {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--hotel-footer-heading);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.hotel-site-footer__tagline {
    margin: 0.625rem auto 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--hotel-footer-muted);
    line-height: 1.5;
    max-width: 20rem;
}

@media (min-width: 1024px) {
    .hotel-site-footer__tagline {
        margin-left: 0;
        margin-right: 0;
    }
}

.hotel-site-footer__section-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hotel-footer-heading);
    margin-bottom: 0.875rem;
}

.hotel-site-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.hotel-site-footer__contact-list li {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--hotel-footer-text);
}

.hotel-site-footer__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hotel-footer-muted);
    margin-bottom: 0.15rem;
}

.hotel-site-footer__link {
    color: var(--hotel-footer-heading);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.hotel-site-footer__link:hover {
    color: var(--hotel-gold);
    text-decoration: underline;
}

.hotel-site-footer__social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.875rem;
}

.hotel-site-footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hotel-site-footer__social-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.hotel-site-footer__social-btn img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    background: transparent;
}

.hotel-site-footer__social-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.hotel-site-footer__social-fallback--zalo {
    background: #0068ff;
}

.hotel-site-footer__social-fallback--facebook {
    background: #1877f2;
    font-size: 1rem;
}

.hotel-site-footer__address {
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--hotel-footer-text);
}

.hotel-site-footer__address-text {
    display: block;
    color: var(--hotel-footer-text);
}

.hotel-site-footer__map {
    margin-top: 0.75rem;
    width: 100%;
    max-width: 13rem;
    height: 5.5rem;
    border-radius: var(--hotel-radius);
    overflow: hidden;
    border: 1px solid var(--hotel-footer-border);
    background: rgba(255, 255, 255, 0.06);
}

.hotel-site-footer__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.hotel-site-footer__map-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hotel-gold);
    text-decoration: none;
}

.hotel-site-footer__map-link:hover {
    text-decoration: underline;
}

.hotel-site-footer__partners-empty {
    min-height: 4rem;
}

.hotel-site-footer__bottom {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem 1rem 1.5rem;
    border-top: 1px solid var(--hotel-footer-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--hotel-footer-muted);
}

@media (min-width: 640px) {
    .hotel-site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.hotel-site-footer__sitemap {
    color: var(--hotel-footer-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hotel-site-footer__sitemap:hover {
    color: var(--hotel-gold);
}

@media (min-width: 768px) {
    .hotel-site-footer__bottom {
        padding: 1rem 1.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .hotel-site-footer__bottom {
        padding: 1rem 2rem 2.5rem;
    }
}

@media (max-width: 1023px) {
    .fastbooking-page:has(.hotel-room-mobile-cta) .hotel-site-footer {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }
}

/* Fastbooking — room detail */
.fastbooking-page .layout-room--fastbooking {
    background: transparent;
}

.fastbooking-page .layout-room--fastbooking [class*="max-w-"] {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.fastbooking-page .layout-room--fastbooking .px-4,
.fastbooking-page .layout-room--fastbooking .sm\:px-6,
.fastbooking-page .layout-room--fastbooking .lg\:px-8 {
    padding-left: 0;
    padding-right: 0;
}

.fastbooking-page .layout-room--fastbooking .pt-6 {
    padding-top: 0;
}

.fastbooking-page .hotel-breadcrumb {
    display: none;
}

.fastbooking-page .layout-room {
    padding-bottom: 1.5rem;
}

.fastbooking-page .layout-room--fastbooking.layout-room-sidebar,
.fastbooking-page .layout-room--fastbooking.layout-room-gallery-grid,
.fastbooking-page .layout-room--fastbooking.layout-room-fullwidth {
    padding-bottom: 5.5rem;
}

@media (min-width: 1024px) {
    .fastbooking-page .layout-room {
        padding-bottom: 2.5rem;
    }

    .fastbooking-page .layout-room--fastbooking.layout-room-sidebar,
    .fastbooking-page .layout-room--fastbooking.layout-room-gallery-grid,
    .fastbooking-page .layout-room--fastbooking.layout-room-fullwidth {
        padding-bottom: 2.5rem;
    }
}

.fastbooking-page .layout-room--fastbooking .grid {
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .fastbooking-page .layout-room--fastbooking .lg\:grid-cols-3 {
        gap: 2rem;
        align-items: start;
    }
}

.fastbooking-page .hotel-room-title {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 4.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--hotel-heading);
    letter-spacing: 0;
}

.fastbooking-page .hotel-room-heading {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.8vw, 1.5rem);
    font-weight: 600;
    color: var(--hotel-heading);
    line-height: 1.25;
}

.fastbooking-page .hotel-room-offers__title {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.8vw, 1.5rem);
    font-weight: 600;
    color: var(--room-offers-title);
    line-height: 1.25;
}

.fastbooking-page .hotel-room-meta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--hotel-muted);
}

.fastbooking-page .hotel-room-body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--hotel-text);
}

.fastbooking-page .hotel-room-header {
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    .fastbooking-page .hotel-room-header {
        margin-top: 1.75rem;
    }
}

.fastbooking-page .hotel-room-block {
    margin-top: 1.5rem;
}

.fastbooking-page .hotel-room-amenity {
    font-size: 0.8125rem;
}

.fastbooking-page .hotel-price-panel__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

.fastbooking-page .hotel-price--xl {
    font-size: clamp(1.5rem, 4vw, 2.125rem);
}

.fastbooking-page .hotel-price--lg,
.fastbooking-page .hotel-price--md {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
}

.fastbooking-page .hotel-room-gallery__thumbs {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.fastbooking-page .hotel-room-detail-sticky {
    top: 5.5rem;
}

.fastbooking-page .hotel-price-panel {
    padding: 1.25rem;
}

@media (max-width: 1023px) {
    .fastbooking-page .fastbooking-room-sidebar {
        display: none;
    }
}

@media (min-width: 1024px) {
    .fastbooking-page .fastbooking-room-sidebar {
        display: block;
    }
}

.fastbooking-page .layout-room-modern .lg\:grid {
    min-height: auto;
}

@media (max-width: 1023px) {
    .fastbooking-page .layout-room-modern .lg\:grid {
        display: flex;
        flex-direction: column;
    }

    .fastbooking-page .layout-room-modern .lg\:grid > div:first-child {
        min-height: auto;
        max-height: none;
    }

    .fastbooking-page .layout-room-modern .hotel-room-hero-panel {
        padding: 1.25rem 0 0;
    }

    .fastbooking-page .layout-room-modern .hotel-room-title {
        margin-top: 0;
        font-size: 1.5rem;
    }

    .fastbooking-page .layout-room-modern .max-w-md {
        max-width: 100%;
    }

    .fastbooking-page .layout-room-modern > div:last-child {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .fastbooking-page .layout-room-modern .lg\:grid {
        min-height: auto;
        border-radius: var(--hotel-radius);
        overflow: hidden;
        border: 1px solid var(--hotel-border);
        box-shadow: var(--hotel-card-shadow);
    }

    .fastbooking-page .layout-room-modern .hotel-room-hero-panel {
        padding: 2.5rem 3rem;
    }
}

.fastbooking-page .layout-room-fullwidth .hotel-room-cta-bar {
    border-radius: var(--hotel-radius);
}

.fastbooking-page .hotel-related-rooms {
    margin-top: 1.5rem;
    padding: 2rem 0 2.5rem;
    background: var(--hotel-surface);
    border-top: 1px solid var(--hotel-border);
    border-radius: var(--hotel-radius);
}

.fastbooking-page .layout-room--fastbooking .hotel-related-rooms {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 1023px) {
    .fastbooking-page .hotel-related-rooms__title {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
    }

    .fastbooking-page .hotel-related-rooms__sub {
        font-size: 0.875rem;
    }

    .fastbooking-page .hotel-related-card__name {
        font-size: 1.0625rem;
    }
}

.fastbooking-page .hotel-room-cta-mobile {
    z-index: 35;
}

@media (max-width: 1023px) {
    .fastbooking-page .hotel-room-cta-mobile {
        background: var(--hotel-surface);
        border-top: 4px solid var(--hotel-gold);
        box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.16);
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .fastbooking-page .hotel-room-cta-mobile .hotel-room-cta-bar__label {
        color: var(--hotel-muted);
        font-weight: 700;
    }

    .fastbooking-page .hotel-room-cta-mobile .hotel-price {
        color: var(--hotel-price-color);
    }

    .fastbooking-page .hotel-room-cta-mobile .hotel-price-suffix {
        color: var(--hotel-muted);
    }

    .fastbooking-page .hotel-room-cta-mobile .hotel-btn-primary {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
        font-weight: 700;
    }

    .fastbooking-page .hotel-room-offers {
        margin-bottom: 0.25rem;
    }

    .theme-luxury.fastbooking-page .hotel-room-cta-mobile {
        background: #ffffff;
    }

    .theme-luxury.fastbooking-page .hotel-room-cta-mobile .hotel-btn-primary {
        background: var(--hotel-gold);
        color: var(--hotel-price-on-gold);
        border: none;
    }

    .theme-minimal.fastbooking-page .hotel-room-cta-mobile {
        border-top-color: var(--hotel-gold);
        box-shadow: 0 -12px 36px rgba(79, 70, 229, 0.12);
    }
}

/* Fastbooking — mobile / narrow typography (min 15–16px body) */
@media (max-width: 1023px) {
    .fastbooking-page {
        font-size: 1rem;
        -webkit-text-size-adjust: 100%;
    }

    .fastbooking-header__name {
        font-size: 1.125rem;
    }

    .fastbooking-header__tagline {
        font-size: 0.875rem;
    }

    .fastbooking-list__title {
        font-size: 1.625rem;
    }

    .fastbooking-list__sub {
        font-size: 1rem;
    }

    .fastbooking-room-item__type {
        font-size: 0.8125rem;
    }

    .fastbooking-room-item__name {
        font-size: 1.0625rem;
    }

    .fastbooking-room-item__cta {
        font-size: 0.875rem;
        padding: 0.5625rem 1rem;
    }

    .fastbooking-page .hotel-room-title {
        font-size: 1.625rem;
    }

    .fastbooking-page .hotel-room-heading,
    .fastbooking-page .hotel-room-offers__title {
        font-size: 1.25rem;
    }

    .fastbooking-page .hotel-room-offers__title {
        color: var(--room-offers-title);
    }

    .fastbooking-page .hotel-room-meta {
        font-size: 1rem;
    }

    .fastbooking-page .hotel-room-body {
        font-size: 1rem;
    }

    .fastbooking-page .hotel-room-amenity {
        font-size: 0.9375rem;
        padding: 0.75rem 0.875rem;
    }

    .fastbooking-page .hotel-room-offers__discount {
        font-size: 1.375rem;
    }

    .fastbooking-page .hotel-room-offers__name {
        font-size: 1rem;
    }

    .fastbooking-page .hotel-room-offers__desc {
        font-size: 0.9375rem;
    }

    .fastbooking-page .hotel-room-review .hotel-room-body {
        font-size: 0.9375rem;
    }

    .fastbooking-page .hotel-price--xl {
        font-size: 1.75rem;
    }

    .fastbooking-page .hotel-price--lg,
    .fastbooking-page .hotel-price--md {
        font-size: 1.375rem;
    }

    .fastbooking-page .hotel-price-suffix {
        font-size: 0.875rem;
    }

    .fastbooking-page .hotel-room-cta-bar__label {
        font-size: 0.8125rem;
    }

    .fastbooking-page .hotel-room-cta-mobile {
        padding: 1rem 1.125rem calc(1rem + env(safe-area-inset-bottom, 0px));
        gap: 1rem;
    }

    .fastbooking-page .hotel-room-cta-mobile .hotel-btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
        letter-spacing: 0.03em;
        min-height: 2.75rem;
    }

    .fastbooking-page .hotel-price-panel__label {
        font-size: 0.8125rem;
    }

    .fastbooking-page .hotel-section .hotel-section-title {
        font-size: 1.375rem;
    }

    .fastbooking-page .hotel-card .hotel-display {
        font-size: 1.1875rem;
    }

    .fastbooking-page .hotel-card .text-sm,
    .fastbooking-page .text-sm {
        font-size: 0.9375rem !important;
    }

    .fastbooking-page .hotel-card .text-xs,
    .fastbooking-page .text-xs {
        font-size: 0.875rem !important;
    }

    .fastbooking-page .hotel-tag {
        font-size: 0.8125rem;
    }

    .fastbooking-page .layout-room-modern .hotel-room-title {
        font-size: 1.625rem;
    }

    .fastbooking-page .layout-room-modern .hotel-room-body {
        font-size: 1rem;
    }

    .fastbooking-page .hotel-contact-modal__title {
        font-size: 1.375rem;
    }

    .fastbooking-page .hotel-contact-modal__text {
        font-size: 1rem;
    }

    .fastbooking-page .hotel-contact-modal__btn {
        font-size: 1rem;
        min-height: 3.25rem;
    }
}

/* Contact channels modal */
.hotel-contact-modal__panel {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    background: var(--hotel-surface);
    border-radius: var(--hotel-radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--hotel-border);
}

.hotel-contact-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: var(--hotel-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.hotel-contact-modal__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hotel-heading);
    padding-right: 2rem;
}

.hotel-contact-modal__text {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: var(--hotel-muted);
    line-height: 1.5;
}

.hotel-contact-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.hotel-contact-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border-radius: var(--hotel-radius-btn);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.hotel-contact-modal__btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.hotel-contact-modal__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.hotel-contact-modal__btn:not(:disabled):active {
    transform: scale(0.98);
}

.hotel-contact-modal__btn--zalo {
    background: #0068ff;
    color: #fff;
}

.hotel-contact-modal__btn--facebook {
    background: #1877f2;
    color: #fff;
}

.hotel-contact-modal__btn--call {
    background: var(--hotel-btn-primary-bg);
    color: var(--hotel-btn-primary-text);
}

.hotel-contact-modal__hint {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--hotel-muted);
    text-align: center;
}
