.block-product-card {
  position: relative;
}

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

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

/* Deutsche Feinabstimmung: Produktkarten werden visuell ruhiger, ohne Inhalt oder Links zu ändern. */
.block-product-card.product-card-style--card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .block-product-card.product-card-style--card:hover {
    transform: translateY(-1px);
  }
}
