/* ===============================================
   ORDER CARD COMPONENT
   Order status cards with details and status indicators
   =============================================== */

.order-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.2s var(--ease-out);
    cursor: pointer;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.order-number {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
}

.order-status {
    padding: 4px var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

.order-status.confirmed { background: #dcfce7; color: #15803d; }
.order-status.pending { background: #fef3c7; color: #b45309; }
.order-status.processing { background: #dbeafe; color: #1e40af; }
.order-status.delivered { background: #dcfce7; color: #166534; }

.order-customer {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-normal);
}

.order-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.order-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.order-detail-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
}

.order-detail-value {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}