.room-bg{
    width: 100%;
    display: flex;
    justify-content: center;
    background: #FFF;
}
.room-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    background: #fff;
}

.room-grid-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.room-slider-container {
    width: 62%;
}

.room-sidebar {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.room-js-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.room-slider-track {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.room-slider-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.room-slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.room-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #eee;
    border: none;
    color: #333;
    width: 28px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
}

.room-slider-btn:hover {
    background: #fff;
}

.room-slider-btn.prev { left: 15px; }
.room-slider-btn.next { right: 15px; }

.room-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.room-slider-dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.room-slider-dot.active {
    background: #333;
}

.room-list-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-list-title {
    font-size: 18px;
    font-weight: 400;
    color: #a88946;
    margin: 0;
    letter-spacing: 0.5px;
}

.room-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-list li {
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 15px;
    font-weight: 300;
    line-height: 1.4;
}

.room-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -1px;
    color: #ccc;
}

.room-grid-bottom {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.room-list-box--double {
    width: 62%; 
}

.room-grid-bottom > .room-list-box:not(.room-list-box--double) {
    width: 33%;
}

.room-list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 12px 30px;
}

.room-description {
    font-size: 18px;
    line-height: 2;
    color: #444;
    font-weight: 300;
}

.room-description p {
    margin: 0 0 25px 0;
}
.room-description p:last-child {
    margin-bottom: 0;
}

.room-detail-action {
    display: flex;
    justify-content: flex-start;
    margin-top: 50px;
    padding-top: 20px;
}

.room-detail-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e8ab45;
    color: #fff;
    text-decoration: none;
    width: 200px;
    height: 60px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.room-detail-book-btn:hover {
    background-color: #d49835;
}

.room-detail-end{
	color: #a88946;
	font-size: 36px;
	text-align: center;
	margin-top: 100px;
}

@media (max-width: 850px) {
    .room-grid-top, .room-grid-bottom {
        flex-direction: column;
        gap: 40px;
    }
    .room-slider-container, .room-sidebar, .room-list-box--double, .room-grid-bottom > .room-list-box:not(.room-list-box--double) {
        width: 100%;
    }
    .room-list--grid {
        grid-template-columns: 1fr;
    }
    .room-description {
        font-size: 14px;
	}
}
