   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            padding-top: 90px; /* Space for fixed header */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* VIP Header Styles */
        header {
            background: linear-gradient(135deg, #fff 85%, #ff8c00 85%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-bottom: 2px solid #ff8c00;
        }

        .header-hidden {
            transform: translateY(-100%);
            box-shadow: none;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            flex-shrink: 0;
        }

        .logo::after {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            height: 40px;
            width: 2px;
            background: linear-gradient(to bottom, transparent, #ff8c00, transparent);
        }

        .logo-image {
            height: 75px;
            width: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            padding: 5px;
            border: 1px solid rgba(255, 140, 0, 0.2);
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(255, 140, 0, 0.2);
        }

        .logo-image img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-subtext {
            font-size: 12px;
            font-weight: 500;
            color: #777;
            margin-top: 2px;
        }

        .logo-orange {
            color: #FF8C00;
            text-shadow: 0 2px 4px rgba(255, 140, 0, 0.2);
        }

        .logo-white {
            color: #333;
        }

        /* Desktop Navigation - UPDATED */
        .desktop-nav {
            flex: 1;
            margin: 0 20px;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 3px;
            justify-content: center;
            flex-wrap: nowrap;
            overflow: hidden;
        }

        .desktop-nav ul li {
            position: relative;
            white-space: nowrap;
        }

        .desktop-nav ul li a {
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 12px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            font-size: 14px;
        }

        .desktop-nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: #FF8C00;
            transition: width 0.3s ease;
        }

        .desktop-nav ul li a:hover {
            color: #FF8C00;
            background: rgba(255, 140, 0, 0.05);
        }

        .desktop-nav ul li a:hover::before {
            width: 100%;
        }

        .cart-icon-nav {
            position: relative;
            font-size: 20px;
            color: #333;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cart-icon-nav:hover {
            color: #ff8c00;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            left: -8px;
            background: linear-gradient(135deg, #ff8c00, #ff6a00);
            color: white;
            font-size: 11px;
            font-weight: 700;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 5px rgba(255, 106, 0, 0.3);
        }

        .search-bar {
            display: flex;
            align-items: center;
            background: #f8f8f8;
            border-radius: 30px;
            padding: 10px 18px;
            margin-left: 15px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .search-bar:focus-within {
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
            border-color: #ff8c00;
        }

        .search-bar input {
            border: none;
            background: transparent;
            outline: none;
            margin-right: 10px;
            width: 160px;
            text-align: right;
            font-size: 14px;
        }

        .search-bar i {
            color: #888;
            transition: color 0.3s ease;
        }

        .search-bar:focus-within i {
            color: #ff8c00;
        }

        /* User Actions */
        .user-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .user-icon, .wishlist-icon {
            font-size: 18px;
            color: #555;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 50%;
        }

        .user-icon:hover, .wishlist-icon:hover {
            color: #ff8c00;
            background: rgba(255, 140, 0, 0.1);
        }

        /* VIP Badge */
        .vip-badge {
            background: linear-gradient(135deg, #ff8c00, #ff6a00);
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 20px;
            margin-right: 10px;
            box-shadow: 0 2px 5px rgba(255, 106, 0, 0.3);
        }

        /* Mobile Menu Styles - FIXED */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            position: relative;
            z-index: 101;
        }

        .mobile-menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: #333;
            margin: 2px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            z-index: 99;
            border-top: 2px solid #ff8c00;
            overflow-y: auto;
            max-height: 0;
            transition: max-height 0.5s ease;
        }

        .mobile-nav.active {
            display: block;
            max-height: 80vh; /* Changed to viewport height for better mobile experience */
        }

        .mobile-nav ul {
            list-style: none;
            padding: 15px 20px;
        }

        .mobile-nav ul li {
            margin-bottom: 10px;
            border-bottom: 1px solid #f5f5f5;
        }

        .mobile-nav ul li:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .mobile-nav ul li a {
            display: flex;
            align-items: center;
            padding: 12px 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            gap: 10px;
            color: #333;
        }

        .mobile-nav ul li a:hover {
            color: #ff8c00;
            background: rgba(255, 140, 0, 0.05);
            padding-right: 15px;
        }

        .mobile-search {
            padding: 15px 20px;
            border-top: 1px solid #f0f0f0;
            background: #f9f9f9;
        }

        /* Mobile cart count styling */
        .mobile-nav .cart-count {
            position: static;
            margin-right: 8px;
            width: 20px;
            height: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 1100px) {
            .desktop-nav ul li a {
                padding: 10px 10px;
                font-size: 13px;
            }
            
            .search-bar {
                padding: 8px 15px;
                margin-left: 10px;
            }
            
            .search-bar input {
                width: 120px;
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            .logo-image {
                height: 65px;
                width: 65px;
            }
        }

        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            
            .user-actions {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .header-actions .search-bar {
                display: none;
            }
            
            .logo::after {
                display: none;
            }
        }

        @media (min-width: 993px) {
            .mobile-nav {
                display: none !important;
            }
        }

        @media (max-width: 576px) {
            .logo-text {
                font-size: 22px;
            }
            
            .logo-image {
                height: 60px;
                width: 60px;
            }
            
            .logo-subtext {
                font-size: 10px;
            }
            
            .mobile-nav ul li a {
                font-size: 16px;
            }
        }

        /* Animation for VIP experience */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .vip-highlight {
            animation: pulse 2s infinite;
        }




        