
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #111;
        }

        /* Header */
        .header {
            background: #fff;
            padding: 0 48px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #111;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #000000;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .nav-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

     

        .login-btn {
            position:relative;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 18px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .login-btn:hover {
            background: linear-gradient(135deg, #764ba2, #667eea);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .search-box {
            padding: 8px 16px;
            border: 1px solid #e5e5e5;
            border-radius: 20px;
            background: #f5f5f5;
            outline: none;
            width: 200px;
        }

        .nav-icon {
            font-size: 18px;
            cursor: pointer;
            border-radius: 50%;
            padding: 5px;
            transition: background-color 0.3s ease;
            color: #111;
            border: none;
            background: transparent;
            position: relative;
             transition: transform 0.2s ease, color 0.2s ease;
        }
        .nav-icon a {
            text-decoration: none;
            color: #111;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-icon:hover {
            color: #667eea;
            transform: scale(1.2);  
        }

        /* Wishlist Badge Styles */
        .wishlist-icon {
            position: relative;
        }

        .wishlist-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: #ff4757;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 11px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Hide badge when count is 0 */
        .wishlist-badge.hidden {
            display: none;
        }

        /* Cart Badge Styles */
        .cart-icon {
            position: relative;
        }

        .cart-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: #28a745;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 11px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            animation: pulse 0.3s ease-in-out;
            z-index: 10;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Hide cart badge when count is 0 */
        .cart-badge.hidden {
            display: none;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #111;
            cursor: pointer;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: left 0.3s ease;
            z-index: 1001;
            padding: 80px 0 20px 0;
            overflow-y: auto;
        }

        .mobile-nav.show {
            left: 0;
        }

        .mobile-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-nav ul li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav ul li a {
            text-decoration: none;
            color: #111;
            font-weight: 500;
            font-size: 18px;
            display: block;
            padding: 20px 30px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            background-color: #f8f9fa;
            color: #667eea;
        }

        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-nav-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Close button for mobile nav */
        .mobile-nav-close {
            position: absolute;
            top: 65px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #111;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .mobile-nav-close:hover {
            background-color: #f0f0f0;
        }

        .dropdown {
            position: relative;
            display: inline-block;

        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            right: 0;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            width: 100%;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
            display: block;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Profile Sidebar Modal Styles */
        .profile-sidebar {
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 20px rgba(0,0,0,0.15);
            transition: left 0.3s ease;
            z-index: 1002;
            overflow-y: auto;
        }

        .profile-sidebar.show {
            left: 0;
        }

        .profile-sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

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

        .profile-sidebar-close {
            position: absolute;
            top: 65px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #111;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            z-index: 10;
        }

        .profile-sidebar-close:hover {
            background-color: #f0f0f0;
        }

        .profile-sidebar-content {
            padding: 80px 2rem 2rem 2rem;
        }

        .profile-sidebar .profile-section {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e9ecef;
        }

        .profile-sidebar .profile-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .profile-sidebar .profile-avatar-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            display: block;
        }

        .profile-sidebar .profile-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #111;
        }

        .profile-sidebar .status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #28a745;
            font-size: 0.9rem;
        }

        .profile-sidebar .status-dot {
            width: 8px;
            height: 8px;
            background: #28a745;
            border-radius: 50%;
        }

        .profile-sidebar .menu-section h4 {
            color: #6c757d;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .profile-sidebar .menu-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: #495057;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
            position: relative;
            border-left: 3px solid transparent;
        }

        .profile-sidebar .menu-item:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            transform: translateX(5px);
            border-left-color: #667eea;
        }

        .profile-sidebar .menu-item.logout-item:hover {
            background: rgba(231, 76, 60, 0.1) !important;
            color: #e74c3c !important;
            border-left-color: #e74c3c !important;
        }

        .profile-sidebar .menu-icon {
            width: 20px;
            font-size: 1rem;
        }

        /* Profile Hamburger Button for Profile Pages */
        .profile-hamburger {
            position: fixed;
            top: 65px;
            right: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            z-index: 999;
            display: none;
        }

        .profile-hamburger:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .profile-hamburger:active {
            transform: scale(0.95);
        }
        
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .header {
                padding: 0 20px;
            }

            .search-box {
                width: 150px;
            }
        }


                @media (max-width: 768px) {
            /* Hide Profile Menu item from dropdown on mobile */
            .profile-menu-item {
                display: none !important;
            }

            /* Show profile hamburger button on profile pages */
            .profile-hamburger {
                display: block;
            }

            .search-box {
                width: 120px;
                font-size: 14px;
                padding: 6px 12px;
            }

            .nav-icon {
                font-size: 16px;
                padding: 8px;
            }

            .wishlist-badge {
                width: 16px;
                height: 16px;
                font-size: 10px;
                top: -1px;
                right: -1px;
            }

            .cart-badge {
                width: 16px;
                height: 16px;
                font-size: 10px;
                top: -1px;
                right: -1px;
            }
        }

               @media (max-width: 480px) {
            .mobile-nav {
                width: 280px;
                left: -280px;
            }

            .mobile-nav ul li a {
                font-size: 16px;
                padding: 18px 25px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .search-box {
                width: 100px;
            }

            .nav-actions {
                gap: 8px;
            }
        }

        @media (max-width: 320px) {
            .mobile-nav {
                width: 260px;
                left: -260px;
            }

            .mobile-nav ul li a {
                font-size: 15px;
                padding: 16px 20px;
            }

            .header {
                padding: 0 15px;
            }

            .logo {
                font-size: 20px;
            }
        }
