

        /* Base Styles & Color Palette */
        :root {
            --primary-green: #1a5632;
            --secondary-orange: #e67e22;
            --accent-purple: #9b51e0;
            --light-yellow: #f1c40f;
            --vibrant-red: #e74c3c;
            --dark-text: #333;
            --light-text: #fff;
            --bg-light: #f9f9f9;
            --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-md: 0 8px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --transition-fast: all 0.15s ease-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--bg-light);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
      
        .logo img {
            height: 50px;
            object-fit: contain;
            transition: var(--transition);
        }
        
        .logo:hover img {
            transform: rotate(15deg);
        }



/* Fun VegExpress Logo Styling */
.logo {
    font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-orange), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    text-decoration: none;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: bounce 2s infinite alternate;
    position: relative;
}

.logo-text::after {
    content: 'ðŸ¥¬';
    position: absolute;
    right: -30px;
    top: -5px;
    font-size: 1.5rem;

    animation: spin 4s linear infinite;
}

/* Fun Footer Heading Styling */
.footer-links h3 {
    font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.5rem !important;
    background: linear-gradient(45deg, var(--secondary-orange), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transform: rotate(-2deg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    padding: 0 10px;
    margin-bottom: 1.5rem;
}

.footer-links h3::before,
.footer-links h3::after {
    content: 'âœ¨';
    margin: 0 5px;
    font-size: 0.8rem;
    color: var(--light-yellow);
}

/* Animations */
@keyframes bounce {
    0% { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-5px) rotate(1deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add some fun hover effects */
.logo:hover .logo-text {
    animation: shake 0.5s;
}

.footer-links h3:hover {
    transform: rotate(2deg) scale(1.05);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

/* Update the logo HTML structure in your header */
/* Change from:
<a href="/" class="logo">
    <img src="logos/vg2-rem.png" alt="VegeExpress Logo">
    Vegeexpress
</a>
To:
<a href="/" class="logo">
    <img src="logos/vg2-rem.png" alt="VegeExpress Logo">
    <span class="logo-text">Vegeexpress</span>
</a>
*/








        
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        
        .desktop-nav a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }
        
        .desktop-nav a:hover {
            color: var(--primary-green);
        }
        
        .desktop-nav a.active {
            color: var(--primary-green);
            font-weight: 600;
        }
        
        .desktop-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-green);
            border-radius: 3px;
            animation: underlineGrow 0.3s ease-out forwards;
        }





@media (max-width: 768px) {
  .desktop-nav.show-mobile-nav {
    display: flex;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    z-index: 999;
    padding: 1rem 0;
  }

  .desktop-nav.show-mobile-nav a {
    padding: 1rem 2rem;
    border-top: 1px solid #eee;
  }
}





        
        @keyframes underlineGrow {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }


.filter-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #4CAF50, #FFA500);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #4CAF50, #FFA500);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}



        
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-green);
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            transform: rotate(90deg);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26,86,50,0.9), rgba(230,126,34,0.8)), 
                        url('bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 1rem 6rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            font-weight: 700;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }
        
        .cta-btn {
            display: inline-block;
            background-color: var(--light-text);
            color: var(--primary-green);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            font-size: 1.1rem;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .cta-btn:hover::before {
            left: 100%;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Floating Fruit Particles */
        .fruit-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        
        .fruit-particle {
            position: absolute;
            width: 40px;
            height: 40px;
            opacity: 0.6;
            background-size: contain;
            background-repeat: no-repeat;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }
        
        /* Product Filter */
        .filter-section {
            background-color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 80px;
            z-index: 900;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        .filter-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .filter-btn {
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            border: none;
            background-color: var(--bg-light);
            color: var(--dark-text);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            position: relative;
            overflow: hidden;
            font-size: 0.95rem;
        }
        
        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-orange));
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .filter-btn.active, .filter-btn:hover {
            color: white;
        }
        
        .filter-btn.active::before, .filter-btn:hover::before {
            opacity: 1;
        }
        
        /* Products Grid */
        .products-section {
            padding: 3rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 3rem;
            color: var(--primary-green);
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange));
            border-radius: 2px;
        }
        
        .category-title {
            font-size: 2.2rem;
            margin: 4rem 0 2rem;
            color: var(--primary-green);
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--secondary-orange);
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        
        .category-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50%;
            height: 3px;
            background: var(--accent-purple);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 5rem;
        }
        
        .product-card {
            background-color: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            perspective: 1000px;
            transform-style: preserve-3d;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .new-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--accent-purple), #7b2cbf);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.8rem;
            text-transform: uppercase;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .product-image {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
        }
        
        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            transition: var(--transition);
            transform-style: preserve-3d;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-details {
            padding: 1.8rem;
            text-align: center;
            position: relative;
            z-index: 2;
            background-color: white;
        }
        
        .product-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--dark-text);
            font-weight: 600;
            transition: var(--transition);
        }
        
        .product-card:hover .product-details h3 {
            color: var(--primary-green);
        }
        
        .product-details p {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 1rem;
            min-height: 60px;
        }
        
        .product-details .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin: 1rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }
        
        .product-details .price::before {
            content: 'â‚¦';
            font-size: 1.2rem;
        }
        
        .product-details .buy-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--secondary-orange), #d35400);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            margin-top: 0.5rem;
            border: none;
            cursor: pointer;
            width: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
        }
        
        .product-details .buy-btn:hover {
            background: linear-gradient(135deg, var(--primary-green), #0e8044);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 86, 50, 0.3);
        }
        
        .product-details .buy-btn i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }
        
        .product-details .buy-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Sparkle Effect */
        .sparkle {
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: white;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            z-index: 10;
            filter: blur(1px);
            animation: sparkle 1s ease-out forwards;
        }
        
        @keyframes sparkle {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                opacity: 0.8;
            }
            100% {
                transform: scale(15);
                opacity: 0;
            }
        }
        
        /* Floating Action Button */
        .fab-cart {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-orange));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            z-index: 100;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .fab-cart:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--vibrant-red);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #222, #111);
            color: white;
            padding: 5rem 1rem 2rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange), var(--accent-purple));
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3rem;
        }
        
        .footer-col {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .footer-logo img {
            height: 40px;
        }
        
        .footer-col p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .footer-links h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50%;
            height: 3px;
            background: var(--secondary-orange);
            border-radius: 3px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            position: relative;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-orange);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-links a:hover::after {
            width: 100%;
        }
        
        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }
        
        .social-links a:hover {
            color: var(--secondary-orange);
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        
        .newsletter {
            margin-top: 1.5rem;
        }
        
        .newsletter input {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 50px;
            border: none;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .newsletter button {
            width: 100%;
            padding: 0.8rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, var(--secondary-orange), #d35400);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .newsletter button:hover {
            background: linear-gradient(135deg, #d35400, var(--secondary-orange));
            transform: translateY(-2px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #999;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--secondary-orange);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .copyright a:hover {
            color: var(--accent-purple);
        }
        
        /* Mobile Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 6rem 1rem 4rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .category-title {
                font-size: 1.8rem;
            }
            
            .filter-section {
                top: 70px;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-container {
                gap: 0.5rem;
            }
            
            .filter-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .fab-cart {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                bottom: 20px;
                right: 20px;
            }
        }
    