/* ===== ĐƠN HÀNG ===== */

.dh-main {
    padding: 32px 135px 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dh-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

/* Filter tabs */
.dh-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dh-tab {
    border: 1.5px solid #ddd;
    background: #fff;
    color: #555;
    border-radius: 20px;
    padding: 7px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}
.dh-tab:hover { border-color: #7ABEFA; color: #7ABEFA; }
.dh-tab.active {
    background: #7ABEFA;
    border-color: #7ABEFA;
    color: #fff;
    font-weight: 600;
}

/* Order list */
.dh-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Order card */
.dh-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.15s;
}
.dh-card:hover { box-shadow: 0 4px 18px rgba(122,190,250,0.18); }

.dh-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #DDEEFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #7ABEFA;
    flex-shrink: 0;
}
.dh-card-icon.type-hotel   { background: #fff3e0; color: #f5a623; }
.dh-card-icon.type-vehicle { background: #e8f5e9; color: #43a047; }
.dh-card-icon.type-tour    { background: #DDEEFF; color: #7ABEFA; }

.dh-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dh-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dh-card-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.dh-card-meta span { display: flex; align-items: center; gap: 4px; }

.dh-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.dh-card-total {
    font-size: 16px;
    font-weight: 700;
    color: #7ABEFA;
}

/* Status badges */
.dh-status {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.dh-status.completed  { background: #e8f8f0; color: #27ae60; }
.dh-status.pending    { background: #fff8e1; color: #f5a623; }
.dh-status.cancelled  { background: #fdecea; color: #e53935; }

.dh-cancel-btn {
    background: none;
    border: 1.5px solid #e53935;
    color: #e53935;
    border-radius: 8px;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.dh-cancel-btn:hover {
    background: #e53935;
    color: #fff;
}

/* Empty state */
.dh-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 14px;
    color: #aaa;
}
.dh-empty i { font-size: 48px; color: #DDEEFF; }
.dh-empty p { font-size: 15px; }
.dh-empty-btn {
    background: #7ABEFA;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: opacity 0.2s;
}
.dh-empty-btn:hover { opacity: 0.88; }

/* ===== NÚT ĐÁNH GIÁ ===== */
.dh-review-btn {
    background: none;
    border: 1.5px solid #7ABEFA;
    color: #7ABEFA;
    border-radius: 8px;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.dh-review-btn:hover {
    background: #7ABEFA;
    color: #fff;
}

.dh-reviewed-tag {
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== REVIEW OVERLAY ===== */
.rv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.rv-modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 440px;
    max-width: 92vw;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.rv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.rv-close:hover { color: #555; }

.rv-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.rv-product-name {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

.rv-stars {
    display: flex;
    gap: 8px;
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
}
.rv-stars i { transition: color 0.1s; }
.rv-stars i.active { color: #f5a623; }
.rv-stars i:hover { color: #f5a623; }

.rv-text {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    resize: none;
    outline: none;
    transition: border-color 0.15s;
}
.rv-text:focus { border-color: #7ABEFA; }

.rv-submit-btn {
    background: #7ABEFA;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}
.rv-submit-btn:hover { opacity: 0.88; }
