/* Small custom styles that go beyond plain Tailwind utility classes */

html {
  scroll-behavior: smooth;
}

/* Subtle pulse to draw the eye to the checkout buttons without being obnoxious */
.checkout-link {
  animation: pulse-cta 2.5s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.35); }
  50%      { box-shadow: 0 0 0 12px rgba(5, 150, 105, 0); }
}
