.block-product-card {
  position: relative;
  height: 100%;
  color: rgb(var(--kemove-text));
  border-radius: var(--kemove-radius);
  transition:
    transform 220ms var(--kemove-ease-out),
    box-shadow 220ms var(--kemove-ease-out);
}

.block-product-card.product-card-style--card {
  background-color: rgb(var(--color-background));
}

@media (min-width: 960px) {
  .block-product-card:hover {
    transform: translateY(-3px);
  }
}

.block-product-card.product-card-style--card .block-product-price,
.block-product-card.product-card-style--card .block-product-title {
  padding-inline: 10px;
}

.block-product-card .block-product-title {
  color: rgb(var(--kemove-text));
  font-weight: 600;
  line-height: 1.35;
}

.block-product-card .block-product-price {
  color: rgb(var(--kemove-muted));
  font-size: 13px;
  line-height: 1.4;
}
