@media (min-width: 768px) {
    /* Стили для режима сетки */
    .swiper-grid-mode {
        overflow: visible !important;
    }

    .swiper-grid-mode .swiper-wrapper {
        display: grid;
        gap: 20px; /* Значение по умолчанию, будет переопределено в JS */
        transform: none !important;
        transition: none !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }

    .swiper-grid-mode .swiper-slide {
        width: 100% !important;
        height: auto !important;
        flex-shrink: 0;
        transition: none !important;
        transform: none !important;
        margin-right: 0 !important;
    }

    /* Скрываем элементы управления слайдера в режиме сетки */
    .swiper-grid-mode ~ .swiper-button-next,
    .swiper-grid-mode ~ .swiper-button-prev,
    .swiper-grid-mode ~ .swiper-pagination {
        display: none !important;
    }

    .swiper.swiper-grid-mode {
        opacity: 1;
    }
}

.swiper-grid-mode .swiper-slide.product-card {
    height: auto !important;
}


