.products-grid {
  position: relative;
  margin-top: 30px;
}

.product-card {
  width: 100%;
  /* height: 35vh; */
  aspect-ratio: 13 / 8;
  margin-bottom: var(--margin);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.product-card a {
  height: 100%;
  width: 100%;
  display: block;
}

.products-grid .product-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  padding: 0;
}

.product-image {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.product-info {
  position: absolute;
  bottom: 0;
  margin: calc(var(--margin) / 2);
  padding: calc(var(--margin) / 2);
  padding-bottom: 4px;
  display: flex;
  justify-content: space-between;
  width: -webkit-fill-available;
  background-color: rgba(141, 140, 142, 0.7);
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
.product-info * {
  line-height: 1;
}

.product-info p {
  font-size: 12px;
}

@media screen and (min-width: 700px) {
  .products-grid {
    top: 150px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--margin);
  }

  .product-title {
    font-size: 28px;
  }

  .product-info,
  .product-image {
    opacity: 0;
    transition: 0.3s ease-in-out;
  }

  .show {
    opacity: 1;
  }
}
