        @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&display=swap');
        
        :root {
            --primary-blue: #041e42;
            --secondary-blue: #7BBBDD;
            --accent-yellow: #fcb215;
            --accent-pink: #ec1b24;
            --dark-blue: #00275e;
        }
        
        body {
            font-family: 'Lato', Arial, Helvetica, sans-serif;
        }
        
        .bg-primary { background-color: var(--primary-blue); }
        .bg-secondary { background-color: var(--secondary-blue); }
        .bg-accent-yellow { background-color: var(--accent-yellow); }
        .bg-accent-pink { background-color: var(--accent-pink); }
        .text-primary { color: var(--primary-blue); }
        .text-secondary { color: var(--secondary-blue); }
        .text-accent-yellow { color: var(--accent-yellow); }
        
        .hero-slider {
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-blue) 100%);
            min-height: 400px;
        }
        
        .category-card {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        /*.product-card {
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        }*/
        
        /*.flash-sale-timer {
            background: linear-gradient(135deg, var(--accent-pink) 0%, #d41e29 100%);
            border-radius: 8px;
            color: white;
        }*/
        
        .countdown-box {
            background: rgba(255,255,255,0.2);
            border-radius: 6px;
            backdrop-filter: blur(10px);
        }
        
        /*.mega-menu {
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            backdrop-filter: blur(20px);
        }*/
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .hot-offer {
            animation: pulse 2s infinite;
            color: var(--accent-yellow);
            font-weight: 600;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
            -webkit-background-clip: text;
            /*-webkit-text-fill-color: transparent;*/
            background-clip: text;
        }
/*------ mobile -----------------*/
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Ensure smooth scrolling on mobile */
.mobile-menu nav {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Custom scrollbar for webkit browsers */
.mobile-menu nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu nav::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.mobile-menu nav::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/*new*/
/* Enhanced mobile menu scrolling */
#mobile-menu nav {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Custom scrollbar for webkit browsers */
#mobile-menu nav::-webkit-scrollbar {
    width: 4px;
}

#mobile-menu nav::-webkit-scrollbar-track {
    background: transparent;
}

#mobile-menu nav::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

#mobile-menu nav::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Prevent body scrolling when mobile menu is open */
body.overflow-hidden {
    overflow: hidden !important;
}

body.fixed {
    position: fixed !important;
}

body.w-full {
    width: 100% !important;
}

/*-- end mobile design --*/
        /* Modern scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--secondary-blue);
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-blue);
        }
/* code for menu drop-down and other*/

        .dropdown:hover .dropdown-menu {
            display: block;
            animation: fadeInDown 0.3s ease-out;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            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;
        }
        
        /* Prevent overflow on both sides */
        .dropdown .mega-menu {
            position: absolute;
            top: 100%;
        }
        
        /* Left-side menu items */
        .dropdown:nth-child(-n+3) .mega-menu {
            left: 0;
            transform: none;
        }
        
        /* Right-side menu items */
        .dropdown:nth-last-child(-n+3) .mega-menu {
            right: 0;
            left: auto;
            transform: none;
        }
        
        /* Center menu items - keep centered */
        .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%);
        }
/*start flash-sale*/
        .countdown-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            color: white;
            min-width: 70px;
        }
        .product-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
/*end flash-sale*/

/* start brands */
.brand-scroll::-webkit-scrollbar {
    display: none;
}
.brand-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Marquee hover pause */
marquee:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}
/* ends brands */
/* start product sections */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ends product sections */