/* product-card component */

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ece7e7;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 18px rgb(65 20 25 / 7%);
  scroll-snap-align: start;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  box-shadow: 0 12px 28px rgb(65 20 25 / 13%);
  transform: translateY(-4px);
}

.product-card-media {
  position: relative;
  display: grid;
  height: 175px;
  place-items: center;
  padding: 15px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-discount {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  min-width: 45px;
  padding: 6px 7px;
  border-radius: 5px 5px 8px 5px;
  background: var(--brand-red);
  box-shadow: 0 4px 10px rgb(237 0 23 / 22%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.product-favorite {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.product-favorite img {
  width: 18px;
}

.product-favorite.is-active {
  background: #fff0f2;
}

.product-favorite.is-active img {
  filter: invert(14%) sepia(99%) saturate(6348%) hue-rotate(350deg) brightness(101%);
}

.product-card-body {
  padding: 0 14px 14px;
}

.product-title {
  min-height: 38px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 7px;
}

.product-rating span {
  color: #ffae00;
}

.product-rating b {
  color: #ff9d00;
  font-size: 11px;
}

.product-rating small {
  color: #999;
  font-size: 9px;
}

.product-price {
  display: flex;
  min-height: 40px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.product-price del {
  color: #888;
  font-size: 9px;
}

.product-price strong {
  color: var(--brand-red);
  font-size: 17px;
}

.product-shipping {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 9px 0;
  color: #2c9d42;
  font-size: 9px;
  font-weight: 600;
}

.product-shipping img {
  width: 15px;
  filter: invert(52%) sepia(87%) saturate(413%) hue-rotate(78deg) brightness(87%);
}

.product-cart-button {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 6px;
  background: var(--brand-red);
  color: #fff;
  font: 600 11px "Roboto", sans-serif;
  cursor: pointer;
}

.product-cart-button img {
  width: 17px;
  filter: brightness(0) invert(1);
}

.product-cart-button.is-added {
  background: #209447;
}
