/* Стили для кнопки фильтров в плавающем меню */
.menu-button.filters-button {
    display: flex;
}

/* Стили для иконки фильтров */
.menu-button.filters-button .menu-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-bottom: 4px;
}

/* Hover эффект для кнопки фильтров */
.menu-button.filters-button:hover {
    color: var(--act-col);
}

.menu-button.filters-button:hover .menu-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
} 