 *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Header Styles */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 12px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: padding 0.3s ease;
            height: 70px;
        }
        
        .header.scrolled {
            padding: 8px 30px;
            height: 60px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
        }
        
        .logo {
            flex: 0 0 160px;
            cursor: pointer;
        }
        
        .logo img {
            height: 45px;
            width: auto;
            transition: height 0.3s ease;
            object-fit: contain;
        }
        
        .header.scrolled .logo img {
            height: 40px;
        }
        
        .header-categories {
            display: flex;
            margin-left: 30px;
        }
        
        .category-item {
            margin: 0 15px;
            font-weight: 500;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
            font-size: 15px;
        }
        
        .category-item:hover {
            color: #f5833cff;
        }
        
        .search-container {
            flex: 0 1 500px;
            margin: 0 20px;
            position: relative;
            transition: flex 0.3s ease;
        }
        
        .header.scrolled .search-container {
            flex: 0 1 450px;
        }
        
        .search-bar {
            display: flex;
            width: 100%;
            position: relative;
        }
        
        .search-bar input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
            height: 45px;
            padding-right: 45px;
        }
        
        .header.scrolled .search-bar input {
            height: 40px;
            padding: 10px 15px;
            padding-right: 40px;
        }
        
        .search-bar input:focus {
            border-color: #071c58ff;
            box-shadow: 0 0 0 2px rgba(244, 150, 49, 0.1);
        }
        
        .search-bar button {
            position: absolute;
            right: 0;
            top: 0;
            background-color: #071c58ff;
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.3s ease;
            height: 45px;
            width: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .header.scrolled .search-bar button {
            height: 40px;
            width: 40px;
        }
        
        .search-bar button:hover {
            background-color: #071c58ff;
        }
        
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 4px 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            z-index: 1000;
            display: none;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .search-suggestion-item {
            padding: 12px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s;
            font-size: 14px;
        }
        
        .search-suggestion-item:hover {
            background-color: #f8f9fa;
        }
        
        .search-suggestion-item:last-child {
            border-bottom: none;
        }
        
        .suggestion-highlight {
            color: #f4943aff;
            font-weight: 600;
        }
        
        .suggestion-category {
            font-size: 12px;
            color: #666;
            margin-top: 4px;
        }
        
        .right-section {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 0 0 auto;
        }
        
        .location-container {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            background-color: #f8f9fa;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
            position: relative;
        }
        
        .header.scrolled .location-container {
            padding: 6px 10px;
        }
        
        .location-container:hover {
            background-color: #e9ecef;
        }
        
        .location-icon {
            margin-right: 8px;
            color: #071c58ff;
            flex-shrink: 0;
        }
        
        .location-text {
            font-size: 14px;
            color: #5f6368;
            max-width: 200px;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .header.scrolled .location-text {
            max-width: 180px;
        }
        
        /* Location Dropdown */
        .location-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            z-index: 1000;
            width: 300px;
            display: none;
            margin-top: 10px;
        }
        
        .location-dropdown-header {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        
        .location-dropdown-body {
            padding: 15px;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .location-option {
            padding: 10px;
            cursor: pointer;
            border-radius: 4px;
            margin-bottom: 5px;
            transition: background-color 0.2s;
        }
        
        .location-option:hover {
            background-color: #f8f9fa;
        }
        
        .location-option.active {
            background-color: #e8f0fe;
            color: #071c58ff;
            font-weight: 500;
        }
        
        .account-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .account-btn, .cart-btn {
            background-color: #f8f9fa;
            border: 1px solid #dadce0;
            border-radius: 4px;
            padding: 10px;
            font-size: 14px;
            color: #3c4043;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            width: 45px;
            height: 45px;
            position: relative;
        }
        
        .header.scrolled .account-btn, 
        .header.scrolled .cart-btn {
            width: 40px;
            height: 40px;
        }
        
        .account-btn:hover, .cart-btn:hover {
            background-color: #e8f0fe;
            border-color: #d2e3fc;
        }
        
        .account-icon, .cart-icon {
            color: #5f6368;
            font-size: 18px;
        }

        /* Cart badge */
        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #ff4444;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Cart dropdown */
        .cart-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            z-index: 1000;
            width: 300px;
            display: none;
            margin-top: 10px;
        }

        .cart-dropdown-header {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            display: flex;
            justify-content: between;
            align-items: center;
        }

        .cart-dropdown-items {
            max-height: 300px;
            overflow-y: auto;
        }

        .cart-dropdown-item {
            padding: 12px 15px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-dropdown-item:last-child {
            border-bottom: none;
        }

        .cart-item-name {
            flex: 1;
            font-size: 14px;
        }

        .cart-item-price {
            font-weight: 600;
            color: #071c58ff;
            margin-left: 10px;
        }

        .remove-cart-item {
            background: none;
            border: none;
            color: #ff4444;
            cursor: pointer;
            margin-left: 10px;
            padding: 5px;
        }

        .cart-dropdown-footer {
            padding: 15px;
            border-top: 1px solid #eee;
            text-align: center;
        }

        .btn-view-cart {
            background: #071c58ff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
        }

        .btn-view-cart:hover {
            background: #060f3a;
        }

        .cart-empty {
            padding: 30px 20px;
            text-align: center;
            color: #666;
        }

        /* New layout for right section */
        .right-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .location-account-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-group {
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        /* Mobile specific styles */
        .mobile-search-container {
            display: none;
            width: 100%;
            padding: 10px 15px;
            background: white;
            border-bottom: 1px solid #eee;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            color: #444;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
        }

        .mobile-menu-btn:hover {
            background-color: #f8f9fa;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            display: none;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100%;
            background-color: white;
            z-index: 2001;
            transition: right 0.3s ease;
            padding: 20px;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 20px;
            color: #444;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .mobile-menu-item {
            padding: 12px 15px;
            font-weight: 500;
            color: #444;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 4px;
            display: flex;
            align-items: center;
        }

        .mobile-menu-item:hover {
            background-color: #f8f9fa;
            color: #f5833cff;
        }

        .mobile-menu-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .mobile-location-section {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .mobile-location-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .mobile-location-title {
            font-weight: 600;
            color: #071c58ff;
            font-size: 16px;
        }

        .mobile-location-change {
            background: #071c58ff;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
        }

        .mobile-location-display {
            display: flex;
            align-items: center;
            padding: 10px;
            background: white;
            border-radius: 4px;
            border: 1px solid #ddd;
        }

        .mobile-location-display i {
            color: #071c58ff;
            margin-right: 10px;
        }

        .mobile-location-text {
            font-size: 14px;
            color: #333;
        }
        
        /* Responsive styles for header */
        @media (max-width: 1024px) {
            .search-container {
                flex: 0 1 400px;
            }
            
            .header.scrolled .search-container {
                flex: 0 1 350px;
            }
            
            .logo {
                flex: 0 0 140px;
            }

            .cart-dropdown {
                width: 280px;
            }
            
            .location-dropdown {
                width: 280px;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                flex-wrap: wrap;
                padding: 10px 15px;
                height: auto;
                min-height: 70px;
            }
            
            .header.scrolled {
                padding: 6px 15px;
                min-height: 60px;
            }
            
            .logo-container {
                width: auto;
                justify-content: flex-start;
                margin-bottom: 0;
                flex: 1;
            }
            
            .header-categories {
                margin-left: 0;
                display: none;
            }
            
            .logo {
                flex: 0 0 120px;
            }
            
            .search-container {
                display: none;
            }
            
            .mobile-search-container {
                display: block;
            }
            
            .location-container {
                display: none;
            }

            .location-account-group {
                flex-direction: row;
                gap: 8px;
            }

            .cart-dropdown {
                right: -50px;
                width: 250px;
            }

            /* Show mobile menu button */
            .mobile-menu-btn {
                display: block;
            }
            
            /* Show cart icon in mobile */
            .icon-group {
                display: flex;
            }

            .location-dropdown {
                width: 250px;
                left: -100px;
            }
        }
        
        @media (max-width: 480px) {
            .header {
                padding: 8px 10px;
            }
            
            .header.scrolled {
                padding: 4px 10px;
            }
            
            .logo {
                flex: 0 0 100px;
            }
            
            .logo img {
                height: 35px;
            }
            
            .header.scrolled .logo img {
                height: 30px;
            }
            
            .category-item {
                margin: 0 8px;
                font-size: 14px;
            }
            
            .location-text {
                max-width: 120px;
                font-size: 13px;
            }
            
            .location-container {
                padding: 6px 8px;
            }
            
            .account-btn, .cart-btn {
                width: 40px;
                height: 40px;
                padding: 8px;
            }

            .search-container {
                flex: 0 1 300px;
            }
            
            .right-section {
                gap: 8px;
            }
            
            .location-account-group {
                gap: 8px;
            }

            .cart-dropdown {
                right: -80px;
                width: 220px;
            }
            
            .location-dropdown {
                width: 220px;
                left: -120px;
            }
        }