/* Product placeholder image styling */
.product-placeholder-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

/* Product image lazy loading */
.product-img-lazy {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.product-img-lazy.loaded {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
