:root {
  --ink: #17211f;
  --muted: #63706d;
  --line: #d8dfdc;
  --surface: #ffffff;
  --surface-2: #f4f7f5;
  --page: #eef2ef;
  --brand: #245a4f;
  --brand-rgb: 36, 90, 79;
  --brand-2: #b75a3e;
  --gold: #b58b2c;
  --pill-ink: #18332e;
  --pill-bg: #e3efeb;
  --edit-bg: #fff8e8;
  --danger-bg: #fff1ed;
  --danger-line: #efc5ba;
  --shadow: 0 18px 45px rgba(23, 33, 31, 0.08);
  --glow: 0 0 0 4px rgba(var(--brand-rgb), 0.14), 0 16px 42px rgba(var(--brand-rgb), 0.14);
}

html[data-theme="dark"] {
  --ink: #eef7f3;
  --muted: #aebdb8;
  --line: #29423c;
  --surface: #13201d;
  --surface-2: #0d1715;
  --page: #08110f;
  --brand-2: #e48264;
  --gold: #dfba63;
  --pill-ink: #e9f7f2;
  --pill-bg: #243d37;
  --edit-bg: #2d2917;
  --danger-bg: #311b17;
  --danger-line: #8d4638;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

html[data-accent="evergreen"] {
  --brand: #245a4f;
  --brand-rgb: 36, 90, 79;
}

html[data-accent="copper"] {
  --brand: #a24c31;
  --brand-rgb: 162, 76, 49;
}

html[data-accent="blue"] {
  --brand: #2f647d;
  --brand-rgb: 47, 100, 125;
}

html[data-accent="plum"] {
  --brand: #66507f;
  --brand-rgb: 102, 80, 127;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--page), var(--surface-2));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.app-shell {
  min-height: 100vh;
  padding: 28px;
}

.atlas-header,
.admin-panel,
.control-panel,
.filter-panel,
.atlas-board,
.list-board {
  max-width: 1440px;
  margin-inline: auto;
}

.atlas-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-2);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-header .eyebrow {
  color: #b42318;
  font-size: 1rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  line-height: 0.96;
}

.subtitle {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.header-meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px;
  align-items: stretch;
}

.header-stat,
.admin-button,
.admin-panel,
.control-panel,
.filter-panel,
.atlas-board,
.list-board,
.theme-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.header-stat {
  min-width: 78px;
  padding: 6px 8px;
}

.header-stat strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1;
}

.header-stat span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
}

.admin-button,
.theme-toggle-button,
.text-button,
.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 800;
}

.admin-button,
.theme-toggle-button {
  width: 100%;
}

.header-actions {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
}

.admin-button.active,
.theme-toggle-button.active,
.filter-button[aria-expanded="true"] {
  color: #fff;
  background: var(--brand);
}

.admin-panel {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  gap: 16px;
  margin-bottom: 12px;
  padding: 12px;
}

.admin-actions,
.theme-panel,
.mode-toggle,
.swatches {
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-settings {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 8px;
}

.page-settings label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.page-settings input,
.page-settings textarea,
.section-subtitle-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
  padding: 8px 10px;
  outline: 0;
}

.page-settings input:focus,
.page-settings textarea:focus,
.section-subtitle-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 139, 44, 0.18);
}

.section-subtitle-input {
  max-width: 760px;
  margin-top: 7px;
  line-height: 1.45;
  resize: vertical;
}

.text-button {
  padding: 0 13px;
}

.text-button.danger {
  color: var(--brand-2);
}

.theme-panel {
  padding: 8px;
  box-shadow: none;
}

.mode-toggle {
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.mode-toggle button {
  min-height: 30px;
  min-width: 58px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.mode-toggle button.active {
  color: #fff;
  background: var(--brand);
}

.swatch {
  width: 22px;
  height: 22px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch.active {
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--brand);
}

.swatch[data-accent="evergreen"] {
  background: #245a4f;
}

.swatch[data-accent="copper"] {
  background: #a24c31;
}

.swatch[data-accent="blue"] {
  background: #2f647d;
}

.swatch[data-accent="plum"] {
  background: #66507f;
}

.control-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.filter-row {
  display: grid;
  gap: 3px;
}

.filter-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-tabs,
.quick-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.business-tabs button,
.quick-tabs button {
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  background: var(--surface-2);
  padding: 0 9px;
  font-size: 0.78rem;
  font-weight: 800;
}

.business-tabs button.active,
.quick-tabs button.active {
  color: #fff;
  background: var(--brand);
}

.search-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.search,
.select-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.search input,
.select-field select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
  padding: 0 12px;
  outline: none;
}

.filter-button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.74rem;
}

