.tags {
  column-gap: 0.5em;
  row-gap: 0.25em;
}
.tags .tag {
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 0.75em;
  border-radius: 21px;
  padding: 0 1em;
  height: 1.75rem;
}
.tags .tag > span {
  line-height: 1em;
  transform: translateY(12%);
}
@media screen and (max-width: 960px) {
  .tags .tag {
    font-size: 12px;
  }
}
.tags .tag.tag-hot {
  background: #EF4142;
}
.tags .tag.tag-green {
  background: #44BEA8;
  column-gap: 0.25rem;
}
.tags .tag.tag-new {
  background: #2680F8;
}
.tags .tag.percentage {
  font-size: 1.06rem;
  background: #EF4142;
  height: 2.18rem;
}
@media screen and (max-width: 960px) {
  .tags .tag.percentage {
    font-size: 17px;
  }
}
.tags .tag.last-item {
  background: #EF4142;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid rgba(136, 136, 136, 0.2);
  box-shadow: 0px 4px 74px rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  padding: 1.37em 1.31em 2.18em 1.31em;
}
.product-card .heart svg {
  width: 2rem;
  display: inline-block;
}
.product-card .inner {
  row-gap: 1rem;
  height: 100%;
}
.product-card .inner .head {
  flex-direction: row-reverse;
  width: 100%;
}
.product-card .inner .product-name {
  text-align: center;
  padding: 0 1.5rem;
}
@media screen and (max-width: 960px) {
  .product-card .inner .product-name {
    font-size: 21px;
  }
}
.product-card .inner .prod-img {
  margin-top: 0;
}
.product-card .inner .prod-img a {
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .product-card .inner .prod-img a {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.product-card .inner .prices {
  align-items: baseline;
  column-gap: 0.37em;
  margin-top: auto;
}
.product-card .inner .prices .price {
  color: #2680F8;
}
@media screen and (max-width: 960px) {
  .product-card .inner .prices .price {
    font-size: 24px;
  }
}
.product-card .inner .prices .price.old {
  font-weight: 400;
  justify-content: center;
  text-decoration: line-through;
  color: #8A8A8A;
}
@media screen and (max-width: 960px) {
  .product-card .inner .prices .price.old {
    justify-content: center;
    font-size: 21px;
  }
}
.product-card .inner .prices .price.discounted {
  color: #EF4142;
}