.hotel-rooms-tabs {
    max-width: 100vw;
    margin: 0 auto;
}

.rooms-container {
    width: 100%;
}

/* Desktop tabs */
.rooms-tabs {
    list-style: none;
    padding: 0 0 1.5rem 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rooms-tabs li a {
    display: block;
    text-decoration: none;
    color: #252525;
    opacity: 0.5;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    padding: 0;
    white-space: normal;
    word-break: break-word;
}

.rooms-tabs li.active a {
    font-style: italic;
    opacity: 1;
}

/* Mobile custom selector */
.mobile-room-selector {
    position: relative;
    margin-bottom: 2rem;
}

.mobile-selector-toggle {
    width: 100%;
    background: #f9eddc;
    border: 1px solid #f9eddc;
    color: #252525;
    font-size: 27px;
    line-height: 1.2;
    font-style: italic;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-selector-toggle:focus,
.mobile-selector-toggle:active {
    background: none !important;
}

.mobile-selector-toggle .selected-room {
    flex: 1;
    white-space: normal;
    word-break: break-word;
}

.mobile-selector-toggle .selector-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.mobile-selector-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f9eddc;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.mobile-room-selector.open .mobile-selector-options {
    display: block;
}

.mobile-selector-options li {
    padding: 0.75rem;
    font-size: 20px;
    color: #252525;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-selector-options li:last-child {
    border-bottom: none;
}

.mobile-selector-options li:hover,
.mobile-selector-options li.active {
    font-style: italic;
    opacity: 1;
}

/* Layout: names/info on the left, image on the right */
.rooms-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.rooms-left {
    padding-right: 20px;
}

.rooms-right {
    padding-left: 20px;
}

/* Panels (all in DOM for SEO, only active visible) */
.room-info-panels,
.room-image-panels {
    width: 100%;
}

.room-info-panel,
.room-image-panel {
    display: none;
    width: 100%;
}

.room-info-panel.active,
.room-image-panel.active {
    display: block;
}

.room-name {
    font-size: 26px;
    line-height: 1.2;
    margin: 0;
    padding: 0.5rem 0;
    color: #252525;
    font-weight: 400;
}

.room-excerpt {
    margin-bottom: 1rem;
    max-width: 538px;
}

.room-description,
.room-amenities {
    font-size: 20px;
    line-height: 1.3;
}

.room-amenities ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.room-amenities li {
    padding-bottom: 0;
}

/* Collapsed description/amenities */
.room-excerpt:not(.expanded) {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 6.5em;
}

.room-excerpt.expanded {
    display: block;
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
}

.room-show-more {
    display: inline-block;
    margin: 0.5rem 0 1.5rem;
    background: none !important;
    border: none;
    color: #252525;
    font-family: 'Maison Neue', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.15px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.room-show-more:hover,
.room-show-more:focus,
.room-show-more:active {
    color: #252525;
    background: none !important;
    outline: none;
}

.room-show-more[aria-hidden="true"] {
    display: none;
}

/* Buttons always visible */
.room-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

a.check-availability,
a.view-images {
    display: inline-block;
    font-family: 'Maison Neue', sans-serif;
    font-size: 15px;
    line-height: 20px;
    color: #252525;
    text-transform: uppercase;
    letter-spacing: 1.15px;
    padding: 0.5rem 0;
    text-decoration: none;
    font-weight: 400;
}

/* Image panels */
.room-image-panel img {
    width: 100%;
    min-height: 700px;
    object-fit: cover;
    display: block;
}

/* Visibility helpers */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (min-width: 769px) {
    .rooms-tabs.desktop-only {
        display: flex;
    }

    .mobile-room-selector.mobile-only {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .rooms-tabs.desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .mobile-room-selector.mobile-only {
        display: block;
    }

    .rooms-layout {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .rooms-right {
        order: 1;
        padding: 0;
    }

    .rooms-left {
        order: 2;
        padding: 0;
    }

    .room-name {
        font-size: 26px;
    }

    .rooms-tabs li a {
        font-size: 27px;
        line-height: 1.2;
    }

    .room-image-panel img {
        min-height: 442px;
    }

    .room-links {
        margin-top: 1rem;
    }
}


a.venue-action, a.venue-gallery {
    color: #252525;
    font-family: 'Maison Neue', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.3px;
}







/* Unique styling for venues */
.hotel-venues-tabs {
    max-width: 100vw;
    margin: 0 auto;
}

.venues-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.venues-list {
    grid-column: 1;
}

.venues-tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-bottom: none;
}

.venues-tabs li {
    margin-bottom: 0rem;
}

.venues-tabs li a {
    display: block;
    text-decoration: none;
    color: #252525;
    opacity: 0.5;
    font-size: 35px;
    line-height: 40px;
    transition: all 0.3s ease;
    padding-left: 0px;
}

.venues-tabs li.active a {
    font-style: italic;
    opacity: 1;
}

.venue-content {
    display: flex;
    flex-direction: row;
}

.venue-content {
    width: 100%;
}

.venue-description {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 538px;
}

.venue-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.venue-action,
.venue-gallery {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: bold;
}

.venue-image {
    width: 50%;
}

.venue-image img {
    width: 100%;
    min-height: 700px;
    object-fit: cover;
}

/* Mobile dropdown visibility */
.venues-dropdown,
.mobile-only {
    display: none;
}

ul.venues-tabs.desktop-only {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .venue-info, .venue-image {
        width: 50%;
    }
    .venue-info {
        padding-right: 100px;
    }
    .venue-image {
        padding-left: 100px;
    }
}

@media (max-width: 768px) {
    .venues-container {
        width: 100%;
        display: flex;
        gap: 1.5rem;
    }
    .venue-content {
        display: flex;
        flex-direction: column;
    }

    .venue-content {
        width: 100%;
    }

    .venues-tabs {
        margin-bottom: 1.5rem;
    }

    .venues-tabs li a {
        font-size: 27px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .venues-tabs li.active a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .venue-image {
        order: 2;
        width: 100%;
    }

    .venue-image img {
        min-height: 442px;
        margin-bottom: 20px;
    }

    .venue-info {
        order: 3;
    }

    .venue-description {
        margin-top: 1.5rem;
    }
}
