/* ================================================================
   room.css  —  Single room detail page
   ================================================================ */

/* Page background */
body {
    background: #f9f5ed;
}

/* ── Force nav to light mode (no hero image) ───── */
.nav-main {
    background: var(--white) !important;
    box-shadow: 0 1px 0 var(--border) !important;
}
.nav-main .nav-center > li > a,
.nav-main .nav-lang,
.nav-main .nav-lang-sep,
.nav-main .nav-social-links a,
.nav-main .nav-home-link {
    color: rgba(0,0,0,0.55) !important;
}
.nav-main .nav-home-link { border-left-color: rgba(0,0,0,0.15) !important; }
.nav-main .nav-center > li > a:hover { color: var(--dark) !important; }
.nav-main .nav-social-links a:hover  { color: var(--dark) !important; }
.nav-main .nav-lang.active           { color: var(--dark) !important; }
.nav-main .nav-logo-img              { filter: none !important; }
.nav-main .nav-book-btn {
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: var(--red) !important;
}
.nav-main .hamburger span { background: var(--dark) !important; }

/* Title row — breadcrumb + title on same line
   ---------------------------------------------------------------- */
/* Breadcrumb bar — full width, left edge of page */
.room-page-breadcrumb {
    padding: 82px 0 0 20px;
    display: block;
}

.room-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    border: 1.5px solid rgba(0,0,0,0.18);
    padding: 8px 16px 8px 11px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.room-back-btn:hover {
    color: #C4A35A;
    border-color: #C4A35A;
    background: rgba(196,163,90,0.05);
}

/* Title row — inside gallery section */
.room-page-title-row {
    padding: 10px 0 14px;
}

.rpt-sep { display: none; }
.room-page-heading-wrap { display: none; }

/* Room title with fly-in animation
   ---------------------------------------------------------------- */
.room-page-heading-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 10px 48px 14px;
    overflow: hidden;
}

.room-page-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 400;
    color: rgba(0,0,0,0.72);
    margin: 0;
    line-height: 1.15;
}


.rph-char {
    display: inline-block;
    opacity: 0;
    animation: rphCharIn 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes rphCharIn {
    from {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) rotate(var(--dr));
    }
    to {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Gallery + Sidebar row
   ---------------------------------------------------------------- */
.room-top-row {
    max-width: 1160px;
    margin: 0 auto;
    padding: calc(72px + 32px) 48px 0;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

/* Gallery — 1 large + 2 stacked
   ---------------------------------------------------------------- */
.room-gallery-section {
    flex: 1;
    min-width: 0;
}

/* Unified gallery grid — all images in one container
   ---------------------------------------------------------------- */
.room-gallery-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 430px;
    gap: 8px;
}

.room-gallery-grid.has-strip {
    grid-template-rows: 430px 80px;
}

.rgg-main {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.rgg-side {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.rgg-strip {
    grid-column: 1 / 3;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.rgg-strip:empty {
    display: none;
}

.rg-strip-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 72px;
    background: #222;
    border-radius: 6px;
}

.rg-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.rg-strip-item:hover img {
    transform: scale(1.08);
    opacity: 0.8;
}

.rg-strip-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
    transition: background 0.25s;
}

.rg-strip-item:hover .rg-strip-more {
    background: rgba(0,0,0,0.65);
}

.room-gallery-main, .rgg-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.room-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.2s ease;
    opacity: 1;
}

.room-gallery-main:hover .room-gallery-main-img,
.rgg-main:hover .room-gallery-main-img {
    transform: scale(1.03);
}

.room-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.62) 100%);
    pointer-events: none;
}

.room-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px clamp(18px, 3vw, 40px);
    pointer-events: none;
}

/* Side column — 2 images stacked */
.room-gallery-side, .rgg-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.room-gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    background: #222;
}

.room-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.25s ease;
}

.room-gallery-thumb:hover img {
    transform: scale(1.07);
    opacity: 0.78;
}

