/* Чипы выбранных фильтров - ТОЛЬКО ЭТО НОВОЕ */
.chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0f4f8;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

.chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.chip-remove:hover {
    color: #e74c3c;
}

.chip-remove svg {
    width: 14px;
    height: 14px;
}