
        :root {
            --primary: #2563eb;
            --primary-hover: #1d4ed8;
            --accent: #d97706;
            --accent-bg: #fff7ed;
            --bg: #f3f6fb;
            --card: #ffffff;
            --text: #334155;
            --text-strong: #0f172a;
            --muted: #64748b;
            --border: #e8edf4;
            --border-light: #eef2f7;
            --sidebar-w: 260px;
            --rail-w: 320px;
            --radius: 10px;
            --shadow-module: 0 1px 3px rgba(15, 23, 42, 0.05);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        /* A2k：embed / iframe 内只保留待上架业务区，禁止第二套工作台 shell */
        html.pending-embed,
        html.pending-embed body {
            height: auto !important;
            min-height: 0 !important;
            overflow: visible !important;
            background: transparent !important;
        }
        html.pending-embed .oyh-unified-sidebar,
        html.pending-embed .oyh-sidebar,
        html.pending-embed aside.oyh-unified-sidebar,
        html.pending-embed .oyh-brand-card,
        html.pending-embed .oyh-right-rail,
        html.pending-embed .oyh-module-topbar,
        html.pending-embed .pending-welcome-hero__cta[href="/"],
        html.pending-embed #oyh-noon-collector-widget,
        html.pending-embed #oyh-noon-collector-widget-handle {
            display: none !important;
        }
        html.pending-embed .oyh-site-shell {
            display: block !important;
            grid-template-columns: none !important;
            max-width: none !important;
            width: 100% !important;
            min-height: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            gap: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }
        html.pending-embed .oyh-main-column {
            width: 100% !important;
            max-width: none !important;
            padding: 0 !important;
            gap: 8px !important;
        }
        html.pending-embed .pending-content {
            padding: 0 !important;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            font-size: 14px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        /* T21-WEB-UI-A1e：三栏工作台 */
        .oyh-site-shell {
            width: 100%;
            min-height: 100vh;
            display: grid;
            grid-template-columns: var(--sidebar-w) minmax(760px, 1fr) var(--rail-w);
            gap: 20px;
            align-items: start;
            padding: 16px 20px 24px;
            box-sizing: border-box;
        }
        .oyh-unified-sidebar {
            position: sticky;
            top: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
            padding: 20px 14px 18px;
            overflow-y: auto;
        }
        .oyh-brand-card {
            margin: 0 4px 16px;
            padding: 14px;
            background: linear-gradient(145deg, #f8fbff 0%, #fff 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius);
        }
        .oyh-brand-card__name { font-size: 18px; font-weight: 800; color: var(--text-strong); }
        .oyh-brand-card__product { font-size: 16px; font-weight: 700; color: var(--primary); margin-top: 2px; }
        .oyh-brand-card__sub { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); }
        .oyh-nav-group {
            padding: 14px 10px 6px;
            font-size: 12px;
            font-weight: 700;
            color: #7b8ba8;
        }
        .oyh-nav-link,
        span.oyh-nav-link {
            display: flex;
            align-items: center;
            min-height: 38px;
            padding: 0 12px;
            margin: 0 4px 3px;
            font-size: 14px;
            font-weight: 500;
            color: #475569;
            text-decoration: none;
            border-radius: 8px;
            border-left: 3px solid transparent;
        }
        a.oyh-nav-link:hover { background: #f1f6fd; color: var(--text-strong); }
        .oyh-nav-link--active {
            background: #eff6ff;
            color: #2563eb;
            border-left: 3px solid var(--primary);
            font-weight: 600;
            box-shadow: none;
        }
        .oyh-nav-icon {
            width: 18px;
            margin-right: 2px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            opacity: 0.85;
        }
        .oyh-nav-link--active .oyh-nav-icon { opacity: 1; }
        .oyh-nav-link--soon {
            min-height: 34px;
            font-size: 13px;
            color: #94a3b8;
            pointer-events: none;
        }
        .oyh-nav-badge {
            margin-left: auto;
            font-size: 11px;
            font-weight: 600;
            color: #94a3b8;
            background: #f1f5f9;
            padding: 2px 7px;
            border-radius: 4px;
        }
        .oyh-main-column {
            min-width: 0;
            width: 100%;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .oyh-right-rail {
            position: sticky;
            top: 16px;
            align-self: start;
            max-height: calc(100vh - 32px);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 0;
        }
        .oyh-rail-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-module);
            padding: 12px 14px;
        }
        .oyh-rail-card__title {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-strong);
            margin: 0 0 10px;
        }
        .oyh-rail-card__sub { font-size: 12px; color: var(--muted); margin: 0 0 10px; line-height: 1.45; }
        .oyh-rail-status-list { display: flex; flex-direction: column; gap: 8px; }
        .oyh-rail-status-list .pending-header-pill { width: 100%; justify-content: flex-start; }
        .oyh-rail-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
        .oyh-rail-checklist__item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: var(--text);
            line-height: 1.4;
        }
        .oyh-rail-checklist__dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid #cbd5e1;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .oyh-rail-checklist__item--hint .oyh-rail-checklist__dot { border-color: #93c5fd; background: #eff6ff; }
        .oyh-rail-actions { display: flex; flex-direction: column; gap: 8px; }
        .oyh-rail-link {
            display: flex;
            align-items: center;
            min-height: 36px;
            padding: 0 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            background: #f8fafc;
            border: 1px solid var(--border);
            border-radius: 8px;
        }
        .oyh-rail-link:hover { background: #eff6ff; }
        .oyh-rail-link--disabled { color: #94a3b8; pointer-events: none; }
        .oyh-rail-note { font-size: 12px; color: var(--muted); line-height: 1.45; margin: 0; }
        .oyh-rail-card--warn {
            background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 100%);
            border-color: #fbbf24;
            border-left: 4px solid #f59e0b;
            box-shadow: 0 1px 4px rgba(245, 158, 11, 0.12);
        }
        .oyh-rail-card--warn .oyh-rail-card__title { color: #b45309; font-weight: 800; }
        .oyh-rail-card--warn .oyh-rail-note {
            color: #92400e;
            font-weight: 500;
            padding-left: 10px;
            border-left: 2px solid #fcd34d;
            margin-top: 6px;
        }
        .oyh-rail-card--warn .oyh-rail-note:first-of-type { margin-top: 0; }
        .oyh-rail-placeholder {
            font-size: 13px;
            color: var(--muted);
            padding: 10px 12px;
            background: #f8fafc;
            border: 1px dashed var(--border);
            border-radius: 8px;
            line-height: 1.45;
        }
        .oyh-module-topbar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px 20px;
            padding: 14px 18px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-module);
        }
        .oyh-module-topbar__title {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-strong);
            margin: 0 0 6px;
            letter-spacing: -0.03em;
        }
        .oyh-module-topbar__sub {
            font-size: 14px;
            color: var(--muted);
            max-width: 560px;
            line-height: 1.5;
        }
        .pending-content { display: flex; flex-direction: column; gap: 10px; min-width: 0; width: 100%; }
        .pending-workflow { width: 100%; min-width: 0; }
        .pending-zone { width: 100%; }
        .pending-table-wrap { width: 100%; }
        /* 未登录欢迎面板：撑满中间列（A1f 压缩高度） */
        .pending-unauth {
            display: flex;
            flex-direction: column;
            gap: 14px;
            width: 100%;
            padding: 16px 20px 18px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-module);
        }
        .pending-welcome-hero { max-width: 720px; }
        .pending-welcome-hero__title {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-strong);
            margin-bottom: 6px;
            line-height: 1.2;
        }
        .pending-welcome-hero__sub {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.45;
            margin-bottom: 12px;
        }
        .pending-welcome-hero__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 36px;
            padding: 0 18px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--primary);
            border-radius: 8px;
            text-decoration: none;
            box-shadow: 0 1px 2px rgba(37, 99, 235, 0.25);
        }
        .pending-welcome-hero__cta:hover { background: var(--primary-hover); }
        .pending-onboarding-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            width: 100%;
        }
        @media (max-width: 1100px) {
            .pending-onboarding-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 640px) {
            .pending-onboarding-grid { grid-template-columns: 1fr; }
        }
        .pending-onboarding-card {
            padding: 11px 12px 10px;
            background: #f8fafc;
            border: 1px solid var(--border-light);
            border-radius: 8px;
        }
        .pending-onboarding-grid .pending-onboarding-card:nth-child(1),
        .pending-onboarding-grid .pending-onboarding-card:nth-child(3) {
            background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
            border-color: #93c5fd;
            box-shadow: 0 1px 2px rgba(37, 99, 235, 0.08);
        }
        .pending-onboarding-grid .pending-onboarding-card:nth-child(1) .pending-onboarding-card__num,
        .pending-onboarding-grid .pending-onboarding-card:nth-child(3) .pending-onboarding-card__num {
            background: #2563eb;
            color: #fff;
        }
        .pending-onboarding-grid .pending-onboarding-card:nth-child(6) {
            background: #f1f5f9;
            border-color: #e2e8f0;
            opacity: 0.92;
        }
        .pending-onboarding-grid .pending-onboarding-card:nth-child(6) .pending-onboarding-card__title,
        .pending-onboarding-grid .pending-onboarding-card:nth-child(6) .pending-onboarding-card__desc {
            color: #64748b;
        }
        .pending-onboarding-grid .pending-onboarding-card:nth-child(6) .pending-onboarding-card__num {
            background: #e2e8f0;
            color: #64748b;
        }
        .pending-onboarding-card__head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }
        .pending-onboarding-card__num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #dbeafe;
            color: var(--primary);
            font-size: 13px;
            font-weight: 800;
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }
        .pending-onboarding-card__title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .pending-onboarding-card__desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.45;
            padding-left: 38px;
        }
        .pending-no-upload-banner {
            margin: 0 0 10px;
            padding: 10px 12px;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.45;
            color: #92400e;
            background: #fffbeb;
            border: 1px solid #fde68a;
            border-radius: 6px;
        }
        .pending-btn-risk {
            border: 1px solid #fecaca !important;
            background: #fef2f2 !important;
            color: #b91c1c !important;
        }
        .pending-btn-risk:disabled {
            opacity: 0.55;
            cursor: not-allowed;
        }
        #pendingOneClickNisListing.pending-btn-primary {
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
        }
        #pendingOneClickNisListing.pending-btn-primary:disabled {
            box-shadow: none;
        }
        .pending-zone--publish .pending-zone__actions {
            flex-wrap: wrap;
            gap: 8px;
        }
        .pending-zone-advanced {
            margin-top: 8px;
            border: 1px dashed #e2e8f0;
            border-radius: var(--radius);
            background: #fafbfd;
        }
        .pending-zone-advanced > summary {
            padding: 12px 16px;
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
        }
        .pending-zone-advanced__body { padding: 0 16px 16px; }
        .pending-table-wrap {
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }
        .pending-zone--publish {
            border: 1px solid #dbeafe;
            background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
        }
        #oyh-noon-collector-widget,
        #oyh-noon-collector-widget-handle {
            z-index: 800 !important;
        }
        #oyh-noon-collector-widget {
            max-width: min(360px, calc(100vw - 32px)) !important;
            max-height: min(62vh, 460px) !important;
            right: 16px !important;
            bottom: 16px !important;
            left: auto !important;
            top: auto !important;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
        }
        #oyh-noon-collector-widget-handle {
            max-width: 160px !important;
            max-height: 44px !important;
            right: 16px !important;
            bottom: 16px !important;
            left: auto !important;
            top: auto !important;
        }
        .pending-boot-error {
            margin: 16px 20px 24px;
            padding: 16px 18px;
            border: 1px solid #fecaca;
            border-radius: var(--radius);
            background: #fef2f2;
            color: #991b1b;
        }
        .pending-boot-error h2 { font-size: 16px; margin-bottom: 8px; color: #7f1d1d; }
        .pending-boot-error__hint { margin-top: 10px; font-size: 13px; color: #b91c1c; line-height: 1.5; }
        #pendingBootErrorDetail {
            margin-top: 10px;
            padding: 10px;
            background: #fff;
            border: 1px solid #fecaca;
            border-radius: 6px;
            font-size: 12px;
            line-height: 1.45;
            white-space: pre-wrap;
            word-break: break-word;
            max-height: 240px;
            overflow: auto;
            color: #450a0a;
        }
        @media (max-width: 1280px) {
            .oyh-site-shell { grid-template-columns: var(--sidebar-w) minmax(0, 1fr); }
            .oyh-right-rail {
                grid-column: 1 / -1;
                position: static;
                max-height: none;
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        @media (max-width: 900px) {
            .oyh-site-shell { grid-template-columns: 1fr; padding: 12px; }
            .oyh-unified-sidebar { position: static; max-height: none; }
            .oyh-right-rail { grid-template-columns: 1fr; }
        }
        .pending-header-status {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: flex-end;
            align-items: center;
        }
        .pending-header-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 30px;
            padding: 6px 12px 6px 10px;
            font-size: 13px;
            font-weight: 500;
            line-height: 1.2;
            border-radius: 8px;
            background: #f8fafc;
            border: 1px solid var(--border);
            color: #475569;
            white-space: nowrap;
        }
        .oyh-rail-status-list .pending-header-pill::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #94a3b8;
            flex-shrink: 0;
            box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.25);
        }
        .pending-header-pill--ok {
            border-color: #d1fae5;
            background: #f6fef9;
            color: #047857;
        }
        .pending-header-pill--ok::before {
            background: #22c55e;
            box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
        }
        .pending-header-pill--warn {
            border-color: #fde68a;
            background: #fffbeb;
            color: #a16207;
        }
        .pending-header-pill--warn::before {
            background: #f59e0b;
            box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
        }
        .pending-dashboard {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        @media (max-width: 1200px) {
            .pending-dashboard { grid-template-columns: 1fr; }
        }
        .pending-zone--overview { padding: 12px 16px !important; }
        .pending-overview-stat { padding: 12px 14px !important; }
        .pending-overview-stat__val { font-size: 22px !important; }
        .pending-overview-stat__lbl { font-size: 12px !important; }
        .pending-module {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 18px 20px;
            box-shadow: var(--shadow-module);
        }
        .pending-module--task { border-color: #dbeafe; }
        .pending-module__title {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: var(--muted);
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .pending-module__title strong,
        .pending-module__title span { text-transform: none; font-weight: 600; color: var(--text-strong); }
        .pending-overview-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }
        @media (max-width: 900px) {
            .pending-overview-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .pending-overview-stat {
            padding: 14px 12px 12px;
            background: transparent;
            border: none;
            border-radius: 0;
            text-align: left;
        }
        .pending-overview-stat__val {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--text-strong);
            line-height: 1.1;
            font-variant-numeric: tabular-nums;
        }
        .pending-overview-stat__lbl {
            font-size: 11px;
            font-weight: 500;
            color: var(--muted);
            margin-top: 6px;
            line-height: 1.3;
        }
        .pending-overview-stat--highlight .pending-overview-stat__val { color: var(--primary); }
        .pending-overview-stat--ready .pending-overview-stat__val { color: #047857; }
        .pending-task-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }
        .pending-btn-primary {
            font-size: 14px;
            font-weight: 600;
            padding: 10px 18px;
            border: none;
            border-radius: 6px;
            background: var(--primary);
            color: #fff;
            cursor: pointer;
            box-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
        }
        .pending-btn-primary:hover:not(:disabled) { background: var(--primary-hover); }
        .pending-btn-primary:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
        .pending-btn-secondary {
            font-size: 12px;
            font-weight: 500;
            padding: 7px 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--card);
            color: #64748b;
            cursor: pointer;
        }
        .pending-btn-secondary:hover:not(:disabled) {
            border-color: #cbd5e1;
            color: var(--text-strong);
            background: #fafbfc;
        }
        .pending-btn-secondary:disabled { opacity: 0.4; cursor: not-allowed; }
        .pending-btn-accent {
            font-size: 12px;
            font-weight: 500;
            padding: 7px 12px;
            border: 1px solid #fed7aa;
            border-radius: 6px;
            background: var(--accent-bg);
            color: #9a3412;
            cursor: pointer;
        }
        .pending-btn-accent:hover:not(:disabled) { background: #ffedd5; border-color: #fdba74; }
        .pending-btn-accent:disabled { opacity: 0.4; cursor: not-allowed; }
        .pending-btn-ghost {
            font-size: 11px;
            font-weight: 500;
            padding: 6px 10px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: #fafbfc;
            color: #64748b;
            cursor: pointer;
        }
        .pending-btn-ghost:hover:not(:disabled) { background: #f1f5f9; color: var(--text); }
        .pending-advanced-export { margin-top: 6px; padding-top: 8px; border-top: 1px solid var(--border-light); }
        .pending-advanced-export summary {
            font-size: 11px;
            font-weight: 500;
            color: #94a3b8;
            cursor: pointer;
            padding: 2px 0;
            list-style: none;
        }
        .pending-advanced-export summary::-webkit-details-marker { display: none; }
        .pending-advanced-export__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 10px;
        }
        .pending-config-summary {
            font-size: 12px;
            line-height: 1.6;
            color: #64748b;
            margin-bottom: 12px;
            white-space: pre-wrap;
            font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
            background: #fafbfc;
            padding: 10px 12px;
            border-radius: 6px;
            border: 1px solid var(--border-light);
        }
        .pending-config-summary-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .pending-task-stages {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 10px;
        }
        @media (max-width: 1100px) {
            .pending-task-stages { grid-template-columns: repeat(3, 1fr); }
        }
        .pending-stage-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 64px;
            padding: 10px 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: #fafbfc;
            font-size: 11px;
        }
        .pending-stage-card__label {
            font-weight: 600;
            font-size: 11px;
            color: #475569;
            margin-bottom: 8px;
            line-height: 1.35;
        }
        .pending-stage-card__state {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
        }
        .pending-stage-card[data-state="pending"] { background: #fafbfc; border-color: var(--border); }
        .pending-stage-card[data-state="pending"] .pending-stage-card__state { color: #94a3b8; }
        .pending-stage-card[data-state="running"] { border-color: #bfdbfe; background: #f8fbff; }
        .pending-stage-card[data-state="running"] .pending-stage-card__state { color: var(--primary); }
        .pending-stage-card[data-state="success"] { border-color: #bbf7d0; background: #f6fef9; }
        .pending-stage-card[data-state="success"] .pending-stage-card__state { color: #047857; }
        .pending-stage-card[data-state="failed"] { border-color: #fecaca; background: #fef8f8; }
        .pending-stage-card[data-state="failed"] .pending-stage-card__state { color: #dc2626; }
        .pending-task-log-panel {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 14px 18px;
            box-shadow: var(--shadow-module);
        }
        .pending-task-log-toggle {
            font-size: 12px;
            font-weight: 500;
            color: var(--primary);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            margin-bottom: 8px;
        }
        .pending-workspace {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px 18px;
            box-shadow: var(--shadow-module);
        }
        .pending-workspace__head {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-light);
        }
        .pending-workspace__title {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-strong);
        }
        .pending-workflow {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .pending-zone {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 14px 16px;
            box-shadow: var(--shadow-module);
        }
        .pending-zone--publish {
            border-color: #dbeafe;
        }
        .pending-zone__head {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px 14px;
            margin-bottom: 10px;
        }
        .pending-zone__head--tight { margin-bottom: 8px; }
        .pending-zone__step {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .pending-zone__title {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-strong);
            line-height: 1.3;
        }
        .pending-zone__hint {
            font-size: 12px;
            line-height: 1.5;
            color: var(--muted);
            margin: 0 0 10px;
            max-width: 52rem;
        }
        .pending-zone__actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }
        .pending-zone-taxonomy {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dashed var(--border);
        }
        .pending-zone-taxonomy > summary {
            font-size: 13px;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            list-style: none;
            margin-bottom: 8px;
        }
        .pending-zone-taxonomy > summary::-webkit-details-marker { display: none; }
        .pending-zone-advanced {
            background: #f8fafc;
            border: 1px dashed #cbd5e1;
            border-radius: var(--radius);
            padding: 0;
            box-shadow: none;
        }
        .pending-zone-advanced > summary {
            font-size: 13px;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            padding: 14px 18px;
            list-style: none;
        }
        .pending-zone-advanced > summary::-webkit-details-marker { display: none; }
        .pending-zone-advanced__body {
            padding: 0 18px 16px;
            border-top: 1px solid var(--border-light);
        }
        .pending-zone-advanced__block {
            margin-top: 14px;
        }
        .pending-zone-advanced__block-title {
            font-size: 12px;
            font-weight: 600;
            color: #475569;
            margin-bottom: 8px;
        }
        .pending-precheck-strip {
            font-size: 11px;
            line-height: 1.5;
            padding: 12px 14px;
            background: #fafbfc;
            border: 1px solid var(--border-light);
            border-radius: 6px;
            margin-bottom: 14px;
            white-space: pre-wrap;
            color: #475569;
        }
        .pending-precheck-strip[hidden] { display: none; }
        .pending-listing-panel {
            margin-top: 14px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }
        .pending-listing-panel[hidden] { display: none; }
        .pending-chip {
            display: inline-flex;
            align-items: center;
            padding: 2px 8px;
            margin: 0 4px 4px 0;
            font-size: 10px;
            font-weight: 500;
            line-height: 1.4;
            border-radius: 4px;
            border: 1px solid transparent;
            white-space: nowrap;
        }
        .pending-chip--neutral { background: #f1f5f9; color: #64748b; border-color: #e2e8f0; }
        .pending-chip--success { background: #ecfdf5; color: #047857; border-color: #d1fae5; }
        .pending-chip--warn { background: #fffbeb; color: #a16207; border-color: #fde68a; }
        .pending-chip--danger { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
        .pending-chip--info { background: #eff6ff; color: #1d4ed8; border-color: #dbeafe; }
        .pending-row-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
        .pending-noon-cat-block { margin-top: 6px; }
        .pending-noon-cat-line {
            font-size: 11px;
            line-height: 1.45;
            color: #475569;
            margin-top: 4px;
        }
        .pending-noon-cat-line--code {
            font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
            font-size: 10px;
            color: #94a3b8;
        }
        .pending-shell { width: 100%; }
        .pending-card { background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none; }
        .pending-title {
            font-size: 20px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }
        .pending-stats {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            padding: 12px 14px;
            background: #f8fafc;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .pending-stats strong { color: #0f172a; }
        .pending-unauth {
            text-align: center;
            padding: 48px 24px;
        }
        .pending-unauth p { margin-bottom: 16px; color: var(--muted); font-size: 15px; }
        .pending-unauth a {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
        }
        .pending-loading { text-align: center; padding: 32px; color: var(--muted); }
        .pending-table-wrap { overflow-x: auto; margin: 0 -4px; }
        .pending-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .pending-table th {
            text-align: left;
            padding: 10px 14px;
            background: transparent;
            color: #94a3b8;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            border-bottom: 1px solid var(--border);
            white-space: nowrap;
        }
        .pending-table td {
            padding: 14px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: top;
        }
        .pending-table tbody tr:hover td { background: #fafbfc; }
        .pending-table tbody tr:last-child td { border-bottom: none; }
        .pending-thumb {
            width: 48px;
            height: 48px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid var(--border-light);
            background: #f1f5f9;
        }
        .pending-thumb-btn {
            display: inline-block;
            padding: 0;
            margin: 0;
            border: none;
            background: transparent;
            cursor: zoom-in;
            border-radius: 8px;
            line-height: 0;
            vertical-align: middle;
        }
        .pending-thumb-btn:hover .pending-thumb,
        .pending-thumb-btn:focus-visible .pending-thumb {
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.45);
        }
        .pending-thumb-btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .pending-image-preview {
            position: fixed;
            inset: 0;
            z-index: 100002;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            box-sizing: border-box;
        }
        .pending-image-preview[hidden] {
            display: none !important;
        }
        .pending-image-preview__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.72);
            cursor: pointer;
        }
        .pending-image-preview__panel {
            position: relative;
            z-index: 1;
            max-width: 90vw;
            max-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pending-image-preview__img {
            display: block;
            max-width: 90vw;
            max-height: 85vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
        }
        .pending-image-preview__close {
            position: absolute;
            top: -10px;
            right: -10px;
            z-index: 2;
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 50%;
            background: #fff;
            color: #0f172a;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .pending-image-preview__close:hover {
            background: #f1f5f9;
        }
        .pending-thumb--empty {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #94a3b8;
        }
        .pending-title-cell {
            max-width: 260px;
            min-width: 180px;
            font-weight: 600;
            font-size: 13px;
            color: var(--text-strong);
            line-height: 1.4;
        }
        .pending-title-main { margin-bottom: 2px; }
        .pending-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: lowercase;
        }
        .pending-badge--alibaba,
        .pending-badge--1688 { background: #ffedd5; color: #c2410c; }
        .pending-badge--amazon { background: #fef3c7; color: #b45309; }
        .pending-badge--temu { background: #fce7f3; color: #be185d; }
        .pending-badge--shein { background: #ede9fe; color: #6d28d9; }
        .pending-badge--noon { background: #dbeafe; color: #1d4ed8; }
        .pending-actions { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
        .pending-actions button {
            font-size: 11px;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: var(--card);
            color: #64748b;
            cursor: pointer;
        }
        .pending-actions button:hover:not(:disabled) {
            border-color: #cbd5e1;
            color: var(--text-strong);
            background: #fafbfc;
        }
        .pending-actions button:disabled {
            color: #94a3b8;
            cursor: not-allowed;
            opacity: 0.85;
        }
        .pending-actions button.is-busy {
            opacity: 0.7;
            pointer-events: none;
        }
        .pending-actions button.is-busy::after {
            content: '';
            display: inline-block;
            width: 10px;
            height: 10px;
            margin-left: 5px;
            border: 2px solid #cbd5e1;
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: pending-spin 0.65s linear infinite;
            vertical-align: -2px;
        }
        @keyframes pending-spin { to { transform: rotate(360deg); } }
        .pending-subtitle {
            font-size: 11px;
            font-weight: 400;
            color: #94a3b8;
            margin-top: 3px;
            line-height: 1.4;
        }
        .pending-compliance-warn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 6px;
            padding: 0 5px;
            min-width: 20px;
            height: 18px;
            font-size: 12px;
            font-weight: 800;
            color: #fff;
            background: #dc2626;
            border-radius: 4px;
            cursor: help;
            vertical-align: middle;
        }
        .pending-toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100001;
            max-width: 90vw;
            padding: 12px 18px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            background: #0f172a;
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
        }
        .pending-toast--error { background: #dc2626; }
        .pending-load-more {
            display: block;
            width: 100%;
            margin-top: 20px;
            padding: 12px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            background: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 10px;
            cursor: pointer;
        }
        .pending-load-more:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .pending-empty {
            text-align: center;
            padding: 40px;
            color: var(--muted);
        }
        .pending-export-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 12px;
            padding: 12px 14px;
            margin-bottom: 16px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
        }
        .pending-export-bar__count {
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
            margin-right: auto;
        }
        .pending-export-bar__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .pending-export-btn {
            font-size: 11px;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: #fafbfc;
            color: #64748b;
            cursor: pointer;
        }
        .pending-export-btn:hover:not(:disabled) {
            border-color: #cbd5e1;
            color: var(--text);
            background: #f1f5f9;
        }
        .pending-export-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .pending-export-btn--primary {
            background: #f1f5f9;
            border-color: var(--border);
            color: var(--text);
        }
        .pending-export-btn--primary:hover:not(:disabled) {
            background: #e2e8f0;
            border-color: #cbd5e1;
            color: var(--text-strong);
        }
        .pending-export-config-toggle {
            font-size: 12px;
            font-weight: 600;
            padding: 6px 10px;
            border: none;
            background: transparent;
            color: var(--muted);
            cursor: pointer;
            text-decoration: underline;
        }
        .pending-export-config {
            width: 100%;
            padding-top: 8px;
            border-top: 1px solid #e2e8f0;
        }
        .pending-export-config[hidden] { display: none; }
        .pending-export-config-fields {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 10px 14px;
        }
        .pending-export-config label {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #64748b;
        }
        .pending-export-config input {
            font-size: 13px;
            padding: 6px 8px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            color: #0f172a;
        }
        .pending-export-config__hint {
            grid-column: 1 / -1;
            font-size: 11px;
            color: var(--muted);
            line-height: 1.5;
        }
        .pending-export-config-row {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 16px;
            padding-top: 8px;
            border-top: 1px solid #e2e8f0;
        }
        @media (max-width: 900px) {
            .pending-export-config-row {
                grid-template-columns: 1fr;
            }
        }
        .pending-noon-status {
            font-size: 12px;
            color: #334155;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 12px 14px;
            align-self: start;
        }
        .pending-noon-status__title {
            font-size: 13px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 10px;
        }
        .pending-noon-status__dl {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 4px 10px;
            margin: 0 0 10px;
        }
        .pending-noon-status__dl dt {
            color: #64748b;
            font-weight: 600;
        }
        .pending-noon-status__dl dd {
            margin: 0;
            word-break: break-all;
        }
        .pending-noon-status__login--ok { color: #15803d; font-weight: 700; }
        .pending-noon-status__login--warn { color: #b45309; font-weight: 700; }
        .pending-noon-status__login--muted { color: #64748b; font-weight: 700; }
        .pending-noon-status__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }
        .pending-noon-status__btn {
            font-size: 11px;
            font-weight: 600;
            padding: 6px 10px;
            border-radius: 6px;
            border: 1px solid #cbd5e1;
            background: #f8fafc;
            color: #334155;
            cursor: pointer;
        }
        .pending-noon-status__btn:hover:not(:disabled) {
            border-color: var(--primary);
            color: var(--primary);
        }
        .pending-noon-status__btn:disabled {
            opacity: 0.5;
            cursor: wait;
        }
        .pending-noon-partner-hint {
            grid-column: 1 / -1;
            font-size: 11px;
            color: #0369a1;
            margin: 0;
            line-height: 1.5;
        }
        .pending-noon-partner-warn,
        .pending-noon-warehouse-warn {
            grid-column: 1 / -1;
            font-size: 11px;
            color: #b45309;
            font-weight: 600;
            margin: 0;
            line-height: 1.5;
        }
        .pending-noon-warehouse-hint {
            grid-column: 1 / -1;
            font-size: 11px;
            color: #0369a1;
            margin: 0;
            line-height: 1.5;
        }
        .pending-noon-status__section-title {
            font-size: 12px;
            font-weight: 700;
            color: #64748b;
            margin: 12px 0 8px;
            padding-top: 10px;
            border-top: 1px dashed #e2e8f0;
        }
        .pending-noon-status__cache-hint {
            font-size: 11px;
            color: #b45309;
            margin: 0 0 8px;
            line-height: 1.4;
        }
        .pending-noon-status__cache-hint[hidden] { display: none; }
        .pending-noon-sync-btn {
            width: 100%;
            margin-bottom: 10px;
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            background: var(--primary);
            color: #fff;
            cursor: pointer;
        }
        .pending-noon-sync-btn:hover:not(:disabled) {
            background: #1d4ed8;
        }
        .pending-noon-sync-btn:disabled {
            opacity: 0.55;
            cursor: wait;
        }
        .pending-noon-sync-status {
            font-size: 12px;
            font-weight: 600;
            margin: 0 0 8px;
            line-height: 1.4;
        }
        .pending-noon-sync-status[hidden] { display: none; }
        .pending-noon-sync-status--ok { color: #15803d; }
        .pending-noon-sync-status--warn { color: #b45309; }
        .pending-noon-sync-status--error { color: #dc2626; }
        .pending-noon-sync-status--loading { color: var(--primary); }
        .pending-noon-sync-warnings {
            font-size: 11px;
            color: #b45309;
            margin: 0 0 10px 1.1em;
            padding: 0;
            line-height: 1.5;
        }
        .pending-noon-sync-warnings[hidden] { display: none; }
        .pending-sync-help {
            font-size: 11px;
            color: var(--muted);
            line-height: 1.5;
            margin: 0 0 10px;
        }
        .pending-oyh-auth-sync-btn {
            width: 100%;
            margin-bottom: 8px;
            padding: 8px 12px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            background: #f8fafc;
            color: #334155;
            cursor: pointer;
        }
        .pending-oyh-auth-sync-btn:hover:not(:disabled) {
            background: #f1f5f9;
            border-color: #94a3b8;
        }
        .pending-oyh-auth-sync-btn:disabled { opacity: 0.55; cursor: wait; }
        .pending-pricing-rate-hint {
            font-size: 11px;
            color: #475569;
            line-height: 1.5;
            margin: 8px 0 0;
            padding: 8px 10px;
            background: #f8fafc;
            border-radius: 6px;
            border: 1px dashed #e2e8f0;
        }
        .pending-pricing-rate-hint--warn {
            color: #b45309;
            border-color: #fcd34d;
            background: #fffbeb;
        }
        .pending-export-btn--ngs { display: none; }
        .pending-export-btn--nis-test,
        .pending-export-btn--nis-push {
            background: #fff;
            color: #475569;
            border: 1px solid #cbd5e1;
        }
        .pending-export-btn--nis-test:hover:not(:disabled),
        .pending-export-btn--nis-push:hover:not(:disabled) {
            border-color: var(--primary);
            color: var(--primary);
        }
        .pending-nis-upload-status {
            width: 100%;
            margin: 8px 0 0;
            padding: 10px 12px;
            font-size: 12px;
            line-height: 1.5;
            border-radius: 8px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #334155;
        }
        .pending-nis-upload-status--ok {
            background: #ecfdf5;
            border-color: #6ee7b7;
            color: #065f46;
        }
        .pending-nis-upload-status--warn {
            background: #fffbeb;
            border-color: #fcd34d;
            color: #92400e;
        }
        .pending-nis-upload-status--error {
            background: #fef2f2;
            border-color: #fecaca;
            color: #991b1b;
        }
        .pending-nis-config-fields {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 8px;
            margin-top: 8px;
        }
        .pending-nis-config-fields label {
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .pending-nis-config-fields input {
            font-size: 12px;
            padding: 6px 8px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
        }
        .pending-noon-cat-section {
            margin-top: 10px;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            background: #f8fafc;
        }
        .pending-noon-cat-section__title {
            font-size: 12px;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 8px;
        }
        .pending-noon-cat-apply-btn {
            margin-top: 8px;
            padding: 8px 12px;
            font-size: 12px;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            background: var(--primary);
            color: #fff;
            cursor: pointer;
        }
        .pending-noon-cat-apply-btn:hover:not(:disabled) { background: #1d4ed8; }
        .pending-noon-cat-apply-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .pending-noon-cat-apply-hint {
            font-size: 11px;
            color: #6b7280;
            margin: 8px 0 0;
            line-height: 1.45;
        }
        .pending-noon-cat {
            font-size: 11px;
            margin-top: 4px;
            line-height: 1.4;
        }
        .pending-noon-cat--ok { color: #15803d; }
        .pending-noon-cat--warn { color: #b45309; font-weight: 600; }
        .pending-noon-cat--wrong { color: #b91c1c; font-weight: 700; }
        .pending-noon-cat--invalid { color: #dc2626; font-weight: 800; }
        .pending-noon-cat--missing { color: #b45309; font-weight: 600; }
        .pending-noon-cat-line { font-size: 11px; line-height: 1.4; margin-top: 2px; }
        .pending-noon-cat-label { color: #64748b; font-weight: 600; }
        .pending-taxonomy-local-title {
            font-size: 12px;
            color: #64748b;
            margin: 8px 0 4px;
        }
        .pending-taxonomy-local-msg {
            font-size: 12px;
            color: #b45309;
            margin: 6px 0;
            line-height: 1.45;
        }
        .pending-taxonomy-rec--local { border-color: #bfdbfe; }
        .pending-listing-config__title {
            font-size: 13px;
            font-weight: 700;
            color: #334155;
            margin: 12px 0 8px;
        }
        .pending-listing-config-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 8px 12px;
            margin-bottom: 10px;
        }
        .pending-listing-config-grid label {
            display: flex;
            flex-direction: column;
            font-size: 11px;
            color: #64748b;
            gap: 4px;
        }
        .pending-listing-config-grid input {
            font-size: 13px;
            padding: 6px 8px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
        }
        .pending-precheck-panel {
            margin: 12px 0;
            padding: 10px 12px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
        }
        .pending-precheck-panel__title {
            font-size: 13px;
            font-weight: 600;
            margin: 0 0 6px;
        }
        .pending-precheck-panel__text {
            font-size: 11px;
            line-height: 1.45;
            margin: 0;
            white-space: pre-wrap;
            color: #334155;
        }
        .pending-taxonomy-block {
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 6px;
            background: #fff;
            border: 1px solid #e2e8f0;
        }
        .pending-taxonomy-block__title {
            font-size: 11px;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 6px;
        }
        .pending-taxonomy-block__hint {
            font-size: 10px;
            color: #6b7280;
            margin: 0 0 6px;
            line-height: 1.4;
        }
        .pending-taxonomy-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 6px;
        }
        .pending-taxonomy-btn {
            font-size: 11px;
            padding: 5px 10px;
            border-radius: 6px;
            border: 1px solid #cbd5e1;
            background: #fff;
            color: #334155;
            cursor: pointer;
            font-weight: 600;
        }
        .pending-taxonomy-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
        .pending-taxonomy-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .pending-taxonomy-recs {
            display: flex;
            flex-direction: column;
            gap: 4px;
            max-height: 140px;
            overflow-y: auto;
        }
        .pending-taxonomy-rec {
            text-align: left;
            font-size: 11px;
            padding: 6px 8px;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            color: #334155;
            cursor: pointer;
            line-height: 1.35;
        }
        .pending-taxonomy-rec:hover { background: #eff6ff; border-color: #93c5fd; }
        .pending-taxonomy-rec__score {
            color: var(--primary);
            font-weight: 700;
        }
        .pending-taxonomy-preset-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            max-height: 72px;
            overflow-y: auto;
        }
        .pending-taxonomy-preset {
            font-size: 10px;
            padding: 3px 6px;
            border-radius: 4px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            color: #475569;
            cursor: pointer;
        }
        .pending-taxonomy-preset:hover { background: #eff6ff; border-color: #93c5fd; }
        .pending-taxonomy-empty {
            font-size: 11px;
            color: #9ca3af;
            margin: 4px 0 0;
        }
        .pending-noon-cat-manual__title {
            font-size: 11px;
            font-weight: 600;
            color: #92400e;
            margin: 8px 0 6px;
        }
        .pending-listing-task-status {
            font-size: 12px;
            line-height: 1.5;
            margin: 8px 0 0;
            padding: 8px 10px;
            border-radius: 6px;
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #166534;
        }
        .pending-listing-task-status[hidden] { display: none; }
        .pending-listing-task-status--error {
            background: #fef2f2;
            border-color: #fecaca;
            color: #b91c1c;
        }
        .pending-listing-task-status--warn {
            background: #fffbeb;
            border-color: #fde68a;
            color: #b45309;
        }
        .pending-listing-task-status__link {
            display: inline-block;
            margin-top: 6px;
            font-weight: 600;
            color: var(--primary);
        }
        .pending-check-modal__warn {
            font-size: 12px;
            color: #b45309;
            font-weight: 600;
            line-height: 1.5;
            margin: 0 0 10px;
        }
        .pending-row-select,
        .pending-select-all {
            width: 16px;
            height: 16px;
            cursor: pointer;
            accent-color: var(--primary);
        }
        .pending-select-cell {
            width: 36px;
            text-align: center;
        }
        .pending-card-item__select {
            flex-shrink: 0;
            padding-top: 18px;
        }
        .pending-batch-bar {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            padding-top: 4px;
            border-top: 1px dashed #e2e8f0;
            margin-top: 4px;
        }
        .pending-batch-status {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            width: 100%;
        }
        .pending-batch-status[hidden] { display: none; }
        .pending-batch-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .pending-batch-btn {
            font-size: 12px;
            font-weight: 500;
            padding: 7px 12px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: var(--card);
            color: #64748b;
            cursor: pointer;
        }
        .pending-batch-btn:hover:not(:disabled) {
            border-color: #cbd5e1;
            color: var(--text-strong);
            background: #fafbfc;
        }
        .pending-batch-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }
        .pending-check-modal {
            position: fixed;
            inset: 0;
            z-index: 100003;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }
        .pending-check-modal[hidden] { display: none !important; }
        .pending-check-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.65);
            cursor: pointer;
        }
        .pending-check-modal__panel {
            position: relative;
            z-index: 1;
            width: min(520px, 100%);
            max-height: 85vh;
            overflow: auto;
            background: #fff;
            border-radius: 12px;
            padding: 20px 22px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        .pending-check-modal__title {
            font-size: 16px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }
        .pending-check-modal__verdict {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .pending-check-modal__verdict--ready { color: #15803d; }
        .pending-check-modal__verdict--suggest_fix { color: #b45309; }
        .pending-check-modal__stats {
            font-size: 13px;
            line-height: 1.7;
            margin: 0 0 12px 1.1em;
            color: #334155;
        }
        .pending-check-modal__section h3 {
            font-size: 12px;
            font-weight: 700;
            color: #64748b;
            margin: 10px 0 6px;
        }
        .pending-check-modal__section ul {
            font-size: 12px;
            line-height: 1.6;
            margin: 0 0 8px 1.1em;
            color: #475569;
        }
        .pending-check-modal__sku { color: #94a3b8; }
        .pending-check-modal__hint,
        .pending-check-modal__ok {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.5;
            margin-top: 8px;
        }
        .pending-check-modal__close {
            margin-top: 14px;
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 8px;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            cursor: pointer;
        }
        .pending-cards { display: none; }
        @media (max-width: 900px) {
            .pending-table-wrap { display: none; }
            .pending-cards { display: flex; flex-direction: column; gap: 12px; }
            .pending-card-item {
                border: 1px solid #e2e8f0;
                border-radius: 12px;
                padding: 14px;
                background: #fff;
            }
            .pending-card-item__head {
                display: flex;
                gap: 12px;
                margin-bottom: 10px;
            }
            .pending-card-item__meta {
                font-size: 12px;
                color: var(--muted);
                line-height: 1.5;
            }
        }
    