body.page-products .products-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
@media (max-width: 1024px){
  body.page-products .products-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  body.page-products .products-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

body.page-products .product-card{
  position:relative;
  display:block;
  background:#fff;
  border:1px solid #e6edf7;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(2,10,24,.06);
}

body.page-products .product-card__thumb{
  width:100%;
  aspect-ratio:1/1;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
}

body.page-products .product-card__img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

body.page-products .product-card__body{
  padding:14px 14px 16px;
}
