/* Custom styles that extend Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.prose {
    line-height: 1.6;
}

.prose p {
    margin-bottom: 1.25em;
}

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

/* Custom animation for product cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--order) * 0.1s);
}