/* Consolidated site CSS (moved from inline styles) */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --hover-gradient: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    --accent-color: #ff6b6b;
    --text-dark: #333;
    --font-sans: 'Kanit', sans-serif;
    --site-tooltip-bg: linear-gradient(135deg, rgba(37,45,78,.98), rgba(92,67,143,.98));
    --site-tooltip-border: rgba(255,255,255,.14);
}

.tooltip {
    --bs-tooltip-bg: transparent;
    --bs-tooltip-color: #fff;
    --bs-tooltip-border-radius: 12px;
    --bs-tooltip-opacity: 1;
    --bs-tooltip-max-width: 280px;
    --bs-tooltip-padding-x: 0;
    --bs-tooltip-padding-y: 0;
    font-family: var(--font-sans);
    z-index: 2000;
}

.tooltip .tooltip-inner {
    background: var(--site-tooltip-bg);
    border: 1px solid var(--site-tooltip-border);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 14px 28px rgba(31, 23, 55, .24);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .15px;
    line-height: 1.45;
    padding: 10px 12px;
    text-align: center;
}

.tooltip .tooltip-arrow::before {
    opacity: .98;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before,
.tooltip[data-popper-placement^="top"] .tooltip-arrow::before {
    border-top-color: #4d4d83;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip[data-popper-placement^="bottom"] .tooltip-arrow::before {
    border-bottom-color: #3a3b67;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before,
.tooltip[data-popper-placement^="left"] .tooltip-arrow::before {
    border-left-color: #473d75;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before,
.tooltip[data-popper-placement^="right"] .tooltip-arrow::before {
    border-right-color: #473d75;
}

/* ── Compare Checkbox & Floating Bar ── */
.compare-checkbox-label { cursor:pointer; background:rgba(255,255,255,.85); width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:.2s; z-index:2; }
.compare-checkbox-label input { display:none; }
.compare-checkbox-label i { color:#999; font-size:14px; transition:.2s; }
.compare-checkbox-label:hover { background:#fff; box-shadow:0 2px 8px rgba(0,0,0,.15); }
.compare-checkbox-label input:checked ~ i { color:#667eea; }
.compare-bar { position:fixed; bottom:0; left:0; right:0; background:linear-gradient(135deg,#667eea,#764ba2); color:#fff; padding:12px 0; z-index:1050; box-shadow:0 -2px 12px rgba(0,0,0,.2); animation: slideUp .3s ease; }
.compare-bar-hidden { display: none; }
@keyframes slideUp { from { transform:translateY(100%); } to { transform:translateY(0); } }

html,
body {
    font-family: var(--font-sans);
    background-color: #f4f7f6;
    padding-top: 45px;
    overflow-x: hidden;
    touch-action: pan-x pan-y;
    -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.navbar-colorful {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(118, 75, 162, 0.08);
    padding: 12px 0;
    border-bottom: 2px solid #f0f0f0;
}

.brand-box {
    width: 46px;
    height: 46px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(118, 75, 162, 0.3);
}
.brand-box.has-logo {
    width: 76px;
    height: 76px;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-right: 0;
    overflow: hidden;
}
.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-dark) !important;
    font-size: 1.5rem;
}
.navbar-brand > .navbar-brand-text {
    color: var(--text-dark);
}

.brand-gold-word {
    color: #b6934d;
}

.navbar-colorful .nav-link {
    color: #666 !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 15px !important;
    border-radius: 50px;
    transition: all .3s ease;
}

.navbar-colorful .nav-link:hover {
    color: #764ba2 !important;
    background-color: rgba(118, 75, 162, 0.08);
}

.navbar-colorful .nav-link.active,
.navbar-colorful .nav-link.active:hover,
.navbar-colorful .nav-link.active:focus {
    color: #fff !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.35) !important;
}
.navbar-colorful .nav-link.active i {
    opacity: 1 !important;
    color: #fff !important;
}

.user-profile-pill {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #eee;
    border-radius: 50px;
    padding: 4px 4px 4px 15px;
    cursor: pointer;
    transition: all .3s;
}

.user-profile-pill:hover {
    border-color: #bfaee3;
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.15);
}

.user-avatar {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-left: 10px;
}

.btn-outline-custom {
    background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%);
    border: 2px solid #764ba2;
    color: #764ba2;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(118,75,162,0.12);
}

.btn-outline-custom:hover {
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(118,75,162,0.35);
    transform: translateY(-1px);
}

.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
    transition: all .3s;
}

.btn-gradient:hover {
    background: var(--hover-gradient);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.6);
}

.btn-outline-line {
    border: 1px solid #06c755;
    color: #06c755;
    background: #ffffff;
    transition: all .2s ease;
}

.btn-outline-line:hover,
.btn-outline-line:focus {
    background: #06c755;
    border-color: #06c755;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.28);
}

.dropdown-menu-colorful {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 15px;
    border-top: 4px solid #764ba2;
}

.dropdown-item {
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 2px;
    color: #555;
    font-weight: 500;
}

.dropdown-item i {
    width: 25px;
    color: #764ba2;
}

.dropdown-item.text-danger i {
    color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: #f4f0fa;
    color: #764ba2;
}

/* Modern language switcher */
.lang-switcher-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.90);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px 5px 6px;
    font-weight: 500;
    font-size: 0.88rem;
    box-shadow: none;
    transition: background 0.2s, border-color 0.2s;
}

.lang-switcher-btn:hover {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    transform: none;
}

.lang-switcher-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.82rem;
}

.lang-flag-emoji {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
}

.lang-switcher-text {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.lang-switcher-code {
    display: none;
}

.lang-dropdown-modern {
    min-width: 190px;
    padding: 6px;
    border-radius: 12px;
    background: #0e2435;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    padding: 9px 12px;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.15s;
    line-height: 1;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lang-option .lang-flag {
    font-size: 1.22rem;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.lang-option .lang-label {
    font-weight: 500;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1;
}

.lang-option .lang-mini-code {
    font-size: 0.68rem;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

.lang-option.active,
.lang-option.active:hover {
    background: rgba(46, 170, 197, 0.25);
    color: #fff;
}

.lang-option.active .lang-mini-code {
    background: rgba(46, 170, 197, 0.40);
    color: #7be4f5;
}

/* General hero & page styles */

h1,
h2,
h3 {
    font-family: var(--font-sans);
}

.hero-section {
    background: none;
    min-height: calc(100vh - 120px);
    min-height: calc(100dvh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -5%;
    background: var(--hero-bg, linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)), url('/uploads/hero-bg.jpg'));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: heroZoomIn 25s ease-out forwards;
    z-index: 0;
    will-change: transform;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

@keyframes heroZoomIn {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before {
        animation: none;
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-gold {
    background: linear-gradient(45deg, #dfc27d, #b88a44);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all .4s ease;
    box-shadow: 0 10px 20px rgba(184, 138, 68, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 138, 68, 0.4);
}

.floating-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-item {
    text-align: center;
    padding: 15px;
    transition: .3s;
}

/* ========== About Section (Website Builder) ========== */
.about-section .about-img-wrapper { position:relative; }
.about-section .about-img-wrapper::after { content:''; position:absolute; top:15px; left:15px; right:-15px; bottom:-15px; border:3px solid var(--wb-accent, #dfc27d); border-radius: 1rem; z-index:-1; }
.about-section .about-img-wrapper img { width:100%; object-fit:cover; }

/* ========== Gallery Section (Website Builder) ========== */
.gallery-thumb { position:relative; overflow:hidden; border-radius: .75rem; aspect-ratio:4/3; }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gallery-thumb:hover img { transform:scale(1.08); }
.gallery-overlay { position:absolute; inset:0; background:rgba(0,0,0,.35); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s; color:#fff; font-size:1.5rem; }
.gallery-thumb:hover .gallery-overlay { opacity:1; }

.icon-circle {
    width: 65px;
    height: 65px;
    background: #fdf8ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #b88a44;
    font-size: 1.6rem;
    transition: .4s;
}

.feature-item:hover .icon-circle {
    background: #b88a44;
    color: white;
    transform: rotateY(180deg);
}

.section-title-box {
    text-align: center;
    margin: 5rem 0 3rem;
}

.section-title {
    font-size: 2.8rem;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #b88a44;
    margin: 15px auto 0;
}

.room-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.room-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.room-card:hover .room-img-box img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #b88a44;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats-section {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.97), rgba(20, 20, 30, 0.95));
    background-size: cover;
    color: white;
    padding: 80px 0;
    margin-top: 80px;
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1540541338287-41700207dee6?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 20px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .floating-box {
        margin-top: -40px;
        padding: 20px 10px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-item h6 {
        font-size: .9rem;
    }

    .btn-gold {
        width: 100%;
        padding: 12px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }
}

/* Footer styles */
.footer-modern {
    background-color: #1a1a2e;
    color: #b0b0d0;
    padding-top: 70px;
    margin-top: 100px;
    font-family: var(--font-sans);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 1.1rem;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.footer-brand-icon.has-logo {
    width: 72px;
    height: 72px;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-right: 0;
    overflow: hidden;
}
.footer-brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.footer-brand .text-white {
    color:  #c9a227 !important;
}

.footer-links a {
    color: #b0b0d0;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #a78bfa;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.35;
}

.footer-contact li i {
    flex: 0 0 16px;
    width: 16px;
    margin-top: 2px;
}

.footer-contact li span {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
}

.footer-contact-tax {
    white-space: nowrap;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 8px;
    transition: .3s;
    text-decoration: none;
}

.social-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    background-color: #121222;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.form-control-pill {
    border-radius: 50px;
    border: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-footer-send {
    position: absolute;
    right: 5px;
    top: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    color: white;
}

/* small helpers */
.text-warning {
    color: #b88a44 !important;
}

/* Link accent used on auth pages */
.link-gold {
    color: #c5a059 !important;
}

/* Auth floating icons inside rounded inputs */
.auth-input-wrap {
    position: relative;
}
.auth-input-wrap .auth-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #b88a44;
    z-index: 4;
    font-size: 1.05rem;
    pointer-events: none;
}
.auth-input-wrap .form-control-lg,
.auth-input-wrap .form-select-lg {
    padding-left: 52px;
}

/* Login page specific styles (moved from login.php) */
.login-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1562790351-d273a961e0e9?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.login-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeUp .8s cubic-bezier(.2, .8, .2, 1);
}

.login-title {
    font-family: var(--font-sans);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 2rem;
}

.form-control-lg {
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    background: rgba(255, 255, 255, 0.8);
    transition: all .3s;
    height: 55px;
}

.form-control-lg:focus {
    border-color: #c5a059;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.15);
    background: white;
    transform: translateY(-2px);
}

.btn-login {
    background: linear-gradient(135deg, #dfc27d 0%, #b88a44 100%);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s;
    box-shadow: 0 10px 20px rgba(184, 138, 68, 0.2);
    font-size: 1.1rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:576px) {
    .login-card {
        padding: 30px 20px;
        margin-top: 20px;
    }

    .login-title {
        font-size: 1.75rem;
    }

    .form-control-lg {
        font-size: 16px;
        height: 50px;
    }

    .alert {
        font-size: .85rem;
    }
}

/* Common helpers moved from pages */
.clamp-2 {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

/* Register page */
.register-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.register-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: fadeUp .8s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #dfc27d, #b88a44, #dfc27d);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.register-title {
    font-family: var(--font-sans);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.btn-register {
    background: linear-gradient(135deg, #2c2c2c 0%, #111111 100%);
    border: none;
    color: #c5a059;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s;
    border: 1px solid rgba(197,160,89,0.2);
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-register:hover,
.btn-register:active {
    background: linear-gradient(45deg, #dfc27d, #b88a44);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15)
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Rooms page */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.header-title {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- Filter Bar --- */
.filter-bar {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* --- Hotel Aerial View --- */
.aerial-view-card {
    border: none;
    border-radius: 18px;
    overflow: visible;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    position: relative;
}
.aerial-view-header {
    background: linear-gradient(135deg, #1a3a4a 0%, #2a5a6a 100%);
    color: #fff;
    padding: 14px 22px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .3px;
}
.aerial-view-body {
    padding: 0;
    line-height: 0;
    position: relative;
    cursor: zoom-in;
}
.aerial-view-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease;
}
.aerial-view-body:hover .aerial-view-img {
    transform: scale(1.02);
}

/* --- Rooms View Mode Toggle --- */
.rooms-view-toggle {
    display: flex;
    justify-content: flex-end;
}
.rooms-mode-group {
    background: #f0f2f5;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    display: flex;
}
.rooms-mode-btn {
    border: none;
    border-radius: 10px !important;
    padding: 8px 20px;
    font-weight: 600;
    font-size: .9rem;
    color: #555;
    background: transparent;
    transition: all .25s ease;
    display: flex;
    align-items: center;
}
.rooms-mode-btn:hover {
    color: #1a3a4a;
    background: rgba(255,255,255,.6);
}
.rooms-mode-btn.active {
    background: #fff;
    color: #1a3a4a;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.rooms-view-panel {
    animation: fadeInView .3s ease;
}
@keyframes fadeInView {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.aerial-toggle-btn {
    border-color: rgba(255,255,255,.4);
    color: #fff;
    padding: 2px 10px;
    font-size: .8rem;
}
.aerial-toggle-btn:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.aerial-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.85);
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: zoom-out;
}
.aerial-lightbox.show {
    display: flex;
}
.aerial-lightbox img {
    max-width: 95vw;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
    object-fit: contain;
}
.aerial-lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: .7;
    transition: opacity .2s;
}
.aerial-lightbox-close:hover {
    opacity: 1;
}

/* --- Aerial Plan Interactive Pins --- */
.aerial-plan-wrapper {
    position: relative;
    line-height: 0;
    overflow: visible;
    border-radius: 18px;
}
.aerial-plan-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    border-radius: 18px;
    position: relative;
}

.aerial-plan-wrapper .aerial-view-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}
.aerial-plan-legend {
    padding: 12px 16px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.plan-legend-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(15,23,42,.2);
}
.plan-legend-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .74rem;
    font-weight: 600;
    color: #475569;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.8);
    border: 1px solid #e2e8f0;
}
.plan-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .74rem;
    font-weight: 700;
    color: #1f2937;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid #dbe3eb;
    box-shadow: 0 1px 2px rgba(15,23,42,.06);
}
.plan-legend-label {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Admin pin toolbar */
.aerial-admin-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #1e293b;
    border-bottom: 2px solid #f59e0b;
    position: relative;
    z-index: 100;
}

/* Pin edit active mode */
.pin-edit-active {
    outline: 3px dashed #f59e0b;
    outline-offset: -3px;
}
.pin-edit-active .plan-pin.pin-draggable {
    cursor: grab;
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.8));
}
.pin-edit-active .plan-pin.pin-draggable:active {
    cursor: grabbing;
}
.pin-edit-active .plan-pin .plan-tooltip {
    display: none !important;
}

/* Pin base */
.plan-pin {
    position: absolute;
    z-index: 50;
    transform: translate(-50%, -50%);
    cursor: pointer;
    text-decoration: none;
}
.plan-pin-dot {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2a308;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(226,163,8,.5), 0 2px 12px rgba(0,0,0,.4);
    transition: transform .2s, background .2s;
    margin: 0 auto;
    animation: pinPulse 2s ease-in-out infinite;
}
/* Pin status colors */
.plan-pin-dot.pin-status-available {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.5), 0 2px 12px rgba(0,0,0,.4);
}
.plan-pin-dot.pin-status-occupied {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,.5), 0 2px 12px rgba(0,0,0,.4);
}
.plan-pin-dot.pin-status-unavailable {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.5), 0 2px 12px rgba(0,0,0,.4);
}
.plan-pin-dot.pin-status-maintenance {
    background: #6b7280;
    box-shadow: 0 0 0 3px rgba(107,114,128,.5), 0 2px 12px rgba(0,0,0,.4);
}
@keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(226,163,8,.5), 0 2px 12px rgba(0,0,0,.4); }
    50% { box-shadow: 0 0 0 8px rgba(226,163,8,.25), 0 2px 16px rgba(0,0,0,.5); }
}
@keyframes pinPulseGreen {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.5), 0 2px 12px rgba(0,0,0,.4); }
    50% { box-shadow: 0 0 0 8px rgba(34,197,94,.25), 0 2px 16px rgba(0,0,0,.5); }
}
@keyframes pinPulseAmber {
    0%, 100% { box-shadow: 0 0 0 3px rgba(245,158,11,.5), 0 2px 12px rgba(0,0,0,.4); }
    50% { box-shadow: 0 0 0 8px rgba(245,158,11,.25), 0 2px 16px rgba(0,0,0,.5); }
}
@keyframes pinPulseRed {
    0%, 100% { box-shadow: 0 0 0 3px rgba(239,68,68,.5), 0 2px 12px rgba(0,0,0,.4); }
    50% { box-shadow: 0 0 0 8px rgba(239,68,68,.25), 0 2px 16px rgba(0,0,0,.5); }
}
.plan-pin-dot.pin-status-available { animation: pinPulseGreen 2s ease-in-out infinite; }
.plan-pin-dot.pin-status-occupied { animation: pinPulseAmber 2s ease-in-out infinite; }
.plan-pin-dot.pin-status-unavailable { animation: pinPulseRed 2s ease-in-out infinite; }
.plan-pin-dot.pin-status-maintenance { animation: none; }
.plan-pin:hover .plan-pin-dot {
    transform: scale(1.35);
    background: #ff6b35;
    animation: none;
    box-shadow: 0 0 0 4px rgba(255,107,53,.5), 0 4px 16px rgba(0,0,0,.5);
}
.plan-pin:hover {
    z-index: 200;
}
.plan-pin-label {
    display: block;
    font-size: .7rem;
    font-weight: 800;
    color: #fff;
    background: rgba(0,0,0,.75);
    border-radius: 4px;
    padding: 2px 6px;
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

/* Tooltip card (inside pin: hidden data source only) */
.plan-tooltip {
    display: none !important;
}

/* Floating tooltip — fixed position, appended to body via JS */
#planFloatingTooltip {
    position: fixed;
    z-index: 9999;
    width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease, visibility .15s ease;
}
#planFloatingTooltip.is-visible {
    opacity: 1;
    visibility: visible;
}
#planFloatingTooltip::after {
    content: '';
    position: absolute;
    left: var(--arrow-left, 50%);
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
#planFloatingTooltip[data-placement="top"]::after {
    bottom: -7px;
    border-top: 8px solid #fff;
}
#planFloatingTooltip[data-placement="bottom"]::after {
    top: -7px;
    border-bottom: 8px solid #fff;
}
.plan-tooltip-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
}
.plan-tooltip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.plan-tooltip-body {
    padding: 10px 14px 12px;
    line-height: 1.4;
}
.plan-tooltip-name {
    font-weight: 700;
    font-size: .9rem;
    color: #1a3a4a;
    margin-bottom: 2px;
}
.plan-tooltip-number {
    font-size: .8rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 3px;
}
.plan-tooltip-meta {
    font-size: .75rem;
    color: #777;
    margin-bottom: 4px;
}
.plan-tooltip-price {
    font-size: .8rem;
    font-weight: 700;
    color: #333;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 4px 8px;
    text-align: center;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .aerial-view-card {
        border-radius: 14px;
    }
    .aerial-plan-scroll {
        border-radius: 14px;
    }
    .aerial-plan-wrapper {
        min-width: 760px;
        border-radius: 14px;
    }
    .aerial-plan-wrapper .aerial-view-img {
        border-radius: 14px;
    }
    .aerial-plan-legend {
        justify-content: flex-start;
        padding: 10px 12px;
    }
    .plan-legend-hint,
    .plan-legend-item {
        font-size: .72rem;
        padding: 5px 9px;
    }
    .plan-pin-dot { width: 24px; height: 24px; border-width: 2px; }
    .plan-pin-label { font-size: .62rem; padding: 2px 5px; margin-top: 4px; }
    .plan-tooltip { width: 180px; }
    .plan-tooltip-img { height: 80px; }
    .plan-tooltip-body { padding: 6px 10px 8px; }
}

