.car-interest-section {
    min-width: 0;
}

.car-interest-header {
    margin-bottom: 18px;
}

.car-interest-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-interest-header p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin: 0;
}

.car-interest-list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
}

.car-interest-empty {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
    padding: 24px 0;
}

.car-interest-row {
    display: grid;
    grid-template-columns: minmax(160px, 1.4fr) minmax(120px, 2fr) 70px 36px;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.car-interest-row:last-child {
    border-bottom: none;
}

.car-interest-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.car-interest-bar-wrap {
    position: relative;
    height: 14px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.car-interest-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 999px;
    transition: width 0.5s ease;
    min-width: 4px;
}

.car-interest-count {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.car-interest-delete {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #94a3b8;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.car-interest-delete:hover {
    background: #fee2e2;
    color: #ef4444;
}

.car-interest-delete svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 720px) {
    .car-interest-row {
        grid-template-columns: 1fr 70px 36px;
        gap: 10px 12px;
        padding: 14px 0;
    }

    .car-interest-name {
        grid-column: 1 / -2;
    }

    .car-interest-bar-wrap {
        grid-column: 1 / -2;
        order: 3;
    }

    .car-interest-count {
        text-align: right;
    }
}

/* ─── Svetla tema ──────────────────────────────────────────────────── */
[data-theme="light"] .car-interest-delete {
    color: var(--text-muted);
}

[data-theme="light"] .car-interest-delete:hover {
    background: #fee2e2;
    color: #ef4444;
}
