/* Популярные товары */
        .section-title {
            font-size: 24px;
            margin: 40px 0 20px;
            text-align: center;
            color: #333;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .product-card {
            background: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-category {
            font-size: 12px;
            color: #777;
            margin-bottom: 5px;
        }
        .product-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            min-height: 40px;
        }
        .product-subname {
            font-size: 12px;
            color: #555;
            margin-bottom: 10px;
        }
        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #111;
            margin-bottom: 15px;
        }
        .product-button {
            display: block;
            text-align: center;
            background: #fbd303;
            color: #000;
            padding: 8px;
            border-radius: 4px;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
        }
        .product-image-container {
            height: 200px;
            width: 100%;
            overflow: hidden;
            border-radius: 6px;
            margin-bottom: 12px;
            position: relative;
            background: #ffffff;
        }
        .product-image {
            width: auto;
            height: 100%;
            max-width: 100%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            object-fit: cover;
            object-position: center;
        }

        .filter-subgroup {
    display: flex;
    gap: 10px;
}

.filter-subgroup .filter-group {
    flex: 1;
}

        @media (max-width: 768px) {
    .filters-row {
        flex-direction: column;
    }

    .filter-content {
        flex-direction: column;
    }

    .filter-image {
        display: none;
    }

    .filter-row {
        flex-direction: column;
    }

    .filter-fields {
        width: 100%;
    }

    .filter-group select {
        width: 100%;
    }

    .filter-subgroup {
        flex-direction: row;
        gap: 10px;
    }
    
    .filter-subgroup .filter-group {
        flex: 1;
    }
}