.room-hero {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}
.room-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
}
.room-hero-body {
    padding: 2rem;
}
.room-hero-body h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.room-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}
.room-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}
.room-badge.type { background: #DBEAFE; color: #1D4ED8; }
.room-badge.capacity { background: #FEF3C7; color: #92400E; }
.room-badge.featured { background: #DBEAFE; color: #2563eb; }
.room-badge.status-available { background: #D1FAE5; color: #065F46; }
.room-badge.status-busy { background: #FEE2E2; color: #991B1B; }
.room-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}
.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
}
.feature-chip i { color: #10B981; font-size: 0.75rem; }
.pricing-table {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.pricing-table .header {
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-200);
}
.pricing-table .row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}
.pricing-table .row-item:last-child { border-bottom: none; }
.pricing-table .row-item .val {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}
.today-schedule {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.today-schedule .header {
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
}
.today-schedule .header .live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10B981;
    animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.88rem;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item .time {
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
    min-width: 110px;
}
.schedule-item .name { color: var(--gray-600); flex: 1; }
.schedule-item .status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}
.status-badge.confirmed { background: #D1FAE5; color: #065F46; }
.status-badge.pending { background: #FEF3C7; color: #92400E; }
.mini-calendar {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.mini-calendar .header {
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-200);
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 12px;
}
.cal-grid .day-name {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gray-600);
    padding: 4px 0;
    text-transform: uppercase;
}
.cal-grid .day-cell {
    text-align: center;
    padding: 8px 4px;
    font-size: 0.8rem;
    border-radius: 8px;
    color: var(--gray-700);
    position: relative;
    cursor: pointer;
    transition: background 0.15s;
}
.cal-grid .day-cell:not(.empty):hover {
    background: rgba(37,99,235,0.08);
}
.cal-grid .day-cell.selected {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}
.cal-grid .day-cell.today {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}
.cal-grid .day-cell.has-reservations::after {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin: 2px auto 0;
}
.cal-grid .day-cell.today.has-reservations::after {
    background: #fff;
}
.cal-grid .day-cell.empty { color: transparent; }
.other-rooms {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-top: 1.5rem;
}
.other-rooms .header {
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-200);
}
.other-rooms a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.88rem;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.1s;
}
.other-rooms a:last-child { border-bottom: none; }
.other-rooms a:hover { background: var(--gray-50); }
.other-rooms a.current { background: rgba(37,99,235,0.05); color: var(--primary); font-weight: 600; }
.other-rooms a img {
    width: 40px; height: 40px; border-radius: 8px; object-fit: cover;
}
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    margin-top: 1.5rem;
}
.cta-box h5 { margin-bottom: 0.5rem; }
.cta-box p { opacity: 0.9; font-size: 0.88rem; margin-bottom: 1rem; }
.cta-box .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s;
}
.cta-box .btn-cta:hover { transform: scale(1.03); }

/* ── Video Gallery Widget ── */
.video-gallery-widget {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.video-gallery-widget .header {
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-200);
}
.video-gallery-widget .video-grid {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.video-gallery-widget .video-item video {
    width: 100%;
    display: block;
    border-radius: 10px;
    background: #000;
}
.video-gallery-widget .video-item p {
    font-size: 0.84rem;
    margin: 0.4rem 0 0;
    font-weight: 600;
    color: var(--gray-700);
}
.video-gallery-widget .video-item small {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ── Lightbox ── */
#lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#lb-overlay.active { display: flex; }
#lb-img {
    max-width: 92vw;
    max-height: 82vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    transition: opacity 0.18s;
}
#lb-caption {
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    text-align: center;
}
#lb-counter {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    margin-top: 0.25rem;
}
#lb-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
}
#lb-close:hover { opacity: 1; }
.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.3); }
#lb-prev { left: 1.25rem; }
#lb-next { right: 1.25rem; }
