/* =============================================================================
   Компоненты — визуальная имитация @es/ui-kit + MUI v6 overrides.
   Маппинг HTML → React в MAPPING.md
   ============================================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-family);
  font-size: var(--fs-bodyM);
  line-height: var(--lh-bodyM);
  color: var(--color-text-primary);
  background: var(--color-neutral-30);
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; padding: 0; }
a { color: var(--color-brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Typography utilities ---------- */
.t-titleL   { font-size: var(--fs-titleL);    line-height: var(--lh-titleL);   font-weight: var(--fw-semibold); letter-spacing: -0.3px; }
.t-titleM   { font-size: var(--fs-titleM);    line-height: var(--lh-titleM);   font-weight: var(--fw-semibold); letter-spacing: -0.2px; }
.t-titleS   { font-size: var(--fs-titleS);    line-height: var(--lh-titleS);   font-weight: var(--fw-semibold); letter-spacing: -0.2px; }
.t-subtitleM{ font-size: var(--fs-subtitleM); line-height: var(--lh-subtitleM);font-weight: var(--fw-medium); }
.t-subtitleS{ font-size: var(--fs-subtitleS); line-height: var(--lh-subtitleS);font-weight: var(--fw-medium); }
.t-bodyM    { font-size: var(--fs-bodyM);     line-height: var(--lh-bodyM);    font-weight: var(--fw-regular); }
.t-bodyM-med{ font-size: var(--fs-bodyM);     line-height: var(--lh-bodyM);    font-weight: var(--fw-medium); }
.t-bodyS    { font-size: var(--fs-bodyS);     line-height: var(--lh-bodyS);    font-weight: var(--fw-regular); }
.t-bodyS-med{ font-size: var(--fs-bodyS);     line-height: var(--lh-bodyS);    font-weight: var(--fw-medium); }
.t-captionL { font-size: var(--fs-captionL);  line-height: var(--lh-captionL); font-weight: var(--fw-regular); }
.t-captionL-med{ font-size: var(--fs-captionL); line-height: var(--lh-captionL); font-weight: var(--fw-medium); }

.t-secondary  { color: var(--color-text-secondary); }
.t-tertiary   { color: var(--color-text-tertiary); }
.t-quaternary { color: var(--color-text-quaternary); }
.t-error      { color: var(--color-error-600); }
.t-success    { color: var(--color-success-600); }
.t-warning    { color: var(--color-warning-600); }

/* ---------- Button ---------- MAPPING: MUI <Button> с кастомными size xs/s/m/l/xl и color primary/soft/dark/secondary */
.es-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: var(--fw-semibold);
  line-height: 24px;
  border-radius: var(--radius-m);
  padding: 8px 16px;
  min-width: 64px;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  user-select: none;
}
.es-btn:focus-visible { outline: var(--focus-ring); outline-offset: var(--focus-offset); }
.es-btn:disabled, .es-btn[aria-disabled="true"] { opacity: .38; cursor: not-allowed; pointer-events: none; }

/* Sizes */
.es-btn-xs { padding: 4px 8px;  min-width: 64px; font-size: 14px; line-height: 20px; border-radius: var(--radius-xs); }
.es-btn-s  { padding: 4px 12px; min-width: 64px; font-size: 16px; line-height: 24px; border-radius: var(--radius-s); }
.es-btn-m  { padding: 8px 16px; min-width: 64px; font-size: 16px; line-height: 24px; border-radius: var(--radius-m); }
.es-btn-l  { padding: 12px 20px;min-width: 64px; font-size: 16px; line-height: 24px; border-radius: var(--radius-l); }
.es-btn-xl { padding: 16px 24px;min-width: 64px; font-size: 16px; line-height: 24px; border-radius: var(--radius-xl); }

/* Colors: primary (contained по умолч.) */
.es-btn-primary { background: var(--color-brand-600); color: var(--color-text-contrast); }
.es-btn-primary:hover { background: var(--color-brand-500); }
.es-btn-primary:active { background: var(--color-brand-700); }

/* soft */
.es-btn-soft { background: var(--color-brand-75); color: var(--color-brand-600); }
.es-btn-soft:hover { background: var(--color-brand-100); }
.es-btn-soft:active { background: var(--color-brand-200); }