/* "+N foto" overlay on last thumb */
.rg-thumb-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
    transition: background 0.25s;
}
.room-gallery-thumb:hover .rg-thumb-more {
    background: rgba(0,0,0,0.65);
}

/* Badge & title (inside gallery caption) */
.room-page-badge {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C4A35A;
    margin-bottom: 10px;
}

.room-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.15;
}

/* Sidebar (in top row)
   ---------------------------------------------------------------- */
.room-page-sidebar {
    width: 270px;
    flex-shrink: 0;
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
}

.room-page-sidebar .room-page-heading {
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.room-book-card {
    flex: 0 0 auto;
    border: 1px solid rgba(196,163,90,0.3);
    border-top: 3px solid #C4A35A;
    background: #fbf8f3;
    padding: 18px 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.room-book-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.room-book-card-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    line-height: 1.6;
    margin: 0 0 10px;
}

.room-book-cta {
    display: block;
    text-align: center;
    padding: 12px 16px;
    background: #C4A35A;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 10px;
}
.room-book-cta:hover { background: #ae8e4e; }

.room-book-sep {
    border: none;
    border-top: 1px solid rgba(196,163,90,0.2);
    margin: 10px 0;
}

.room-book-hours-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin: 0 0 5px;
}

.room-book-hours-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(0,0,0,0.65);
    margin: 0;
}

/* Sidebar reviews widget
   ---------------------------------------------------------------- */
.room-sidebar-reviews {
    flex: 0 0 auto;
    border: 1px solid rgba(196,163,90,0.25);
    border-top: 3px solid #C4A35A;
    background: #fbf8f3;
    padding: 12px 22px 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rsr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.rsr-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.42);
}

.rsr-stars {
    color: #C4A35A;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.rsr-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rsr-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.72;
    color: rgba(0,0,0,0.65);
    font-style: italic;
    margin: 0 0 8px;
}

.rsr-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
    margin: 0;
}

.rsr-source {
    font-weight: 400;
    color: rgba(0,0,0,0.3);
}

.rsr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(196,163,90,0.15);
}

.rsr-btn {
    width: 26px;
    height: 26px;
    border: 1.5px solid rgba(196,163,90,0.35);
    background: transparent;
    color: rgba(0,0,0,0.45);
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    padding: 0;
    line-height: 1;
}
.rsr-btn:hover { border-color: #C4A35A; color: #C4A35A; }

.rsr-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(0,0,0,0.32);
    letter-spacing: 0.06em;
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
.rg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}
.rg-lightbox.open { display: flex; }

.rg-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    cursor: pointer;
}

.rg-lb-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1.5px solid #C4A35A;
    border-top: 4px solid #C4A35A;
    width: calc(100vw - 48px);
    max-width: 920px;
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 72px rgba(0,0,0,0.45);
    overflow: hidden;
}

.rg-lb-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(0,0,0,0.5);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    padding: 4px 8px;
    transition: color 0.2s;
}
.rg-lb-close:hover { color: #C4A35A; }

.rg-lb-main {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 0;
    padding: 44px 16px 16px;
    gap: 10px;
}

.rg-lb-img-wrap {
    flex: 1;
    min-height: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 460px;
}

.rg-lb-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.18s ease;
}

.rg-lb-arrow {
    background: none;
    border: 1.5px solid rgba(196,163,90,0.6);
    color: #C4A35A;
    font-size: 2rem;
    line-height: 1;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}
.rg-lb-arrow:hover {
    background: #C4A35A;
    color: #fff;
    border-color: #C4A35A;
}

