.room-wrap{
    max-width:1200px;
    margin:auto;
    font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color:#222;
}

.room-header{
    margin-bottom:40px;
}

.room-title{
    font-size:38px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:10px;
}

.room-subtitle{
    color:#666;
    font-size:18px;
}

.room-highlights{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:16px;
    margin-top:30px;
}

.highlight-box{
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.highlight-box:hover{
    transform:translateY(-3px);
}

.highlight-box i{
    font-size:28px;
    margin-bottom:12px;
    display:block;
}

.highlight-title{
    font-weight:600;
    margin-bottom:5px;
}

.highlight-desc{
    color:#777;
    font-size:14px;
}

.room-card{
    border:1px solid #e5e5e5;
    border-radius:20px;
    padding:35px;
    margin-bottom:25px;
    background:#fff;
}

.card-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:25px;
}

.price-table{
    width:100%;
    border-collapse:collapse;
}

.price-table td{
    padding:18px 10px;
    border-bottom:1px solid #eee;
}

.price-table td:last-child{
    text-align:right;
    font-weight:700;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.facility-box{
    border:1px solid #eee;
    border-radius:14px;
    padding:25px;
}

.facility-box h4{
    margin-bottom:15px;
    font-size:18px;
}

.facility-box ul{
    padding-left:18px;
    margin:0;
}

.facility-box li{
    margin-bottom:10px;
}

.facility-box i{
    width:20px;
    margin-right:8px;
}

.location-box{
    background:#fafafa;
    border-radius:16px;
    padding:25px;
}

.location-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.location-box li{
    margin-bottom:15px;
}

.location-box i{
    width:25px;
}

.notice{
    background:#111;
    color:#fff;
    padding:30px;
    border-radius:18px;
}

.notice h3{
    color:#fff;
    margin-bottom:15px;
}

@media(max-width:768px){

.room-title{
    font-size:28px;
}

.room-card{
    padding:25px;
}

}