@font-face { font-family: "Inter"; src: url('/fonts/inter-400.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url('/fonts/inter-500.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter"; src: url('/fonts/inter-600.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: "Inter"; src: url('/fonts/inter-700.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url('/fonts/inter-800.ttf') format('truetype'); font-weight: 800; font-display: swap; }

/* FROZEN FOUNDATION TOKENS */
:root {
  --snk-blue-main: #237EC6;
  --snk-blue-dark: #155383;
  --snk-blue-nav: #1b6bb5;
  --snk-yellow: #ffc600;
  --snk-red: #d50000;
  --snk-red-btn: #ff424e;
  --snk-bg: #f4f6f9;
  --snk-card-bg: #ffffff;
  --snk-border: #e7e7e7;
  --snk-text-dark: #222222;
  --snk-text-muted: #8d919d;
  --color-primary: var(--snk-blue-main);
  --color-secondary: #188aeb;
  --color-accent: var(--snk-red);
  --color-bg: var(--snk-bg);
  --color-surface: var(--snk-card-bg);
  --color-text: var(--snk-text-dark);
  --color-muted: var(--snk-text-muted);
  --color-border: var(--snk-border);
  --color-warm: #ff8189;
  --color-gold: var(--snk-yellow);
  --color-danger: var(--snk-red);
  --font-heading: "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100dvh; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); font-size: 14px; line-height: 1.55; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); line-height: 1.2; }
p { margin: 0; }
svg.icon { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.125em; flex: none; }
.icon-lg { width: 24px !important; height: 24px !important; }
.skip-link { position: fixed; top: -60px; left: var(--space-4); z-index: 100; padding: var(--space-3) var(--space-4); background: var(--color-primary); color: white; border-radius: var(--radius-sm); }
.skip-link:focus { top: var(--space-4); }

/* ── Header ── */
.app-header { position: sticky; top: 0; z-index: 50; background: var(--snk-blue-main); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.header-top { padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.header-inner { max-width: 1240px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 205px; height: 48px; display: block; object-fit: contain; object-position: left center; }
.header-search { flex: 1; max-width: 480px; position: relative; }
.search-input { width: 100%; height: 38px; border-radius: 20px; border: none; padding: 0 45px 0 16px; font-size: 13px; outline: none; background: #ffffff; box-shadow: inset 0 1px 3px rgba(0,0,0,0.1); }
.search-btn { position: absolute; right: 3px; top: 3px; width: 32px; height: 32px; border-radius: 50%; background: var(--snk-blue-dark); color: white; border: none; display: grid; place-items: center; cursor: pointer; }
.search-btn:hover { background: #0e3b5e; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.pill-btn { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border-radius: 18px; border: 1px solid rgba(255,255,255,0.7); background: transparent; color: #ffffff; font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; cursor: pointer; transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease; }
.pill-btn:hover { background: rgba(255,255,255,0.2); border-color: #ffffff; }
.badge-pill { background: var(--snk-red); color: white; padding: 2px 7px; border-radius: 10px; font-size: 11px; font-weight: 700; }

/* ── Nav bar ── */
.nav-bar { background: var(--snk-blue-nav); padding: 0 16px; border-bottom: 2px solid #155383; }
.primary-nav { max-width: 1240px; margin: auto; display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.primary-nav::-webkit-scrollbar { display: none; }
.nav-button { min-height: 42px; display: inline-flex; align-items: center; gap: 6px; padding: 0 14px; border: none; border-bottom: 3px solid transparent; border-radius: 0; background: transparent; color: #ffffff; font-size: 12px; font-weight: 650; letter-spacing: .01em; white-space: nowrap; cursor: pointer; transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease; }
.nav-button:hover { color: var(--snk-yellow); background: rgba(255,255,255,0.06); }
.nav-button.active { color: var(--snk-yellow); border-bottom-color: var(--snk-yellow); background: rgba(0,0,0,0.12); }
.admin-menu { position: relative; margin-left: auto; color: #fff; }
.admin-menu summary { min-height: 42px; display: flex; align-items: center; padding: 0 12px; color: #dbeeff; font-size: 12px; font-weight: 650; cursor: pointer; list-style: none; }
.admin-menu summary::-webkit-details-marker { display: none; }
.admin-menu summary::after { content: "▾"; margin-left: 6px; }
.admin-menu[open] summary { color: var(--snk-yellow); background: rgba(0,0,0,.12); }
.admin-menu-panel { position: absolute; right: 0; top: 42px; z-index: 60; min-width: 220px; padding: 6px; border: 1px solid #bfd6e8; border-radius: 0 0 8px 8px; background: #fff; box-shadow: 0 12px 28px rgba(17,52,78,.18); }
.admin-menu-panel .nav-button { width: 100%; justify-content: flex-start; color: var(--snk-blue-dark); border: 0; border-radius: 5px; }
.admin-menu-panel .nav-button:hover, .admin-menu-panel .nav-button.active { color: var(--snk-blue-main); background: #eef7ff; }

/* ── Layout ── */
main { max-width: 1240px; margin: auto; padding: var(--space-6) var(--space-4) 64px; }
.page { display: none; animation: rise 320ms cubic-bezier(.16,1,.3,1) both; }
.page.active { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.page-header { margin-bottom: var(--space-4); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-4); align-items: end; }
.eyebrow { margin-bottom: var(--space-1); color: var(--snk-blue-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-title { font-size: clamp(20px, 2.3vw, 30px); font-weight: 750; color: var(--snk-blue-dark); border-left: 4px solid var(--snk-blue-main); padding-left: 12px; letter-spacing: -.025em; }
.page-subtitle { max-width: 720px; margin-top: var(--space-2); color: var(--color-muted); font-size: 13px; }
.synthetic-note { display: inline-flex; gap: var(--space-2); align-items: center; max-width: 380px; padding: var(--space-3) var(--space-4); border-left: 4px solid var(--snk-yellow); background: #fffbe6; color: #8a6d3b; border-radius: var(--radius-sm); font-size: 12px; font-weight: 500; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }

/* ── Panels ── */
.panel { position: relative; min-width: 0; border: 1px solid var(--snk-border); border-radius: var(--radius-md); background: var(--color-surface); box-shadow: 0 2px 6px rgba(0,0,0,0.03); }
.panel-header { min-height: 52px; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--snk-border); background: #ffffff; }
.panel-title { font-size: 15px; font-weight: 700; color: var(--snk-blue-dark); border-left: 3px solid var(--snk-blue-main); padding-left: 10px; }
.panel-kicker { margin-top: 2px; color: var(--color-muted); font-size: 11px; font-weight: 400; }
.panel-body { padding: var(--space-4); }

/* ── Overview 2-column layout ── */
.overview-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: var(--space-4); align-items: start; margin-top: var(--space-4); }
.overview-main { min-width: 0; display: grid; gap: var(--space-4); }
.overview-sidebar { position: sticky; top: 72px; max-height: calc(100vh - 90px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #c8d7e3 transparent; }
.overview-sidebar::-webkit-scrollbar { width: 4px; }
.overview-sidebar::-webkit-scrollbar-thumb { border-radius: 999px; background: #c8d7e3; }

/* ── KPI row ── */
.kpi-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--space-3); }
.metric { min-height: 116px; padding: var(--space-4); overflow: hidden; border: 1px solid var(--snk-border); border-radius: var(--radius-md); background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.metric-label { display: flex; gap: var(--space-2); align-items: center; color: var(--snk-blue-dark); font-size: 12px; font-weight: 700; line-height: 1.35; }
.metric-icon { flex: none; width: 28px; height: 28px; display: grid; place-items: center; color: var(--snk-blue-main); background: #eef6fc; border-radius: 50%; }
.metric-value { margin-top: var(--space-3); font-family: var(--font-heading); font-size: clamp(20px, 2vw, 28px); font-weight: 800; color: var(--snk-blue-dark); letter-spacing: -.03em; }
.metric-value.alert { color: var(--snk-red); }
.metric-foot { margin-top: var(--space-1); color: var(--color-muted); font-size: 11px; }
.metric.featured { color: #ffffff; background: linear-gradient(135deg, #1b6bb5 0%, #155383 100%); border-color: #155383; grid-column: span 2; }
.metric.featured .metric-label { color: rgba(255,255,255,.85); font-size: 13px; }
.metric.featured .metric-value { font-size: clamp(22px, 2.2vw, 32px); color: var(--snk-yellow); }
.metric.featured .metric-foot { color: #c8e0f5; }
.metric.featured .metric-icon { color: var(--snk-blue-dark); background: #ffffff; }

/* ── Chart with Y-axis ── */
.chart-panel { min-height: 300px; }
.chart-body { display: grid; grid-template-columns: 42px 1fr; gap: 0; align-items: stretch; }
.chart-y-axis { display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 28px; text-align: right; padding-right: 8px; }
.chart-y-label { color: var(--color-muted); font-size: 9px; white-space: nowrap; }
.chart-area { min-width: 0; }
.chart { height: 240px; display: grid; grid-template-columns: repeat(13, minmax(12px, 1fr)); gap: var(--space-2); align-items: end; border-bottom: 2px solid var(--color-border); border-left: 1px solid var(--color-border); padding: 0 2px; }
.bar-wrap { height: 100%; display: grid; grid-template-rows: 1fr 26px; gap: var(--space-1); align-items: end; position: relative; }
.bar-wrap:hover .bar-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: none; }
.bar-tooltip { position: absolute; bottom: calc(100% - 22px); left: 50%; transform: translateX(-50%) translateY(4px); white-space: nowrap; padding: 4px 8px; border-radius: 4px; background: var(--snk-blue-dark); color: #fff; font-size: 10px; font-weight: 700; opacity: 0; transition: opacity 150ms ease, transform 150ms ease; z-index: 5; }
.bar-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 4px solid transparent; border-top-color: var(--snk-blue-dark); }
.bar { min-height: 4px; border-radius: var(--radius-sm) var(--radius-sm) 2px 2px; background: linear-gradient(180deg, #4299d9 0%, var(--snk-blue-main) 100%); transition: background-color 180ms ease; }
.bar-wrap:hover .bar { background: linear-gradient(180deg, #ff8189 0%, var(--snk-red) 100%); }
.bar.is-current { background: linear-gradient(180deg, #ffd040 0%, #e6a800 100%); }
.bar-label { color: var(--color-muted); font-size: 9px; text-align: center; white-space: nowrap; padding-top: 5px; }

/* ── Action queue sidebar ── */
.action-stack { display: grid; gap: 8px; }
.action-card { position: relative; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); transition: border-color 180ms ease, box-shadow 180ms ease; cursor: default; }
.action-card::before { content: ""; position: absolute; left: -1px; top: 8px; bottom: 8px; width: 3px; border-radius: 0 3px 3px 0; background: var(--color-warm); }
.action-card.priority-urgent::before { background: var(--snk-red); }
.action-card:hover { border-color: var(--snk-blue-main); box-shadow: 0 3px 10px rgba(0,0,0,.07); }
.action-customer { font-size: 13px; font-weight: 750; color: var(--snk-blue-dark); background: none; border: none; padding: 0; text-align: left; cursor: pointer; }
.action-customer:hover { color: var(--snk-blue-main); text-decoration: underline; }
.action-reason { margin-top: 3px; color: var(--color-muted); font-size: 11px; line-height: 1.4; }
.action-meta { margin-top: 7px; display: flex; gap: var(--space-2); align-items: center; justify-content: space-between; }
.action-date { color: var(--color-muted); font-size: 11px; }

/* ── Tables ── */
.table-wrap { width: 100%; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; }
th { padding: 10px 14px; background: #f8f9fa; color: var(--snk-blue-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; border-bottom: 2px solid var(--snk-border); border-top: 1px solid var(--snk-border); white-space: nowrap; }
td { padding: 12px 14px; border-bottom: 1px solid var(--snk-border); font-size: 13px; color: #333333; }
tr:hover td { background: #f1f8ff; }
.money { font-weight: 700; color: var(--snk-red); }
.table-button { border: none; background: transparent; padding: 0; color: var(--snk-blue-main); font-weight: 600; text-decoration: none; cursor: pointer; text-align: left; }
.table-button:hover { color: var(--snk-red); text-decoration: underline; }
.reason { margin-top: 2px; color: var(--color-muted); font-size: 11px; line-height: 1.4; }

/* ── Badges ── */
.badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; background: #eef6fc; color: var(--snk-blue-dark); border: 1px solid #d0e4f5; }
.badge.success { background: #e6f4ea; color: #137333; border-color: #ceead6; }
.badge.warning { background: #fef7e0; color: #b06000; border-color: #feefc3; }
.badge.danger { background: #fce8e6; color: #c5221f; border-color: #fad2cf; }

/* ── Controls & Toolbar ── */
.toolbar { display: flex; gap: var(--space-3); margin-bottom: var(--space-4); flex-wrap: wrap; }
.field { min-height: 38px; padding: 0 var(--space-3); border: 1px solid var(--snk-border); border-radius: 20px; background: #ffffff; color: var(--color-text); font-size: 13px; }
.field:focus { outline: none; border-color: var(--snk-blue-main); box-shadow: 0 0 0 3px rgba(35,126,198,0.15); }
.button { min-height: 38px; display: inline-flex; align-items: center; gap: 6px; padding: 0 var(--space-4); border: none; border-radius: 20px; background: var(--snk-blue-main); color: white; font-size: 13px; font-weight: 700; cursor: pointer; transition: background-color 180ms ease, transform 180ms ease; }
.button:hover { background: var(--snk-blue-dark); transform: translateY(-1px); }
.button.secondary { background: #ffffff; color: var(--snk-blue-main); border: 1px solid var(--snk-blue-main); }
.button.secondary:hover { background: #eef6fc; }
.trace-summary { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: var(--space-3); margin-bottom: var(--space-4); }
.trace-stat { padding: var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: linear-gradient(145deg,#fff,#f7fbff); }
.trace-stat strong { display: block; color: var(--snk-blue-dark); font-size: 24px; }
.trace-stat span { color: var(--color-muted); font-size: 12px; }
.governance-stack { display: grid; gap: var(--space-4); }

/* ── Tabs & Quick Filters ── */
.tab-bar { display: flex; gap: 6px; border-bottom: 2px solid #e1eaf0; margin-bottom: 16px; overflow-x: auto; scrollbar-width: none; }
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn { padding: 10px 18px; border: none; border-bottom: 3px solid transparent; background: transparent; font-size: 13px; font-weight: 700; color: #60788d; cursor: pointer; transition: all 180ms ease; white-space: nowrap; }
.tab-btn:hover { color: var(--snk-blue-main); }
.tab-btn.active { color: var(--snk-blue-main); border-bottom-color: var(--snk-blue-main); background: #f0f7fd; border-radius: 6px 6px 0 0; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: rise 220ms ease; }

.quick-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.quick-filter-btn { padding: 6px 14px; border: 1px solid #d5e2ec; border-radius: 16px; background: #fff; color: #465f73; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 150ms ease; }
.quick-filter-btn:hover { border-color: var(--snk-blue-main); color: var(--snk-blue-main); }
.quick-filter-btn.active { background: var(--snk-blue-main); color: #fff; border-color: var(--snk-blue-main); }

.pagination-bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-top: 1px solid var(--snk-border); background: #fff; font-size: 13px; color: var(--color-muted); }
.pagination-controls { display: flex; gap: 6px; }

/* ── Storefront Product Cards ── */
.product-rail { position: relative; }
.rec-grid { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(170px, 17vw, 205px); grid-template-rows: 1fr; gap: 12px; overflow-x: auto; overflow-y: hidden; padding: 2px 2px 10px; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #bfd0df transparent; overscroll-behavior-inline: contain; }
.rec-grid::-webkit-scrollbar { height: 6px; }
.rec-grid::-webkit-scrollbar-thumb { border-radius: 999px; background: #bfd0df; }
.rec-card { scroll-snap-align: start; }
.rail-control { position: absolute; top: 42%; z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #c8d7e3; border-radius: 50%; background: rgba(255,255,255,.96); color: var(--snk-blue-main); box-shadow: 0 4px 12px rgba(24,61,88,.16); font-size: 22px; line-height: 1; transform: translateY(-50%); }
.rail-control.prev { left: -12px; }
.rail-control.next { right: -12px; }
.rail-control:disabled { opacity: .28; cursor: default; box-shadow: none; }
.rec-card { border: 1px solid var(--snk-border); border-radius: 8px; background: #ffffff; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; position: relative; }
.rec-card:hover { border-color: var(--snk-blue-main); box-shadow: 0 4px 14px rgba(0,0,0,0.08); transform: translateY(-2px); }
.rec-image { width: 100%; aspect-ratio: 1; border-radius: 6px; overflow: hidden; background: #f9f9f9; margin-bottom: 10px; position: relative; }
.rec-image img { width: 100%; height: 100%; object-fit: cover; }
.product-membership { position: absolute; left: 8px; top: 8px; z-index: 1; padding: 3px 7px; color: #765700; background: var(--snk-yellow); border-radius: 3px; font-size: 9px; font-weight: 850; }
.product-image-note { position: absolute; left: 6px; bottom: 6px; z-index: 2; padding: 2px 6px; border-radius: 3px; background: rgba(18,60,91,.82); color: #fff; font-size: 9px; font-weight: 700; }
.rec-name { font-size: 13px; font-weight: 600; color: var(--snk-blue-dark); line-height: 1.4; height: 37px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 6px; letter-spacing: -.01em; }
.rec-name:hover { color: var(--snk-blue-main); }
.rec-reason { font-size: 11px; color: var(--snk-text-muted); margin-bottom: 10px; background: #f8f9fa; padding: 4px 8px; border-radius: 4px; border: 1px dashed var(--snk-border); }
.rec-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 8px; border-top: 1px solid #f0f0f0; }
.rec-foot .money { font-size: 16px; font-weight: 800; color: var(--snk-red); }
.cart-button { width: 34px; height: 34px; border-radius: 50%; background: var(--snk-red-btn); border: none; color: white; display: grid; place-items: center; cursor: pointer; transition: background-color 180ms ease, transform 180ms ease; }
.cart-button:hover { background: var(--snk-red); transform: scale(1.08); }
.storefront { overflow: hidden; border: 1px solid var(--snk-border); background: #fff; }
body.storefront-mode { background: #effcff; }
body.storefront-mode .app-header, body.storefront-mode > .mobile-more { display: none; }
body.storefront-mode main { max-width: none; padding: 0 0 56px; }
body.storefront-mode #view-website > .page-header { display: none; }
.storefront-preview-bar { padding: 10px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: #123c5b; color: #fff; font-size: 12px; }
.storefront-shop-header { background: #1379ed; color: #fff; }
.storefront-shop-top { max-width: 1200px; min-height: 70px; margin: auto; padding: 10px 0; display: grid; grid-template-columns: 200px minmax(280px,1fr) auto; gap: 28px; align-items: center; }
.storefront-logo-button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.storefront-logo { width: 205px; height: 54px; display: block; object-fit: contain; object-position: left center; }
.storefront-search { height: 40px; display: flex; align-items: center; overflow: hidden; border-radius: 22px; background: #fff; color: #777; }
.storefront-search input { min-width: 0; height: 100%; flex: 1; padding: 0 18px; border: 0; outline: 0; color: #334e63; background: transparent; }
.storefront-search button { width: 46px; height: 100%; display: grid; place-items: center; border: 0; background: #fff; color: #1479ed; }
.storefront-shop-actions { display: flex; gap: 18px; align-items: center; font-size: 13px; white-space: nowrap; }
.storefront-shop-actions > span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.75); border-radius: 20px; }
.storefront-shop-actions [data-hotline] { padding: 0; border: 0; }
.storefront-content { max-width: 1200px; margin: auto; }
.storefront-hero { margin-top: 12px; aspect-ratio: 2400/520; min-height: 210px; overflow: hidden; background: #dff7ff; }
.storefront-hero img { width: 100%; height: 100%; display: block; object-fit: cover; }
.storefront-benefits { display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid var(--snk-border); background: #fff; }
.storefront-benefits span { padding: 12px; color: #3b5063; font-size: 12px; font-weight: 650; text-align: center; border-right: 1px solid var(--snk-border); }
.storefront-category-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #f8fafc; border-bottom: 1px solid var(--snk-border); overflow-x: auto; scrollbar-width: none; }
.storefront-category-bar::-webkit-scrollbar { display: none; }
.category-bar-label { font-size: 11px; font-weight: 750; color: var(--snk-blue-dark); text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; flex: none; }
.category-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--snk-border); color: #2c4a63; font-size: 12px; font-weight: 650; white-space: nowrap; cursor: pointer; transition: all .15s ease; flex: none; }
.category-chip:hover { border-color: var(--snk-blue-main); background: #f0f7fd; color: var(--snk-blue-main); transform: translateY(-1px); }
.category-chip.active { background: var(--snk-blue-main); color: #fff; border-color: var(--snk-blue-main); box-shadow: 0 2px 6px rgba(27,117,187,.25); }
.storefront-section { margin-top: 24px; padding: 18px; border-radius: 8px; background: #fff; }
.storefront-section + .storefront-section { border-top: 8px solid var(--snk-bg); }
.storefront-section-title { margin-bottom: 14px; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.storefront-section-title h2 { color: var(--snk-blue-dark); font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.storefront-section-title p { margin-top: 3px; color: var(--color-muted); font-size: 12px; }
.rec-unit, .rec-brand { color: var(--color-muted); font-size: 11px; }
.rec-brand { margin-top: 8px; color: var(--snk-blue-main); font-weight: 700; }
.rec-product-link { width: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.store-product-detail { padding-bottom: 32px; }
.store-breadcrumb { padding: 14px 0; color: #60788d; font-size: 12px; }
.store-product-main { padding: 22px; display: grid; grid-template-columns: minmax(280px,.85fr) minmax(0,1.15fr); gap: 32px; border-radius: 8px; background: #fff; }
.store-product-gallery { min-width: 0; }
.store-product-image { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border: 1px solid #edf0f3; }
.store-product-image img { width: 100%; height: 100%; object-fit: contain; }
.store-product-info h1 { color: #183e5b; font-size: clamp(22px,2.5vw,30px); font-weight: 750; text-transform: none; }
.store-product-meta { margin: 12px 0; display: flex; gap: 12px; flex-wrap: wrap; color: #647789; font-size: 12px; }
.store-product-assurances { margin: 16px 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.store-product-assurances span { padding: 10px; border: 1px solid #e5edf4; color: #315570; background: #f8fbfd; font-size: 12px; }
.store-product-price { margin: 14px 0; color: #d50000; font-size: 28px; font-weight: 850; }
.variant-list { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-option { padding: 9px 12px; border: 1px solid #b9c7d2; border-radius: 3px; background: #fff; color: #334e63; font-size: 12px; }
.variant-option.active { border-color: var(--snk-blue-main); color: var(--snk-blue-main); box-shadow: inset 0 0 0 1px var(--snk-blue-main); }
.store-buy-row { margin-top: 18px; display: flex; gap: 10px; }
.store-buy-row .button { border-radius: 4px; min-height: 44px; }
.store-buy-row .button.buy { background: #f04444; }
.store-product-description { margin-top: 18px; padding: 22px; border-radius: 8px; background: #fff; }
.store-product-description h2 { margin-bottom: 12px; color: #174d72; font-size: 18px; }
.store-product-description p { color: #445b6d; line-height: 1.8; }
.store-cart-layout { padding: 22px 0 40px; display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 18px; }
.store-cart-list, .store-cart-summary { border-radius: 8px; background: #fff; }
.store-cart-list { padding: 18px; }
.store-cart-row { padding: 14px 0; display: grid; grid-template-columns: 86px minmax(0,1fr) 110px 120px 36px; gap: 14px; align-items: center; border-bottom: 1px solid #e8eef3; }
.store-cart-row img { width: 86px; height: 86px; object-fit: contain; border: 1px solid #edf1f4; }
.cart-quantity { display: flex; align-items: center; }
.cart-quantity button { width: 30px; height: 32px; border: 1px solid #cfdbe4; background: #fff; }
.cart-quantity span { width: 38px; text-align: center; font-weight: 650; }
.cart-remove { border: 0; background: transparent; color: #c5221f; font-size: 20px; }
.store-cart-summary { height: max-content; padding: 20px; position: sticky; top: 16px; }
.summary-line { padding: 10px 0; display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid #e8eef3; }
.summary-total { font-size: 20px; color: #d50000; font-weight: 800; }
.checkout-button { width: 100%; margin-top: 16px; justify-content: center; border-radius: 4px; background: #ef3f45; }
.storefront-shop-actions button { padding: 7px 12px; border: 1px solid rgba(255,255,255,.75); border-radius: 20px; background: transparent; color: #fff; font: inherit; }
[hidden] { display: none !important; }

/* ── Profile & Detail Views ── */
.profile-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: var(--space-3); }
.profile-cell { padding: var(--space-3); border-left: 1px solid var(--color-border); }
.profile-cell:first-child { border-left: 0; }
.profile-label { color: var(--color-muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.profile-value { margin-top: var(--space-1); font-family: var(--font-heading); font-size: 17px; font-weight: 650; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); gap: var(--space-4); align-items: start; }
.detail-main, .detail-aside { min-width: 0; display: grid; align-content: start; gap: var(--space-4); }
.customer-chart { margin-top: var(--space-4); }
.chart-scroll { width: 100%; overflow-x: auto; padding-bottom: 4px; }
.chart.chart-26 { width: 100%; min-width: 0; grid-template-columns: repeat(26, minmax(8px, 1fr)); }
.reorder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--space-3); }
.reorder-card { min-width: 0; padding: var(--space-3); display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: var(--space-3); align-items: start; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fbfdff; }
.reorder-card .product-thumb { width: 64px; height: 64px; }
.reorder-card .badge { margin-top: var(--space-2); }
.product-mini { min-width: 0; padding: 12px 0; display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; gap: 12px; align-items: start; border-bottom: 1px solid var(--color-border); }
.product-mini:first-child { padding-top: 0; }
.product-mini:last-child { padding-bottom: 0; border-bottom: 0; }
.product-thumb { width: 54px; height: 54px; display: block; object-fit: contain; border: 1px solid #e5edf4; border-radius: 6px; background: #fff; }
.product-mini > div, .reorder-card > div { min-width: 0; }
.prob { min-width: 76px; color: var(--snk-blue-dark); text-align: right; }
.prob-track { width: 76px; height: 5px; margin-top: 7px; overflow: hidden; border-radius: 999px; background: #dce8f1; }
.prob-fill { height: 100%; border-radius: inherit; background: var(--snk-blue-main); }
/* ── Affinity & Clinical Protocol Hub ── */
.affinity-preset-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #f8fafc; border: 1px solid #e1eaf0; border-radius: var(--radius-md); overflow-x: auto; scrollbar-width: none; }
.affinity-preset-bar::-webkit-scrollbar { display: none; }
.affinity-preset-label { font-size: 11px; font-weight: 750; color: var(--snk-blue-dark); text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; flex: none; }
.affinity-preset-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--snk-border); color: #2c4a63; font-size: 12px; font-weight: 650; white-space: nowrap; cursor: pointer; transition: all .15s ease; flex: none; }
.affinity-preset-chip:hover { border-color: var(--snk-blue-main); background: #f0f7fd; color: var(--snk-blue-main); transform: translateY(-1px); }
.affinity-preset-chip.active { background: var(--snk-blue-main); color: #fff; border-color: var(--snk-blue-main); box-shadow: 0 2px 6px rgba(27,117,187,.25); }

.affinity-split-layout { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 20px; align-items: start; }
.affinity-anchor-col { position: sticky; top: 80px; }
.affinity-anchor-card { padding: 18px; border: 1.5px solid #d5e4ef; border-radius: 12px; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.affinity-anchor-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.affinity-anchor-sku { font-size: 11px; font-weight: 700; color: var(--color-muted); background: #f1f5f9; padding: 3px 8px; border-radius: 4px; }
.affinity-anchor-media { width: 100%; aspect-ratio: 4/3; max-height: 180px; border-radius: 8px; overflow: hidden; background: #f8fafc; border: 1px solid #eef2f6; display: grid; place-items: center; margin-bottom: 12px; }
.affinity-anchor-media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.affinity-anchor-body .eyebrow { font-size: 11px; margin-bottom: 2px; }
.affinity-anchor-title { font-size: 16px; font-weight: 700; color: var(--snk-blue-dark); line-height: 1.35; margin: 0 0 6px; }
.affinity-anchor-brand { font-size: 12px; color: var(--color-muted); margin-bottom: 8px; }
.affinity-anchor-price { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 14px; padding-top: 8px; border-top: 1px dashed #e2e8f0; }
.affinity-anchor-price .price-label { font-size: 12px; color: var(--color-muted); }

.affinity-insight-box { margin: 12px 0 16px; padding: 12px 14px; border-radius: 8px; background: #f0f7fd; border-left: 3.5px solid var(--snk-blue-main); }
.affinity-insight-header strong { font-size: 12px; color: var(--snk-blue-dark); text-transform: uppercase; letter-spacing: .02em; }
.affinity-insight-box p { margin: 4px 0 0; font-size: 12px; color: #334e63; line-height: 1.5; }

.affinity-items-col { min-width: 0; }
.affinity-col-header { margin-bottom: 14px; display: flex; justify-content: space-between; align-items: flex-end; }
.affinity-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }

.affinity-card { padding: 16px; border: 1px solid #e1eaf0; border-radius: 12px; background: #fff; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.affinity-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); border-color: #cbd5e1; }
.affinity-card-top { display: flex; gap: 12px; margin-bottom: 12px; }
.affinity-card-img { width: 56px; height: 56px; border-radius: 8px; border: 1px solid #e2e8f0; object-fit: contain; padding: 4px; background: #fff; flex-shrink: 0; }
.affinity-card-meta { flex: 1; min-width: 0; }
.affinity-card-category { font-size: 10px; font-weight: 700; color: var(--snk-blue-main); text-transform: uppercase; letter-spacing: .02em; }
.affinity-card-name { display: block; color: var(--snk-blue-dark); font-size: 13px; font-weight: 700; line-height: 1.35; margin: 2px 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.affinity-card-sub { font-size: 11px; color: var(--color-muted); display: flex; justify-content: space-between; gap: 8px; }

.synergy-meter { margin: 8px 0 12px; padding: 8px 10px; background: #f8fafc; border-radius: 6px; border: 1px solid #edf2f7; }
.synergy-meter-header { display: flex; justify-content: space-between; align-items: center; font-size: 11px; margin-bottom: 5px; }
.synergy-label { color: var(--color-muted); }
.synergy-score { color: #137333; font-weight: 700; }
.synergy-bar-track { width: 100%; height: 6px; border-radius: 999px; background: #e2e8f0; overflow: hidden; }
.synergy-bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, #1b75bb, #34a853); }

.affinity-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
.affinity-stat-pill { padding: 6px 4px; background: #f8fafc; border: 1px solid #edf2f7; border-radius: 6px; text-align: center; }
.affinity-stat-pill span { display: block; font-size: 10px; color: var(--color-muted); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.affinity-stat-pill strong { font-size: 13px; color: var(--snk-blue-dark); }

.affinity-card-footer { margin-top: auto; padding-top: 10px; border-top: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }

@media (max-width: 900px) {
  .affinity-split-layout { grid-template-columns: 1fr; }
  .affinity-anchor-col { position: static; }
  .affinity-items-grid { grid-template-columns: 1fr; }
}
.timeline { display: grid; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 96px 14px 1fr auto; gap: var(--space-3); align-items: start; min-height: 54px; }
.timeline-date { color: var(--color-muted); font-size: 10px; }
.timeline-rail { position: relative; height: 100%; }
.timeline-rail::after { content: ""; position: absolute; left: 6px; top: 9px; bottom: -6px; width: 1px; background: #d9e5ee; }
.timeline-item:last-child .timeline-rail::after { display: none; }
.timeline-dot { position: relative; z-index: 1; width: 13px; height: 13px; border: 3px solid #c9ddea; border-radius: 50%; background: #fff; }
.timeline-item.purchase .timeline-dot { border-color: var(--snk-blue-main); background: #eaf5fd; }

/* ── States & Toast ── */
.state { text-align: center; padding: 48px var(--space-4); color: var(--color-muted); }
.state strong { display: block; margin-bottom: var(--space-2); color: var(--snk-blue-dark); font-size: 16px; font-weight: 700; }
.spinner { width: 24px; height: 24px; margin: 0 auto var(--space-3); border: 3px solid #e0e0e0; border-top-color: var(--snk-blue-main); border-radius: 50%; animation: spin 750ms linear infinite; }
.overview-skeleton { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: var(--space-3); padding: 0; text-align: left; margin-top: var(--space-4); }
.skeleton-card { min-height: 112px; padding: var(--space-4); overflow: hidden; border: 1px solid var(--snk-border); border-radius: var(--radius-md); background: #ffffff; }
.skeleton-line { width: 52%; height: 12px; border-radius: 6px; background: linear-gradient(90deg,#edf1f5 25%,#fafbfd 45%,#edf1f5 65%); background-size: 240% 100%; animation: shimmer 1.1s ease-in-out infinite; }
.skeleton-line.value { width: 72%; height: 28px; margin-top: 22px; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: -200% 0; } }
.toast { position: fixed; right: var(--space-6); bottom: var(--space-6); z-index: 80; max-width: 360px; padding: var(--space-3) var(--space-4); border: 1px solid var(--snk-blue-dark); border-radius: var(--radius-md); background: var(--snk-blue-dark); color: white; box-shadow: 0 8px 20px rgba(0,0,0,0.2); transform: translateY(20px); opacity: 0; pointer-events: none; transition: transform 220ms ease, opacity 180ms ease; font-weight: 600; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Quality Page ── */
.quality-summary { display: grid; grid-template-columns: 200px 1fr; gap: var(--space-4); align-items: start; margin-bottom: var(--space-4); }
.quality-score { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--space-6); }
.score-ring { width: 96px; height: 96px; border-radius: 50%; border: 7px solid var(--snk-blue-main); display: grid; place-items: center; }
.score-ring strong { font-size: 20px; font-weight: 800; color: var(--snk-blue-dark); letter-spacing: -.02em; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-3); }
.check-item { padding: var(--space-3); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fbfdff; transition: border-color 180ms ease; }
.check-item:hover { border-color: var(--snk-blue-main); }
.check-id { font-size: 11px; font-weight: 700; color: var(--snk-blue-dark); }
.check-detail { margin-top: 4px; font-size: 11px; color: var(--color-muted); line-height: 1.5; }

/* ── Modals & Data Lists ── */
.metric-dl { display: grid; gap: var(--space-3); font-size: 13px; line-height: 1.5; margin: 0; padding: var(--space-4); }
.metric-dl div { display: flex; flex-direction: column; }
.metric-dl dt { font-weight: 600; color: var(--snk-blue-dark); margin-bottom: 2px; }
.metric-dl dd { margin: 0; color: var(--color-muted); }

.prompt-dialog { border: none; border-radius: 12px; padding: 24px; box-shadow: 0 16px 40px rgba(0,0,0,0.2); max-width: 480px; width: 90%; margin: auto; }
.prompt-dialog::backdrop { background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); }
.prompt-dialog-title { font-size: 16px; font-weight: 700; color: var(--snk-blue-dark); margin: 0 0 var(--space-2) 0; }
.prompt-dialog-input { width: 100%; box-sizing: border-box; margin: var(--space-3) 0; border: 1px solid var(--color-border); padding: 8px 12px; border-radius: 4px; font-family: inherit; font-size: 14px; }
.prompt-dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-3); margin-top: var(--space-4); }

/* ── Responsive ── */
/* Clinical Ergonomics & Storefront Improvements */
.quick-reorder-card {
  margin-top: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f0f7fd 0%, #e6f4ea 100%);
  border: 1.5px solid #34a853;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(52, 168, 83, 0.12);
}
.quick-reorder-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.quick-reorder-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.quick-reorder-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  font-size: 12px;
}
.quick-reorder-pill img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
}
.quick-reorder-action {
  display: flex;
  justify-content: flex-end;
}
.quick-reorder-action button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(19, 115, 51, 0.3);
}

.vita-shade-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.vita-shade-swatch {
  border: 1.5px solid #dcdfe6;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #ffffff;
  color: #334e63;
  transition: all 0.15s ease;
  min-height: 36px;
}
.vita-shade-swatch:hover {
  border-color: var(--snk-blue-main);
  background: #f0f7fd;
}
.vita-shade-swatch.active {
  border-color: var(--snk-blue-main);
  background: var(--snk-blue-main);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(27, 117, 187, 0.3);
}

.store-product-assurances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--snk-border);
  font-size: 12px;
  color: #2c4a63;
  font-weight: 600;
}

/* 44px Touch Targets for Clinicians with Gloves */
.cart-button {
  min-width: 44px !important;
  min-height: 44px !important;
  font-size: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.cart-quantity button {
  min-width: 42px !important;
  min-height: 42px !important;
  font-size: 18px !important;
  touch-action: manipulation;
}
.cart-quantity span {
  min-width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .header-search { display: none; }
  .primary-nav { overflow-x: auto; }
  .page-header { grid-template-columns: 1fr; align-items: start; }
  .synthetic-note { max-width: none; }
  .overview-layout { grid-template-columns: 1fr; }
  .overview-sidebar { position: static; max-height: none; }
  .kpi-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metric.featured { grid-column: span 2; }
  .detail-layout { grid-template-columns: 1fr; }
  .reorder-grid, .relation-list { grid-template-columns: 1fr; }
  .relation-stats { grid-template-columns: repeat(3, minmax(82px, 1fr)); overflow-x: auto; }
  .storefront-hero { grid-template-columns: 1fr; }
  .storefront-shop-top { padding: 10px 16px; grid-template-columns: 160px minmax(0,1fr) auto; }
  .storefront-shop-actions { display: flex; gap: 0; }
  .storefront-shop-actions > span { display: none; }
  .storefront-content { padding-inline: 12px; }
  .store-product-main { grid-template-columns: 1fr; }
  .store-cart-layout { grid-template-columns: 1fr; }
  .store-cart-row { grid-template-columns: 70px minmax(0,1fr) auto; }
  .store-cart-row img { width: 70px; height: 70px; }
  .cart-quantity, .cart-line-total { grid-column: 2; }
  .storefront-benefits { grid-template-columns: repeat(2,1fr); }
  .rec-grid { grid-auto-columns: clamp(140px, 42vw, 180px); }
  .rail-control { display: none; }
  .overview-skeleton { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trace-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .quality-summary { grid-template-columns: 1fr; }
  .store-product-assurances { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .header-actions .pill-btn:first-child { display: none; }
  .overview-skeleton { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
  .metric.featured { grid-column: span 1; }
  .rec-grid { grid-auto-columns: clamp(140px, 44vw, 170px); }
  .trace-summary { grid-template-columns: 1fr; }
  .profile-strip { grid-template-columns: 1fr 1fr; }
  .profile-cell { border-left: 0; border-top: 1px solid var(--color-border); }
  .profile-cell:first-child { grid-column: 1 / -1; border-top: 0; }
  .timeline-item { grid-template-columns: 76px 14px minmax(0,1fr); }
  .timeline-item > .money { grid-column: 3; }
}

