@keyframes fp-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes fp-glow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(152, 196, 83, 0.3);
  }
  50% {
    box-shadow: 0 0 24px rgba(152, 196, 83, 0.7);
  }
}
@keyframes fp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes fp-scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fp-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fp-btn--green {
  animation: fp-glow 3s ease-in-out infinite;
}
.fp-btn--green:hover {
  animation: none;
}
.fp-promo-card {
  animation: fp-scale-in 0.4s ease both;
}
.fp-hero__content {
  animation: fp-slide-up 0.6s ease both;
}
.fp-widget {
  animation: fp-slide-up 0.5s ease 0.5s both;
}