/* Touch devices: tooltip opens by tap via .is-open class */
.touch-device .plan-pin.is-open {
    z-index: 220;
}
.touch-device .plan-pin.is-open .plan-pin-dot {
    transform: scale(1.35);
    animation: none;
}
/* --- Room Cards --- */
.room-card-v2 {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card-v2:active,
/* Effect ตอนแตะบนมือถือ */
.room-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card-v2:hover .room-img-container img {
    transform: scale(1.08);
}

.room-card-v2.room-card-unavailable {
    box-shadow: 0 10px 24px rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.12);
}

.room-card-v2.room-card-unavailable .room-img-container img {
    filter: saturate(0.85);
}

.price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(30, 30, 30, 0.9);
    color: white;
    padding: 8px 18px;
    border-top-right-radius: 12px;
    font-family: var(--font-sans);
    backdrop-filter: blur(4px);
}

.room-details {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.amenities-row {
    display: flex;
    flex-wrap: wrap;
    /* ให้ขึ้นบรรทัดใหม่ถ้าจอเล็ก */
    gap: 10px;
    margin: 12px 0 16px 0;
    color: #6c757d;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}

.amenities-row span {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.btn-view {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    transition: 0.3s;
    margin-top: auto;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-view:hover,
.btn-view:active {
    background-color: #c5a059;
    color: white;
    transform: scale(0.98);
}

.btn-view-disabled {
    background-color: #6c757d;
}

.btn-view-disabled:hover,
.btn-view-disabled:active {
    background-color: #495057;
}

.btn-view.btn-view-disabled {
    background: linear-gradient(135deg, #1f6feb 0%, #0ea5e9 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.24);
}

.btn-view.btn-view-disabled:hover,
.btn-view.btn-view-disabled:active {
    background: linear-gradient(135deg, #3b82f6 0%, #0284c7 100%);
    color: #fff;
    transform: translateY(-1px);
}

.room-availability-note {
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff5f5;
    color: #b42318;
    font-size: 0.85rem;
    border: 1px solid #f3c7c7;
}

.room-selected-dates-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7ed 0%, #eff6ff 100%);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #1e3a8a;
}

.room-selected-dates-alert-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #b45309;
}

/* --- MOBILE RESPONSIVE (จุดสำคัญ) --- */
@media (max-width: 768px) {
    .page-header {
        height: 250px;
        /* ลดความสูง header ในมือถือ */
        margin-bottom: 3.5rem;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .page-header > * {
        text-align: center;
    }

    .header-title {
        font-size: 2rem;
        /* ลดขนาดฟอนต์หัวข้อ */
        padding: 0 15px;
    }

    .lead {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    /* ปรับ Filter Bar ในมือถือ */
    .filter-bar {
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        max-width: calc(100% - 20px);
        padding: 20px 15px;
    }

    .rooms-view-toggle {
        justify-content: center;
    }

    .filter-bar .btn-gold {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* ปรับระยะห่างระหว่างช่องค้นหา */
    .filter-bar .row>div {
        margin-bottom: 10px;
    }

    .filter-bar .row>div:last-child {
        margin-bottom: 0;
    }

    .room-img-container {
        height: 200px;
        /* ลดความสูงรูปใน Card */
    }

    .amenities-row {
        gap: 8px;
    }

    .btn-view {
        padding: 14px;
        /* ปุ่มใหญ่ขึ้นนิดนึงให้กดง่าย */
        font-size: 1rem;
    }
}

/* My bookings page */
.page-header-small {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 5px
}

.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform .3s
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08)
}

.img-wrapper {
    height: 100%;
    min-height: 250px;
    position: relative;
    overflow: hidden
}

.room-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.booking-card:hover .room-thumb {
    transform: scale(1.05)
}

.booking-id-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 500
}

.status-badge {
    font-size: .85rem;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.status-pending {
    background: #fff8e1;
    color: #f57f17
}

.status-confirmed {
    background: #e8f5e9;
    color: #2e7d32
}

.status-cancelled {
    background: #ffebee;
    color: #c62828
}

.price-group {
    text-align: right
}

.price-label {
    font-size: .8rem;
    color: #999;
    display: block
}

.price-text {
    color: #c5a059;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.2
}

.date-row {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.date-row::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #e0e0e0
}

.date-box {
    flex: 1;
    text-align: center
}

.date-label {
    font-size: .75rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px
}

.date-val {
    font-weight: 600;
    color: #333;
    font-size: 1rem
}

.action-btn {
    font-size: .9rem;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    text-decoration: none
}

.btn-slip {
    border: 1px solid #dee2e6;
    background: white;
    color: #555
}

.btn-slip:hover {
    background: #f8f9fa;
    color: #333
}

.btn-contact {
    background: #333;
    color: white;
    border: none
}

.btn-contact:hover {
    background: #c5a059;
    color: white
}

.btn-gold {
    background: linear-gradient(45deg, #dfc27d, #b88a44);
    border: none;
    color: white;
    padding: 15px 45px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(184, 138, 68, 0.3);
}

/* Brand helpers */
.brand-accent {
    color: #764ba2;
}

.brand-muted {
    color: #aaa;
}

/* Room details page */
.room-details-page {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
}

.room-details-page input,
.room-details-page select,
.room-details-page textarea,
.room-details-page .form-control {
    font-size: 16px !important;
}

.room-details-page {
    font-family: var(--font-sans);
    background-color: #f5f7fa;
}

.room-details-page .room-title {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.room-details-page .main-room-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.room-details-page .room-gallery-thumb-btn {
    background: transparent;
}

.room-details-page .room-gallery-thumb {
    width: 96px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(118, 75, 162, 0.15);
    transition: transform .2s ease, border-color .2s ease;
}

.room-details-page .room-gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(118, 75, 162, 0.55);
}

.room-details-page .room-booking-sidebar-wrapper {
    position: sticky;
    top: 20px;
    z-index: 90;
}

/* ---- booking card shell -------------------------------- */
.room-details-page .room-booking-card {
    background: #fff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* ---- price header -------------------------------------- */
.room-details-page .price-header {
    background: linear-gradient(180deg, #14171d 0%, #101319 100%);
    color: #d6b06a;
    padding: 24px 26px 18px;
    border-bottom: 2px solid #cba15a;
    text-align: center;
}

.room-details-page .price-header small {
    display: block;
    color: #0d47a3;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.room-details-page .price-header h2 {
    color: #d6b06a;
    font-size: clamp(2.15rem, 2.2vw, 2.55rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.room-details-page .price-header h2 span,
.room-details-page .price-header small {
    font-family: inherit;
}

/* =========================================================
   Frontend Theme Override - Grand Teal Hotel Style
   ========================================================= */
:root {
    --gcp-teal: #21a8c3;
    --gcp-teal-deep: #0b5568;
    --gcp-navy: #0f3442;
    --gcp-navy-soft: rgba(10, 44, 58, 0.92);
    --gcp-paper: #f3f3f3;
    --gcp-panel: #ffffff;
    --gcp-gold: #c9ad6a;
    --gcp-text: #2b2f33;
}

html,
body {
    background: linear-gradient(180deg, var(--gcp-teal) 0%, var(--gcp-teal) 360px, var(--gcp-paper) 360px, var(--gcp-paper) 100%);
    color: var(--gcp-text);
}

.navbar-colorful {
    background: linear-gradient(180deg, rgba(8, 38, 50, 0.94) 0%, rgba(14, 54, 70, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 26px rgba(7, 28, 37, 0.35);
    backdrop-filter: blur(6px);
    padding: 14px 0;
}

.navbar-colorful .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 10px;
    border-radius: 8px;
}
.navbar-colorful .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-colorful .container {
    max-width: 1280px;
}

.navbar-brand {
    color: #f2f6f8 !important;
    font-size: 1.3rem;
    letter-spacing: 0.2px;
}

.navbar-brand > .navbar-brand-text {
    color: #f3f8fb;
}

.navbar-brand > .navbar-brand-text .brand-gold-word,
.footer-brand-text .brand-gold-word {
    color: #d8b46a;
}

.brand-box {
    background: linear-gradient(135deg, var(--gcp-teal) 0%, #6dc9df 100%);
    box-shadow: 0 6px 18px rgba(33, 168, 195, 0.38);
}

.navbar-colorful .nav-link {
    color: rgba(241, 248, 251, 0.92) !important;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 12px !important;
}

.navbar-colorful .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-colorful .nav-link.active,
.navbar-colorful .nav-link.active:hover,
.navbar-colorful .nav-link.active:focus {
    background: rgba(33, 168, 195, 0.96) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(33, 168, 195, 0.3) !important;
}

.btn-gradient,
.btn-gold {
    background: linear-gradient(135deg, #ef9f2c 0%, #d97f14 100%);
    border: none;
    color: #fff;
}

.btn-gradient:hover,
.btn-gold:hover {
    background: linear-gradient(135deg, #f3ac44 0%, #de861f 100%);
    color: #fff;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.floating-box,
.about-section,
.gallery-section,
.filter-bar,
.compare-card,
.room-booking-card,
.room-details-page .room-booking-card,
.card.room-card,
.card.room-card-v2,
.my-bookings-page .card,
.room-details-page .card {
    background: var(--gcp-panel);
    border: 1px solid #e9edf1;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(12, 33, 42, 0.08);
}

.section-title,
.header-title,
.room-title {
    color: #2d3a42;
    letter-spacing: 0.2px;
}

.stats-section,
.cta-section {
    background: linear-gradient(180deg, #f3f5f7 0%, #eef1f4 100%);
    border-top: 1px solid #e5e9ed;
    border-bottom: 1px solid #e5e9ed;
}

.footer-modern {
    background: linear-gradient(180deg, #1a1a2e 0%, #161625 100%);
    margin-top: 44px;
}

.footer-bottom {
    background: #121222;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    color: #c9a227 !important;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.footer-desc,
.footer-links a,
.footer-contact span,
.footer-modern .text-white-50 {
    color: #b0b0d0 !important;
}

.footer-modern .text-white {
    color: #c9a227 !important;
}

.social-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-steps-bar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #e6edf2;
    margin-bottom: 28px;
}

.booking-steps-container {
    max-width: 980px;
}

.room-details-page,
.my-bookings-page,
.compare-page,
.rooms-page,
.multi-wrap {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.modal-content {
    border-radius: 10px;
    border: 1px solid #dfe5ea;
}

.dropdown-menu-colorful {
    border-top: 3px solid var(--gcp-teal);
    box-shadow: 0 10px 28px rgba(18, 47, 58, 0.16);
}

@media (max-width: 991.98px) {
    body {
        padding-top: 74px;
        background: linear-gradient(180deg, var(--gcp-teal) 0%, var(--gcp-teal) 190px, var(--gcp-paper) 190px, var(--gcp-paper) 100%);
    }

    .navbar-brand {
        font-size: 1.06rem;
    }

    .brand-box {
        width: 38px;
        height: 38px;
        margin-right: 8px;
        font-size: 1rem;
    }

    .brand-box.has-logo {
        width: 54px;
        height: 54px;
    }

    .navbar-collapse {
        background: rgba(10, 42, 57, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 12px;
        padding: 10px;
        margin-top: 8px;
    }

    .navbar-colorful .nav-link {
        margin: 2px 0;
    }

    .hero-section {
        min-height: 340px;
    }

    .footer-modern .row > [class*="col-"] {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.56rem;
    }

    .hero-subtitle {
        font-size: .95rem;
    }

    .floating-box,
    .about-section,
    .gallery-section,
    .filter-bar,
    .card.room-card,
    .card.room-card-v2,
    .room-booking-card {
        border-radius: 10px;
    }

    .footer-modern {
        margin-top: 28px;
    }
}

/* =========================================================
   Frontend Theme Override - Phase 2 (Header + Booking Pages)
   ========================================================= */
:root {
    --font-sans: 'Noto Sans Thai', 'Kanit', sans-serif;
    --font-heading: 'Playfair Display', 'Noto Sans Thai', serif;
}

.frontend-hotel-theme,
.frontend-hotel-theme body {
    font-family: var(--font-sans);
}

.frontend-hotel-theme h1,
.frontend-hotel-theme h2,
.frontend-hotel-theme h3,
.frontend-hotel-theme .section-title,
.frontend-hotel-theme .hero-title,
.frontend-hotel-theme .header-title {
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
}

.site-top-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1035;
    min-height: 34px;
    background: linear-gradient(90deg, #0f3d4d 0%, #144d60 50%, #1a6075 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #d8f2f8;
    font-size: 0.78rem;
}

.site-top-strip .container {
    min-height: 34px;
}

.site-top-strip i {
    color: #87dff0;
}

.site-top-strip a {
    color: #e9fafd;
    text-decoration: none;
    font-weight: 500;
}

.site-top-strip a:hover {
    color: #ffffff;
}

.main-navbar {
    top: 34px;
}

body.frontend-hotel-theme {
    padding-top: 120px;
}

.hero-section {
    min-height: 100vh;
    min-height: 100dvh;    
}

.hero-content {
    padding-top: 24px;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.1rem);
}

.hero-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    min-height: 320px;
    border-bottom: 4px solid rgba(201, 173, 106, 0.9);
}

.header-title {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.room-details-page,
.multi-wrap {
    padding-left: 12px;
    padding-right: 12px;
}

.room-details-page .room-booking-card,
.multi-wrap .room-booking-card {
    border: 1px solid #e8edf1 !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 30px rgba(10, 35, 45, 0.12) !important;
}

.room-details-page .price-header,
.multi-wrap .price-header {
    background: linear-gradient(180deg, #102f3f 0%, #17495e 100%) !important;
    border-bottom: 3px solid var(--gcp-gold) !important;
    color: #f1d89a !important;
}

.room-details-page .price-header small,
.multi-wrap .price-header small {
    color: #87dbec !important;
    font-size: 0.96rem !important;
}

.room-details-page .price-header h2,
.multi-wrap .price-header h2 {
    color: #f3dda6 !important;
    letter-spacing: -0.01em;
}

.room-details-page .card-section-title,
.multi-wrap .card-section-title {
    color: #243743;
    font-size: 1.04rem;
}

.room-details-page .bk-summary,
.multi-wrap .bk-summary {
    background: linear-gradient(180deg, #fbf7ef 0%, #fffdf8 100%) !important;
    border: 1px solid #ecdcb6 !important;
    border-radius: 12px !important;
}

.room-details-page .btn-book-now,
.multi-wrap .btn-book-now {
    background: linear-gradient(135deg, #0b8ead 0%, #0d6f89 100%) !important;
    box-shadow: 0 8px 24px rgba(11, 126, 154, 0.35) !important;
    border-radius: 999px !important;
}

.room-details-page .btn-book-now:hover,
.room-details-page .btn-book-now:active,
.multi-wrap .btn-book-now:hover,
.multi-wrap .btn-book-now:active {
    background: linear-gradient(135deg, #12a5c8 0%, #0b7d99 100%) !important;
}

.room-details-page .bk-pay-info,
.multi-wrap .bk-pay-info {
    border-color: #dde8ee !important;
    box-shadow: 0 4px 14px rgba(13, 42, 52, 0.09) !important;
}

.room-details-page .bank-card-header,
.multi-wrap .bank-card-header {
    background: linear-gradient(135deg, #124459 0%, #1b6e87 100%) !important;
}

.room-details-page .cc-card-header,
.multi-wrap .cc-card-header {
    background: linear-gradient(135deg, #21465f 0%, #287899 100%) !important;
}

.room-details-page .pp-card-header,
.multi-wrap .pp-card-header {
    background: linear-gradient(135deg, #15527a 0%, #1a7dad 100%) !important;
}

.room-details-page .bk-radio-card.is-payment-selected,
.multi-wrap .bk-radio-card.is-payment-selected,
.room-details-page .bk-radio-card:has(input:checked),
.multi-wrap .bk-radio-card:has(input:checked) {
    border-color: #1a8eae !important;
    background: #eef9fc !important;
    box-shadow: 0 0 0 1px #1a8eae !important;
}

.room-details-page .review-summary-strip {
    border-color: #e8dbb6;
    border-radius: 14px;
}

.room-details-page .review-card {
    border-radius: 14px;
}

@media (max-width: 1199.98px) {
    body.frontend-hotel-theme {
        padding-top: 114px;
    }

    .room-details-page,
    .multi-wrap {
        max-width: 1140px;
    }
}

@media (max-width: 991.98px) {
    .main-navbar {
        top: 0;
    }

    body.frontend-hotel-theme {
        padding-top: 78px;
    }

    .hero-section {
        min-height: 390px;
    }

    .room-details-page,
    .multi-wrap {
        padding-left: 2px;
        padding-right: 2px;
    }
}

@media (max-width: 575.98px) {
    .room-details-page .price-header,
    .multi-wrap .price-header {
        padding: 18px 14px 14px !important;
    }

    .room-details-page .price-header h2,
    .multi-wrap .price-header h2 {
        font-size: 1.9rem !important;
    }

    .room-details-page .card-body,
    .multi-wrap .card-body {
        padding: 14px !important;
    }
}

/* ---- date pill bar ------------------------------------- */
.bk-date-bar {
    display: flex;
    align-items: stretch;
    background: #f7f7f7;
    border-radius: 16px;
    border: 1.5px solid #ebebeb;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color .18s;
}

.bk-date-bar:focus-within {
    border-color: #e8621a;
    box-shadow: 0 0 0 3px rgba(232,98,26,0.10);
}

.bk-date-cell {
    flex: 1;
    padding: 12px 14px;
    cursor: pointer;
    position: relative;
    background: transparent;
}

.bk-date-cell + .bk-date-cell {
    border-left: 1.5px solid #ebebeb;
}

.bk-date-cell label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #aaa;
    margin-bottom: 3px;
    pointer-events: none;
}

.bk-date-cell-full {
    width: 100%;
}

.bk-stay-range {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    color: #1a1a1a;
    width: 100%;
    outline: none;
    box-shadow: none !important;
    cursor: pointer;
}

.bk-inline-calendar {
    border: 1.5px solid #ebebeb;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
}

.bk-inline-calendar .air-datepicker {
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
}

.bk-inline-calendar .air-datepicker-nav {
    border-bottom: 0;
    margin-bottom: 6px;
}

.bk-inline-calendar .air-datepicker-nav--title,
.bk-inline-calendar .air-datepicker-nav--title i {
    color: #1a1a1a;
    font-weight: 700;
}

.bk-inline-calendar .air-datepicker-body--day-name {
    color: #8f8f8f;
    font-weight: 600;
}

.bk-inline-calendar .air-datepicker-body--cells.-days-,
.bk-inline-calendar .air-datepicker-body--day-names {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-auto-rows: 58px;
    width: 100%;
}

.bk-inline-calendar .air-datepicker-body--day-names {
    grid-auto-rows: 28px;
}

.bk-inline-calendar .air-datepicker-cell.-day- {
    width: auto;
    height: 58px;
    border-radius: 10px;
    font-weight: 600;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.bk-inline-calendar .air-datepicker-cell.-selected- {
    background: #e8621a;
    color: #fff;
}

.bk-inline-calendar .air-datepicker-cell.-in-range- {
    background: #fff1e7;
    color: #1a1a1a;
}

.bk-inline-calendar .air-datepicker-cell.bk-booked-day {
    background: #ffe9e2;
    color: #d24f1f;
    text-decoration: line-through;
    font-weight: 700;
}

.bk-inline-calendar .air-datepicker-cell.-disabled-.bk-booked-day {
    opacity: 0.95;
}

.bk-calendar-legend {
    font-size: 0.8rem;
    color: #9c9c9c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffe9e2;
    border: 1px solid #f6b59f;
}

/* ---- guests row ---------------------------------------- */
.bk-guests-row {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 16px;
    border: 1.5px solid #ebebeb;
    padding: 11px 14px;
    gap: 10px;
    margin-bottom: 14px;
    transition: border-color .18s;
}

.bk-guests-row:focus-within {
    border-color: #e8621a;
    box-shadow: 0 0 0 3px rgba(232,98,26,0.10);
}

.bk-guests-row i {
    color: #bbb;
    font-size: 1rem;
    flex-shrink: 0;
}

.bk-guests-row label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #aaa;
    white-space: nowrap;
    flex-shrink: 0;
}

.bk-guests-row select {
    border: none !important;
    background: transparent !important;
    flex: 1;
    font-size: 0.9rem !important;
    font-weight: 600;
    color: #1a1a1a;
    outline: none;
    box-shadow: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.bk-payment-row {
    margin-bottom: 14px;
}

.bk-payment-row select option {
    color: #1a1a1a;
}

.bk-slip-wrap {
    border: 1.5px solid #ebebeb;
    border-radius: 16px;
    background: #f7f7f7;
    padding: 11px 14px;
}

.bk-slip-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    margin-bottom: 8px;
}

.bk-file-input {
    border-radius: 12px !important;
    border: 1.5px solid #ebebeb !important;
    background: #fff !important;
    font-size: 0.85rem !important;
    padding: 8px 10px !important;
}

.bk-file-input:focus {
    border-color: #e8621a !important;
    box-shadow: 0 0 0 3px rgba(232,98,26,0.10) !important;
}

/* ---- requests field ------------------------------------ */
.bk-requests {
    border-radius: 16px !important;
    border: 1.5px solid #ebebeb !important;
    background: #f7f7f7 !important;
    font-size: 0.88rem !important;
    padding: 12px 14px !important;
    resize: none;
    transition: border-color .18s !important;
}

.bk-requests:focus {
    border-color: #e8621a !important;
    box-shadow: 0 0 0 3px rgba(232,98,26,0.10) !important;
    background: #fff !important;
}

/* ---- price summary ------------------------------------ */
.bk-summary {
    background: #fdf8f2;
    border-radius: 16px;
    border: 1.5px solid #fde7cc;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.bk-summary .bk-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.bk-summary .bk-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 8px;
    border-top: 1px solid #fde7cc;
}

.bk-summary .bk-total-val {
    color: #e8621a;
}

/* ---- book button --------------------------------------- */
.btn-book-now {
    background: linear-gradient(135deg, #ff7c2a 0%, #e8401a 100%);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 50px;
    width: 100%;
    transition: transform .18s, box-shadow .18s;
    box-shadow: 0 6px 20px rgba(232,98,26,0.35);
    letter-spacing: 0.01em;
}

.btn-book-now:hover,
.btn-book-now:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,98,26,0.45);
    color: #fff;
    background: linear-gradient(135deg, #ff8f45 0%, #e8401a 100%);
}

.room-details-page .highlight-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 10px 14px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    height: 100%;
    transition: all .25s;
    border: 1px solid rgba(197,160,89,.12);
    position: relative;
    overflow: hidden;
}

.room-details-page .highlight-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c5a059, #e4c07a);
    border-radius: 16px 16px 0 0;
}

.room-details-page .highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(197,160,89,.18);
    border-color: rgba(197,160,89,.3);
}

.room-details-page .highlight-icon {
    font-size: 1.6rem;
    color: #c5a059;
    margin-bottom: 6px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf6e8, #fcecc8);
    border-radius: 12px;
}

.room-details-page .highlight-label {
    font-size: .68rem;
    font-weight: 600;
    color: #b0a090;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 2px;
}

.room-details-page .highlight-value {
    font-size: .82rem;
    font-weight: 700;
    color: #3d3020;
}

/* === Amenity Cards === */
.room-details-page .amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 10px 14px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #f0ece4;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: all .2s;
    gap: 8px;
    height: 100%;
}

.room-details-page .amenity-card:hover {
    border-color: #c5a059;
    box-shadow: 0 8px 20px rgba(197,160,89,.15);
    transform: translateY(-3px);
}

.room-details-page .amenity-card-name {
    font-size: .78rem;
    font-weight: 600;
    color: #4a3f30;
    line-height: 1.3;
}

.room-details-page .check-icon {
    color: #28a745;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .room-details-page .main-room-img {
        height: 300px;
        border-radius: 0 0 20px 20px;
        margin-top: -20px;
        margin-bottom: 1.5rem;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .room-details-page .room-title {
        font-size: 1.8rem;
    }

    .room-details-page .highlight-box {
        padding: 12px 6px 10px;
    }

    .room-details-page .highlight-icon {
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
    }

    .room-details-page .highlight-value {
        font-size: .75rem;
    }

    .room-details-page .amenity-card {
        padding: 14px 8px 10px;
    }

    .room-details-page .amenity-card-icon {
        width: 38px;
        height: 38px;
        font-size: .95rem;
    }

    .room-details-page .room-booking-sidebar-wrapper {
        position: static;
        margin-bottom: 2rem;
    }

    .room-details-page .room-booking-card {
        border: 1px solid #ebebeb;
    }
}

/* PWA Install Prompt */
.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 12px 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Mobile-first responsive improvements */
@media (max-width: 576px) {
    html, body { padding-top: 70px; }
    .navbar-colorful { padding: 8px 0; }
    .brand-box { width: 36px; height: 36px; font-size: 15px; }
    .brand-box.has-logo { width: 60px; height: 60px; }
    .navbar-brand > .navbar-brand-text { font-size: 1.2rem; }
    .hero-title { font-size: 2rem !important; }
    .hero-subtitle { font-size: 1rem !important; }
    .footer-modern { padding: 30px 0 15px; }
    .login-card { margin: 10px; padding: 25px 20px; }
    .room-card { margin-bottom: 1rem; }
    .btn-gradient { padding: 8px 16px; font-size: 0.9rem; }
    .footer-contact-tax { font-size: 0.95em; }

    /* Keep booking card scroll-friendly on phones */
    .room-details-page .room-booking-sidebar-wrapper {
        position: static !important;
        bottom: auto;
        left: auto;
        right: auto;
        z-index: auto;
        border-radius: 0 !important;
        box-shadow: none;
    }
}

/* Safe area for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer-modern, .pwa-install-banner {
        padding-bottom: calc(15px + env(safe-area-inset-bottom));
    }
}

/* Print styles for invoices */
@media print {
    .navbar, .footer-modern, .admin-sidebar, .btn { display: none !important; }
    body { padding-top: 0 !important; }
}

/* ===== BOOKING STEPS PROGRESS BAR ===== */
.booking-steps-bar {
    background: linear-gradient(135deg, #2c1e0f 0%, #4a2f0a 40%, #7a4f1a 100%);
    padding: 20px 0;
    margin-bottom: 28px;
    border-bottom: 2px solid rgba(212,175,55,0.3);
}

.booking-steps-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    min-width: 80px;
}

.booking-step .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    color: rgba(212,175,55,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(212,175,55,0.3);
}

.booking-step.active .step-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f0d060 100%);
    color: #3a2000;
    border-color: #d4af37;
    box-shadow: 0 0 16px rgba(212,175,55,0.5);
}

.booking-step.completed .step-icon {
    background: rgba(212,175,55,0.85);
    color: #3a2000;
    border-color: #d4af37;
}

.booking-step .step-label {
    font-size: 11px;
    color: rgba(212,175,55,0.45);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.booking-step.active .step-label {
    color: #f0d060;
    font-weight: 700;
}

.booking-step.completed .step-label {
    color: rgba(212,175,55,0.8);
    font-weight: 600;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: rgba(212,175,55,0.2);
    margin: 0 8px;
    margin-bottom: 26px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.step-connector.completed {
    background: linear-gradient(90deg, #d4af37, #f0d060);
}

@media (max-width: 576px) {
    .booking-step .step-label { font-size: 9px; }
    .booking-step .step-icon { width: 34px; height: 34px; font-size: 13px; }
    .booking-step { min-width: 60px; }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
}

.toast-notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-left: 4px solid #667eea;
    animation: toastSlideIn 0.4s ease;
    transition: all 0.3s ease;
}

.toast-notification.toast-success { border-left-color: #43a047; }
.toast-notification.toast-error { border-left-color: #e53935; }
.toast-notification.toast-warning { border-left-color: #ff9800; }
.toast-notification.toast-info { border-left-color: #1565c0; }

.toast-notification .toast-icon {
    font-size: 20px;
    margin-top: 2px;
}

.toast-notification.toast-success .toast-icon { color: #43a047; }
.toast-notification.toast-error .toast-icon { color: #e53935; }
.toast-notification.toast-warning .toast-icon { color: #ff9800; }
.toast-notification.toast-info .toast-icon { color: #1565c0; }

.toast-notification .toast-body { flex: 1; }

.toast-notification .toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.toast-notification .toast-message {
    font-size: 13px;
    color: #666;
}

.toast-notification .toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.toast-notification .toast-close:hover { color: #333; }

.toast-notification.toast-exit {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.compare-selector-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border: none;
    padding: 28px;
}
.compare-selector-card .form-label {
    font-weight: 600;
    color: #555;
    font-size: 0.85rem;
}
.compare-selector-card .form-select {
    border-radius: 12px;
    border: 1.5px solid #e8e0f3;
    padding: 10px 14px;
    transition: all 0.2s;
    font-size: 0.92rem;
}
.compare-selector-card .form-select:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 3px rgba(118,75,162,0.12);
}

/* Compare table */
.compare-table-wrap {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    border: none;
    margin-top: 2rem;
}
.compare-table-wrap .table { margin-bottom: 0; }
.compare-table-wrap .table thead {
    background: linear-gradient(135deg, #f8f5ff 0%, #f0e8ff 100%);
}
.compare-table-wrap .table thead th {
    border-bottom: 2px solid #e8dff5;
    padding: 20px 16px;
    vertical-align: top;
    font-weight: 600;
    color: #444;
}
.compare-table-wrap .table thead th img {
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.compare-table-wrap .table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-color: #f5f0ff;
}
.compare-table-wrap .table tbody tr:hover {
    background: rgba(118,75,162,0.03);
}
.compare-table-wrap .table tbody td:first-child {
    background: linear-gradient(90deg, #faf8ff 0%, #fff 100%);
    font-weight: 600;
    color: #444;
}
.compare-table-wrap .badge.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}
.compare-table-wrap .badge.bg-light {
    background: linear-gradient(135deg, #f8f5ff 0%, #f0e8ff 100%) !important;
    color: #5a3e8a !important;
    border: 1px solid #e8dff5 !important;
    font-weight: 500;
}
.compare-table-wrap .badge.bg-success {
    background: linear-gradient(135deg, #43a047, #2e7d32) !important;
}
.compare-table-wrap .badge.bg-danger {
    background: linear-gradient(135deg, #e53935, #c62828) !important;
}
.compare-table-wrap .badge.bg-warning {
    background: linear-gradient(135deg, #ff9800, #f57c00) !important;
    color: #fff !important;
}
/* ===== Universal Gradient Empty State ===== */
.availability-summary-bar {
    background: linear-gradient(135deg, #e8f8f0 0%, #d4f0e3 100%);
    border: 1px solid #a8dfc0;
    border-radius: 14px;
    padding: 14px 20px;
}
.availability-summary-bar .availability-summary-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(34,197,94,0.3);
}
.availability-summary-bar .text-success-dark {
    color: #15803d;
    font-size: 0.95rem;
}
.badge.badge-available-dates {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(34,197,94,0.4);
}
.btn-book-now {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(34,197,94,0.25);
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}
.btn-book-now:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34,197,94,0.35);
}

.gradient-empty-state {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 100%);
    border-radius: 20px;
}
.gradient-empty-state .empty-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(118,75,162,0.12) 0%, rgba(102,126,234,0.10) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gradient-empty-state .empty-icon-box i {
    font-size: 32px;
    color: #764ba2;
}
.gradient-empty-state h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.gradient-empty-state p {
    color: #999;
    font-size: 1rem;
    margin-bottom: 0;
}
.gradient-empty-state .empty-cta {
    margin-top: 20px;
}
.gradient-empty-state .empty-cta .btn {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(118,75,162,0.3);
}
.multi-content { margin-top: -40px; position: relative; z-index: 10; }

@media (max-width: 768px) {
    .compare-selector-card { padding: 20px; margin-left: 10px; margin-right: 10px; }
    .compare-table-wrap { border-radius: 14px; margin-left: 10px; margin-right: 10px; }
    .multi-content { margin-left: auto; margin-right: auto; }
}

/* =========================================================
   Final Theme Lock (keep phase-2 styles on top of legacy rules)
   ========================================================= */
.multi-content {
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
}

.multi-content-shell {
    padding-bottom: 60px;
}

body.page-multi-booking .frontend-breadcrumb-wrap.is-inline-flow {
    position: relative;
    z-index: 3;
}

body.page-multi-booking .multi-content-shell.frontend-inline-shell {
    padding-top: 80px !important;
}

.room-details-page .container {
    max-width: 1280px;
}

.room-details-page .room-title {
    font-size: clamp(1.6rem, 3.4vw, 2.35rem);
    line-height: 1.18;
}

.room-details-page .main-room-img {
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 47, 58, 0.16);
}

.room-details-page .highlight-box,
.room-details-page .amenity-card {
    border: 1px solid #e3ebef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(10, 33, 44, 0.06);
}

.room-details-page h4.fw-bold {
    color: #273c48;
}

.room-details-page .bk-date-bar,
.multi-wrap .bk-date-bar {
    border: 1px solid #dce8ee;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfeff 0%, #f4fbfe 100%);
    padding: 8px;
    margin-bottom: 10px;
}

.room-details-page .bk-date-cell label,
.multi-wrap .bk-date-cell label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5f7a85;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.room-details-page .bk-stay-range,
.multi-wrap .bk-stay-range {
    border: 1px solid #cfe1e8;
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
}

.room-details-page .bk-guests-row,
.multi-wrap .bk-guests-row {
    border: 1px solid #dfebf0;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 10px;
}

.room-details-page .bk-summary-row,
.multi-wrap .bk-summary-row {
    color: #3c5460;
}

.room-details-page .bk-summary-total,
.multi-wrap .bk-summary-total {
    border-top: 1px solid #ead8ab;
    margin-top: 8px;
    padding-top: 8px;
}

.room-details-page .bk-pay-now-row {
    border-top: 2px solid #d8e6ec;
    padding-top: 0.5rem;
}

.room-details-page .bk-pay-now-price,
.multi-wrap #multiPayNow {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f6d87;
}

.multi-wrap #multiSummary {
    border: 1px solid #e2ecef;
    border-radius: 10px;
    padding: 12px;
    background: #fcfeff;
}

.multi-wrap #multiSummary .summary-line {
    margin: 0;
}

.multi-wrap .slot-card {
    border-color: #dce7ed;
    border-radius: 12px;
    background: #fbfdff;
}

.multi-wrap .slot-card .room-select,
.multi-wrap .slot-card .guest-select {
    border-color: #d2e1e8;
    border-radius: 10px;
}

.multi-wrap .room-slot-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #dbe7ef;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.multi-wrap .room-slot-preview-image {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(15, 55, 95, 0.12);
}

.multi-wrap .room-slot-preview-meta {
    flex: 1 1 50%;
    min-width: 0;
}

.multi-wrap .room-slot-preview > .room-slot-preview-image {
    flex: 1 1 50%;
}

.multi-wrap .room-slot-preview-title {
    color: #0f355f;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.multi-wrap .room-slot-preview-subtitle {
    margin-top: 4px;
    color: #5f7289;
    font-size: 0.92rem;
}

.multi-wrap .room-slot-preview-facts,
.multi-wrap .room-slot-preview-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.multi-wrap .room-slot-preview-facts span,
.multi-wrap .room-slot-preview-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border: 1px solid #dce6f0;
    border-radius: 999px;
    background: #fff;
    color: #49627b;
    font-size: 0.87rem;
    line-height: 1.2;
}

.multi-wrap .room-slot-preview-facts i {
    color: #6d7f92;
}

.multi-wrap .room-slot-preview-amenities span {
    background: #f4f8fb;
    color: #31536f;
}

.multi-wrap .room-slot-preview-description {
    margin-top: 12px;
    color: #44586d;
    line-height: 1.55;
    font-size: 0.93rem;
}

.multi-wrap .btn-outline-primary {
    border-color: #1e8fae;
    color: #1e8fae;
}

.multi-wrap .btn-outline-primary:hover {
    background: #1e8fae;
    border-color: #1e8fae;
    color: #fff;
}

@media (max-width: 991.98px) {
    .multi-content-shell {
        padding-bottom: 32px;
    }

    .room-details-page .container {
        margin-top: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .multi-content-shell {
        padding-bottom: 22px;
    }

    .multi-wrap .room-slot-preview {
        flex-direction: column;
        align-items: flex-start;
    }

    .multi-wrap .room-slot-preview-image {
        width: 100%;
        height: 180px;
    }

    .multi-wrap .room-slot-preview-facts span,
    .multi-wrap .room-slot-preview-amenities span {
        font-size: 0.82rem;
        padding: 6px 10px;
    }

    .room-details-page .container,
    .multi-wrap {
        padding-left: 12px;
        padding-right: 12px;
        overflow-x: hidden;
    }

    .room-details-page .room-title {
        font-size: 1.45rem;
    }

    .room-details-page .bk-date-bar,
    .multi-wrap .bk-date-bar {
        padding: 6px;
    }

    .room-details-page .bk-guests-row,
    .multi-wrap .bk-guests-row {
        margin-bottom: 8px;
    }
}

/* =========================================================
   Final Micro-Tune (Typography + Summary + CTA)
   ========================================================= */
.hero-section .hero-content {
    max-width: 980px;
    padding-left: 16px;
    padding-right: 16px;
}

.hero-section .text-uppercase.text-warning {
    color: #f8df9f !important;
    letter-spacing: 0.24em !important;
    font-size: 0.76rem;
}

.home-reference .hero-section .text-uppercase.text-warning {
    font-size: 0.98rem;
    line-height: 1.35;
}

.hero-title {
    text-wrap: balance;
    margin-bottom: 0.65rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.65vw, 1.22rem);
    line-height: 1.72;
    margin-bottom: 1.7rem;
}

.hero-section .btn-gold,
.cta-section .btn-gold {
    min-height: 48px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.room-booking-sidebar-wrapper {
    position: sticky;
    top: 132px;
    z-index: 20;
}

.room-details-page .booking-section,
.multi-wrap .booking-section {
    align-self: flex-start;
}

.room-details-page .bk-summary,
.multi-wrap .bk-summary {
    padding: 14px 14px 12px !important;
}

.room-details-page .bk-summary-row,
.multi-wrap .bk-summary-row {
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.room-details-page .bk-summary-row > span:first-child,
.multi-wrap .bk-summary-row > span:first-child {
    color: #5a6f79;
}

.room-details-page .bk-summary-row > span:last-child,
.multi-wrap .bk-summary-row > span:last-child {
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum';
    text-align: right;
}

.room-details-page .bk-summary-total,
.multi-wrap .bk-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.98rem;
}

.room-details-page .bk-total-val,
.multi-wrap .bk-total-val {
    font-size: 1.14rem;
    font-weight: 800;
    color: #0f6d87 !important;
}

.room-details-page .bk-payment-type-toggle .d-flex,
.multi-wrap .bk-payment-type-toggle .d-flex {
    gap: 8px;
}

.room-details-page .bk-radio-card,
.multi-wrap .bk-radio-card {
    min-height: 62px;
    border-radius: 10px;
}

.room-details-page .btn-book-now,
.multi-wrap .btn-book-now {
    min-height: 50px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    letter-spacing: 0.015em;
}

.multi-wrap #multiSubmitBtn:disabled {
    opacity: 0.6;
    box-shadow: none !important;
}

@media (max-width: 991.98px) {
    .room-booking-sidebar-wrapper {
        position: static;
        top: auto;
    }

    .hero-section .hero-content {
        max-width: 760px;
    }

    .hero-subtitle {
        line-height: 1.56;
    }
}

@media (max-width: 575.98px) {
    .hero-section .hero-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section .text-uppercase.text-warning {
        letter-spacing: 0.18em !important;
        font-size: 0.7rem;
    }

    .home-reference .hero-section .text-uppercase.text-warning {
        font-size: 0.82rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .room-details-page .bk-summary,
    .multi-wrap .bk-summary {
        padding: 12px 10px 10px !important;
    }

    .room-details-page .bk-summary-row,
    .multi-wrap .bk-summary-row {
        font-size: 0.82rem;
    }

    .room-details-page .btn-book-now,
    .multi-wrap .btn-book-now {
        min-height: 46px;
        font-size: 0.94rem;
    }
}

/* =========================================================
   Final Pixel Lock (1: Header-Hero spacing, 2: Badge/Icon polish, 3: Heading contrast)
   ========================================================= */
body.frontend-hotel-theme {
    padding-top: 116px !important;
}

.site-top-strip {
    min-height: 32px !important;
}

.site-top-strip .container {
    min-height: 32px !important;
}

.main-navbar {
    top: 32px !important;
    min-height: 82px;
}

.hero-section {
    margin-top: -8px;
    padding-top: 16px;
}

.room-booking-sidebar-wrapper {
    top: 124px;
}

.room-details-page .section-title,
.frontend-hotel-theme .section-title,
.room-details-page h4.fw-bold,
.multi-wrap .card-section-title,
.header-title {
    color: #203642 !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}

.room-details-page h4.fw-bold i,
.multi-wrap .card-section-title i {
    color: #0f8eac !important;
}

.room-details-page .review-meta-badge {
    border: 1px solid #e9d6a2;
    background: linear-gradient(180deg, #fffaf0 0%, #fff4de 100%);
    color: #8d6420;
    font-weight: 700;
}

.room-details-page .bk-summary-row i,
.multi-wrap .bk-summary-row i {
    color: #1a8eae;
}

.room-details-page .bk-summary-row.text-success,
.multi-wrap .bk-summary-row.text-success {
    color: #0c7b52 !important;
}

.room-details-page .bank-icon,
.multi-wrap .bank-icon,
.room-details-page .cc-icon,
.multi-wrap .cc-icon,
.room-details-page .pp-icon,
.multi-wrap .pp-icon {
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.room-details-page .bank-subtitle,
.multi-wrap .bank-subtitle,
.room-details-page .cc-subtitle,
.multi-wrap .cc-subtitle,
.room-details-page .pp-header-subtitle,
.multi-wrap .pp-header-subtitle {
    opacity: 0.84;
}

.room-details-page .bk-total-val,
.multi-wrap .bk-total-val,
.room-details-page .bk-pay-now-price,
.multi-wrap #multiPayNow {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media (max-width: 991.98px) {
    body.frontend-hotel-theme {
        padding-top: 76px !important;
    }

    .main-navbar {
        top: 0 !important;
        min-height: 74px;
        overflow-x: hidden;
        max-width: 100vw;
    }

    .main-navbar > .container {
        max-width: 100%;
        overflow: hidden;
        flex-wrap: nowrap;
    }

    .navbar-brand {
        min-width: 0;
        flex-shrink: 1;
        overflow: hidden;
    }

    .navbar-brand span {
        display: inline-block;
        max-width: 38vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }

    .navbar-collapse {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-section {
        margin-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 575.98px) {
    .room-details-page .section-title,
    .frontend-hotel-theme .section-title,
    .room-details-page h4.fw-bold,
    .multi-wrap .card-section-title,
    .header-title {
        letter-spacing: 0.01em;
    }
}

/* =========================================================
   Home Pixel Lock + Tiny Mobile (390/360)
   ========================================================= */
.hero-section .hero-content {
    padding-bottom: 10px;
}

.floating-box {
    margin-top: -64px;
    border: 1px solid #e7eef2;
    box-shadow: 0 10px 32px rgba(11, 36, 46, 0.11);
}

.floating-box .feature-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.floating-box .feature-item h6 {
    color: #2a3d47;
    font-size: 0.94rem;
    margin-top: 3px;
}

.floating-box .icon-circle {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
    background: linear-gradient(180deg, #f2fbfe 0%, #e7f6fb 100%);
    color: #118cab;
}

.section-title-box {
    margin-top: 4.25rem;
    margin-bottom: 2.35rem;
}

.frontend-hotel-theme .section-title {
    font-size: clamp(1.9rem, 3.1vw, 2.55rem);
    color: #223844 !important;
}

.frontend-hotel-theme .section-title::after {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, #1c94b1 0%, #8dc8d8 100%);
}

.room-card {
    border: 1px solid #e5edf1;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(12, 33, 42, 0.08);
}

.room-img-box {
    height: 238px;
}

.price-badge {
    border: 1px solid #e7d5aa;
    background: linear-gradient(180deg, #fffdfa 0%, #fff7e9 100%);
    color: #8e6a28;
    font-weight: 700;
}

.room-card .card-body {
    padding: 1.1rem !important;
}

.stats-section {
    padding-top: 66px;
    padding-bottom: 66px;
}

.cta-section {
    border: 1px solid rgba(255, 255, 255, 0.24);
}

@media (max-width: 767.98px) {
    .floating-box {
        margin-top: -34px;
        padding: 14px 8px;
    }

    .floating-box .feature-item {
        padding-left: 4px;
        padding-right: 4px;
    }

    .floating-box .feature-item h6 {
        font-size: 0.82rem;
    }

    .floating-box .icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .room-img-box {
        height: 200px;
    }

    .price-badge {
        font-size: 0.8rem;
        padding: 5px 11px;
    }

    .stats-section .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 390px) {
    .navbar-brand > .navbar-brand-text {
        max-width: 180px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-title {
        font-size: 1.48rem !important;
        line-height: 1.24;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.45;
        margin-bottom: 1.25rem;
    }

    .hero-section .btn-gold {
        min-height: 42px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .section-title-box {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .frontend-hotel-theme .section-title {
        font-size: 1.48rem;
    }

    .room-card .card-body {
        padding: 0.92rem !important;
    }

    .room-card h4 {
        font-size: 1.03rem;
    }

    .stats-section {
        padding-top: 44px;
        padding-bottom: 44px;
        margin-top: 48px;
    }
}

@media (max-width: 360px) {
    body.frontend-hotel-theme {
        padding-top: 72px !important;
    }

    .navbar-brand > .navbar-brand-text {
        max-width: 150px;
    }

    .hero-section {
        min-height: 330px;
    }

    .hero-title {
        font-size: 1.34rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .floating-box .feature-item h6 {
        font-size: 0.76rem;
    }

    .room-img-box {
        height: 186px;
    }

    .price-badge {
        font-size: 0.74rem;
        padding: 4px 9px;
    }
}

/* =========================================================
   Home Reference Layout (Grand-style)
   ========================================================= */
body.home-reference {
    background: #f5f5f5 !important;
    padding-top: 0 !important;
    --elev-sm: 0 8px 20px rgba(16, 36, 47, 0.10);
    --elev-md: 0 16px 34px rgba(16, 36, 47, 0.16);
    --elev-lg: 0 28px 60px rgba(16, 36, 47, 0.22);
}

.home-reference .site-top-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 34px !important;
    background: linear-gradient(180deg, rgba(8, 26, 38, 0.68) 0%, rgba(8, 26, 38, 0.42) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-reference .site-top-strip .container {
    min-height: 34px !important;
}

.home-reference .main-navbar {
    top: 34px !important;
    min-height: 76px;
    background: linear-gradient(180deg, rgba(11, 36, 50, 0.66) 0%, rgba(11, 36, 50, 0.45) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    backdrop-filter: blur(3px);
}

.home-reference {
    --home-section-space-top: 128px;
    --home-section-space-bottom: 144px;
    --home-section-space-mobile-top: 68px;
    --home-section-space-mobile-bottom: 76px;
}

.home-reference .navbar-colorful .nav-link {
    color: rgba(241, 248, 252, 0.94) !important;
}

.home-reference .navbar-brand,
.home-reference .navbar-brand > .navbar-brand-text {
    color: #f4f8fb !important;
}

.footer-brand-text {
    color: #f4f8fb;
}

.home-reference .hero-section {
    min-height: calc(100vh - 40px);
    min-height: calc(100dvh - 40px);
    padding-top: 136px;
    padding-bottom: 92px;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.home-reference .hero-section::before {
    background-position: center calc(50% + var(--hero-parallax-y, 0px));
    will-change: transform, background-position;
}

.home-intro-more[hidden] {
    display: none !important;
}

.home-trust-strip {
    position: relative;
    z-index: 3;
    margin-top: 28px;
    padding: 0 0 28px;
}

.home-trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(192, 216, 226, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 18px 20px;
    backdrop-filter: blur(6px);
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.home-trust-card i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #23aac4 0%, #157f99 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.home-trust-card strong {
    display: block;
    color: #28414d;
    font-size: 0.92rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.home-trust-card span {
    display: block;
    color: #60727d;
    font-size: 0.77rem;
    margin-top: 2px;
}

.home-reference .home-hero-content {
    max-width: 760px;
    text-align: center;
    padding-top: 32px;
}

.home-reference .hero-title {
    font-size: clamp(2.15rem, 4.8vw, 3.6rem);
    margin-bottom: 0.55rem;
}

.home-reference .hero-subtitle {
    font-size: 1.04rem;
    opacity: 0.94;
}

.home-hero-bookbar-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    padding: 0 24px;
}

.home-hero-bookbar {
    display: grid;
    grid-template-columns: 210px 1fr 1fr 230px;
    background: rgba(10, 22, 30, 0.88);
    backdrop-filter: blur(12px);
    min-height: 92px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 0;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 1200px;
    align-items: stretch;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30);
    overflow: hidden;
}

.hb-label-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hb-label-text {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.hb-date-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}

.hb-date-cell:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hb-date-label {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 4px;
    font-weight: 400;
    display: block;
}

.hb-date-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hb-date-num {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.01em;
}

.hb-date-suffix {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    font-weight: 400;
}

.hb-date-suffix i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.50);
}

.hb-date-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    border: none;
}

.hb-submit-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #3ab5cc;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    padding: 16px 20px;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.hb-submit-cell:hover {
    background: #28a0b8;
}

.hb-submit-cell::after {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 48%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.hb-submit-cell:hover::after {
    left: 130%;
}

.hb-submit-main {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    line-height: 1;
}

.hb-submit-sub {
    font-size: 0.72rem;
    opacity: 0.82;
    letter-spacing: 0.04em;
}

.home-intro-section {
    background: #ffffff;
    padding: 80px 0 90px;
    position: relative;
}

.home-intro-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -42px;
    height: 42px;
    background: #f4f4f4;
    clip-path: ellipse(68% 100% at 50% 0%);
    display: none;
}

.home-intro-title {
    color: #9a8a58;
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    letter-spacing: 0.045em;
    line-height: 1.18;
    margin-bottom: 9px;
    text-wrap: balance;
}

.home-intro-subtitle {
    color: #707a80;
    text-transform: uppercase;
    font-size: 0.83rem;
    letter-spacing: 0.11em;
    margin-bottom: 20px;
    font-weight: 500;
}

.home-intro-text {
    color: #5f666b;
    line-height: 1.85;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 4px;
}

.home-intro-highlight-label {
    color: #9a8a58;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 14px 0 8px;
}

.home-intro-list {
    padding-left: 18px;
    margin: 0 0 8px;
    color: #5f666b;
    font-size: 0.92rem;
    line-height: 1.9;
}

.home-intro-list li {
    margin-bottom: 4px;
}

.home-intro-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    color: #9a8a58;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.home-intro-readmore:hover {
    color: #7a6a3e;
}

.home-intro-readmore .readmore-icon {
    font-size: 0.72rem;
    transition: transform 0.3s;
}

.home-intro-badge {
    display: none;
}

.home-intro-features {
    border-top: 1px solid #ece8df;
    padding-top: 18px;
}

.home-intro-feat {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #5f666b;
    font-size: 0.88rem;
    font-weight: 500;
}

.home-intro-feat i {
    color: #9a8a58;
    font-size: 1rem;
    flex-shrink: 0;
}

.home-intro-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid #e8e2d0;
    padding: 44px 56px;
    text-align: center;
    min-width: 260px;
    box-shadow: 0 8px 32px rgba(154, 138, 88, 0.10);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.home-intro-logo-img {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
    display: block;
}

.home-intro-logo-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #21a8c3 0%, #1987a5 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 3.2rem;
}

.home-intro-logo-label {
    color: #9a8a58;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.3;
}

.home-intro-logo-stars {
    color: #c9a940;
    font-size: 1.25rem;
    letter-spacing: 0.14em;
}

.home-room-band {
    background: linear-gradient(180deg, #f4f4f4 0%, #f4f4f4 52%, #2da4c0 52%, #2da4c0 100%);
    padding: var(--home-section-space-top) 0 var(--home-section-space-bottom);
    font-size: 1em;
    position: relative;
}

.home-room-band::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -44px;
    height: 44px;
    background: #f4f4f4;
    clip-path: ellipse(72% 100% at 50% 0%);
}

.home-band-head {
    margin-bottom: 56px;
}

.home-room-band .home-band-head {
    position: relative;
    justify-content: center !important;
    text-align: center;
}

.home-room-band .home-band-head > div {
    width: 100%;
    text-align: center;
}

.home-room-band .home-band-link {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
}

.home-amenities-section .home-band-head {
    justify-content: center !important;
    text-align: center;
}

.home-amenities-section .home-band-head > div {
    width: 100%;
    text-align: center;
}

.home-band-title {
    color: #9a8a58;
    font-size: clamp(1.45rem, 2.7vw, 2rem);
    margin: 0;
}

.home-band-subtitle {
    margin: 4px 0 0;
    color: #859096;
    font-size: 0.9rem;
}

.home-band-link {
    border: 1px solid #cfd6da;
    border-radius: 4px;
    padding: 7px 14px;
    text-decoration: none;
    color: #6c757b;
    font-size: 0.84rem;
    background: #f8fafb;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
}

.home-band-link:hover {
    color: #1d96b0;
    border-color: #7fc9d9;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(29, 150, 176, 0.18);
}

.home-band-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 54%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
    transition: left 0.55s ease;
    transform: skewX(-20deg);
}

.home-band-link:hover::after {
    left: 130%;
}

.home-room-band .row {
    overflow: visible;
}

.home-room-band [class*="col-"] {
    padding-bottom: 12px;
}

.home-room-card {
    background: #fff;
    border: 1px solid #e4eaee;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.22,0.68,0,1.2),
                box-shadow 0.38s ease;
    cursor: pointer;
    position: relative;
    will-change: transform;
    border-radius: 16px;
}

.home-room-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.home-room-card:hover {
    transform: translateY(-8px) scale(1.08) !important;
    box-shadow: var(--elev-lg), 0 10px 28px rgba(46, 170, 197, 0.20);
    z-index: 6;
}

.home-room-card:hover::after {
    border-color: rgba(46, 170, 197, 0.45);
}

.home-room-thumb-link {
    display: block;
    overflow: hidden;
}

.home-room-thumb {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.home-room-card:hover .home-room-thumb {
    transform: scale(1.03);
}

.home-room-meta {
    padding: 22px 20px 18px;
}

.home-room-meta h4 {
    font-size: 1.18rem;
    color: #9a8856;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.home-room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #616b73;
    font-size: 0.86rem;
}

.home-room-features i {
    margin-right: 4px;
}

.home-room-rating-wrap {
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid #edf2f5;
    background: #fbfdff;
    border-radius: 10px;
}

.home-room-rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.home-room-rating-stars .fa-star {
    color: #c9d3da;
    font-size: 0.82rem;
}

.home-room-rating-stars .fa-star.is-active {
    color: #e0b84d;
}

.home-room-rating-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #62717a;
    font-size: 0.78rem;
}

.home-room-rating-score {
    color: #1d8dab;
    font-size: 0.95rem;
    font-weight: 700;
}

.home-room-rating-count {
    color: #647680;
}

.home-room-bottom {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #eef2f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.home-room-bottom strong {
    color: #1788a6;
    font-size: 1.32rem;
    font-weight: 800;
}

.home-room-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #2eaac5 0%, #1d96b0 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 10px 20px;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.home-room-btn:hover {
    background: #1d96b0;
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(46, 170, 197, 0.35);
}

.home-room-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 56%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transition: left 0.55s ease;
    transform: skewX(-18deg);
}

.home-room-btn:hover::after {
    left: 130%;
}

.home-facility-grid-wrap {
    background: #f4f4f4;
    padding: var(--home-section-space-top) 0 calc(var(--home-section-space-bottom) - 4px);
    position: relative;
}

.home-facility-grid-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -44px;
    height: 44px;
    background: linear-gradient(180deg, #0b202e 0%, #123348 100%);
    clip-path: ellipse(72% 100% at 50% 0%);
}

.home-facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-facility-item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 180px;
    box-shadow: var(--elev-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 14px;
}

.home-facility-item.is-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 374px;
}

.home-facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.home-facility-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--elev-md);
}

.home-facility-item:hover img {
    transform: scale(1.05);
}

.home-facility-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(46, 170, 197, 0.92);
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 8px;
}

.home-amenities-section {
    background: linear-gradient(180deg, #0b202e 0%, #123348 100%);
    padding: calc(var(--home-section-space-top) - 4px) 0 calc(var(--home-section-space-bottom) - 4px);
}

.home-amenities-section .home-band-title {
    color: #e2c670;
}

.home-amenities-section .home-band-subtitle {
    color: #a8c3cf;
}

.home-amenity-card {
    height: 100%;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border-radius: 16px;
    padding: 20px 12px;
}

.home-amenity-card i {
    font-size: 1.6rem;
    color: #78d8ec;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(120, 216, 236, 0.12);
}

.home-amenity-card span {
    font-size: 0.86rem;
    color: #e6f2f7;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
}

.home-amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(120, 216, 236, 0.4);
}

.home-prefooter-section {
    background:
        radial-gradient(circle at top, rgba(210, 168, 82, 0.12), transparent 34%),
        linear-gradient(180deg, #f5f4f0 0%, #f3f2ee 100%);
    padding: 52px 0 calc(var(--home-section-space-bottom) + 16px);
    position: relative;
}

.home-prefooter-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: linear-gradient(180deg, #24252b 0%, #181a22 100%);
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(8, 18, 28, 0.16);
}

.home-prefooter-stat {
    padding: 30px 22px 28px;
    text-align: center;
    position: relative;
}

.home-prefooter-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    right: 0;
    width: 1px;
    height: calc(100% - 44px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(226, 183, 94, 0.35), rgba(255, 255, 255, 0.04));
}

.home-prefooter-stat strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #d7a34f;
    margin-bottom: 10px;
    font-weight: 800;
}

.home-prefooter-stat span {
    display: block;
    color: rgba(241, 243, 248, 0.84);
    font-size: 0.92rem;
    line-height: 1.65;
}

.home-prefooter-cta {
    position: relative;
    min-height: 620px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(18, 31, 42, 0.18);
    isolation: isolate;
    background: linear-gradient(135deg, #0f3244 0%, #164e63 55%, #1b6d7e 100%);
}

.home-prefooter-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 21, 29, 0.05) 0%, rgba(10, 21, 29, 0.48) 48%, rgba(10, 21, 29, 0.72) 100%);
    z-index: -1;
}

.home-prefooter-cta-inner {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    color: #fff;
}

.home-prefooter-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f7e7c0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.home-prefooter-cta h3 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.18;
    margin: 0;
    max-width: 900px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.home-prefooter-cta p {
    margin: 14px auto 0;
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(249, 250, 252, 0.92);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.home-prefooter-btn {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dbb15f 0%, #c8943d 100%);
    box-shadow: 0 18px 42px rgba(191, 137, 49, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-prefooter-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(191, 137, 49, 0.42);
    filter: brightness(1.03);
}

.home-reference .footer-modern {
    background: #1a1a2e;
    padding-top: 72px;
    margin-top: 0;
}

.home-reference .footer-bottom {
    background: #121222;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

@media (max-width: 991.98px) {
    .home-reference {
        padding-top: 0 !important;
    }

    .home-reference .main-navbar {
        top: 0 !important;
        min-height: 70px;
        background: linear-gradient(180deg, rgba(11, 36, 50, 0.78) 0%, rgba(11, 36, 50, 0.56) 100%) !important;
    }

    .home-reference .hero-section {
        min-height: 520px;
        padding-top: 104px;
    }

    .home-trust-strip {
        margin-top: -18px;
    }

    .home-hero-bookbar {
        grid-template-columns: 1fr 1fr;
    }

    .hb-label-cell {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        justify-content: flex-start;
        padding: 12px 18px;
        min-height: unset;
    }

    .hb-submit-cell {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 10px;
        min-height: 54px;
    }

    .home-facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-intro-section {
        padding: 118px 0 118px;
    }

    .home-room-band,
    .home-facility-grid-wrap,
    .home-amenities-section {
        padding-top: 96px;
        padding-bottom: 108px;
    }

    .home-prefooter-section {
        padding-top: 38px;
        padding-bottom: 112px;
    }

    .home-band-head {
        margin-bottom: 46px;
    }

    .home-room-band .home-band-link {
        position: static;
        transform: none;
        margin: 10px auto 0;
    }

    .home-facility-item.is-large {
        grid-column: span 2;
        min-height: 280px;
    }

    .home-prefooter-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-prefooter-stat:nth-child(2)::after {
        display: none;
    }

    .home-prefooter-cta,
    .home-prefooter-cta-inner {
        min-height: 520px;
    }
}

@media (max-width: 575.98px) {
    .home-reference .hero-section {
        min-height: 460px;
        padding-top: 90px;
    }

    .home-reference .home-hero-content {
        padding-top: 10px;
    }

    .home-hero-bookbar-wrap {
        bottom: 0;
    }

    .home-hero-bookbar {
        grid-template-columns: 1fr;
    }

    .hb-date-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hb-date-num {
        font-size: 1.9rem;
    }

    .home-intro-section,
    .home-room-band,
    .home-facility-grid-wrap,
    .home-amenities-section,
    .home-prefooter-section {
        padding-top: var(--home-section-space-mobile-top);
        padding-bottom: var(--home-section-space-mobile-bottom);
    }

    .home-trust-strip {
        padding-bottom: 30px;
    }

    .home-band-head {
        margin-bottom: 36px;
    }

    .home-room-band .home-band-link {
        margin-top: 6px;
    }

    .home-facility-grid {
        grid-template-columns: 1fr;
    }

    .home-facility-item.is-large {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .home-amenity-card {
        min-height: 96px;
    }

    .home-prefooter-stats {
        grid-template-columns: 1fr;
        border-radius: 24px 24px 0 0;
    }

    .home-prefooter-stat {
        padding: 24px 18px;
    }

    .home-prefooter-stat::after {
        display: none;
    }

    .home-prefooter-cta {
        border-radius: 0 0 24px 24px;
    }

    .home-prefooter-cta,
    .home-prefooter-cta-inner {
        min-height: 440px;
    }

    .home-prefooter-cta-inner {
        padding: 56px 22px;
    }

    .home-prefooter-cta p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .home-prefooter-btn {
        min-width: 100%;
        min-height: 54px;
    }
}

/* =========================================================
   Site Premium Reference Theme - reuse homepage language on all frontend pages
   ========================================================= */
body.site-premium-reference {
    --surface-base: #f4f7f8;
    --surface-panel: #ffffff;
    --surface-soft: #f8fbfc;
    --stroke-soft: #dbe7ed;
    --text-strong: #243944;
    --text-muted-soft: #6d7d86;
    --brand-teal: #23aac4;
    --brand-teal-deep: #127a93;
    --brand-gold: #b6934d;
    --premium-shadow-sm: 0 10px 22px rgba(14, 35, 45, 0.08);
    --premium-shadow-md: 0 18px 38px rgba(14, 35, 45, 0.14);
    --premium-shadow-lg: 0 26px 56px rgba(14, 35, 45, 0.18);
}

body.site-premium-reference:not(.home-reference) {
    background: linear-gradient(180deg, #eef7fa 0%, #f7f9fa 220px, #f5f7f8 220px, #f5f7f8 100%) !important;
}

body.site-premium-reference:not(.home-reference) .main-navbar {
    background: linear-gradient(180deg, rgba(10, 34, 46, 0.96) 0%, rgba(14, 48, 62, 0.92) 100%) !important;
    box-shadow: 0 10px 30px rgba(10, 31, 41, 0.24);
    backdrop-filter: blur(6px);
}

body.site-premium-reference:not(.home-reference) .site-top-strip {
    background: linear-gradient(90deg, #0d3545 0%, #125166 52%, #1a6980 100%);
}

body.site-premium-reference:not(.home-reference) .page-header,
body.site-premium-reference:not(.home-reference) .page-header-small {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 31, 43, 0.82) 0%, rgba(17, 63, 81, 0.80) 100%),
        url('/uploads/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    border: none;
    border-radius: 0 0 50% 50% / 0 0 48px 48px;
    box-shadow: var(--premium-shadow-md);
    margin-top: -80px;
    padding-top: 80px;
}

body.site-premium-reference:not(.home-reference) .booking-steps-bar {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}

body.site-premium-reference:not(.home-reference) .page-header::after,
body.site-premium-reference:not(.home-reference) .page-header-small::after {
    display: none;
}

body.site-premium-reference:not(.home-reference) .header-title {
    color: #f6fbfd !important;
    letter-spacing: 0.03em;
    line-height: 1.14;
    text-wrap: balance;
}

body.site-premium-reference:not(.home-reference) .page-header .lead,
body.site-premium-reference:not(.home-reference) .page-header-small p {
    color: rgba(235, 247, 251, 0.86) !important;
    font-weight: 400;
}

body.site-premium-reference:not(.home-reference) .filter-bar,
body.site-premium-reference:not(.home-reference) .content-card,
body.site-premium-reference:not(.home-reference) .gradient-empty-state,
body.site-premium-reference:not(.home-reference) .accordion-item,
body.site-premium-reference:not(.home-reference) .card.border-0.shadow-sm,
body.site-premium-reference:not(.home-reference) .card.border-0.shadow-sm.rounded-4,
body.site-premium-reference:not(.home-reference) .card.border-0.shadow-sm.h-100,
body.site-premium-reference:not(.home-reference) .modal-content,
body.site-premium-reference:not(.home-reference) .dropdown-menu-colorful {
    background: var(--surface-panel);
    border: 1px solid var(--stroke-soft) !important;
    box-shadow: var(--premium-shadow-sm) !important;
    border-radius: 18px !important;
}

body.site-premium-reference:not(.home-reference) .content-card:hover,
body.site-premium-reference:not(.home-reference) .card.border-0.shadow-sm:hover,
body.site-premium-reference:not(.home-reference) .accordion-item:hover {
    box-shadow: var(--premium-shadow-md) !important;
}

body.site-premium-reference:not(.home-reference) .inner-page-shell {
    position: relative;
}

body.site-premium-reference:not(.home-reference) .inner-page-shell > .row > [class*='col-'] > h1,
body.site-premium-reference:not(.home-reference) .inner-page-shell > h2,
body.site-premium-reference:not(.home-reference) .inner-page-shell h1.fw-bold,
body.site-premium-reference:not(.home-reference) .inner-page-shell h2.fw-bold {
    color: var(--text-strong);
    letter-spacing: 0.02em;
    line-height: 1.18;
}

body.site-premium-reference:not(.home-reference) .text-muted,
body.site-premium-reference:not(.home-reference) .small.text-muted,
body.site-premium-reference:not(.home-reference) p.text-muted {
    color: var(--text-muted-soft) !important;
}

body.site-premium-reference:not(.home-reference) .form-control,
body.site-premium-reference:not(.home-reference) .form-select,
body.site-premium-reference:not(.home-reference) textarea.form-control {
    border: 1px solid #d9e6ec;
    background: #fbfdfe;
    border-radius: 12px;
    box-shadow: none;
}

body.site-premium-reference:not(.home-reference) .form-control:focus,
body.site-premium-reference:not(.home-reference) .form-select:focus,
body.site-premium-reference:not(.home-reference) textarea.form-control:focus {
    border-color: #77cadb;
    box-shadow: 0 0 0 4px rgba(35, 170, 196, 0.14);
    background: #fff;
}

body.site-premium-reference:not(.home-reference) .input-group-text {
    border-color: #d9e6ec;
    background: #eff7fa !important;
    color: var(--brand-teal-deep) !important;
}

body.site-premium-reference:not(.home-reference) .btn-gradient,
body.site-premium-reference:not(.home-reference) .btn-gold {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(18, 122, 147, 0.24);
    position: relative;
    overflow: hidden;
}

body.site-premium-reference:not(.home-reference) .btn-gradient::after,
body.site-premium-reference:not(.home-reference) .btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 54%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.36), rgba(255,255,255,0));
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}

body.site-premium-reference:not(.home-reference) .btn-gradient:hover::after,
body.site-premium-reference:not(.home-reference) .btn-gold:hover::after {
    left: 130%;
}

body.site-premium-reference:not(.home-reference) .btn-gradient:hover,
body.site-premium-reference:not(.home-reference) .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(18, 122, 147, 0.28);
}

body.site-premium-reference:not(.home-reference) .btn-outline-secondary,
body.site-premium-reference:not(.home-reference) .btn-outline-danger,
body.site-premium-reference:not(.home-reference) .btn-outline-primary {
    border-radius: 12px;
}

body.site-premium-reference:not(.home-reference) .table,
body.site-premium-reference:not(.home-reference) .table-bordered {
    border-color: #dbe7ed;
}

body.site-premium-reference:not(.home-reference) .table thead,
body.site-premium-reference:not(.home-reference) .table-light {
    background: #eef7fa !important;
    color: var(--text-strong);
}

body.site-premium-reference:not(.home-reference) .accordion-button {
    background: linear-gradient(180deg, #fbfdfe 0%, #f4fafc 100%);
    color: var(--text-strong);
    font-weight: 600;
    box-shadow: none !important;
}

body.site-premium-reference:not(.home-reference) .accordion-button:not(.collapsed) {
    background: linear-gradient(180deg, #eef8fb 0%, #e7f5f9 100%);
    color: #1d6f86;
}

body.site-premium-reference:not(.home-reference) .accordion-body {
    color: #596b74;
    line-height: 1.8;
}

body.site-premium-reference:not(.home-reference) .alert {
    border-radius: 14px;
    border: 1px solid rgba(35, 170, 196, 0.15);
}

body.site-premium-reference:not(.home-reference) .badge.bg-primary,
body.site-premium-reference:not(.home-reference) .badge.bg-info {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%) !important;
}

body.site-premium-reference:not(.home-reference) .wishlist-remove {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.site-premium-reference:not(.home-reference) .wishlist-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(194, 71, 98, 0.16);
}

@media (max-width: 991.98px) {
    body.site-premium-reference:not(.home-reference) .page-header,
    body.site-premium-reference:not(.home-reference) .page-header-small {
        border-radius: 0 0 50% 50% / 0 0 32px 32px;
    }
}

.inner-page-shell {
    margin-top: 80px;
    min-height: 70vh;
}

.page-shell-spacious {
    padding-top: 120px;
    padding-bottom: 60px;
}

.page-shell-narrow {
    max-width: 700px;
}

.page-intro-icon {
    width: 64px;
    height: 64px;
    box-shadow: var(--premium-shadow-sm);
}

.page-intro-icon-contact,
.page-intro-icon-checkin {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%);
}

.contact-info-card {
    border-top-width: 3px !important;
    border-top-style: solid !important;
}

.contact-info-card-primary { border-top-color: #2b9fd0 !important; }
.contact-info-card-violet { border-top-color: #7a67c8 !important; }
.contact-info-card-amber { border-top-color: #db8a22 !important; }

.contact-info-icon {
    width: 50px;
    height: 50px;
}

.contact-info-icon-primary { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.contact-info-icon-violet { background: linear-gradient(135deg, #ede7f6, #d1c4e9); }
.contact-info-icon-amber { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.contact-info-icon-glyph-violet { color: #5e35b1; }
.contact-info-icon-glyph-amber { color: #e65100; }

.premium-card-header {
    background: linear-gradient(135deg, #2588a1 0%, #0f647a 100%);
}

.premium-card-header-primary { background: linear-gradient(135deg, #2a92b7 0%, #156f89 100%); }
.premium-card-header-success { background: linear-gradient(135deg, #1c8c68 0%, #28a078 100%); }
.premium-card-header-cyan { background: linear-gradient(135deg, #00a9c8 0%, #0f7392 100%); }
.premium-card-header-amber-strong { background: linear-gradient(135deg, #d97f14 0%, #f0a232 100%); }
.premium-card-header-blue-deep { background: linear-gradient(135deg, #13609f 0%, #2784ca 100%); }
.premium-card-header-navy { background: linear-gradient(135deg, #0b3f8f 0%, #0f5db8 100%); }

.premium-card-chip {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
}

.premium-card-chip-sm {
    width: 30px;
    height: 30px;
}

.premium-card-badge-light {
    background: rgba(255, 255, 255, 0.2);
}

.premium-card-body-soft {
    background: #f8f9fb;
}

.mini-form-card {
    border-radius: 12px !important;
}

.mini-form-card-header {
    border-radius: 12px 12px 0 0;
}

.mini-form-card-header-blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.mini-form-card-header-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.mini-form-card-header-amber { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.mini-form-card-header-rose { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.mini-form-card-header-violet { background: linear-gradient(135deg, #ede7f6, #d1c4e9); }

.mini-form-card-title-amber { color: #ef6c00; }
.mini-form-card-title-rose { color: #c62828; }
.mini-form-card-title-green { color: #1b5e20; }
.mini-form-card-title-violet { color: #4527a0; }

.field-icon-violet { background: #ede7f6 !important; color: #5e35b1 !important; }
.field-icon-warm { background: #fff3e0 !important; color: #e65100 !important; }
.field-icon-green { background: #e8f5e9 !important; color: #2e7d32 !important; }
.field-icon-rose { background: #fce4ec !important; color: #c62828 !important; }

.avatar-preview-media,
.avatar-preview-placeholder-skin {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #1d8dab;
}

.avatar-preview-placeholder-skin {
    background: linear-gradient(135deg, #2a92b7 0%, #156f89 100%);
}

.metric-tile {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.metric-tile-blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.metric-tile-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.metric-tile-amber { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.metric-value-amber { color: #e65100; }

.password-checklist {
    list-style: none;
}

.btn-premium-warm {
    background: linear-gradient(135deg, #d97f14 0%, #f0a232 100%);
    box-shadow: 0 10px 24px rgba(217, 127, 20, 0.22);
}

.btn-premium-warm:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(217, 127, 20, 0.28);
}

.confirmation-success-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.confirmation-success-icon {
    font-size: 2.5rem;
}

.confirmation-ref-body {
    background: linear-gradient(135deg, #2a92b7 0%, #156f89 100%);
}

.confirmation-ref-code {
    letter-spacing: 3px;
}

.booking-thumb-sm {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.alert-soft-warning {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.premium-financial-summary {
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
    border: 1px solid #e0e7ff;
}

.icon-fixed-14 {
    width: 14px;
    text-align: center;
}

.booking-summary-divider {
    border-top: 1px solid #c7d2fe;
}

.booking-balance-row {
    color: #dc2626;
}

.my-bookings-page .card-body {
    line-height: 1.55;
}

.my-bookings-page .card-body .text-muted.small,
.my-bookings-page .card-body .small.text-muted {
    font-size: 0.86rem !important;
    color: #5b6475 !important;
}

.my-bookings-page .booking-time-label {
    margin-bottom: 2px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #6b7280;
}

.my-bookings-page .booking-time-date {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1f2937;
}

.my-bookings-page .booking-time-clock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding: 3px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e40af;
    background: #eef4ff;
    border: 1px solid #dbe7ff;
    border-radius: 999px;
}

.my-bookings-page .booking-financial-summary {
    font-size: 0.9rem;
}

.badge-xs {
    font-size: 0.72rem;
}

.payment-method-meta {
    font-size: 0.72rem;
}

.premium-payment-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.premium-payment-card-header {
    color: #fff;
}

.premium-payment-card-header-promptpay {
    background: linear-gradient(135deg, #042f6b, #0b4d9b);
}

.premium-payment-card-header-bank {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.premium-payment-card-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
}

.premium-payment-card-title {
    font-size: 0.82rem;
    line-height: 1.3;
}

.premium-payment-card-subtitle {
    font-size: 0.68rem;
    opacity: 0.7;
}

.premium-payment-qr-canvas {
    display: block;
    max-width: 130px;
    margin: 0 auto;
}

.premium-payment-qr-image {
    display: none;
    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.premium-payment-account-meta {
    font-size: 0.78rem;
    color: #64748b;
}

.premium-payment-amount {
    font-size: 0.92rem;
    color: #16a34a;
}

.premium-payment-info-row {
    border-bottom: 1px dashed #f1f5f9;
}

.premium-payment-info-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.premium-payment-info-label-total {
    text-transform: none;
}

.premium-payment-info-value {
    font-size: 0.85rem;
    color: #1e293b;
}

.payment-collapse-icon {
    font-size: 0.75rem;
}

.payment-collapse-chevron {
    font-size: 0.6rem;
}

.payment-history-head {
    font-size: 0.72rem;
    text-transform: uppercase;
}

.payment-type-badge,
.payment-status-badge {
    font-size: 0.65rem;
}

.payment-type-badge {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.payment-type-badge-deposit {
    color: #c2410c;
    background: #fff7ed;
}

.payment-type-badge-full {
    color: #0f766e;
    background: #ecfeff;
}

.payment-status-badge {
    color: #fff;
}

.payment-status-badge-info {
    background: #0dcaf0;
}

.payment-status-badge-muted {
    background: #6c757d;
}

.payment-status-badge-success {
    background: #198754;
}

.payment-status-badge-danger {
    background: #dc3545;
}

.payment-status-badge-warning {
    background: #fd7e14;
}

/* ─── Site Pagination ─── */
.site-pagination {
    margin-top: 2rem;
}

.sp-pages {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 6px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, .10), 0 1px 4px rgba(0,0,0,.06);
}

.sp-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: .95rem;
    color: #555;
    text-decoration: none;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: none;
    background: transparent;
}

.sp-page:hover:not(.active):not(.disabled):not(.sp-dots) {
    background: rgba(102, 126, 234, .10);
    color: #667eea;
    transform: translateY(-1px);
}

.sp-page.active {
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(102, 126, 234, .35);
    pointer-events: none;
}

.sp-page.sp-arrow {
    font-size: .8rem;
    color: #667eea;
}

.sp-page.sp-arrow:hover:not(.disabled) {
    background: rgba(102, 126, 234, .12);
}

.sp-page.disabled {
    opacity: .35;
    pointer-events: none;
    cursor: default;
}

.sp-page.sp-dots {
    pointer-events: none;
    color: #aaa;
    min-width: 30px;
    letter-spacing: 2px;
}

.sp-info {
    margin: 0;
    font-size: .85rem;
    color: #888;
    font-family: var(--font-sans);
}

.sp-info span {
    font-weight: 600;
    color: #555;
}

/* Mobile prev/next buttons */
.sp-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: .9rem;
    color: #667eea;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    transition: all .2s ease;
}

.sp-btn:hover:not(.disabled) {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 14px rgba(102, 126, 234, .3);
}

.sp-btn.disabled {
    opacity: .4;
    pointer-events: none;
}

.extra-charge-row {
    border-bottom: 1px dashed #e5e7eb;
}

.policy-scroll-box {
    max-height: 160px;
    overflow-y: auto;
    white-space: pre-wrap;
    border: 1px solid #dee2e6;
}

.house-rules-card {
    border-radius: 12px !important;
    border-left: 4px solid #e65100 !important;
}

body.site-premium-reference.page-rooms-index .page-header {
    background:
        linear-gradient(180deg, rgba(8, 31, 43, 0.76) 0%, rgba(17, 63, 81, 0.76) 100%),
        url('/uploads/hero-bg.jpg');
}

body.site-premium-reference.page-profile .page-header-small {
    background:
        linear-gradient(180deg, rgba(11, 47, 61, 0.78) 0%, rgba(25, 92, 112, 0.78) 100%),
        url('/uploads/hero-bg.jpg');
}

body.site-premium-reference.page-my-bookings .page-header-small {
    background:
        linear-gradient(180deg, rgba(9, 38, 49, 0.80) 0%, rgba(20, 77, 95, 0.80) 100%),
        url('/uploads/hero-bg.jpg');
}

body.site-premium-reference.page-rooms-compare .page-header-small {
    background:
        linear-gradient(180deg, rgba(12, 46, 59, 0.82) 0%, rgba(27, 93, 110, 0.82) 100%),
        url('/uploads/hero-bg.jpg');
}

body.site-premium-reference.page-room-show .page-header-small {
    background:
        linear-gradient(180deg, rgba(13, 39, 51, 0.84) 0%, rgba(20, 83, 101, 0.82) 100%),
        url('/uploads/hero-bg.jpg');
}

body.site-premium-reference.page-multi-booking .page-header-small {
    background:
        linear-gradient(180deg, rgba(9, 43, 57, 0.84) 0%, rgba(17, 99, 120, 0.82) 100%),
        url('/uploads/hero-bg.jpg');
}

body.site-premium-reference.page-rooms-compare .compare-selector-card {
    margin-top: 2rem;
}

body.site-premium-reference.page-multi-booking .multi-content {
    margin-top: -34px !important;
}

body.site-premium-reference.page-room-show .room-show-header {
    margin-bottom: 3rem;
}

.compare-feature-col {
    width: 180px;
}

.compare-room-thumb {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
}

.compare-amenity-chip {
    font-size: 0.8rem;
}

.wishlist-room-image {
    height: 200px;
    object-fit: cover;
}

.promptpay-qr-canvas {
    width: 160px;
    height: 160px;
    max-width: 100%;
}

.promptpay-qr-fallback {
    display: none;
    width: 160px;
    height: 160px;
    max-width: 100%;
}

.bank-card-header-promptpay {
    background: linear-gradient(135deg, #042f6b, #0b4d9b) !important;
    border-radius: 16px 16px 0 0;
}

/* ===== Shared Booking Payment UI (Room + Multi) ===== */
.room-details-page .bk-pay-info,
.multi-wrap .bk-pay-info {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.room-details-page .bank-card-header,
.multi-wrap .bank-card-header,
.room-details-page .cc-card-header,
.multi-wrap .cc-card-header,
.room-details-page .pp-card-header,
.multi-wrap .pp-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #fff;
}

.room-details-page .bank-card-header,
.multi-wrap .bank-card-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}

.room-details-page .cc-card-header,
.multi-wrap .cc-card-header {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%);
}

.room-details-page .pp-card-header,
.multi-wrap .pp-card-header {
    background: linear-gradient(135deg, #042f6b 0%, #0b4d9b 100%);
}

.room-details-page .bank-card-header .bank-icon,
.multi-wrap .bank-card-header .bank-icon,
.room-details-page .cc-card-header .cc-icon,
.multi-wrap .cc-card-header .cc-icon,
.room-details-page .pp-card-header .pp-icon,
.multi-wrap .pp-card-header .pp-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.room-details-page .bank-card-header .bank-title,
.multi-wrap .bank-card-header .bank-title,
.room-details-page .cc-card-header .cc-title,
.multi-wrap .cc-card-header .cc-title,
.room-details-page .pp-card-header .pp-header-title,
.multi-wrap .pp-card-header .pp-header-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}

.room-details-page .bank-card-header .bank-subtitle,
.multi-wrap .bank-card-header .bank-subtitle,
.room-details-page .cc-card-header .cc-subtitle,
.multi-wrap .cc-card-header .cc-subtitle,
.room-details-page .pp-card-header .pp-header-subtitle,
.multi-wrap .pp-card-header .pp-header-subtitle {
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 400;
}

.room-details-page .bank-card-body,
.multi-wrap .bank-card-body,
.room-details-page .cc-card-body,
.multi-wrap .cc-card-body {
    padding: 14px 16px;
}

.room-details-page .bk-pay-info .rowline,
.multi-wrap .bk-pay-info .rowline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f1f5f9;
}

.room-details-page .bk-pay-info .rowline:last-child,
.multi-wrap .bk-pay-info .rowline:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.room-details-page .bk-pay-info .rowline .row-label,
.multi-wrap .bk-pay-info .rowline .row-label,
.room-details-page .cc-card-body .form-label,
.multi-wrap .cc-card-body .form-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.room-details-page .bk-pay-info .rowline .row-value,
.multi-wrap .bk-pay-info .rowline .row-value {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.88rem;
    text-align: right;
    word-break: break-word;
}

.room-details-page .bk-copy-btn,
.multi-wrap .bk-copy-btn {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    font-size: 0.72rem;
    padding: 3px 10px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.room-details-page .bk-copy-btn:hover,
.multi-wrap .bk-copy-btn:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    color: #1e293b;
    border-color: #94a3b8;
}

.room-details-page .bk-copy-btn.copied,
.multi-wrap .bk-copy-btn.copied {
    background: #dcfce7;
    border-color: #86efac;
    color: #16a34a;
}

#card-element,
#multi-card-element {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#card-element:focus-within,
#card-element.StripeElement--focus,
#multi-card-element:focus-within,
#multi-card-element.StripeElement--focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.room-details-page .cc-card-body .form-control,
.multi-wrap .cc-card-body .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.room-details-page .cc-card-body .form-control:focus,
.multi-wrap .cc-card-body .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.room-details-page .cc-brands,
.multi-wrap .cc-brands {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.room-details-page .cc-brands i,
.multi-wrap .cc-brands i {
    font-size: 1.4rem;
    opacity: 0.7;
}

.room-details-page .pp-modern,
.multi-wrap .pp-modern {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    text-align: left;
    padding: 16px;
    min-height: 192px;
}

.room-details-page .pp-modern .pp-qr-wrap,
.multi-wrap .pp-modern .pp-qr-wrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(14, 52, 110, 0.08);
}

.room-details-page .pp-modern .pp-body,
.multi-wrap .pp-modern .pp-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.room-details-page .pp-modern .pp-wait,
.multi-wrap .pp-modern .pp-wait {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 0.78rem;
    color: #475569;
    background: #f8fafc;
    margin-bottom: 10px;
}

.room-details-page .pp-modern .pp-amount,
.multi-wrap .pp-modern .pp-amount {
    font-weight: 800;
    font-size: 1.8rem;
    color: #0b4d9b;
    letter-spacing: 0.3px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.room-details-page .pp-modern .pp-meta,
.multi-wrap .pp-modern .pp-meta {
    font-size: 0.78rem;
    color: #64748b;
}

.room-details-page .pp-modern .pp-hint,
.multi-wrap .pp-modern .pp-hint {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 8px;
    line-height: 1.4;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.room-details-page .bk-radio-card,
.multi-wrap .bk-radio-card {
    position: relative;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.45rem 0.55rem;
    transition: all 0.2s;
    background: #fff;
}

.room-details-page .bk-radio-card input[type="radio"],
.multi-wrap .bk-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.room-details-page .bk-radio-card.is-payment-selected,
.multi-wrap .bk-radio-card.is-payment-selected,
.room-details-page .bk-radio-card:has(input:checked),
.multi-wrap .bk-radio-card:has(input:checked) {
    border-color: #0b4d9b;
    background: #f0f6ff;
    box-shadow: 0 0 0 1px #0b4d9b;
}

.room-details-page .bk-radio-body,
.multi-wrap .bk-radio-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    gap: 2px;
}

.room-details-page .bk-radio-card.is-payment-selected .bk-radio-body,
.multi-wrap .bk-radio-card.is-payment-selected .bk-radio-body,
.room-details-page .bk-radio-card:has(input:checked) .bk-radio-body,
.multi-wrap .bk-radio-card:has(input:checked) .bk-radio-body {
    color: #0b4d9b;
}

.room-details-page .bk-radio-amount,
.multi-wrap .bk-radio-amount {
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== Shared Booking Policy Modal ===== */
.booking-policy-modal {
    text-align: left;
}

.booking-policy-modal-content {
    max-height: 260px;
    overflow: auto;
    padding: 12px;
    line-height: 1.6;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

/* ===== Room Review Components ===== */
.room-details-page .review-summary-strip {
    display: grid;
    grid-template-columns: minmax(0, 180px) 1fr;
    gap: 18px;
    padding: 18px;
    background: linear-gradient(135deg, #fff8e1 0%, #fffdf6 100%);
    border: 1px solid #f6e7b0;
    border-radius: 20px;
    margin-bottom: 18px;
}

.room-details-page .review-summary-score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #f3e5ab;
    padding: 18px;
}

.room-details-page .review-summary-bars {
    display: grid;
    gap: 10px;
}

.room-details-page .review-bar-row {
    display: grid;
    grid-template-columns: 54px 1fr 34px;
    gap: 10px;
    align-items: center;
    font-size: 0.84rem;
    color: #475569;
}

.room-details-page .review-bar-track {
    height: 8px;
    border-radius: 999px;
    background: #efe7cf;
    overflow: hidden;
}

.room-details-page .review-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.room-details-page .review-card {
    border: 1px solid #ebe3cf;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
    padding: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.room-details-page .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #7c2d12;
    background: linear-gradient(135deg, #fde68a 0%, #fdba74 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.room-details-page .review-meta-badge {
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff7ed;
    color: #b45309;
    font-size: 0.74rem;
    font-weight: 600;
}

/* ===== Shared AirDatepicker Day Price Cells ===== */
.bk-day-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1.1;
    gap: 3px;
    padding: 5px 3px 4px;
    overflow: hidden;
}

.bk-day-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    flex-shrink: 0;
}

.bk-day-price {
    display: inline-block;
    font-size: 0.68rem;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: #eff6ff;
    border-radius: 999px;
    padding: 1px 5px;
    line-height: 1.3;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .bk-inline-calendar .air-datepicker-body--cells.-days-,
    .bk-inline-calendar .air-datepicker-body--day-names {
        grid-auto-rows: 52px;
    }

    .bk-inline-calendar .air-datepicker-body--day-names {
        grid-auto-rows: 24px;
    }

    .bk-inline-calendar .air-datepicker-cell.-day- {
        height: 52px;
    }

    .bk-day-cell {
        padding: 4px 2px 3px;
        gap: 2px;
    }

    .bk-day-num {
        font-size: 0.82rem;
    }

    .bk-day-price {
        font-size: 0.62rem;
        padding: 1px 4px;
    }
}

.bk-inline-calendar .air-datepicker-cell.-selected- .bk-day-num,
.bk-inline-calendar .air-datepicker-cell.-selected- .bk-day-price,
.bk-inline-calendar .air-datepicker-cell.-in-range- .bk-day-num,
.bk-inline-calendar .air-datepicker-cell.-in-range- .bk-day-price {
    color: #fff;
}

.bk-inline-calendar .air-datepicker-cell.-selected- .bk-day-price,
.bk-inline-calendar .air-datepicker-cell.-in-range- .bk-day-price {
    background: rgba(255, 255, 255, 0.28);
}

.bk-inline-calendar .air-datepicker-cell.-in-range- .bk-day-num,
.bk-inline-calendar .air-datepicker-cell.-in-range- .bk-day-price {
    color: #7c3d0f;
}

.bk-inline-calendar .air-datepicker-cell.-day-.-current-:not(.-selected-):not(.-in-range-) {
    background: #fffbf5;
    box-shadow: inset 0 0 0 1px #fcd9a0;
}

.bk-inline-calendar .air-datepicker-cell.-day-.-current-:not(.-selected-):not(.-in-range-) .bk-day-num {
    color: #d97706;
    font-weight: 700;
}

.bk-inline-calendar .air-datepicker-cell.-day-.-current-:not(.-selected-):not(.-in-range-) .bk-day-price {
    background: #fef3c7;
    color: #b45309;
}

.bk-inline-calendar .air-datepicker-cell.-disabled- {
    opacity: 0.52;
}

.bk-inline-calendar .air-datepicker-cell.-disabled- .bk-day-num {
    color: #9ca3af;
    font-weight: 500;
}

.air-datepicker-cell.-disabled- .bk-day-price,
.air-datepicker-cell.-other-month- .bk-day-price {
    color: #94a3b8;
    background: #f8fafc;
}

/* ===== Multi Booking Layout Blocks ===== */
.multi-wrap .room-booking-sidebar-wrapper {
    position: sticky;
    top: 20px;
    z-index: 90;
}

.multi-wrap .room-booking-card {
    background: #fff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.multi-wrap .card-section-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 14px;
}

.multi-wrap .card-section-title i {
    color: #e8621a;
}

.multi-wrap .slot-card {
    border: 1.5px solid #ebebeb;
    background: #f7f7f7;
    border-radius: 14px;
    padding: 14px;
}

.multi-wrap .slot-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a1a;
}

.multi-wrap .btn-slot-remove {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.multi-wrap .summary-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.multi-wrap .summary-line:last-child {
    border-bottom: none;
}

.multi-wrap .summary-name {
    color: #334155;
    font-size: 0.86rem;
}

.multi-wrap .summary-amount {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.87rem;
    white-space: nowrap;
}

.multi-wrap .summary-warning {
    font-size: 0.82rem;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 8px 10px;
}

.multi-wrap .bk-summary {
    background: #fdf8f2;
    border-radius: 16px;
    border: 1.5px solid #fde7cc;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.multi-wrap .bk-summary .bk-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.multi-wrap .bk-summary .bk-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 8px;
    border-top: 1px solid #fde7cc;
}

.multi-wrap .bk-summary .bk-total-val {
    color: #e8621a;
}

.multi-wrap .btn-book-now {
    background: linear-gradient(135deg, #ff7c2a 0%, #e8401a 100%);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 50px;
    width: 100%;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 6px 20px rgba(232, 98, 26, 0.35);
    letter-spacing: 0.01em;
}

.multi-wrap .btn-book-now:hover,
.multi-wrap .btn-book-now:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 98, 26, 0.45);
    color: #fff;
    background: linear-gradient(135deg, #ff8f45 0%, #e8401a 100%);
}

.multi-wrap .price-header {
    background: linear-gradient(180deg, #14171d 0%, #101319 100%);
    color: #d6b06a;
    padding: 24px 26px 18px;
    border-bottom: 2px solid #cba15a;
    text-align: center;
    border-radius: 0;
}

.multi-wrap .price-header small {
    display: block;
    color: #0d47a3;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.multi-wrap .price-header h2 {
    color: #d6b06a;
    font-size: clamp(2.15rem, 2.2vw, 2.55rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.multi-wrap .price-header h2 span,
.multi-wrap .price-header small {
    font-family: inherit;
}

body.site-premium-reference.page-contact .page-intro-icon,
body.site-premium-reference.page-activity-log .page-intro-icon,
body.site-premium-reference.page-online-checkin .page-intro-icon,
body.site-premium-reference.page-confirmation .page-intro-icon {
    background: linear-gradient(135deg, #2a92b7 0%, #156f89 100%);
}

@media (max-width: 576px) {
    body.site-premium-reference:not(.home-reference) .page-header-small {
        padding: 42px 0 38px;
        margin-bottom: 1.25rem;
    }

    body.site-premium-reference:not(.home-reference) .header-title {
        font-size: 1.7rem;
    }

    body.site-premium-reference.page-rooms-compare .compare-selector-card,
    body.site-premium-reference.page-multi-booking .multi-content {
        margin-top: -18px !important;
    }

    .compare-table-wrap .table thead th,
    .compare-table-wrap .table tbody td {
        padding: 12px 10px;
    }

    .compare-room-thumb {
        max-height: 88px;
    }

    .room-details-page .pp-modern,
    .multi-wrap .pp-modern {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }

    .room-details-page .pp-modern .pp-qr-wrap,
    .multi-wrap .pp-modern .pp-qr-wrap {
        margin: 0 auto;
    }

    .my-bookings-page .booking-time-date {
        font-size: 0.95rem;
    }

    .wishlist-room-image {
        height: 220px;
    }
}