.bh-room-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.bh-room-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.bh-room-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.bh-room-content {
    padding: 16px 18px 18px;
}

.bh-room-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}

.bh-room-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.bh-room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
    color: #333;
    margin-bottom: 12px;
}

.bh-room-price {
    font-weight: 600;
}

.bh-room-guests {
    opacity: 0.8;
}

.bh-room-actions {
    margin-top: 4px;
}

.bh-button {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #222;
    background: #222;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.bh-button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

.bh-booking-form {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px;
    max-width: 420px;
    background: #fafafa;
}

.bh-form-row {
    margin-bottom: 12px;
}

.bh-form-row label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
}

.bh-form-row input[type="date"],
.bh-form-row input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.bh-price-hint {
    font-size: 13px;
    color: #444;
    margin: 4px 0 10px;
}

.bh-form-submit {
    text-align: right;
}

.bh-button-primary {
    border-color: #007cba;
    background: #007cba;
}

.bh-button-primary:hover {
    background: #005a87;
}
