.swiper-slide {
    flex-shrink: unset !important;
}
.swiper-wrapper{
    display: grid !important;
    grid-template-columns: repeat(4 , 1fr);
    gap: 10px;
}
.product .img-product a img{
    height: 300px !important;
    width: 100%;
}

@media (max-width : 1000px) {
    .swiper-wrapper{
        display: grid !important;
        grid-template-columns: repeat(3 , 1fr);
        gap: 10px;
    }
    .product .icons{
        justify-content: space-between;
    }
}

@media (max-width : 730px) {
    .swiper-wrapper{
        display: grid !important;
        grid-template-columns: repeat(2 , 1fr);
        gap: 10px;
    }
    .product .img-product a img{
        height: 200px !important;
        width: 100%;
    }
}

@media (max-width : 500px) {
    .product .icons .icon-product{
        display: none !important;
    }
    .products .icons .btn-add-cart{
        width: 100%;
        justify-content: center;
        padding: 10px 2px !important;
        font-size: 14px !important;
    }
}