.v2-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.v2-product-card {
  display: grid;
  grid-template-rows: 300px minmax(310px, 1fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(6, 6, 6, 0.2);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.v2-product-card > .product-texture {
  position: relative;
  inset: auto;
  width: 100%;
  height: 300px;
  min-height: 300px;
  padding: 26px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(8, 8, 8, 0.12);
}

.v2-product-card > .product-texture img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.v2-product-card > div:last-child {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 12px;
  height: 100%;
  padding: 22px;
  background: rgba(6, 6, 6, 0.2);
}

.v2-product-card h3 {
  display: -webkit-box;
  min-height: 3.4rem;
  overflow: hidden;
  font-size: 1.65rem;
  line-height: 1.03;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v2-product-card > div:last-child > span {
  display: -webkit-box;
  min-height: 2.7rem;
  overflow: hidden;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v2-card-meta {
  align-self: end;
  margin-top: auto;
}

.v2-card-actions {
  align-self: end;
}

@media (max-width: 1099px) {
  .v2-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .v2-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v2-product-card {
    grid-template-rows: 250px minmax(300px, 1fr);
    min-height: 550px;
  }

  .v2-product-card > .product-texture {
    height: 250px;
    min-height: 250px;
    padding: 20px;
  }

  .v2-product-card > div:last-child {
    padding: 20px;
  }

  .v2-product-card h3 {
    min-height: 3rem;
    font-size: 1.48rem;
  }
}
