.p-order-list {
    width: 100%;
}

.p-order-list__loading,
.p-order-list__empty {
    padding: 3rem 1rem;
    text-align: center;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.p-order-list__loading i,
.p-order-list__empty i {
    font-size: 2.5rem;
    color: #ddd;
}

.p-order-list__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-order-list__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.p-order-list__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.p-order-list__id {
    display: flex;
    flex-direction: column;
}

.p-order-list__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.p-order-list__value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #20213D;
    font-family: var(--font-primary);
}

.p-order-list__status-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.p-order-list__status--success { background: #e8f5e9; color: #2e7d32; }
.p-order-list__status--info { background: #e3f2fd; color: #1976d2; }
.p-order-list__status--warning { background: #fff3e0; color: #ef6c00; }
.p-order-list__status--danger { background: #ffebee; color: #c62828; }
.p-order-list__status--neutral { background: #f3f4f6; color: #6b7280; }

.p-order-list__status-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.p-order-list__status-badge--payment {
    opacity: 0.75;
    font-size: 0.65rem;
}

.p-order-list__card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.p-order-list__info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #666;
}

.p-order-list__info-item i {
    width: 16px;
    text-align: center;
}

.p-order-list__total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.p-order-list__total .p-order-list__value {
    color: var(--secondary-color);
}

