/** Shopify CDN: Minification failed

Line 35:0 Expected "}" to go with "{"

**/
custom-animations.js
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.card__media img, .media img, .banner__media img {
  transition: transform 0.6s ease;
}
.card__media:hover img, .media:hover img {
  transform: scale(1.03);
}
.button, .btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
body {
  animation: pageFadeIn 0.5s ease;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
