        /* --- SwiftUI-inspired Modern Design System --- */
        :root {
            --sf-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --bg-color: #f5f5f7;
            --card-bg: rgba(255, 255, 255, 0.85);
            --card-border: rgba(209, 209, 214, 0.4);
            --text-primary: #1d1d1f;
            --text-secondary: #86868b;
            --accent: #0071e3;
            --accent-hover: #0077ed;
            --success: #34c759;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius-lg: 20px;
            --radius-md: 12px;
            --radius-sm: 8px;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --bg-color: #000000;
                --card-bg: rgba(28, 28, 30, 0.75);
                --card-border: rgba(56, 56, 58, 0.6);
                --text-primary: #f5f5f7;
                --text-secondary: #a1a1a6;
                --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            }
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: var(--sf-font);
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-primary);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        /* --- Component Wrapper --- */
        .asset-browser-widget-suggestions {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            width: 100%;
            /* max-width: 80vw; *//* 480px */
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- Header Section --- */
        .ab-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ab-title {
            font-size: 17px;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .ab-badge {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            background: rgba(120, 120, 128, 0.12);
            padding: 4px 10px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* --- Viewport Screen --- */
        .ab-viewport-suggestions {
            width: 100%;
            height: 140px;
            background: rgba(120, 120, 128, 0.05);
            border-radius: var(--radius-md);
            border: 1px solid var(--card-border);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .ab-placeholder {
            color: var(--text-secondary);
            font-size: 14px;
            text-align: center;
            padding: 20px;
        }

        /* --- Recommendations Viewport Specifics (Horizontal Row) --- */
        .ab-viewport-suggestions.recommendations-viewport {
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 12px;
            gap: 12px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .ab-viewport-suggestions.recommendations-viewport::-webkit-scrollbar {
            height: 6px;
        }

        .ab-viewport-suggestions.recommendations-viewport::-webkit-scrollbar-thumb {
            background: rgba(120, 120, 128, 0.2);
            border-radius: 3px;
        }

        .recommendation-card {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-sm);
            padding: 8px;
            text-decoration: none;
            color: var(--text-primary);
            flex: 0 0 220px;
            height: 100px;
            scroll-snap-align: start;
            transition: transform 0.15s ease, background 0.15s ease;
        }

        .recommendation-card:hover {
            background: rgba(120, 120, 128, 0.08);
            transform: scale(1.02);
        }

        .recommendation-card img {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .recommendation-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            overflow: hidden;
        }

        .recommendation-title {
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .recommendation-location {
            font-size: 11px;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* --- Loading Spinner Overlay --- */
        .ab-loader {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

        @media (prefers-color-scheme: dark) {
            .ab-loader { background: rgba(0, 0, 0, 0.4); }
        }

        .ab-loader.active {
            opacity: 1;
            pointer-events: auto;
        }

        .spinner {
            width: 26px;
            height: 26px;
            border: 3px solid rgba(0, 113, 227, 0.2);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* --- Controls Toolbar --- */
        .ab-btn {
            background: rgba(120, 120, 128, 0.08);
            border: none;
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 13px;
            font-weight: 500;
            padding: 10px 0;
            cursor: pointer;
            transition: background 0.15s ease, transform 0.1s ease;
            text-align: center;
        }

        .ab-btn:hover { background: rgba(120, 120, 128, 0.16); }
        .ab-btn:active { transform: scale(0.96); }

        /* --- Meta Panel --- */
        .ab-meta {
            background: rgba(120, 120, 128, 0.04);
            border-radius: var(--radius-sm);
            padding: 10px 12px;
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ab-meta-data span { color: var(--text-primary); font-weight: 600; }
        
        .view-section { display: none; flex-direction: column; gap: 16px; }
        .view-section.active { display: flex; }
