.account-card,
.account-section,
.account-sidebar {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.account-menu li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.account-menu li.active a,
.account-menu li a:hover {
    color: var(--secondary-font-color, #c58b8b);
}
.account-form input,
.account-form textarea,
.account-form select {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    background: #fff;
}
.account-form textarea {
    min-height: 110px;
    resize: vertical;
}
.account-table-wrap {
    overflow-x: auto;
}
.account-table {
    border-collapse: collapse;
    min-width: 720px;
}
.account-table th,
.account-table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
}
.account-table th {
    color: var(--heading-font-color, #222);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.02);
}
.small-btn {
    min-height: 38px;
    padding: 9px 16px;
    font-size: 13px;
}
.status-pill,
.payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.06);
    color: var(--heading-font-color, #222);
}
.payment-paid {
    background: rgba(33, 160, 85, 0.12);
    color: #168047;
}
.payment-partial {
    background: rgba(245, 156, 35, 0.14);
    color: #a35f00;
}
.payment-unpaid {
    background: rgba(220, 53, 69, 0.10);
    color: #b02a37;
}
.address-card,
.account-stat {
    height: 100%;
}
.gap-10 {
    gap: 10px;
}
.gap-15 {
    gap: 15px;
}
.danger-btn {
    background: #dc3545;
    color: #fff !important;
    border-color: #dc3545;
}
.order-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.order-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
}
.order-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.08);
    color: transparent;
}
.order-step.done {
    color: var(--heading-font-color, #222);
    font-weight: 600;
}
.order-step.done .order-step-dot {
    background: rgba(33, 160, 85, 0.15);
    color: #168047;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.summary-line.total {
    font-weight: 700;
    font-size: 18px;
    color: var(--heading-font-color, #222);
}
.order-product:first-of-type {
    border-top: 0 !important;
}
.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 18px;
}
.alert-success {
    background: rgba(33, 160, 85, 0.12);
    color: #168047;
}
.alert-danger {
    background: rgba(220, 53, 69, 0.10);
    color: #b02a37;
}
@media (max-width: 767px) {
    .account-table {
        min-width: 650px;
    }
    .order-steps {
        display: block;
    }
    .order-step + .order-step {
        margin-top: 12px;
    }
}