/* dark */
.es-btn-dark { background: var(--color-neutral-800); color: var(--color-text-contrast); }
.es-btn-dark:hover { background: var(--color-neutral-500); }
.es-btn-dark:active { background: var(--color-neutral-800); }

/* secondary (contained светло-серый) */
.es-btn-secondary { background: var(--color-neutral-40); color: var(--color-text-primary); }
.es-btn-secondary:hover { background: var(--color-neutral-50); }
.es-btn-secondary:active { background: var(--color-neutral-60); }

/* outlined */
.es-btn-outlined {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-neutral-80);
}
.es-btn-outlined:hover { background: var(--color-neutral-30); }
.es-btn-outlined:active { background: var(--color-neutral-40); }

/* text */
.es-btn-text { background: transparent; color: var(--color-text-primary); }
.es-btn-text:hover { background: var(--color-neutral-50); }
.es-btn-text:active { background: var(--color-neutral-60); }

/* danger (outlined error) */
.es-btn-danger { background: transparent; color: var(--color-error-600); border: 1px solid var(--color-error-200); }
.es-btn-danger:hover { background: var(--color-error-50); }

/* icon-only */
.es-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-m);
  color: var(--color-text-primary);
  transition: background-color .15s ease;
}
.es-icon-btn:hover { background: var(--color-neutral-40); }
.es-icon-btn.es-icon-btn-s { width: 28px; height: 28px; border-radius: var(--radius-s); }
.es-icon-btn.es-icon-btn-l { width: 44px; height: 44px; border-radius: var(--radius-l); }

/* ---------- Icon (SVG) ---------- */
.icon   { width: 24px; height: 24px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.icon-s { width: 20px; height: 20px; }
.icon-xs{ width: 16px; height: 16px; }
.icon-l { width: 28px; height: 28px; }

/* ---------- Input / TextField ---------- MAPPING: MUI <TextField> */
.es-field-wrap { display: flex; flex-direction: column; gap: var(--space-1); }
.es-label {
  font-size: var(--fs-captionL); line-height: var(--lh-captionL);
  font-weight: var(--fw-medium); color: var(--color-text-secondary);
}
.es-label .req { color: var(--color-error-600); margin-left: 2px; }

.es-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-neutral-70);
  border-radius: var(--radius-m);
  background: var(--color-neutral-0);
  font-size: var(--fs-bodyM);
  line-height: var(--lh-bodyM);
  color: var(--color-text-primary);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.es-input::placeholder { color: var(--color-text-quaternary); }
.es-input:hover { border-color: var(--color-neutral-200); }
.es-input:focus { outline: none; border-color: var(--color-neutral-800); box-shadow: 0 0 0 3px rgba(112,129,229,0.18); }
.es-input:disabled, .es-input[disabled] { background: var(--color-neutral-30); color: var(--color-text-tertiary); cursor: not-allowed; }
.es-input.is-error { border-color: var(--color-error-500); }
.es-input.is-error:focus { box-shadow: 0 0 0 3px rgba(224,32,32,0.15); }

.es-input-hint { font-size: var(--fs-captionL); color: var(--color-text-tertiary); }
.es-input-error { font-size: var(--fs-captionL); color: var(--color-error-600); }
.es-input-counter { font-size: var(--fs-captionL); color: var(--color-text-quaternary); align-self: flex-end; }

textarea.es-input { min-height: 88px; resize: vertical; padding: 10px 12px; }

/* Input с иконкой (поиск) */
.es-input-with-icon { position: relative; }
.es-input-with-icon .icon-left,
.es-input-with-icon .icon-right {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--color-text-tertiary); pointer-events: none;
}
.es-input-with-icon .icon-left { left: 12px; }
.es-input-with-icon .icon-right { right: 12px; }
.es-input-with-icon .es-input.has-icon-left  { padding-left: 40px; }
.es-input-with-icon .es-input.has-icon-right { padding-right: 40px; }
.es-input-with-icon button.icon-right { pointer-events: auto; cursor: pointer; background: none; border: none; padding: 4px; display: inline-flex; }

/* ---------- Select (native) ---------- */
select.es-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23737880' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  padding-right: 40px;
}