.search input:focus,
.select-field select:focus {
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: var(--glow);
}

.view-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.view-toggle button {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.view-toggle button.active {
  color: #fff;
  background: var(--brand);
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
}

.atlas-board,
.list-board {
  margin-top: 12px;
  padding: 18px;
}

.atlas-sections {
  display: grid;
  gap: 28px;
}

.atlas-section {
  display: grid;
  gap: 12px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section-header p {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.section-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--line-color, var(--brand));
}

.section-count {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--line-color, var(--brand));
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
  text-align: left;
}

.product-card:hover,
.list-row:hover {
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: var(--shadow);
}

.product-card:focus-visible,
.list-row:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(var(--brand-rgb), 0.28);
  outline-offset: 2px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-top h3 {
  margin: 0;
  font-size: 1.05rem;
}

.card-summary {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.card-meta,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-product-type {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  max-width: 100%;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.74rem;
  font-weight: 800;
}

.footer-chip.investment-solution-pill,
.footer-chip-input.investment-solution-pill {
  border-color: rgba(181, 139, 44, 0.55);
  color: #5f4200;
  background: #ffe69a;
}

html[data-theme="dark"] .footer-chip.investment-solution-pill,
html[data-theme="dark"] .footer-chip-input.investment-solution-pill {
  color: #2f2100;
  background: #f4c74e;
}

.tile-bottom {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.client-segment-group {
  display: grid;
  gap: 6px;
}

.client-segment-label {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.client-segment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.client-segment-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(var(--brand-rgb), 0.08);
  font-size: 0.74rem;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--pill-ink);
  background: var(--pill-bg);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.segment-pill {
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  color: var(--ink);
  background: rgba(var(--brand-rgb), 0.08);
}

.app-access-pill {
  border: 1px solid rgba(181, 139, 44, 0.35);
  color: var(--ink);
  background: rgba(181, 139, 44, 0.13);
}

.pill[class*="status-"] {
  border: 1px solid transparent;
  color: #ffffff;
  background: var(--brand);
}

.pill.status-live,
.pill-select.status-live {
  color: #ffffff;
  background: #16834a;
  border-color: #0f6c3c;
}

.pill.status-launching,
.pill-select.status-launching {
  color: #231a06;
  background: #f0be3d;
  border-color: #d69f18;
}

.pill.status-in-progress,
.pill.status-needs-review,
.pill.status-in-development,
.pill-select.status-in-progress,
.pill-select.status-needs-review,
.pill-select.status-in-development {
  color: #ffffff;
  background: #c45136;
  border-color: #9e3d27;
}

.pill.status-future-service,
.pill.status-future-service-live,
.pill.status-partner-dependent,
.pill-select.status-future-service,
.pill-select.status-future-service-live,
.pill-select.status-partner-dependent {
  color: #ffffff;
  background: #66507f;
  border-color: #55416d;
}

.delete-row,
.close-button {
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--brand-2);
  background: transparent;
  font-weight: 900;
}

.delete-row:hover,
.close-button:hover {
  border-color: var(--danger-line);
  background: var(--danger-bg);
}

.list-header,
.list-row {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 1.15fr 0.9fr 0.95fr 0.62fr;
  gap: 12px;
  align-items: center;
}

.list-header {
  padding: 0 12px 10px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.list-row {
  width: 100%;
  min-height: 62px;
  padding: 12px;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.list-product {
  font-weight: 850;
}

.detail-panel {
  position: fixed;
  inset: 0;
  z-index: 20;
}

.detail-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.detail-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 24px;
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
}

.admin-password-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-password-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.admin-password-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(420px, 100%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.admin-password-card .close-button {
  justify-self: end;
}

.admin-password-card h2 {
  margin-bottom: 6px;
  font-size: 1.55rem;
}

.admin-password-copy,
.admin-password-error {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-password-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-password-field input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
  padding: 0 12px;
  outline: 0;
}

.admin-password-field input:focus {
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: var(--glow);
}

.admin-password-error {
  color: var(--brand-2);
  font-weight: 800;
}

.close-button {
  justify-self: end;
}

.detail-heading h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.detail-field {
  display: grid;
  gap: 7px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.detail-field > span,
.detail-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-field div[contenteditable],
.detail-heading h2[contenteditable] {
  border-radius: 6px;
  outline: 0;
}

.detail-field select {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
  padding: 0 10px;
  outline: 0;
}

.detail-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 139, 44, 0.18);
}

.collateral-link-list,
.collateral-admin-list {
  display: grid;
  gap: 8px;
}

.collateral-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  max-width: 100%;
  padding: 4px 10px;
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(var(--brand-rgb), 0.08);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.collateral-link:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12);
}

