.roomsWrap-inner {
  background: var(--bg-light-2);
  min-height: 100vh;
  padding-inline: 2rem;
}

.room-card {
  width: 100%;
  max-width: 44.7rem;
  display: flex;
  gap: 2rem 3.5rem;
  margin-inline: auto;
  flex-wrap: wrap; /* Allow amenities to drop to next line */
}

.room-card-image {
  width: 1%;
  min-height: 26rem;
  height: 100%;
  flex-grow: 1;
}

.room-spacer {
  height: 5rem;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.room-card-content {
  width: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ROOM GALLERY STYLES */
.room-card-image .splide__slide {
    overflow: hidden; 
}

.room-card-image .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect: Zoom on Image */
.room-card-image:hover .splide__slide img {
    transform: scale(1.05);
}

.room-main-slider {
    width: 100%;
    height: 100%;
}
.room-main-slider .splide__track,
.room-main-slider .splide__list,
.room-main-slider .splide__slide {
    height: 100%;
}

.lightbox-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    z-index: 10;
    pointer-events: none; 
}

.lightbox-icon img {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
}

.room-thumbs-slider {
    margin-bottom: 2rem;
    max-width: 100%;
}

.room-thumbs-slider .splide__slide {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 4/3; 
}

.room-thumbs-slider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-thumbs-slider .splide__slide:hover img {
    transform: scale(1.1);
}

/* Remove default Splide navigation border */
.room-thumbs-slider .splide__slide {
    border: none !important;
    outline: none !important;
    opacity: 1; /* Ensure full visibility */
}

.room-thumbs-slider .splide__slide.is-active {
    opacity: 1;
}

.custom-splide-arrows {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.custom-splide-arrows .splide__arrow {
    position: static;
    transform: none;
    background: transparent;
    width: 0.6rem;
    height: 0.6rem;
    opacity: 1;
}

.custom-splide-arrows .splide__arrow img {
    width: 0.6rem;
    height: 0.6rem;
    object-fit: cover;
}

.room-content-spacer {
    background-color: var(--text-color);
    width: 2.5rem;
    height: 3px;
}

.room-card-title {
    font-weight: normal;
    text-transform: uppercase;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.room-card-description {
    font-size: 1rem;
    margin-bottom: 1.7rem;
}

.btn-premium-solid,
.btn-premium-solid:hover {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

/* ROOM AMENITIES SECTION */
.room-amenities {
    width: 100%;
    padding: 2rem 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.3rem 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.amenity-item-full {
    grid-column: 1 / -1;
}

.amenity-icon {
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-icon img {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
    opacity: 0.8;
}

.amenity-text {
    font-weight: normal;
    font-size: 0.7rem;
}

.sq-unit {
    text-decoration: underline;
}