/* ---------- Checkbox / Radio ---------- */
.es-check {
  display: inline-flex; align-items: center; gap: var(--space-2); cursor: pointer;
  font-size: var(--fs-bodyS); line-height: var(--lh-bodyS); color: var(--color-text-primary);
}
.es-check input[type="checkbox"], .es-check input[type="radio"] {
  appearance: none;
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid var(--color-neutral-100);
  border-radius: 4px;
  background: var(--color-neutral-0);
  position: relative; cursor: pointer;
  transition: border-color .15s, background-color .15s;
}
.es-check input[type="radio"] { border-radius: 50%; }
.es-check input[type="checkbox"]:hover, .es-check input[type="radio"]:hover { border-color: var(--color-neutral-300); }
.es-check input[type="checkbox"]:checked,
.es-check input[type="radio"]:checked {
  background: var(--color-brand-600); border-color: var(--color-brand-600);
}
.es-check input[type="checkbox"]:checked::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.es-check input[type="radio"]:checked::after {
  content: ''; position: absolute; inset: 4px; background: white; border-radius: 50%;
}
.es-check input:disabled { opacity: .4; cursor: not-allowed; }

/* Radio-group row */
.es-radio-group { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ---------- Switch ---------- MAPPING: MUI <Switch> */
.es-switch { position: relative; display: inline-block; width: 36px; height: 20px; flex-shrink: 0; }
.es-switch input { opacity: 0; width: 0; height: 0; }
.es-switch .slider {
  position: absolute; inset: 0; cursor: pointer; background: var(--color-neutral-100);
  border-radius: 999px; transition: background-color .2s;
}
.es-switch .slider::before {
  content: ''; position: absolute; height: 16px; width: 16px; left: 2px; top: 2px;
  background: white; border-radius: 50%; transition: transform .2s; box-shadow: var(--shadow-sm);
}
.es-switch input:checked + .slider { background: var(--color-brand-600); }
.es-switch input:checked + .slider::before { transform: translateX(16px); }
.es-switch input:disabled + .slider { opacity: .4; cursor: not-allowed; }

/* ---------- Chip ---------- MAPPING: MUI <Chip> */
.es-chip {
  display: inline-flex; align-items: center; gap: 4px;
  height: 24px; padding: 0 8px; border-radius: 6px;
  font-size: var(--fs-captionL); line-height: var(--lh-captionL); font-weight: var(--fw-medium);
  background: var(--color-neutral-40); color: var(--color-text-primary);
  white-space: nowrap;
}
.es-chip-success { background: var(--color-success-100); color: var(--color-success-700); }
.es-chip-warning { background: var(--color-warning-100); color: var(--color-warning-700); }
.es-chip-error   { background: var(--color-error-100);   color: var(--color-error-700); }
.es-chip-info    { background: var(--color-info-100);    color: var(--color-info-800); }
.es-chip-brand   { background: var(--color-brand-75);    color: var(--color-brand-700); }
.es-chip-mint    { background: var(--color-mint-100);    color: var(--color-mint-800); }
.es-chip-lavender{ background: var(--color-lavender-100);color: var(--color-lavender-800); }
.es-chip-cobalt  { background: var(--color-cobalt-100);  color: var(--color-cobalt-800); }
.es-chip-coral   { background: var(--color-coral-100);   color: var(--color-coral-800); }

.es-chip .chip-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.es-chip .chip-close { margin-left: 2px; margin-right: -4px; cursor: pointer; display: inline-flex; border-radius: 4px; }
.es-chip .chip-close:hover { background: rgba(0,0,0,.08); }

/* ---------- Card ---------- */
.es-card {
  background: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-50);
  border-radius: var(--radius-l);
  padding: var(--space-6);
}
.es-card-flat { padding: 0; overflow: hidden; }

/* ---------- Alert ---------- MAPPING: MUI <Alert> (overridden) */
.es-alert {
  display: flex; gap: var(--space-3); padding: var(--space-4);
  border-radius: var(--radius-m); border: 1px solid transparent;
  font-size: var(--fs-bodyS); line-height: var(--lh-bodyS);
}
.es-alert-info    { background: var(--color-info-75);    border-color: var(--color-info-200);    color: var(--color-info-800); }
.es-alert-success { background: var(--color-success-75); border-color: var(--color-success-200); color: var(--color-success-700); }
.es-alert-warning { background: var(--color-warning-75); border-color: var(--color-warning-200); color: var(--color-warning-700); }
.es-alert-error   { background: var(--color-error-75);   border-color: var(--color-error-100);   color: var(--color-error-700); }
.es-alert-title { font-weight: var(--fw-semibold); margin-bottom: 2px; }
.es-alert .icon { flex-shrink: 0; }

