.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  margin-bottom: 20px;
}

.product-grid li {
  list-style: none;
}

.product-grid .product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.product-grid .product img {
  width: 100%;
  max-height: 300px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.product-grid .product .ajax_add_to_cart {
  max-width: 200px;
}

.product h2 {
  font-size: 18px !important;
  margin: 0;
}
.product .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.product .price {
  margin-top: 0.5rem;
}



@media screen and (min-width: 768px) {
  .product h2 {
    font-size: 20px !important;
    margin: 0;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid .product img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
  }
}
