/**
 * PremiumPairing - Custom CSS
 * Minimal overrides & animations for the public site.
 */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Gold pulse animation for featured pricing card */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.15);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(245, 158, 11, 0.1);
    }
}

.gold-pulse {
    animation: pulse-gold 2s ease-in-out infinite;
}
