@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bzargo-animate-fade-in-up {
  animation: fadeInUp 0.5s ease;
}

/* Hover animation */
.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Button animation */
.bzargo-button {
  transition: 0.2s;
}

.bzargo-button:hover {
  transform: scale(1.03);
}