        /* Header */
        .header {
            background-color: var(--primary);
            background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
            color: inherit;
            padding: 0 16px;
            height: var(--header-height);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            align-items: center;
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .store-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .store-logo {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.2);
        }
        
        .store-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .store-details {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .store-name {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        
        .store-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 500;
            opacity: 0.9;
            background: rgba(255,255,255,0.15);
            padding: 2px 8px;
            border-radius: var(--radius-full);
            width: fit-content;
        }
        
        /* Search Bar */
        .search-container {
            padding: 16px 16px 12px;
            background: white;
            position: sticky;
            top: var(--header-height);
            z-index: 99;
            box-shadow: var(--shadow-sm);
        }
        
        .search-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--gray-100);
            padding: 14px 16px;
            border-radius: var(--radius-lg);
            max-width: 520px;
            margin: 0 auto;
            border: 2px solid transparent;
            transition: all var(--transition);
        }
        
        .search-bar:focus-within {
            background: white;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px var(--primary-light);
        }
        
        .search-bar input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-800);
            outline: none;
        }
        
        .search-bar input::placeholder {
            color: var(--gray-400);
            font-weight: 400;
        }
        
        .hello-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: white;
            padding: 12px 20px;
            margin: 16px 16px 0 16px;
            position: relative;
            border-radius: 24px 24px 0 0;
        }

        .hello-avatar {
            width: 100px;
            height: 100px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            margin-bottom: -32px;
            z-index: 10;
            position: relative;
        }

        .hello-avatar img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hello-text {
            flex: 1;
            min-width: 0;
        }

        .hello-title {
            font-size: 14px;
            color: var(--gray-600);
            font-weight: 500;
            margin-bottom: 2px;
        }

        .hello-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-900);
            letter-spacing: -0.3px;
            line-height: 1.2;
        }

        .hello-points {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 12px;
            background: var(--accent-light);
            border-radius: 999px;
            font-size: 15px;
            font-weight: 700;
            color: var(--status-pending-text);
            flex-shrink: 0;
            border: 1px solid #FDE68A;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .hello-points:hover {
            background: #FDE68A;
        }

        .hello-points i {
            color: var(--accent);
            width: 18px;
            height: 18px;
        }

        .closed-banner {
            background: var(--warning-light);
            color: var(--status-pending-text);
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Hide hello-card and order-type-strip on non-Home tabs */        .view-section:not(#view-home) ~ .hello-card,
        .view-section:not(#view-home) ~ .order-type-strip {
            display: none;
        }

        /* Alternative approach: hide when home view is not active */
        body:not(.home-view-active) .hello-card,
        body:not(.home-view-active) .order-type-strip {
            display: none;
        }

