.product-card {
  min-height: 465px;
  overflow: hidden;
}

.product-card__media {
  position: relative;
  height: 150px;
  margin: 18px 0 16px;
  overflow: hidden;
  border: 1px solid #e1e2de;
  border-radius: 10px;
  background: #f1f2ef;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .25s ease;
}

.product-card h3 a:hover {
  color: var(--accent);
}

.product-card__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-card__quantity span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}

.product-card__quantity input {
  width: 76px;
  height: 38px;
  border: 1px solid #cfd2ce;
  border-radius: 4px;
  background: #fff;
  padding: 0 8px;
}

.product-card__quantity input:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(230, 111, 33, .14);
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__media span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(31, 41, 46, .88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .product-card {
    min-height: 440px;
  }

  .product-card__media {
    height: 132px;
  }
}
