:root {
    --ink: #20221f;
    --muted: #6f736d;
    --line: #e1e3de;
    --canvas: #f5f6f3;
    --surface: #ffffff;
    --surface-soft: #f0f2ed;
    --brand: #e95f18;
    --brand-dark: #b9430b;
    --green: #247a4b;
    --green-soft: #e8f5ed;
    --yellow: #96620a;
    --yellow-soft: #fff3d8;
    --red: #b3261e;
    --red-soft: #fcebea;
    --sidebar: #282a27;
    --shadow: 0 16px 48px rgba(34, 37, 32, .12);
    --radius: 6px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--canvas);
    letter-spacing: 0;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--canvas); }
body { margin: 0; min-height: 100vh; color: var(--ink); background: var(--canvas); }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 8px; font-size: clamp(1.75rem, 3vw, 2.3rem); line-height: 1.12; font-weight: 760; }
h2 { margin-bottom: 5px; font-size: 1.1rem; line-height: 1.3; }
h3 { margin-bottom: 3px; font-size: .98rem; }
p { color: var(--muted); line-height: 1.55; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 8px; padding: 9px 16px; border: 1px solid transparent; border-radius: 5px; font-weight: 700; font-size: .88rem; text-decoration: none; cursor: pointer; transition: background .18s, border-color .18s, color .18s, transform .18s; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .icon-button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid rgba(233,95,24,.24); outline-offset: 2px; }
.button-primary { color: #fff; background: var(--brand); border-color: var(--brand); }
.button-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.button-secondary { color: var(--ink); background: var(--surface); border-color: #cfd2cb; }
.button-secondary:hover { background: var(--surface-soft); border-color: #b7bbb3; }
.button-quiet { color: var(--ink); background: transparent; border-color: transparent; }
.button-quiet:hover { background: var(--surface-soft); }
.button-danger { color: var(--red); background: var(--surface); border-color: #e4a6a2; }
.button-danger:hover { background: var(--red-soft); }
.button-small { min-height: 34px; padding: 6px 12px; font-size: .8rem; }
.button-block { width: 100%; }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.icon-button { display: inline-grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 0; border-radius: 5px; color: inherit; background: transparent; font-size: 1.4rem; cursor: pointer; }
.icon-button:hover { background: rgba(0,0,0,.06); }
.eyebrow { margin-bottom: 7px; color: var(--brand-dark); font-size: .7rem; line-height: 1.2; font-weight: 800; text-transform: uppercase; }

/* Authentication */
.auth-body { background: var(--surface); }
.auth-layout { display: grid; min-height: 100vh; grid-template-columns: minmax(420px, .9fr) minmax(420px, 1.1fr); }
.auth-brand-panel { position: relative; display: flex; min-height: 100vh; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 42px 7vw 64px; background: #eef0eb; border-right: 1px solid var(--line); }
.auth-brand-panel::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 320px; height: 320px; border: 70px solid var(--brand); border-radius: 50%; opacity: .95; }
.auth-brand-panel img { position: relative; z-index: 1; width: min(440px, 100%); margin: -65px 0 -70px; mix-blend-mode: multiply; }
.auth-brand-copy { position: relative; z-index: 1; max-width: 530px; }
.auth-brand-copy h1 { max-width: 500px; font-size: clamp(2.4rem, 4.5vw, 4.2rem); line-height: 1.02; }
.auth-brand-copy p:last-child { max-width: 450px; margin-bottom: 0; font-size: 1.05rem; }
.auth-form-panel { display: grid; place-items: center; padding: 48px 7vw; }
.auth-form-wrap { width: min(430px, 100%); }
.auth-form-wrap h2 { margin-bottom: 7px; font-size: 2rem; }
.auth-intro { margin-bottom: 32px; }
.auth-help { margin: 26px 0 0; font-size: .8rem; text-align: center; }
.mobile-wordmark { display: none; margin-bottom: 44px; font-size: 1.35rem; font-weight: 800; }
.mobile-wordmark b { color: var(--brand); }

/* Forms */
.form-stack { display: grid; gap: 18px; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 7px; color: #3d403b; font-size: .82rem; font-weight: 700; }
.field > span:first-child { display: flex; justify-content: space-between; }
.field > span small { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea, .search-field input { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid #cfd2cb; border-radius: 5px; color: var(--ink); background: var(--surface); transition: border-color .16s, box-shadow .16s; }
.field textarea { resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #aeb3aa; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(233,95,24,.1); outline: 0; }
.field > small { color: var(--muted); font-size: .72rem; font-weight: 500; }
.password-field, .input-prefix, .input-suffix { position: relative; display: flex; align-items: center; }
.password-field input { padding-right: 72px; }
.password-toggle { position: absolute; right: 7px; min-height: 32px; padding: 0 8px; border: 0; border-radius: 4px; color: var(--brand-dark); background: transparent; font-size: .75rem; font-weight: 750; cursor: pointer; }
.input-prefix b, .input-suffix b { position: absolute; color: var(--muted); font-size: .78rem; z-index: 1; }
.input-prefix b { left: 12px; }.input-prefix input { padding-left: 24px; }
.input-suffix b { right: 12px; }.input-suffix input { padding-right: 46px; }
.check-row { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .8rem; cursor: pointer; }
.check-row input, .check-card input { width: 17px; height: 17px; accent-color: var(--brand); }
.check-card { display: flex; min-height: 65px; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; }
.check-card span { display: grid; gap: 2px; }.check-card strong { font-size: .8rem; }.check-card small { color: var(--muted); font-size: .7rem; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.toggle-row span { display: grid; gap: 2px; }.toggle-row strong { font-size: .85rem; }.toggle-row small { color: var(--muted); font-size: .72rem; }
.toggle-row input { width: 42px; height: 24px; accent-color: var(--brand); }

/* Application shell */
.app-shell { display: grid; min-height: 100vh; grid-template-columns: 248px minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; z-index: 30; display: flex; height: 100vh; flex-direction: column; padding: 20px 15px; color: #f6f6f2; background: var(--sidebar); }
.sidebar-brand { display: flex; min-height: 48px; align-items: center; justify-content: space-between; padding: 0 10px; }
.wordmark { display: flex; align-items: baseline; text-decoration: none; font-size: 1rem; font-weight: 820; }
.wordmark b { margin: 0 1px; color: var(--brand); font-size: 1.25rem; }
.sidebar-close { display: none; }
.tenant-switcher { display: flex; align-items: center; gap: 10px; margin: 18px 0 25px; padding: 11px; border: 1px solid #494c47; border-radius: 5px; background: #323430; }
.tenant-mark { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 4px; color: #fff; background: var(--brand); font-size: .78rem; font-weight: 800; }
.tenant-switcher > span:last-child, .account-mini > span:last-child { display: grid; min-width: 0; gap: 1px; }
.tenant-switcher small, .account-mini small { overflow: hidden; color: #aeb1aa; font-size: .64rem; text-overflow: ellipsis; white-space: nowrap; }
.tenant-switcher strong, .account-mini strong { overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.main-nav { display: grid; gap: 3px; }
.nav-label { margin: 0 11px 7px; color: #898d85; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.main-nav a, .main-nav .nav-disabled { display: flex; min-height: 42px; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 5px; color: #c7cac3; font-size: .82rem; font-weight: 620; text-decoration: none; }
.main-nav .nav-disabled { color: #777b74; cursor: not-allowed; }
.main-nav a:hover { color: #fff; background: #353834; }
.main-nav a.active { color: #fff; background: #424540; }
.nav-symbol { display: inline-grid; width: 19px; height: 19px; place-items: center; color: #aeb1aa; font-size: .84rem; font-weight: 750; }
.main-nav a.active .nav-symbol { color: var(--brand); }
.sidebar-footer { display: grid; gap: 13px; margin-top: auto; padding: 15px 7px 2px; border-top: 1px solid #424540; }
.account-mini { display: flex; align-items: center; gap: 9px; min-width: 0; }
.avatar { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 50%; color: #fff; background: #62665f; font-size: .72rem; font-weight: 800; }
.avatar-small { width: 30px; height: 30px; flex-basis: 30px; }
.sidebar-logout { padding: 5px 0; border: 0; color: #aeb1aa; background: transparent; font-size: .72rem; cursor: pointer; }
.sidebar-logout:hover { color: #fff; }
.app-main { min-width: 0; }
.topbar { position: sticky; top: 0; z-index: 20; display: flex; height: 62px; align-items: center; justify-content: space-between; padding: 0 32px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
.topbar-context, .topbar-actions { display: flex; align-items: center; gap: 9px; color: #555952; font-size: .78rem; font-weight: 650; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #36a166; box-shadow: 0 0 0 4px #e7f5ec; }
.environment-label { padding: 4px 8px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); background: var(--surface-soft); font-size: .65rem; }
.mobile-nav-trigger { display: none; }
.mobile-overlay { display: none; }
.page-content { width: min(1500px, 100%); margin: 0 auto; padding: 34px 38px 70px; }
.page-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.page-heading p:not(.eyebrow) { margin-bottom: 0; font-size: .9rem; }
.heading-actions { display: flex; align-items: center; gap: 8px; }
.heading-actions form { margin: 0; }
.title-with-status { display: flex; align-items: center; gap: 12px; }.title-with-status h1 { margin-bottom: 0; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: .72rem; }
.breadcrumbs a { text-decoration: none; }.breadcrumbs a:hover { color: var(--brand-dark); }
.notice { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 11px 14px; border: 1px solid; border-radius: 5px; font-size: .8rem; line-height: 1.45; }
.notice-success { color: #185d37; background: var(--green-soft); border-color: #b8dec6; }
.notice-error { color: #8d211b; background: var(--red-soft); border-color: #efb9b5; }
.notice-neutral { color: #5d4511; background: var(--yellow-soft); border-color: #ead49a; }

/* Dashboard */
.metric-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.metric-band > div { display: grid; gap: 3px; padding: 19px 22px; border-right: 1px solid var(--line); }
.metric-band > div:last-child { border-right: 0; }
.metric-band span { color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.metric-band strong { font-size: 1.7rem; line-height: 1.1; }.metric-band small { color: var(--muted); font-size: .68rem; }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(270px, .7fr); gap: 26px; align-items: start; }
.content-section, .attention-panel, .plan-panel, .editor-canvas, .editor-side > section { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.content-section { overflow: hidden; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.section-heading h2, .section-heading p { margin-bottom: 0; }.section-heading p { margin-top: 2px; font-size: .75rem; }
.section-heading.compact { padding: 18px 19px; }
.text-link { color: var(--brand-dark); font-size: .76rem; font-weight: 750; text-decoration: none; }
.menu-list { display: grid; }
.menu-row { display: grid; grid-template-columns: 38px minmax(180px, 1fr) minmax(120px, .38fr) auto; gap: 13px; align-items: center; min-height: 78px; padding: 13px 20px; border-bottom: 1px solid var(--line); }
.menu-row:last-child { border-bottom: 0; }
.menu-row-icon { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border-radius: 5px; color: #70411e; background: #f5e7db; font-size: .74rem; font-weight: 800; }
.menu-row-title { display: flex; align-items: center; gap: 8px; }.menu-row-title h3 { margin-bottom: 0; }
.menu-row-main p { margin: 4px 0 0; font-size: .7rem; }.menu-row-main p span { margin: 0 3px; color: #bbbeb7; }
.menu-row-meta { display: grid; gap: 2px; }.menu-row-meta small { color: var(--muted); font-size: .62rem; }.menu-row-meta span { font-size: .72rem; font-weight: 650; }
.status-pill { display: inline-flex; width: max-content; min-height: 22px; align-items: center; padding: 3px 8px; border-radius: 999px; font-size: .62rem; font-weight: 750; white-space: nowrap; }
.status-live { color: var(--green); background: var(--green-soft); }.status-draft { color: #6a6253; background: #eeece7; }.status-muted { color: #6f736d; background: #e7e9e4; }.status-warning { color: var(--yellow); background: var(--yellow-soft); }
.dashboard-aside { display: grid; gap: 18px; }.attention-panel, .plan-panel { overflow: hidden; }
.progress-list { display: grid; gap: 0; margin: 0; padding: 5px 19px 12px; list-style: none; }
.progress-list li { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }.progress-list li:last-child { border-bottom: 0; }
.progress-list li > span { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border: 1px solid #c9ccc5; border-radius: 50%; color: var(--muted); font-size: .7rem; font-weight: 750; }
.progress-list li.done > span { color: #fff; background: var(--green); border-color: var(--green); }
.progress-list li > div { display: grid; gap: 2px; }.progress-list strong { font-size: .76rem; }.progress-list small { color: var(--muted); font-size: .66rem; }
.plan-panel { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 19px; }.plan-panel h2 { margin: 0; }.plan-panel p { grid-column: 1/-1; margin: 0; font-size: .72rem; }
.empty-state { display: grid; min-height: 310px; place-items: center; align-content: center; padding: 35px; text-align: center; }.empty-state.large { min-height: 440px; }.empty-state h2, .empty-state h3 { margin: 12px 0 5px; }.empty-state p { max-width: 430px; margin-bottom: 18px; font-size: .8rem; }
.empty-symbol { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 50%; color: var(--brand-dark); background: #f8e8de; font-size: 1rem; }

/* Menu index */
.toolbar { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 17px; border-bottom: 1px solid var(--line); }
.search-field { display: flex; width: min(330px, 100%); align-items: center; gap: 7px; color: var(--muted); }.search-field input { min-height: 39px; border: 0; background: transparent; outline: none; }
.result-count { color: var(--muted); font-size: .7rem; }
.data-table { display: grid; }
.data-row { display: grid; grid-template-columns: minmax(220px, 1.3fr) minmax(90px, .5fr) minmax(90px, .45fr) minmax(120px, .7fr) auto; gap: 18px; align-items: center; min-height: 76px; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.data-row:last-child { border-bottom: 0; }
.data-header { min-height: 40px; color: var(--muted); background: #fafbf9; font-size: .63rem; font-weight: 750; text-transform: uppercase; }
.table-primary { display: flex; align-items: center; gap: 12px; min-width: 0; }.table-primary > span:last-child { display: grid; min-width: 0; gap: 3px; }.table-primary strong { overflow: hidden; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }.table-primary small, .table-stat small { color: var(--muted); font-size: .65rem; }
.table-stat { display: grid; gap: 3px; }.table-stat strong { font-size: .76rem; }
.table-actions { justify-self: end; }

/* Editor */
.editor-layout { display: grid; grid-template-columns: minmax(0, 1fr) 265px; gap: 22px; align-items: start; }
.editor-canvas { overflow: hidden; min-height: 520px; }.editor-side { display: grid; gap: 16px; position: sticky; top: 84px; }.editor-side > section { padding: 18px; }
.editor-empty { min-height: 390px; }
.category-list { display: grid; gap: 14px; padding: 18px; background: #f7f8f5; }
.category-block { overflow: hidden; border: 1px solid #d9dcd5; border-radius: 5px; background: var(--surface); }
.category-header { display: flex; min-height: 63px; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.category-header > div { display: flex; align-items: center; gap: 9px; }.category-header h3 { margin-bottom: 1px; }.category-header small { color: var(--muted); font-size: .64rem; }
.drag-handle { color: #aeb2aa; cursor: grab; }
.category-empty { width: 100%; min-height: 72px; padding: 18px; border: 0; color: var(--muted); background: #fff; font-size: .75rem; cursor: pointer; }.category-empty:hover { color: var(--brand-dark); background: #fdf8f4; }
.item-list { display: grid; }
.item-row { display: grid; grid-template-columns: 8px minmax(180px, 1fr) auto auto; gap: 12px; align-items: center; min-height: 66px; padding: 11px 17px; border-bottom: 1px solid var(--line); }.item-row:last-child { border-bottom: 0; }
.item-availability { width: 7px; height: 7px; border-radius: 50%; background: #b7bbb3; }.item-availability.available { background: #38a466; }
.item-copy { display: grid; gap: 2px; min-width: 0; }.item-copy strong { font-size: .77rem; }.item-copy small { overflow: hidden; color: var(--muted); font-size: .67rem; text-overflow: ellipsis; white-space: nowrap; }.tag-line { color: #79614a; font-size: .6rem; }
.item-price { font-size: .75rem; font-weight: 750; white-space: nowrap; }.variant-count { color: var(--muted); font-size: .62rem; white-space: nowrap; }
.publish-summary .eyebrow { margin-bottom: 15px; }.publish-state { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }.publish-state > div { display: grid; gap: 2px; }.publish-state strong { font-size: .76rem; }.publish-state small { color: var(--muted); font-size: .65rem; }
.pulse-dot { width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: #b8bbb5; }.pulse-dot.live { background: #35a166; box-shadow: 0 0 0 5px #e7f5ec; }
.publish-summary dl { display: grid; gap: 10px; margin: 16px 0 0; }.publish-summary dl div { display: flex; justify-content: space-between; gap: 12px; }.publish-summary dt { color: var(--muted); font-size: .67rem; }.publish-summary dd { margin: 0; font-size: .7rem; font-weight: 750; }

/* Dialogs and panels */
.app-dialog { width: min(540px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: auto; border: 1px solid #d5d8d1; border-radius: 7px; color: var(--ink); background: var(--surface); box-shadow: var(--shadow); }
.app-dialog::backdrop { background: rgba(26,28,25,.56); backdrop-filter: blur(2px); }
.dialog-close { position: absolute; top: 12px; right: 12px; z-index: 1; }
.dialog-heading { padding: 27px 28px 19px; border-bottom: 1px solid var(--line); }.dialog-heading h2 { font-size: 1.35rem; }.dialog-heading p:last-child { margin: 0; font-size: .78rem; }
.app-dialog > .form-stack { padding: 23px 28px 27px; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 5px; padding-top: 18px; border-top: 1px solid var(--line); }
.settings-panel { position: fixed; top: 0; right: 0; z-index: 60; width: min(430px, 100vw); height: 100vh; padding: 26px; overflow: auto; background: var(--surface); box-shadow: -20px 0 60px rgba(30,32,28,.14); transform: translateX(105%); transition: transform .24s ease; }
.settings-panel.open { transform: translateX(0); }.settings-heading { display: flex; align-items: start; justify-content: space-between; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }.settings-heading h2 { font-size: 1.25rem; }
.panel-overlay { position: fixed; inset: 0; z-index: 55; display: none; border: 0; background: rgba(26,28,25,.45); }.settings-panel.open + .panel-overlay { display: block; }
.danger-zone { margin-top: 36px; padding-top: 21px; border-top: 1px solid #e7b8b5; }.danger-zone h3 { color: var(--red); }.danger-zone p { font-size: .72rem; }

@media (max-width: 1100px) {
    .dashboard-grid { grid-template-columns: 1fr; }.dashboard-aside { grid-template-columns: repeat(2, minmax(0,1fr)); }.editor-layout { grid-template-columns: 1fr; }.editor-side { position: static; }.data-row { grid-template-columns: minmax(190px,1fr) 90px 90px auto; }.data-row > :nth-child(4) { display: none; }
}

@media (max-width: 820px) {
    .auth-layout { grid-template-columns: 1fr; }.auth-brand-panel { display: none; }.auth-form-panel { min-height: 100vh; padding: 38px 24px; }.mobile-wordmark { display: flex; }
    .app-shell { grid-template-columns: 1fr; }.sidebar { position: fixed; left: 0; transform: translateX(-105%); width: min(300px, 86vw); transition: transform .22s ease; }.app-shell.nav-open .sidebar { transform: translateX(0); }.app-shell.nav-open .mobile-overlay { position: fixed; inset: 0 0 0 min(300px, 86vw); z-index: 25; display: block; border: 0; background: rgba(22,24,21,.48); }.sidebar-close { display: grid; }.mobile-nav-trigger { display: grid; }.topbar { height: 58px; padding: 0 17px; }.environment-label { display: none; }.page-content { padding: 25px 18px 55px; }
    .page-heading { align-items: flex-start; }.metric-band { grid-template-columns: repeat(2,1fr); }.metric-band > div:nth-child(2) { border-right: 0; }.metric-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .menu-row { grid-template-columns: 36px minmax(0,1fr) auto; }.menu-row-meta { display: none; }.dashboard-aside { grid-template-columns: 1fr; }
    .data-header { display: none; }.data-row { grid-template-columns: minmax(0,1fr) auto; gap: 11px; padding: 15px; }.data-row > :nth-child(2), .data-row > :nth-child(3), .data-row > :nth-child(4) { display: none; }.table-actions { align-self: center; }
}

@media (max-width: 600px) {
    h1 { font-size: 1.65rem; }.page-heading { display: grid; }.page-heading > .button { width: 100%; }.heading-actions { display: grid; width: 100%; grid-template-columns: repeat(2,1fr); }.heading-actions form { grid-column: 1/-1; }.heading-actions form .button { width: 100%; }
    .metric-band > div { padding: 15px; }.metric-band strong { font-size: 1.4rem; }.section-heading { padding: 16px; }.section-heading > .text-link { display: none; }.menu-row { grid-template-columns: 34px minmax(0,1fr); padding: 13px 15px; }.menu-row > .button { grid-column: 2; justify-self: start; }.menu-row-title { flex-wrap: wrap; }
    .toolbar { align-items: stretch; flex-direction: column; gap: 0; }.result-count { padding: 0 10px 8px; }.form-grid.two { grid-template-columns: 1fr; }.app-dialog > .form-stack, .dialog-heading { padding-left: 20px; padding-right: 20px; }.dialog-actions { flex-direction: column-reverse; }.dialog-actions .button { width: 100%; }
    .category-list { padding: 10px; }.category-header { align-items: flex-start; }.category-header .button { width: 34px; overflow: hidden; padding: 6px; color: transparent; gap: 0; }.category-header .button span { color: var(--ink); font-size: 1.15rem; }.item-row { grid-template-columns: 8px minmax(0,1fr) auto; }.variant-count { display: none; }.settings-panel { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