.rg-lb-footer {
    padding: 10px 24px 16px;
    border-top: 1px solid rgba(196,163,90,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rg-lb-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
}

.rg-lb-strip {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    justify-content: center;
    max-width: 100%;
}
.rg-lb-strip::-webkit-scrollbar { height: 3px; }
.rg-lb-strip::-webkit-scrollbar-thumb { background: rgba(196,163,90,0.4); }

.rg-lb-strip-item {
    width: 64px;
    height: 46px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
}
.rg-lb-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rg-lb-strip-item:hover { opacity: 0.9; }
.rg-lb-strip-item.is-active {
    border-color: #C4A35A;
    opacity: 1;
}

/* Content (specs + description + amenities)
   ---------------------------------------------------------------- */
.room-page-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 36px 48px 90px;
    box-sizing: border-box;
}

/* Specs row — bordered box */
.room-page-specs {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 20px;
    margin-bottom: 32px;
    border: 1px solid rgba(196,163,90,0.28);
    border-top: 2px solid #C4A35A;
    background: #fbf8f3;
}

.room-page-spec {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 28px;
    border-right: 1px solid rgba(196,163,90,0.2);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(30,20,10,0.6);
}
.room-page-spec:last-child { border-right: none; }
.room-page-spec svg { color: #C4A35A; flex-shrink: 0; }

/* Divider */
.room-page-divider {
    height: 1px;
    background: rgba(196,163,90,0.25);
    margin: 28px 0;
}

/* Description */
.room-page-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(30,20,10,0.65);
    margin-bottom: 44px;
}

#rd-amenities {
    background: #fbf8f3;
    padding: 22px 28px;
    margin-bottom: 32px;
}

/* Amenity groups */
.room-amenity-group {
    margin-bottom: 32px;
}
.room-amenity-group:last-child { margin-bottom: 0; }

.room-amenity-group-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(30,20,10,0.45);
    margin: 0 0 14px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(196,163,90,0.22);
}

.room-amenity-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(30,20,10,0.65);
    line-height: 1.5;
}

/* Important information table
   ---------------------------------------------------------------- */
.room-info-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(196,163,90,0.2);
}

.room-info-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 22px;
}

.room-info-table {
    border: 1px solid rgba(196,163,90,0.25);
    border-top: 3px solid #C4A35A;
    background: #fbf8f3;
}

.room-info-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 20px 32px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(196,163,90,0.15);
    align-items: start;
}
.room-info-row:last-child { border-bottom: none; }

.room-info-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(30,20,10,0.75);
    padding-top: 1px;
}

.room-info-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(30,20,10,0.65);
    line-height: 1.7;
}
.room-info-value strong {
    display: block;
    color: rgba(30,20,10,0.8);
    font-weight: 500;
    margin-bottom: 3px;
}
.room-info-value strong + strong { margin-top: 14px; }

.room-info-badge {
    display: inline-block;
    border: 1.5px solid rgba(196,163,90,0.5);
    color: rgba(30,20,10,0.65);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 4px 11px;
    margin-right: 6px;
    margin-bottom: 4px;
}

/* FAQ accordion
   ---------------------------------------------------------------- */
.room-faq-section {
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(196,163,90,0.2);
}

.room-faq-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 22px;
}

.room-faq-list {
    border: 1px solid rgba(196,163,90,0.25);
    border-top: 3px solid #C4A35A;
    background: #fbf8f3;
}

.room-faq-item {
    border-bottom: 1px solid rgba(196,163,90,0.15);
}
.room-faq-item:last-child { border-bottom: none; }

.room-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(30,20,10,0.75);
    transition: background 0.2s, color 0.2s;
}
.room-faq-btn:hover {
    background: rgba(196,163,90,0.04);
    color: #1a1a1a;
}
.room-faq-item.is-open > .room-faq-btn {
    color: #C4A35A;
    background: rgba(196,163,90,0.05);
}

.room-faq-icon {
    flex-shrink: 0;
    color: #C4A35A;
    transition: transform 0.3s ease;
}
.room-faq-item.is-open .room-faq-icon {
    transform: rotate(180deg);
}

