.mw__product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mw-product-card__badge-container {
  position: absolute;
  top: 45%;
  left: 20px;
}

.mw-product-card__badge {
  font-family: var(--font-buttons);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  padding: 5px 10px;
  border-radius: 100px;
}

.mw-product-card__badge.sold-out {
  background-color: #be2b2d;
}

.mw-product-card__badge.sale {
  background: var(--gradient-button);
  display: none;
}

.mw__product-card .price {
  text-align: center;
}

.mw__product-card .price span {
  color: var(--mw-grey);
  font-family: var(--font-body-family);
  font-size: 1.8rem;
}

.mw__product-card .price-item.price-item--sale {
  font-weight: 700;
}

.mw-product-card__product-img {
  max-width: 300px;
  height: auto;
}

.mw-product-card__heading {
  font-family: var(--font-body-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--mw-grey);
  line-height: 30px;
  text-align: center;

  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 990px) {
  a:has(.mw__product-card) .mw-product-card__product-img {
    transition: all 0.2s ease-in;
  }

  a:has(.mw__product-card):hover .mw-product-card__product-img {
    transform: scale(1.05);
  }
}
