.product-card {
  flex: 0 0 min(100%, 320px);
  width: min(100%, 320px);
  box-sizing: border-box;
  overflow: hidden;
  color: #111111;
  background: #fbf7f2;
  border: 1px solid #d8c7b8;
  border-radius: 16px;
}

.product-card__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card__media {
  box-sizing: border-box;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #d8c7b8;
}

.product-card__media img {
  width: 76%;
  height: 76%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.product-card__body {
  display: block;
  box-sizing: border-box;
  min-height: 160px;
  padding: 24px 22px 26px;
  background: #fbf7f2;
}

.product-card__brand {
  margin: 0 0 14px;
  color: #111111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card__title {
  margin: 0;
  color: #111111;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.product-card__description {
  margin: 9px 0 0;
  color: #88796a;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.product-card__price {
  margin: 20px 0 0;
  color: #111111;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

@media (max-width: 720px) {
  .product-card {
    flex-basis: calc(50% - 6px);
    width: calc(50% - 6px);
    border-radius: 12px;
  }

  .product-card__media {
    height: 170px;
  }

  .product-card__body {
    min-height: 128px;
    padding: 14px 12px 16px;
  }

  .product-card__brand {
    margin-bottom: 9px;
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .product-card__title {
    font-size: 0.9rem;
  }

  .product-card__description {
    margin-top: 8px;
    font-size: 0.76rem;
  }

  .product-card__price {
    margin-top: 12px;
    font-size: 1.08rem;
  }
}

@media (max-width: 360px) {
  .product-card {
    flex-basis: 100%;
    width: 100%;
  }
}