.collateral-admin-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(160px, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.collateral-admin-row label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.collateral-admin-row input {
  min-height: 38px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
  padding: 0 10px;
  outline: 0;
}

.collateral-admin-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 139, 44, 0.18);
}

.collateral-add {
  justify-self: start;
  min-height: 34px;
}

.empty-detail-note {
  margin: 0;
  color: var(--muted);
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.option-pill {
  position: relative;
}

.option-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-2);
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.option-pill input:checked + span {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.option-pill input:focus-visible + span {
  outline: 3px solid rgba(var(--brand-rgb), 0.28);
  outline-offset: 2px;
}

.admin-mode .detail-field div[contenteditable="true"]:focus,
.admin-mode .detail-heading h2[contenteditable="true"]:focus {
  background: var(--edit-bg);
  box-shadow: inset 0 0 0 2px var(--gold);
}

.card-title-input,
.card-summary-input,
.footer-chip-input,
.pill-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--surface);
  outline: 0;
}

.card-title-input {
  min-height: 34px;
  padding: 4px 8px;
  font-size: 1.05rem;
  font-weight: 850;
}

.card-summary-input {
  min-height: 82px;
  padding: 8px;
  line-height: 1.4;
  resize: vertical;
}

.footer-chip-input {
  min-height: 28px;
  max-width: 100%;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.app-access-input {
  border-color: rgba(181, 139, 44, 0.35);
  background: rgba(181, 139, 44, 0.13);
}

.pill-select {
  min-height: 28px;
  width: auto;
  max-width: 100%;
  border-radius: 999px;
  padding: 2px 24px 2px 8px;
  color: var(--pill-ink);
  font-size: 0.74rem;
  font-weight: 800;
}

.pill-select[class*="status-"] {
  color: #fff;
}

.card-segment-options {
  align-items: center;
}

.card-segment-option {
  position: relative;
}

.card-segment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.card-segment-option span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.card-segment-option input:checked + span {
  border-color: rgba(var(--brand-rgb), 0.28);
  color: var(--ink);
  background: rgba(var(--brand-rgb), 0.08);
}

.card-segment-option input:focus-visible + span {
  outline: 3px solid rgba(var(--brand-rgb), 0.28);
  outline-offset: 2px;
}

.card-title-input:focus,
.card-summary-input:focus,
.footer-chip-input:focus,
.pill-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 139, 44, 0.18);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detail-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.detail-grid strong {
  display: block;
  margin-top: 5px;
}

.detail-delete {
  justify-self: start;
}

.empty-state {
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.line-dag-private-client {
  --line-color: #245a4f;
}

.line-dag-wealth {
  --line-color: #2f647d;
}

.line-dag-insurance {
  --line-color: #a24c31;
}

.line-dag-institutional {
  --line-color: #66507f;
}

.line-dag-family-office {
  --line-color: #b58b2c;
}

@media (max-width: 760px) {
  .atlas-header,
  .admin-panel,
  .section-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search-band,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .collateral-admin-row {
    grid-template-columns: 1fr;
  }

  .collateral-remove {
    justify-self: start;
  }

  .page-settings {
    grid-template-columns: 1fr;
  }

  .list-header {
    display: none;
  }

  .list-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .app-shell {
    padding: 18px;
  }

  .header-meta {
    grid-template-columns: 1fr;
  }

  .header-actions {
    grid-column: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
