/* --- Room Card Style --- */
.room-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 5%;
}
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* --- Layout interno --- */
.room-card-inner {
    display: flex;
    flex-wrap: wrap;
}

/* --- Imagen --- */
.room-image-wrapper {
    padding: 0;
}
.room-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: transform .3s ease;
}
.room-card:hover .room-image {
    transform: scale(1.05);
}

/* --- Info --- */
.room-info-wrapper {
    padding: 20px;
}
.room-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.room-desc {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}
.room-more-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}
.room-more-link:hover {
    text-decoration: underline;
}

/* --- Meta & precio --- */
.room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.guest-info {
    color: #666;
    font-size: 0.9em;
}
.room-price {
    text-align: right;
}
.price-value {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
}
.price-label {
    font-size: 0.9em;
    color: #777;
    margin-left: 3px;
}

/* --- Botón --- */
.btn-book {
    background-color: #007bff;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
.btn-book:hover {
    background-color: #0056b3;
}

/* --- Ordenar sección --- */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}
.sort-title {
    font-weight: bold;
    margin-right: 10px;
}
.sort-dropdown button {
    border-radius: 5px;
}

