.account-panel__title {
    margin: 0;
    padding-bottom: 28px;
    font-size: 32px;
    color: #fb5d5d;
}


.orders-table-wrap {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.orders-table thead th {
    background: #faf7f2;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 16px;
    border: 1px solid #eceae4;
    text-align: left;
}

.orders-table tbody td {
    padding: 18px 16px;
    border: 1px solid #eceae4;
    font-size: 16px;
    color: #333;
    vertical-align: middle;
}

.order-link {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.order-link:hover {
    color: #ff2758;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef8f1;
    color: #1f8a4d;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.order-view-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff2758;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.order-view-btn:hover {
    background: #e61f4d;
    color: #fff;
}

.orders-empty {
    text-align: center;
    padding: 40px 20px;
}

.orders-empty h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #111;
}

.orders-empty p {
    margin: 0 0 20px;
    color: #666;
    font-size: 16px;
}

.orders-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ff6464;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.orders-shop-btn:hover {
    color: #fff;
    opacity: 0.92;
}

/* Modal */
.order-modal__content {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.order-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid #eceae4;
    background: #fff;
}

.order-modal__eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
}

.order-modal__title {
    margin: 0;
    font-size: 30px;
    color: #111;
}

.order-modal__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f5f3ee;
    color: #666;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.order-modal__body {
    padding: 22px 24px;
    background: #fff;
}

.order-modal__table-wrap {
    overflow-x: auto;
}

.order-detail-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.order-detail-table thead th {
    background: #faf7f2;
    padding: 14px 12px;
    border: 1px solid #eceae4;
    font-size: 15px;
    color: #111;
    text-align: left;
}

.order-detail-table tbody td {
    padding: 14px 12px;
    border: 1px solid #eceae4;
    font-size: 15px;
    color: #333;
    vertical-align: middle;
}

.order-detail-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.order-modal__footer {
    padding: 18px 24px 24px;
    display: flex;
    justify-content: flex-end;
    background: #fff;
}

.order-modal__btn {
    min-width: 120px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #ff6464;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.order-modal__btn:hover {
    opacity: 0.92;
}

.text-center {
    text-align: center;
}

@media (max-width: 767px) {
    .account-panel__title {
        font-size: 28px;
    }

    .order-modal__header,
    .order-modal__body,
    .order-modal__footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .order-modal__title {
        font-size: 24px;
    }
}