.order-page-inner {
    padding: 12px 14px 24px;
    max-width: 480px;
    margin: 0 auto;
}

.order-page-title {
    font-size: 18px;
    font-weight: 700;
    color: #e65c00;
    margin-bottom: 14px;
}

.order-user-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.order-card h2 {
    font-size: 16px;
    color: #e65c00;
    margin-bottom: 10px;
}

.order-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.order-card th,
.order-card td {
    padding: 8px 4px;
    border-bottom: 1px dashed #ddd;
    text-align: left;
}

.order-card th:last-child,
.order-card td:last-child {
    text-align: right;
}

.order-card .total-row td {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
    padding-top: 12px;
    color: #e65c00;
}

.order-empty {
    text-align: center;
    padding: 24px;
    color: #888;
    font-size: 15px;
}

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.order-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
}

.order-btn-primary {
    background: #e65c00;
    color: #fff;
}

.order-btn-secondary {
    background: #fff;
    color: #e65c00;
    border: 2px solid #e65c00;
}

.order-history-heading {
    font-size: 17px;
    color: #e65c00;
    margin-bottom: 12px;
}

.history-card {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.history-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #fafafa;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.history-head:hover {
    background: #fff5ee;
}

.history-body {
    display: none;
    padding: 12px 14px;
    border-top: 1px solid #eee;
}

.history-body.open {
    display: block;
}

.history-body table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
}

.history-body th,
.history-body td {
    padding: 6px 4px;
    border-bottom: 1px solid #f0f0f0;
}

.order-spinner-wrap {
    text-align: center;
    padding: 40px;
}

.order-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ffe0cc;
    border-top-color: #e65c00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

.order-footer-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 24px;
}

.hidden {
    display: none !important;
}
