        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

      body{
    font-family: 'Hind Siliguri', sans-serif;
    background:#f4f8ff;
    color:#0f172a;
    overflow-x:hidden;
    padding-bottom:80px;
}

a,
a:hover,
a:focus,
a:active{
    text-decoration:none !important;
    color:inherit;
}

        /*
        ==================================================
        MODERN HEADER
        ==================================================
        */

        .main-header{
            background: #fff;
            position:sticky;
            top:0;
            z-index:9999;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }

        .header-inner{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:16px;
            padding:12px 0;
        }

        /*
        ==================================================
        LOGO
        ==================================================
        */

        .logo{
            font-size:28px;
            font-weight:800;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            white-space:nowrap;
        }

        .logo span{
            background: linear-gradient(135deg, #0f172a, #1e293b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /*
        ==================================================
        SEARCH BOX
        ==================================================
        */

        .search-box{
            flex:1;
            position:relative;
            max-width: 500px;
        }

        .search-input{
            width:100%;
            height:48px;
            border:1px solid #e2e8f0;
            outline:none;
            border-radius:30px;
            background:#f8fafc;
            padding:0 50px 0 20px;
            font-size:14px;
            transition: all 0.3s ease;
        }

        .search-input:focus{
            border-color: #2563eb;
            background:#fff;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .search-btn{
            position:absolute;
            top:50%;
            right:8px;
            transform:translateY(-50%);
            border:none;
            background: #2563eb;
            color:#fff;
            font-size:16px;
            width:38px;
            height:38px;
            border-radius:30px;
            display:flex;
            align-items:center;
            justify-content:center;
            cursor:pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover{
            background:#1d4ed8;
            transform: translateY(-50%) scale(1.05);
        }

        /*
        ==================================================
        DESKTOP MENU
        ==================================================
        */

        .desktop-menu{
            display:flex;
            align-items:center;
            gap:12px;
        }

        .desktop-link{
    position:relative;
    color:#0f172a;
    font-weight:600;
    transition:0.3s;
    white-space:nowrap;
    padding:8px 16px;
    border-radius:8px;
    text-decoration:none !important;
}


        .desktop-link:hover{
            color:#2563eb;
            background: rgba(37, 99, 235, 0.08);
        }

        /*
        ==================================================
        CART BUTTON
        ==================================================
        */

        .cart-btn{
            position:relative;
            width:44px;
            height:44px;
            border-radius:30px;
            background:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#2563eb;
            font-size:20px;
            transition: all 0.3s ease;
            border:1px solid #e2e8f0;
        }

        .cart-btn:hover{
            background:#2563eb;
            color:#fff;
            transform: scale(1.05);
        }

        .cart-count{
    position:absolute;
    top:-5px;
    right:-5px;
    background:#dc2626;
    color:#fff;
    font-size:10px;
    font-weight:700;
    width:18px;
    height:18px;
    border-radius:50%;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;
    display:flex;

    transition:.2s;
}
        
        .desktop-link .cart-count{

    top:0;

    right:0;

    min-width:18px;

    height:18px;

    padding:0 5px;

    border-radius:999px;

}

        /*
        ==================================================
        PROFILE DROPDOWN
        ==================================================
        */

        .profile-dropdown{
            position:relative;
        }

        .profile-btn{
            border:none;
            background:none;
            cursor: pointer;
            padding:0;
        }

        .profile-avatar{
            width:44px;
            height:44px;
            border-radius:30px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:18px;
            font-weight:800;
            overflow:hidden;
            transition: all 0.3s ease;
            border:2px solid #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .profile-avatar img{
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .profile-menu{
            position:absolute;
            top:55px;
            right:0;
            width:280px;
            background:#fff;
            border-radius:20px;
            padding:12px;
            box-shadow:0 20px 40px rgba(0,0,0,0.12);
            opacity:0;
            visibility:hidden;
            transition:0.3s;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .profile-dropdown.active .profile-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

        .profile-top{
            display:flex;
            align-items:center;
            gap:12px;
            padding-bottom:16px;
            border-bottom:1px solid #e5e7eb;
            margin-bottom:12px;
        }

        .profile-name{
            font-size:16px;
            font-weight:700;
            color:#0f172a;
        }

        .profile-phone{
            font-size:12px;
            color:#64748b;
        }

        .profile-link{
            display:flex;
            align-items:center;
            gap:12px;
            padding:12px 14px;
            border-radius:14px;
            color:#0f172a;
            font-weight:600;
            transition:0.3s;
            font-size:14px;
        }

        .profile-link:hover{
            background:#eff6ff;
            color:#2563eb;
            transform: translateX(5px);
        }

        /*
        ==================================================
        LOGIN BUTTON
        ==================================================
        */

        .login-btn{
    width:44px;
    height:44px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .3s ease;
    font-size:16px;
    padding:0;
}

.login-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,99,235,.3);
}

        /*
        ==================================================
        MOBILE BOTTOM BAR (UPDATED)
        ==================================================
        */

        .mobile-bottom{
            position:fixed;
            bottom:0;
            left:0;
            right:0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow:0 -5px 20px rgba(0,0,0,0.08);
            z-index:9999;
            display:none;
            padding:10px 16px 20px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .bottom-inner{
            display:flex;
            justify-content:space-around;
            align-items:center;
        }

        .bottom-link{
            display:flex;
            flex-direction:column;
            align-items:center;
            justify-content:center;
            color:#64748b;
            font-size:11px;
            font-weight:600;
            padding:8px 0;
            border-radius: 12px;
            transition: all 0.3s ease;
            flex: 1;
        }

        .bottom-link i{
            font-size:22px;
            margin-bottom:4px;
        }

        .bottom-link.active{
            color:#2563eb;
            background: rgba(37, 99, 235, 0.1);
        }

        .bottom-link:hover{
            background: rgba(37, 99, 235, 0.08);
            transform: translateY(-2px);
        }

/* ======================================
VIP CART BUTTON (ROUND CIRCLE)
====================================== */

.bottom-link-vip{

    position:relative;

    width:72px;

    height:72px;

    min-width:72px;

    min-height:72px;

    flex:none;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    font-size:10px;

    font-weight:700;

    margin-top:-38px;

    box-shadow:0 10px 25px rgba(37,99,235,.45);

    border:5px solid #fff;

    transition:.3s;

    z-index:20;

}

.bottom-link-vip i{

    font-size:28px;

    margin-bottom:3px;

}

.bottom-link-vip span{

    line-height:1;

}

.bottom-link-vip:hover{

    color:#fff;

    transform:translateY(-6px) scale(1.05);

    box-shadow:0 15px 35px rgba(37,99,235,.55);

}

.bottom-link-vip .cart-count{

    position:absolute;

    top:2px;

    right:0;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#ef4444;

    color:#fff;

    font-size:10px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid #fff;

}

        /*
        ==================================================
        MODERN SIDEBAR (WITH CATEGORIES)
        ==================================================
        */

        .sidebar-overlay{
            position:fixed;
            inset:0;
            background:rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            z-index:99998;
            opacity:0;
            visibility:hidden;
            transition:0.3s;
        }

        .sidebar-overlay.active{
            opacity:1;
            visibility:visible;
        }

        .mobile-sidebar{
            position:fixed;
            top:0;
            left:-100%;
            width:320px;
            height:100%;
            background:#fff;
            z-index:99999;
            transition:0.3s;
            overflow-y:auto;
            box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        }

        .mobile-sidebar.active{
            left:0;
        }

        .sidebar-header{
            display:flex;
            align-items:center;
            justify-content:space-between;
            margin-bottom:20px;
            padding:20px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #fff;
        }

        .sidebar-header .logo{
            color: #fff;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
        }

        .sidebar-header .logo span{
            color: #fff;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
        }

        .sidebar-close{
            width:40px;
            height:40px;
            border:none;
            background:rgba(255,255,255,0.2);
            border-radius:30px;
            font-size:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
        }

        .sidebar-close:hover{
            background:rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .sidebar-user{
            background: #f8fafc;
            border-radius:20px;
            padding:18px;
            margin:20px;
            border: 1px solid #e2e8f0;
        }

        .sidebar-section-title{
            font-size:14px;
            font-weight:700;
            color:#64748b;
            text-transform:uppercase;
            letter-spacing:0.5px;
            margin:20px 20px 12px;
        }

        .sidebar-menu{
            display:flex;
            flex-direction:column;
            gap:6px;
            padding:0 16px;
        }

        .sidebar-link{
            display:flex;
            align-items:center;
            gap:14px;
            padding:12px 16px;
            border-radius:16px;
            background:transparent;
            color:#0f172a;
            font-weight:600;
            transition:0.3s;
        }

        .sidebar-link:hover{
            background: #eff6ff;
            color:#2563eb;
            transform: translateX(5px);
        }

        .sidebar-link i{
            width: 24px;
            font-size: 18px;
        }

        /* Category section in sidebar */
        .category-list{
            display:flex;
            flex-direction:column;
            gap:6px;
            padding:0 16px 20px;
        }

        .category-list-item{
            display:flex;
            align-items:center;
            gap:14px;
            padding:10px 16px;
            border-radius:8px;
            color:#0f172a;
            font-weight:500;
            transition:0.3s;
            font-size:14px;
        }

        .category-list-item i{
            width: 24px;
            font-size: 16px;
            color:#2563eb;
        }

        .category-list-item:hover{
            background: #eff6ff;
            color:#2563eb;
            transform: translateX(5px);
        }

        /*
        ==================================================
        MOBILE TOP
        ==================================================
        */

        .mobile-top{
            display:none;
            align-items:center;
            gap:10px;
        }

        .menu-icon-btn{
            width:44px;
            height:44px;
            border-radius:30px;
            background:#f8fafc;
            border:1px solid #e2e8f0;
            display:flex;
            align-items:center;
            justify-content:center;
            cursor: pointer;
            transition: all 0.3s ease;
            color:#2563eb;
            font-size:20px;
        }

        .menu-icon-btn:hover{
            background:#2563eb;
            color:#fff;
        }

/*
==================================================
RESPONSIVE
==================================================
*/

@media(max-width:991px){

    .desktop-menu{
        display:none;
    }

    /* Hide Logo */
    .header-inner > .logo{
        display:none;
    }

    /* Search Full Width */
    .search-box{
        flex:1;
        width:100%;
        max-width:none;
    }

    .mobile-top{
        display:flex;
        align-items:center;
        gap:8px;
        flex-shrink:0;
    }

    .mobile-bottom{
        display:block;
    }

    .header-inner{
        gap:10px;
    }

    body{
        padding-bottom:75px;
    }

}

@media (max-width:991px){

    .header-inner > a.logo{

        display:none !important;

    }

}

@media(max-width:576px){

    .search-input{
        height:44px;
        font-size:13px;
    }

    .search-btn{
        width:34px;
        height:34px;
        font-size:14px;
    }

    .mobile-sidebar{
        width:85%;
    }

}

    .bottom-link-vip{

        width:66px;

        height:66px;

        min-width:66px;

        min-height:66px;

        margin-top:-34px;

    }

    .bottom-link-vip i{

        font-size:24px;

    }


        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-header {
            animation: fadeIn 0.5s ease;
        }
        
        .desktop-menu-btn{
    border:none;
    background:#fff;
    cursor:pointer;
    min-width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.profile-avatar i{
    font-size:18px;
}

.mobile-track-btn{
    display:none;
}

@media(max-width:991px){

    .mobile-track-btn{

        display:flex;
        align-items:center;
        justify-content:center;

        width:44px;
        height:44px;

        color:#2563eb;
        font-size:22px;

        text-decoration:none;

        background:transparent;
        border:none;
        box-shadow:none;

        padding:0;
        margin:0;

        flex-shrink:0;

    }

    .mobile-track-btn:hover{

        color:#1d4ed8;
        background:transparent;
        box-shadow:none;

    }

}

/* =====================================
DESKTOP DROPDOWN MENU
===================================== */

.desktop-menu-dropdown{
    position:relative;
}

.desktop-dropdown-menu{

    position:absolute;

    top:55px;

    right:0;

    width:280px;

    background:#fff;

    border-radius:8px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    padding:10px;

    display:none;

    z-index:99999;

}

.desktop-dropdown-menu.active{

    display:block;

}

.desktop-dropdown-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:13px 15px;

    color:#111827;

    font-weight:600;

    border-radius:8px;

    transition:.3s;

}

.desktop-dropdown-menu a:hover{

    background:#eff6ff;

    color:#2563eb;

}

.desktop-dropdown-menu i{

    width:22px;

}

.desktop-category-dropdown{

    position:relative;

}

.desktop-category-menu{

    position:absolute;

    top:55px;

    left:0;

    width:260px;

    background:#fff;

    border-radius:8px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    padding:10px;

    display:none;

    z-index:99999;

}

.desktop-category-menu.active{

    display:block;

}

.desktop-category-menu a{

    display:block;

    padding:12px 15px;

    border-radius:8px;

    color:#111827;

    font-weight:600;

    transition:.3s;

}

.desktop-category-menu a:hover{

    background:#eff6ff;

    color:#2563eb;

}

.desktop-account{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    border-radius:18px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    margin-bottom:18px;

}

.account-avatar{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.account-info strong{

    display:block;

    font-size:16px;

}

.account-info small{

    opacity:.9;

}

.desktop-menu-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.dropdown-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px;

    border-radius:16px;

    background:#f8fafc;

    color:#111827;

    transition:.3s;
    
    text-decoration:none !important;

}

.dropdown-item:hover{

    background:#2563eb;

    color:#fff;

}

.dropdown-item i{

    font-size:13px;

}

/* Desktop Categories Hide on Mobile */

@media (max-width:991px){

    .desktop-only-category{

        display:none !important;

    }

}


.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:15px;
}

.sidebar-link{
    width:100%;
    border:none;
    outline:none;
    background:#fff;
    color:#111827;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 16px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    cursor:pointer;
    text-decoration:none !important;
}

.sidebar-link:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-2px);
}

.sidebar-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.sidebar-left i{
    font-size:18px;
    width:22px;
    text-align:center;
}

.dropdown-icon{
    font-size:13px;
    transition:0.3s;
}

.sidebar-dropdown.active .dropdown-icon{
    transform:rotate(180deg);
}

/* SUBMENU */
.submenu{
    display:none;
    flex-direction:column;
    gap:10px;
    padding:12px 10px 0 10px;
}

.sidebar-dropdown.active .submenu{
    display:flex;
}

.submenu-link{
    background:#f8fafc;
    color:#374151;
    text-decoration:none;
    padding:12px 14px;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
    border:1px solid #e5e7eb;
}

.submenu-link:hover{
    background:#2563eb;
    color:#fff;
    padding-left:18px;
}

.submenu-link i{
    width:20px;
    text-align:center;
}

.active > .sidebar-link{
    background:#111827;
    color:#fff;
}