/* ═══════════════════════════════════════════════════
   COSTS — ImportControl
   ═══════════════════════════════════════════════════ */

.cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.cost-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2-5) var(--space-3-5);
    background: var(--surface-raised);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.cost-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}

.cost-value {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.cost-field.highlight {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.cost-field.highlight .cost-label { color: rgba(255, 255, 255, 0.6); }
.cost-field.highlight .cost-value { color: var(--text-inverse); }

.cost-field.profit {
    background: var(--success-bg);
    border-color: rgba(16, 124, 16, 0.2);
}

.cost-field.profit .cost-value { color: var(--success); }

@media (max-width: 768px) {
    .cost-grid { grid-template-columns: 1fr; }
}

.profit-indicator {
    font-family: var(--font-mono);
    font-weight: var(--weight-semibold);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.profit-indicator.positive { color: var(--success); }
.profit-indicator.negative { color: var(--danger); }

.costs-table {
    font-size: 13px;
}

.costs-table .cost-label {
    color: var(--text-secondary);
}

.costs-table .cost-value {
    font-family: var(--font-mono);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    text-align: right;
}

.costs-table .cost-value.total-row {
    border-top: 2px solid var(--border-subtle);
    font-weight: var(--weight-bold);
    padding-top: var(--space-2-5);
    margin-top: var(--space-1);
}

.costs-table .cost-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
}
