/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF85A2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5738e;
}

/* Product hover effect */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Responsive typography */
@media (min-width: 1024px) {
    .text-hero {
        font-size: 3.5rem;
        line-height: 1.2;
    }
}
.footer-link:hover {
    color: #FF85A2;
    transform: translateX(4px);
}
.social-icon {
    transition: all 0.3s ease;
}
.social-icon:hover {
    transform: translateY(-3px);
    color: #FF85A2;
}
.payment-icon {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.payment-icon:hover {
    filter: grayscale(0%);
    opacity: 1;
}