:root {
            --primary-color: #102B6B;
            --primary-dark: #3a56d4;
            --sidebar-bg: #ffffff;
            --sidebar-hover: #f8f9fa;
            --sidebar-active: #e9ecef;
            --sidebar-border: #e9ecef;
            --sidebar-text: #495057;
            --sidebar-width: 280px; 
            --secondary-color: #14388f;
            --accent-color: #FF0A3B;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --light-gray: #e9ecef;
            --success-color: #4cc9f0;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-color);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: var(--sidebar-width);
            background-color: var(--sidebar-bg);
            color: var(--sidebar-text);
            transition: var(--transition);
            z-index: 1000;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
            border-right: 1px solid var(--sidebar-border);
            overflow-y: auto;
        }
        
        .sidebar-header {
            padding: 1.5rem 1.25rem;
            border-bottom: 1px solid var(--sidebar-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .sidebar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .sidebar-brand img {
            height: 50px;
            width: auto;
        }
        
        .toggle-sidebar {
            background: none;
            border: none;
            color: var(--gray-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            padding: 5px;
            border-radius: 4px;
        }
        
        .toggle-sidebar:hover {
            color: var(--primary-color);
            background-color: var(--light-gray);
        }
        
        .sidebar-menu {
            padding: 1.5rem 0;
        }
        
        .sidebar-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-menu li {
            position: relative;
            margin-bottom: 2px;
        }
        
        .sidebar-menu a {
            color: var(--sidebar-text);
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 0.85rem 1.5rem;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        
        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background-color: var(--sidebar-hover);
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }
        
        .sidebar-menu i {
            width: 22px;
            font-size: 1.1rem;
            margin-right: 12px;
            text-align: center;
        }

        .sidebar-collapsed {
            width: 90px !important;
        }

        .sidebar-collapsed .menu-text,
        .sidebar-collapsed .badge-sidebar,
        .sidebar-collapsed .sidebar-categories,
        .sidebar-collapsed .sidebar-header span {
            display: none;
        }

        .sidebar-collapsed .sidebar-menu a {
            justify-content: center;
        }

        .sidebar-collapsed + .main-content {
            margin-left: 90px !important;
        }

        
        .menu-text {
            transition: var(--transition);
            font-weight: 500;
        }
        
        .badge-sidebar {
            margin-left: auto;
            background-color: var(--accent-color);
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 10px;
        }
        
        /* Category Panel in Sidebar */
        .sidebar-categories {
            padding: 0 1.5rem 1.5rem;
        }
        
        .sidebar-categories h6 {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .category-tag {
            background-color: var(--light-gray);
            color: var(--dark-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        
        .category-tag:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* Main Content */
        .main-content {
            margin-left: var(--sidebar-width);
            transition: var(--transition);
            min-height: 100vh;
        }
        
        /* Top Navbar */
        .top-navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .top-navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .search-container {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 2rem;
        }
        
        .user-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .user-action-item {
            position: relative;
            color: var(--dark-color);
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .user-action-item:hover {
            color: var(--primary-color);
        }
        
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        
    /*======== HERO SLIDER ====================*/
            .slider-container{
              width:750px;
              height:392px;
              margin:20px auto;
              position:relative;
              overflow:hidden;
              border-radius:12px;
              box-shadow:0 15px 40px rgba(0,0,0,0.15);
              background:#000;
            }

            .slider{
              display:flex;
              transition:transform 0.8s cubic-bezier(.77,0,.18,1);
              height:100%;
            }

            .slide{
              min-width:100%;
              height:100%;
              position:relative;
              overflow:hidden;
            }

            .slide img{
              width:100%;
              height:100%;
              object-fit:cover;
              transition:transform 6s ease;
            }

            .slide.active img{
              transform:scale(1.08);
            }

            /* Overlay */
            .overlay{
              position:absolute;
              bottom:0;
              left:0;
              width:100%;
              padding:40px;
              background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
              color:#fff;
              transform:translateY(20px);
              opacity:0;
              transition:all 0.8s ease;
            }

            .slide.active .overlay{
              transform:translateY(0);
              opacity:1;
            }

            .overlay h2{
              margin:0;
              font-size:28px;
              font-weight:600;
            }

            .overlay p{
              margin:10px 0 20px;
              font-size:15px;
              opacity:0.85;
            }

            .overlay button{
              padding:10px 22px;
              border:none;
              background:#fff;
              color:#000;
              border-radius:25px;
              cursor:pointer;
              font-weight:600;
              transition:all 0.3s ease;
            }

            .overlay button:hover{
              background:#000;
              color:#fff;
            }

            /* Arrows */
            .arrow{
              position:absolute;
              top:50%;
              transform:translateY(-50%);
              width:20px;
              height:20px;
              background:rgba(255,255,255,0.8);
              border-radius:50%;
              display:flex;
              align-items:center;
              justify-content:center;
              cursor:pointer;
              font-size:10px;
              font-weight:bold;
              transition:0.3s;
              user-select:none;
            }

            .arrow:hover{
              background:#fff;
              box-shadow:0 5px 15px rgba(0,0,0,0.2);
            }

            .arrow-left{ left:5px; }
            .arrow-right{ right:5px; }

            /* Dots */
            .dots{
              position:absolute;
              bottom:15px;
              left:50%;
              transform:translateX(-50%);
              display:flex;
              gap:8px;
            }

            .dot{
              width:10px;
              height:10px;
              border-radius:50%;
              background:rgba(255,255,255,0.5);
              cursor:pointer;
              transition:0.3s;
            }

            .dot.active{
              background:#fff;
              width:22px;
              border-radius:20px;
            }

            /* Responsive */
            @media(max-width:768px){
              .slider-container{
                width:95%;
                height:auto;
                aspect-ratio:750/392;
              }
            }


/*======== END HERO SLIDER ================*/

        
        /* Product Cards */
        .product-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            border: 1px solid var(--light-gray);
            position: relative;
            margin: 10px auto;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }

        .product-card:hover img {
            transform: scale(1.08);
            transition: 0.4s ease;
        }

        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.8rem;
            z-index: 2;
        }
        
        .product-badge.sale {
            background-color: var(--accent-color);
            color: white;
        }
        
        .product-badge.new {
            background-color: var(--success-color);
            color: white;
        }
        
        .product-badge.popular {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .product-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .old-price {
            text-decoration: line-through;
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        .rating {
            color: #ffc107;
        }
        
        /* Section Headers */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .section-title {
            font-weight: 700;
            color: var(--dark-color);
            margin: 0;
            font-size: 20px;
        }
        
        /* Content Wrapper */
        .content-wrapper {
            padding: 0 2rem 2rem;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
            padding: 5px;
            border-radius: 4px;
        }
        
        .mobile-menu-toggle:hover {
            background-color: var(--light-gray);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .sidebar {
                transform: translateX(-100%);
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .sidebar-open {
                transform: translateX(0);
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .search-container {
                margin: 0 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .top-navbar {
                padding: 1rem;
            }
            
            .content-wrapper {
                padding: 0 1rem 1rem;
            }
            
            .hero-section {
                padding: 2rem 1rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .user-actions {
                gap: 1rem;
            }
        }
        
        /* Filter Sidebar (for mobile) */
        .filter-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 300px;
            background-color: white;
            z-index: 1050;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: var(--transition);
            padding: 1.5rem;
            overflow-y: auto;
        }
        
        .filter-sidebar-open {
            transform: translateX(0);
        }
        
        .filter-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .filter-overlay-open {
            opacity: 1;
            visibility: visible;
        }