/* TABLET */

@media(min-width:768px){

.products-wrap{

grid-template-columns:
repeat(3,1fr);

gap:15px;

}

.product-card img{
height:130px;
}

}


/* LAPTOP */

@media(min-width:1024px){

.products-wrap{

grid-template-columns:
repeat(5,1fr);

}

.product-card img{

height:150px;

}

}


/* BIG SCREEN */

@media(min-width:1280px){

.page-wrap{

max-width:1400px;
margin:auto;

}

}