.shop-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 30px;
}

.shop-masonry-grid .product {
  display: flex;
  flex-direction: column;
}

.shop-masonry-grid .goldsmith-product-loop-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop-masonry-grid .goldsmith-product-thumb-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
}

.shop-masonry-grid .product .goldsmith-product-thumb {
  flex: 1;
  display: flex;
}

.shop-masonry-grid .product .goldsmith-product-thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.shop-masonry-grid .product .goldsmith-product-name {
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .shop-masonry-grid .product.big-column {
    grid-column: span 2;
    grid-row: span 2;
  }
}


