/* ── SUMMARY CARDS ───────────────────────────────────────── */

.inv-summary-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.inv-summary-card {
    background: #ffffff;
    border: 1px solid #e2e8f4;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    flex: 1;
    min-width: 160px;
    box-shadow: 0 1px 3px rgba(26, 34, 54, 0.06), 0 4px 16px rgba(26, 34, 54, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inv-summary-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b6aaa;
}

.inv-summary-stock {
    font-family: 'DM Mono', monospace;
    font-size: 2rem;
    font-weight: 600;
    color: #1a2236;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.inv-summary-unit {
    font-size: 0.78rem;
    color: #6b7a99;
}

/* ── QTY IN / OUT CELLS ──────────────────────────────────── */

.inv-qty-in {
    color: #059669 !important;
    font-weight: 600 !important;
}

.inv-qty-out {
    color: #dc2626 !important;
    font-weight: 600 !important;
}

@@media (max-width: 640px) {
    .inv-summary-row {
        flex-direction: column;
    }
}
