.products-container-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.products-item-wrapper {
    padding: 10px;
    width: 25%;
    display: none;
}
.products-item-wrapper.active {
    display: block;
}

.product__img--products {
    overflow: hidden;
}
.product__img--products img {
    width: 100%;
}

@media (max-width: 1130px) {
    .products-item-wrapper {
        width: 33.33%;
    }
}
@media (max-width: 860px) {
    .products-item-wrapper {
        width: 50%;
    }
}