/* Smooth expand with grid trick */
.room-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.33s ease;
}
.room-faq-item.is-open .room-faq-answer {
    grid-template-rows: 1fr;
}

.room-faq-answer-inner {
    overflow: hidden;
}

.room-faq-answer-body {
    padding: 2px 24px 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(30,20,10,0.65);
}

.rfa-link {
    color: #C4A35A;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.rfa-link:hover { color: #ae8e4e; }

.rfa-ul {
    list-style: disc;
    margin: 10px 0 0;
    padding-left: 20px;
}
.rfa-ul li { margin-bottom: 4px; }

/* Other rooms table
   ---------------------------------------------------------------- */
.room-other-section {
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(196,163,90,0.2);
}

.room-other-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 22px;
}

.room-other-table-wrap {
    border: 1px solid rgba(196,163,90,0.25);
    border-top: 3px solid #C4A35A;
    overflow-x: auto;
    background: #fbf8f3;
}

.room-other-table {
    width: 100%;
    border-collapse: collapse;
}

.room-other-table thead tr {
    background: rgba(196,163,90,0.1);
}

.room-other-table thead th {
    padding: 11px 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(30,20,10,0.5);
    text-align: left;
    border-bottom: 1px solid rgba(196,163,90,0.2);
}

.room-other-row {
    border-bottom: 1px solid rgba(196,163,90,0.12);
    transition: background 0.18s;
}
.room-other-row:last-child { border-bottom: none; }
.room-other-row:hover { background: rgba(196,163,90,0.04); }

.room-other-name-cell {
    padding: 16px 20px;
}

.room-other-link {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C4A35A;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s;
}
.room-other-link:hover {
    color: #ae8e4e;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.room-other-meta {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(30,20,10,0.48);
}

.room-other-cat {
    font-weight: 600;
    color: rgba(196,163,90,0.75);
}

.room-other-guests-cell {
    padding: 16px 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(30,20,10,0.6);
    white-space: nowrap;
    vertical-align: middle;
}

.room-other-cta-cell {
    padding: 16px 20px;
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
}

.room-other-btn {
    display: inline-block;
    padding: 9px 22px;
    background: #C4A35A;
    color: #fff !important;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}
.room-other-btn:hover { background: #ae8e4e; }

/* Booking modal
   ================================================================ */
.book-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9100;
    align-items: center;
    justify-content: center;
}
.book-modal.open { display: flex; }

.book-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    cursor: pointer;
}

.book-modal-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1.5px solid #C4A35A;
    border-top: 4px solid #C4A35A;
    width: calc(100vw - 48px);
    max-width: 520px;
    padding: 36px 32px 30px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}

.book-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: rgba(0,0,0,0.35);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}
.book-modal-close:hover { color: #C4A35A; }

.book-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 5px;
}

.book-modal-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(0,0,0,0.42);
    letter-spacing: 0.06em;
    margin: 0 0 20px;
}

.book-modal-discount {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(196,163,90,0.08);
    border: 1px solid rgba(196,163,90,0.3);
    border-left: 3px solid #C4A35A;
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #8a6f35;
    line-height: 1.55;
    margin-bottom: 22px;
}
.book-modal-discount svg { flex-shrink: 0; margin-top: 1px; color: #C4A35A; }
.book-modal-discount strong { font-weight: 700; }

.book-modal-direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.book-modal-card {
    border: 1.5px solid rgba(196,163,90,0.28);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.book-modal-card:hover {
    border-color: #C4A35A;
    box-shadow: 0 2px 12px rgba(196,163,90,0.12);
}

.book-modal-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.8);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.book-modal-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,0.52);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.book-modal-card-btn {
    display: block;
    text-align: center;
    padding: 10px 12px;
    background: #C4A35A;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
}
.book-modal-card-btn:hover { background: #ae8e4e; }

.book-modal-sep {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.28);
}
.book-modal-sep::before,
.book-modal-sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(196,163,90,0.18);
}

