header.room-hero.container {
    background-color: transparent;
}

.room-hero {
    padding-top: 40px;
    padding-bottom: 24px;
}

.room-hero.container .entry-title {
    padding-top: var(--section-spacing-sm);
    margin-bottom: 20px;
}

.room-hero-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.room-technicals {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
}

.room-technicals li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-default);
    font-size: .95rem;
}

.room-technicals .mi {
    color: var(--gold-deep);
    font-size: 18px;
}

.room-gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

.gallery-card:hover .room-gallery-image {
    filter: brightness(1.05);
    transform: scale(1.02);
}

.room-other-rooms {
    padding-top: 48px;
    padding-bottom: 48px;
}

.room-other-rooms h2 {
    font-family: var(--font-family-heading);
    margin-bottom: 24px;
}

@media (max-width: 575px) {
    .room-technicals {
        grid-template-columns: 1fr;
    }
}

.room-gallery-trigger {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.room-gallery-modal-dialog .modal-content {
    background: rgba(0, 0, 0, .95);
    border: none;
}

.room-gallery-modal-dialog .carousel,
.room-gallery-modal-dialog .carousel-inner {
    background: rgba(0, 0, 0, .95);
    height: 100%;
}

.room-gallery-modal-dialog .carousel-item.active,
.room-gallery-modal-dialog .carousel-item-next,
.room-gallery-modal-dialog .carousel-item-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.room-gallery-modal-dialog .carousel-item {
    transition: none;
}

.room-gallery-modal-image {
    max-width: 100%;
    max-height: 90vh;
    margin: 0 auto;
    object-fit: contain;
}

.room-gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    touch-action: manipulation;
}
