/* Enhanced Animations for OnePass */

/* Fade-in animation for scroll triggers */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Product card hover effects */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Philosophy card hover cursor */
#brand-values .text-center {
    cursor: pointer;
    transition: transform 0.2s ease;
}

#brand-values .text-center:hover {
    transform: scale(1.05);
}

/* Email form focus states */
.email-form-container {
    transition: all 0.3s ease;
}

/* Button pulse effect */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-pulse:hover {
    animation: pulse 1s infinite;
}