.hres-wrapper {
    direction: rtl;
    text-align: right;
    font-family: Tahoma, Arial, sans-serif;
    max-width: 1100px;
    margin: 0 auto;
}

.hres-dates-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: #f6f7f9;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.hres-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 140px;
}

.hres-field label {
    font-size: 13px;
    color: #555;
}

.hres-field input {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.hres-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.hres-room-card {
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.hres-room-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.hres-room-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hres-room-body h3 {
    margin: 0;
    font-size: 18px;
}

.hres-room-desc {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.hres-room-meta {
    font-size: 13px;
    color: #333;
    margin: 0;
}

.hres-room-price {
    font-weight: bold;
    color: #0a7d3c;
    margin: 0;
}

.hres-select-btn, .hres-submit-btn, .hres-pay-btn {
    background: #0a7d3c;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
}

.hres-select-btn:hover, .hres-submit-btn:hover, .hres-pay-btn:hover {
    background: #075e2c;
}

/* مودال فرم اطلاعات مهمان */
.hres-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.hres-modal-overlay.hres-open {
    display: flex;
}

.hres-modal-box {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    position: relative;
}

.hres-modal-close {
    position: absolute;
    top: 10px;
    left: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.hres-error {
    color: #b30000;
    background: #fdeaea;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin: 8px 0;
}

/* صفحه پرداخت / خلاصه رزرو */
.hres-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.hres-summary-table th, .hres-summary-table td {
    padding: 10px 14px;
    border: 1px solid #e2e2e2;
    text-align: right;
}

.hres-summary-table th {
    background: #f6f7f9;
    width: 180px;
}

.hres-total {
    font-weight: bold;
    color: #0a7d3c;
    font-size: 16px;
}