/* ---------- Modal ---------- MAPPING: EsModal (Dialog на десктопе) */
.es-modal-backdrop {
  position: fixed; inset: 0; background: rgba(33,33,36,.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: var(--space-4);
}
.es-modal {
  background: var(--color-neutral-0);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 520px; max-height: 90vh;
  display: flex; flex-direction: column;
  animation: modalIn .18s ease-out;
}
.es-modal-lg { max-width: 720px; }
.es-modal-xl { max-width: 960px; }
@keyframes modalIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.es-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) var(--space-6) var(--space-3);
}
.es-modal-title { font-size: var(--fs-titleS); line-height: var(--lh-titleS); font-weight: var(--fw-semibold); }
.es-modal-body  { padding: 0 var(--space-6) var(--space-5); overflow: auto; }
.es-modal-footer{ padding: var(--space-4) var(--space-6); border-top: 1px solid var(--color-neutral-50);
                  display: flex; justify-content: flex-end; gap: var(--space-3); }

/* ---------- Tabs ---------- MAPPING: MUI <Tabs> (size m) */
.es-tabs { display: flex; gap: var(--space-1); border-bottom: 1px solid var(--color-neutral-50); }
.es-tab {
  padding: 10px 16px;
  font-size: var(--fs-bodyM); font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.es-tab:hover { color: var(--color-text-primary); }
.es-tab.is-active { color: var(--color-text-primary); border-bottom-color: var(--color-brand-600); font-weight: var(--fw-semibold); }

/* ---------- Table ---------- */
.es-table-wrap {
  background: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-50);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.es-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-bodyS); line-height: var(--lh-bodyS);
}
.es-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-captionL); line-height: var(--lh-captionL);
  color: var(--color-text-secondary);
  text-transform: uppercase; letter-spacing: .02em;
  background: var(--color-neutral-30);
  border-bottom: 1px solid var(--color-neutral-50);
  white-space: nowrap;
  user-select: none;
}
.es-table thead th.sortable { cursor: pointer; }
.es-table thead th.sortable:hover { color: var(--color-text-primary); }
.es-table thead th .sort-arrow { opacity: .4; margin-left: 4px; display: inline-block; }
.es-table thead th.is-sorted .sort-arrow { opacity: 1; color: var(--color-brand-600); }

.es-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--color-neutral-45); vertical-align: middle; }
.es-table tbody tr:last-child td { border-bottom: none; }
.es-table tbody tr:hover { background: var(--color-neutral-15); }
.es-table tbody tr.is-selected { background: var(--color-brand-50); }
.es-table .col-check { width: 44px; }
.es-table .col-actions { width: 72px; text-align: right; }

/* ---------- Pagination ---------- */
.es-pagination { display: flex; align-items: center; justify-content: space-between;
                 padding: var(--space-3) var(--space-4); gap: var(--space-4); flex-wrap: wrap; }
.es-pagination .pages { display: flex; gap: 4px; }
.es-page-btn {
  min-width: 32px; height: 32px; padding: 0 8px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--fs-bodyS); color: var(--color-text-primary);
  transition: background-color .15s;
}
.es-page-btn:hover:not(:disabled) { background: var(--color-neutral-40); }
.es-page-btn.is-active { background: var(--color-brand-600); color: var(--color-text-contrast); }
.es-page-btn:disabled { opacity: .3; cursor: not-allowed; }

/* ---------- Floating panel (bulk) ---------- MAPPING: EsFloatingPanel */
.es-floating-panel {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--color-neutral-800); color: var(--color-text-contrast);
  border-radius: var(--radius-xl);
  padding: 10px 16px;
  display: flex; align-items: center; gap: var(--space-4);
  box-shadow: var(--shadow-lg);
  z-index: 80;
}
.es-floating-panel .count { font-weight: var(--fw-semibold); }
.es-floating-panel .divider { width: 1px; height: 20px; background: rgba(255,255,255,.18); }
.es-floating-panel .fp-action { color: white; padding: 6px 12px; border-radius: 6px; display: inline-flex; gap: 6px; align-items: center; }
.es-floating-panel .fp-action:hover { background: rgba(255,255,255,.1); }
.es-floating-panel .fp-action.danger { color: #FFAA9E; }
.es-floating-panel .fp-action.danger:hover { background: rgba(255,170,158,.15); }

/* ---------- Breadcrumbs ---------- */
.es-breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: var(--fs-bodyS); color: var(--color-text-secondary); flex-wrap: wrap; }
.es-breadcrumbs a { color: var(--color-text-secondary); }
.es-breadcrumbs a:hover { color: var(--color-text-primary); text-decoration: none; }
.es-breadcrumbs .sep { color: var(--color-text-quaternary); }
.es-breadcrumbs .current { color: var(--color-text-primary); font-weight: var(--fw-medium); }