.book-modal-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.18);
    color: rgba(0,0,0,0.6) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.book-modal-booking-btn:hover {
    border-color: #C4A35A;
    color: #C4A35A !important;
    background: rgba(196,163,90,0.04);
}

.book-modal-booking-note {
    margin: 7px 0 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c0392b;
}

@media (max-width: 480px) {
    .book-modal-panel  { padding: 24px 14px 20px; }
    .book-modal-direct { gap: 8px; }
    .book-modal-card   { padding: 14px 12px; }
}

/* Responsive
   ---------------------------------------------------------------- */
@media (max-width: 880px) {
    .room-page-breadcrumb { padding: 76px 0 0 16px; }
    .room-page-title-row { padding: 8px 0 0; }

    .room-top-row {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .room-gallery-section { width: 100%; margin: -24px auto 0; }

    /* Mobile gallery: 1 large image + strip of 5 below */
    .room-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .room-gallery-grid.has-strip {
        grid-template-rows: auto auto;
    }
    .rgg-main {
        grid-column: 1;
        grid-row: 1;
        height: 64vw;
        min-height: 220px;
        border-radius: 10px;
        margin: 0 16px;
    }
    .rgg-side { display: none; }
    .rgg-strip {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(5, 1fr);
        padding: 0 16px;
        box-sizing: border-box;
    }
    .rg-strip-item { height: 60px; border-radius: 4px; }

    .room-gallery-inner {
        grid-template-columns: 1fr;
        height: auto;
    }
    .room-gallery-main { height: 54vw; min-height: 220px; }
    .room-gallery-side {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr;
        height: 140px;
    }

    .room-page-sidebar {
        position: static;
        width: 100%;
        height: auto;
        padding: 4px 28px 0;
        padding-top: 4px;
        box-sizing: border-box;
    }
    .room-book-card { flex: 0 0 auto; }
    .room-sidebar-reviews { flex: 0 0 auto; min-height: 0; }

    .room-page-content { padding: 32px 36px 60px; }
    .room-page-sidebar { padding-left: 36px; padding-right: 36px; }
    .room-amenity-list { grid-template-columns: 1fr 1fr; }
    .room-info-row { grid-template-columns: 1fr; gap: 6px; }
    .room-page-desc { text-align: center; padding-left: 24px; padding-right: 24px; }
    .room-amenity-group-title { text-align: center; }
    #rd-amenities { padding: 22px 28px; }
}

@media (max-width: 560px) {
    .room-page-breadcrumb { padding: 72px 0 0 12px; }
    .room-page-title-row { padding: 4px 0 0; }
    .room-back-btn { font-size: 8px; padding: 5px 10px 5px 7px; gap: 5px; }
    .room-back-btn svg { width: 11px; height: 11px; }
    .room-top-row { padding: calc(64px + 20px) 0 0; }
    .room-gallery-main { height: 58vw; min-height: 180px; }
    .room-gallery-side { height: 120px; }
    .room-gallery-caption { padding: 18px 18px; }

    .rg-lb-panel { width: 100vw; max-height: 100vh; border-left: none; border-right: none; }
    .rg-lb-main { padding: 40px 4px 12px; gap: 4px; }
    .rg-lb-img-wrap { height: 78vw; }
    .rg-lb-arrow { width: 24px; height: 24px; font-size: 1.1rem; flex-shrink: 0; }
    .rg-lb-strip-item { width: 52px; height: 38px; }

    .room-page-specs { flex-direction: column; }
    .room-page-spec { border-right: none; border-bottom: 1px solid rgba(196,163,90,0.2); padding: 12px 20px; }
    .room-page-spec:last-child { border-bottom: none; }
    .room-page-sidebar { padding-left: 16px; padding-right: 16px; }
    .room-page-content { padding: 24px 16px 50px; }
    .room-amenity-list { grid-template-columns: 1fr; }
    .room-page-specs { gap: 18px; }
}
