/* Ürün kartı iyileştirmeleri - Orenmo */

.product-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.product-item__image-wrapper {
  overflow: hidden;
}

.product-item__image-wrapper img {
  transition: transform 0.5s ease;
}

.product-item:hover .product-item__image-wrapper img {
  transform: scale(1.04);
}

.product-item__title {
  font-weight: 600;
  line-height: 1.35;
}

.product-item__price-list .price--compare {
  text-decoration: line-through;
  opacity: 0.7;
}

@media screen and (max-width: 640px) {
  .product-item:hover {
    transform: translateY(-3px);
  }
}