/* ---------- Toast / Snackbar ---------- MAPPING: notistack enqueueSnackbar */
.es-toast-stack {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 8px; z-index: 200;
  max-width: 420px; width: calc(100% - 32px);
}
.es-toast {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 12px 16px; border-radius: var(--radius-m);
  background: var(--color-neutral-800); color: var(--color-text-contrast);
  box-shadow: var(--shadow-lg); font-size: var(--fs-bodyS);
  animation: toastIn .18s ease-out;
}
.es-toast-success { background: var(--color-success-600); }
.es-toast-error   { background: var(--color-error-600); }
.es-toast-warning { background: var(--color-warning-600); }
.es-toast button.close { color: inherit; margin-left: auto; display: inline-flex; padding: 4px; border-radius: 4px; }
.es-toast button.close:hover { background: rgba(255,255,255,.15); }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Timeline ---------- */
.es-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.es-timeline::before {
  content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px;
  background: var(--color-neutral-50);
}
.es-timeline-item { position: relative; padding: 0 0 var(--space-5) 44px; }
.es-timeline-item:last-child { padding-bottom: 0; }
.es-timeline-dot {
  position: absolute; left: 8px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--color-neutral-0); border: 2px solid var(--color-neutral-200);
  display: flex; align-items: center; justify-content: center;
}
.es-timeline-dot.is-brand   { border-color: var(--color-brand-600); background: var(--color-brand-600); }
.es-timeline-dot.is-success { border-color: var(--color-success-500); background: var(--color-success-500); }
.es-timeline-dot.is-warning { border-color: var(--color-warning-500); background: var(--color-warning-500); }
.es-timeline-dot.is-error   { border-color: var(--color-error-500);   background: var(--color-error-500); }

.es-timeline-time { font-size: var(--fs-captionL); color: var(--color-text-tertiary); margin-bottom: 2px; }
.es-timeline-title { font-weight: var(--fw-medium); color: var(--color-text-primary); font-size: var(--fs-bodyS); }
.es-timeline-desc { color: var(--color-text-secondary); font-size: var(--fs-bodyS); margin-top: 2px; }

/* ---------- Autocomplete (multi-select) ---------- MAPPING: EsAutocomplete */
.es-autocomplete {
  border: 1px solid var(--color-neutral-70); border-radius: var(--radius-m);
  background: var(--color-neutral-0); padding: 6px 8px;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center; min-height: 44px;
}
.es-autocomplete:focus-within { border-color: var(--color-neutral-800); box-shadow: 0 0 0 3px rgba(112,129,229,0.18); }
.es-autocomplete input {
  flex: 1; min-width: 80px; border: none; outline: none; background: transparent;
  padding: 6px 4px; font-size: var(--fs-bodyM);
}

/* ---------- Popover ---------- */
.es-popover {
  position: absolute; background: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-50); border-radius: var(--radius-m);
  box-shadow: var(--shadow-lg); padding: var(--space-2); min-width: 220px; z-index: 50;
  max-height: 320px; overflow: auto;
}
.es-popover-item {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 8px 10px; border-radius: var(--radius-s); cursor: pointer;
  font-size: var(--fs-bodyS);
}
.es-popover-item:hover { background: var(--color-neutral-30); }
.es-popover-item.is-selected { background: var(--color-brand-50); color: var(--color-brand-700); }

/* ---------- Empty state ---------- */
.es-empty {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  padding: var(--space-12) var(--space-4); color: var(--color-text-tertiary);
  text-align: center;
}
.es-empty .icon { width: 48px; height: 48px; color: var(--color-neutral-150); }
