@media (min-width: 740px) and (max-width: 1440px) {
    .product-card {
        max-width: 438px;
    }
}

@keyframes enter {
  from {
    transform: translateY(8px);
    filter: blur(5px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    filter: blur(0px);
    opacity: 1;
  }
}

.animate-enter {
  animation: enter 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: calc(var(--computed-delay, 0ms) + 400ms);
  will-change: transform, opacity;
}