@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Hind+Siliguri:wght@400;600;700&display=swap');

:root {
    --primary: #064e3b;
    --accent: #f59e0b;
    --orange: #ea580c;
    --bg-light: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif; background: var(--bg-light); color: #0f172a; overflow-x: hidden; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Navbar with Glassmorphism */
.navbar {
    position: sticky; top: 0; width: 100%; background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 1000; padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--primary); text-decoration: none; }
.logo span { color: var(--accent); }
.user-profile img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--primary); transition: 0.3s; }
.user-profile img:hover { transform: scale(1.1); }

/* Scroll Reveal Animation */
.reveal { transform: translateY(30px); opacity: 0; transition: 0.8s all ease; }
.reveal.active { transform: translateY(0); opacity: 1; }

/* Hero with Mustard Field Image */
.hero { 
    padding: 100px 0; 
    text-align: center; 
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('https://images.unsplash.com/photo-1597113366853-9a93ad3f5d04?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.badge { background: var(--primary); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 15px; display: inline-block; }
.hero h1 { font-size: 40px; line-height: 1.2; color: var(--primary); margin-bottom: 15px; }
.highlight { color: var(--orange); }
.hero p { color: #1e293b; font-weight: 600; margin-bottom: 30px; max-width: 550px; margin: 0 auto 30px; }
.hero-stats { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.stat-box { background: rgba(255, 255, 255, 0.9); padding: 12px 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid var(--primary); }
.stat-box strong { display: block; font-size: 18px; color: var(--orange); }

/* Cards Styling */
.shop-section { padding: 40px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: #fff; border-radius: 25px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; transition: 0.3s; border: 1px solid #f1f5f9; }
.card:hover { transform: translateY(-10px); border-color: var(--primary); }
.img-box { background: #f8fafc; border-radius: 20px; padding: 20px; margin-bottom: 15px; }
.card img { width: 100%; height: 180px; object-fit: contain; }
.card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.new { font-size: 22px; font-weight: 800; color: var(--orange); }
.old { font-size: 13px; color: #94a3b8; text-decoration: line-through; }
.buy-btn { width: 100%; padding: 12px; background: var(--primary); color: #fff; border: none; border-radius: 15px; font-weight: 700; cursor: pointer; margin-top: 15px; transition: 0.3s; }
.buy-btn:hover { background: var(--orange); }

/* Full Footer */
.footer { background: #0f172a; color: #f8fafc; padding: 70px 0 30px; margin-top: 60px; border-radius: 50px 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer h4 { color: var(--accent); margin-bottom: 25px; font-size: 18px; }
.footer p, .footer li { color: #94a3b8; font-size: 14px; margin-bottom: 12px; list-style: none; }
.footer a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
.footer a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; background: #1e293b; display: flex; align-items: center; justify-content: center; border-radius: 12px; color: #fff; font-size: 18px; text-decoration: none; }
.tk:hover { background: #000; } 
.fb:hover { background: #1877F2; } 
.yt:hover { background: #FF0000; } 
.wa:hover { background: #25D366; }

@media (max-width: 768px) { .grid { grid-template-columns: 1fr;