    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    
    :root {
        /* Primary Colors - Agriculture Tech Theme */
        --primary-green: #2D5016;
        --secondary-green: #6BA83A;
        --light-green: #9BC96D;
        --accent-orange: #FF6B35;
        --tech-blue: #4A90E2;
        --dark-bg: #1A1A2E;
        --tech-gray: #475569;
        
        /* Functional Colors */
        --success: #4CAF50;
        --warning: #FFA726;
        --error: #FF5722;
        --info: #4A90E2;
    }
    
    body {
        font-family: 'Inter', 'Lato', system-ui, -apple-system, sans-serif;
        color: var(--dark-bg);
        background-color: #FAFAFA;
    }
    
    /* Background Utilities */
    .bg-primary { background-color: var(--primary-green); }
    .bg-secondary { background-color: var(--secondary-green); }
    .bg-accent-yellow { background-color: #FFC107; }
    .bg-accent-pink { background-color: #E91E63 !important; }
    .bg-tech-dark { background-color: var(--dark-bg); }
    
    /* Text Color Utilities */
    .text-primary { color: var(--primary-green) !important; }
    .text-secondary { color: var(--secondary-green) !important; }
    .text-accent-yellow { color: #FFC107 !important; }
    .text-accent-orange { color: var(--accent-orange) !important; }
    
    /* Hero Section */
    .hero-slider {
        background: linear-gradient(135deg, #2D5016 0%, #6BA83A 50%, #4A90E2 100%);
        min-height: 450px;
        position: relative;
    }
    
    .hero-slider::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.3;
    }
    
    /* Category Cards - Removed as per request */
    
    /* Product Cards - Removed as per request */
    
    /* Flash Sale Timer */
    .countdown-box {
        background: linear-gradient(135deg, var(--accent-orange) 0%, #FF5722 100%);
        border-radius: 12px;
        color: white;
        min-width: 70px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    
    /* Product Card Styling */
    .product-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(45, 80, 22, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(107, 168, 58, 0.1);
    }
    
    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(45, 80, 22, 0.15);
        border-color: rgba(107, 168, 58, 0.3);
    }
    
    /* Mega Menu - Removed as per request */
    
    /* Animations */
    @keyframes pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.02); }
    }
    
    .hot-offer {
        animation: pulse 2.5s ease-in-out infinite;
        color: var(--accent-orange);
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
    }
    
    .gradient-text {
        background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(180deg, var(--primary-green) 0%, #1f3a0f 100%);
    }
    
    .mobile-menu.open {
        transform: translateX(0);
    }
    
    .mobile-menu nav {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(107, 168, 58, 0.4) transparent;
    }
    
    .mobile-menu nav::-webkit-scrollbar {
        width: 4px;
    }
    
    .mobile-menu nav::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .mobile-menu nav::-webkit-scrollbar-thumb {
        background-color: rgba(107, 168, 58, 0.4);
        border-radius: 2px;
    }
    
    .mobile-menu nav::-webkit-scrollbar-thumb:hover {
        background-color: rgba(107, 168, 58, 0.6);
    }
    
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    #mobile-menu nav {
        scrollbar-width: thin;
        scrollbar-color: rgba(107, 168, 58, 0.4) transparent;
    }
    
    #mobile-menu nav::-webkit-scrollbar {
        width: 4px;
    }
    
    #mobile-menu nav::-webkit-scrollbar-track {
        background: transparent;
    }
    
    #mobile-menu nav::-webkit-scrollbar-thumb {
        background-color: rgba(107, 168, 58, 0.4);
        border-radius: 2px;
    }
    
    #mobile-menu nav::-webkit-scrollbar-thumb:hover {
        background-color: rgba(107, 168, 58, 0.6);
    }
    
    body.overflow-hidden {
        overflow: hidden !important;
    }
    
    body.fixed {
        position: fixed !important;
    }
    
    body.w-full {
        width: 100% !important;
    }
    
    /* Modern Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f5f1;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--secondary-green), var(--primary-green));
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-green);
    }
    
    /* Dropdown Menu Animations */
    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mega-menu {
        width: 1000px;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100vw - 2rem);
        min-width: 600px;
        overflow-y: auto;
        background: white;
        border: 1px solid rgba(107, 168, 58, 0.15);
        box-shadow: 0 20px 60px rgba(45, 80, 22, 0.12);
        border-radius: 12px;
    }
    
    .dropdown .mega-menu {
        position: absolute;
        top: 100%;
    }
    
    .dropdown:nth-child(-n+3) .mega-menu {
        left: 0;
        transform: none;
    }
    
    .dropdown:nth-last-child(-n+3) .mega-menu {
        right: 0;
        left: auto;
        transform: none;
    }
    
    .dropdown:nth-child(n+4):nth-last-child(n+4) .mega-menu {
        left: 50%;
        transform: translateX(-50%);
    }
    
    @media (max-width: 1200px) {
        .mega-menu {
            width: 900px;
        }
    }
    
    @media (max-width: 1024px) {
        .mega-menu {
            width: 800px;
        }
    }
    
    @media (max-width: 900px) {
        .mega-menu {
            width: 95vw;
            left: 2.5vw !important;
            right: 2.5vw;
            transform: none !important;
        }
    }
    
    .brands-mega-menu {
        width: 1200px;
        left: 1%;
        transform: translateX(-10%);
    }
    
    /* Line Clamp Utility */
    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Brand Scroll */
    .brand-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .brand-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    marquee:hover {
        animation-play-state: paused;
        -webkit-animation-play-state: paused;
    }
    
    /* Buttons & Interactive Elements */
    button, .btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    button:hover, .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
    }
    
    /* Tech-inspired accents */
    .tech-accent {
        position: relative;
        overflow: hidden;
    }
    
    .tech-accent::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(107, 168, 58, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .tech-accent:hover::before {
        left: 100%;
    }
    
    /* Badge Styles */
    .badge-new {
        background: linear-gradient(135deg, #4CAF50, #6BA83A);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .badge-sale {
        background: linear-gradient(135deg, #FF6B35, #FF5722);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }