@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

.hero {
    background-image: url('http://static.photos/agriculture/1200x630/10');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

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

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

.grid > div {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.grid > div:nth-child(1) { animation-delay: 0.1s; }
.grid > div:nth-child(2) { animation-delay: 0.2s; }
.grid > div:nth-child(3) { animation-delay: 0.3s; }