/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 30 2025 | 02:17:17 */
/* --- Geral: wrapper .product-card --- */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-card img,
.product-card picture img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .45s ease, filter .45s ease;
  position: relative;
  z-index: 1;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg,
    rgba(255,182,193,0.36) 0%,
    rgba(255,228,235,0.28) 40%,
    rgba(255,255,255,0.60) 100%);
  mix-blend-mode: soft-light;
  z-index: 2;
  transition: transform .35s ease, opacity .35s ease;
}

.product-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) brightness(1.02);
}

