
.rd-wrapper {
    background: #f8faff;
    overflow-x: hidden; 
}

.rd-room-img {
    width: 100%;
    height: 320px;
    border-radius: 14px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .rd-room-img {
        height: 220px;
    }
}

.rd-card {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.rd-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
}

.rd-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.rd-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--para-color);
    margin-top: 10px;

    /* Prevent text overflow */
    word-break: break-word;
    overflow-wrap: break-word;
}

.rd-checklist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.rd-checklist li {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text-color);

    display: flex;
    align-items: flex-start;
    gap: 6px;

    word-break: break-word;
}

.rd-price-box {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rd-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.rd-price span {
    font-size: 14px;
    color: var(--para-color);
}

.rd-btn {
    padding: 12px 26px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.rd-btn:hover {
    opacity: 0.8;
}

@media (max-width: 576px) {
    .rd-price-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rd-amenity {
    background: #f1f6ff;
    border-radius: 14px;
    padding: 22px 10px;
    text-align: center;
    transition: 0.3s;

    min-height: 140px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rd-amenity:hover {
    background: #e3eeff;
}

.rd-amenity-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.rd-amenity p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);

    word-break: break-word;
}

.rd-gallery-img {
    width: 100%;
    border-radius: 12px;
    height: 180px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .rd-gallery-img {
        height: 140px;
    }
}


.row-reverse-wrap {
    display: flex;
    flex-wrap: wrap !important;
}

@media (max-width: 991px) {
    .row-reverse-wrap {
        flex-direction: column-reverse;
    }
}
