/* DESKTOP = exactement ton template d'avant */
.products-grid{
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}


/* MOBILE COMPACT */
@media (max-width: 520px){
  .products-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  .product-card__imgwrap{ padding: 6px !important; }
  .product-card__img{ height: 88px !important; }
  .product-card__body{ padding: 0 8px 8px 8px !important; }

  .product-card__desc{
    font-size: 12px !important;
    line-height: 16px !important;
    max-height: 32px !important;
    overflow: hidden !important;
  }

  .product-card__price{
    margin-top: 4px !important;
    font-size: 13px !important;
  }
}