@import url("/fonts.css");
:root {
  --bg: #f6f7fb;
  --panel: #fff;
  --ink: #252736;
  --muted: #8a8e9f;
  --line: #eceef3;
  --purple: #7058e5;
  --purple-dark: #5e45cf;
  --purple-soft: #f0ecff;
  --green: #249773;
  --green-soft: #eaf7f1;
  --red: #d75d69;
  --red-soft: #fff0f1;
  --orange: #c58b35;
  --shadow: 0 8px 32px #24254b06;
  --radius: 15px;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  font-size: 14px;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.52;
  cursor: wait;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #bdacf9;
  outline-offset: 3px;
}
input:focus,
select:focus {
  border-color: var(--purple);
  outline: 3px solid #7058e512;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 27px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.9px;
}
h2 {
  font-size: 16px;
  font-weight: 630;
  letter-spacing: -0.25px;
}
h3 {
  font-size: 14px;
  font-weight: 600;
}
.icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 12px;
}
.positive {
  color: var(--green);
}
.negative {
  color: var(--red);
}
.mono {
  font-variant-numeric: tabular-nums;
}
.boot {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 24px;
  color: var(--muted);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: 27px;
  letter-spacing: -1px;
}
.brand-mark {
  display: inline-grid;
  place-content: center;
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--purple);
  font-weight: 850;
  font-size: 36px;
  line-height: 30px;
  color: white;
  letter-spacing: -3px;
  padding-right: 3px;
  padding-bottom: 4px;
}
.brand-mark:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #b4f28c;
  border: 2px solid white;
  border-radius: 50%;
  right: 2px;
  top: 2px;
}
.brand small {
  font-size: 9px;
  border: 1px solid #e4e0f4;
  color: #978aae;
  border-radius: 4px;
  letter-spacing: 0.5px;
  padding: 2px 4px;
  margin-top: 3px;
  font-weight: 500;
}
.shell {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 28px 18px 16px;
  z-index: 30;
}
.sidebar .brand {
  padding-left: 12px;
  margin-bottom: 31px;
}
.workspace-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 1px 28px;
  padding: 11px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: left;
  width: calc(100% - 2px);
}
.workspace-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f1f2f7;
  display: grid;
  place-content: center;
  color: #656a80;
  font-size: 12px;
  font-weight: 650;
}
.workspace-switch span:nth-child(2) {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
}
.workspace-switch small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.nav-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: #a2a6b5;
  text-transform: uppercase;
  padding: 0 13px;
  margin-bottom: 11px;
}
.nav-group {
  display: grid;
  gap: 5px;
  margin-bottom: 29px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 8px;
  color: #767c8e;
  background: transparent;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  min-height: 40px;
}
.nav-link:hover {
  background: #f7f5fd;
  color: var(--purple);
}
.nav-link.active {
  background: var(--purple-soft);
  color: var(--purple);
  font-weight: 600;
}
.nav-link .count {
  margin-left: auto;
  background: #e1d8ff;
  color: var(--purple);
  font-size: 10px;
  border-radius: 5px;
  min-width: 20px;
  text-align: center;
  padding: 2px 5px;
}
.sidebar-bottom {
  margin-top: auto;
}
.help-card {
  background: #f7f8fc;
  border: 1px solid #eeeff5;
  border-radius: 11px;
  padding: 15px 13px;
  margin-bottom: 18px;
}
.help-card p {
  font-size: 11px;
  color: #9296a6;
  line-height: 1.6;
  margin: 7px 0 13px;
}
.help-card h3 {
  font-size: 11px;
}
.help-card button {
  font-size: 11px;
  color: #625776;
  background: #fff;
  border: 1px solid #e7e6ee;
  border-radius: 6px;
  padding: 7px 10px;
  width: 100%;
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 0;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 33px;
  height: 33px;
  background: #f4e3d3;
  color: #9b755c;
  display: grid;
  place-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 650;
}
.profile-name {
  font-size: 12px;
  flex: 1;
  font-weight: 600;
}
.profile-name small {
  display: block;
  font-weight: 400;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.icon-btn {
  background: transparent;
  display: grid;
  place-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  color: var(--muted);
}
.icon-btn:hover {
  background: #f1eff9;
  color: var(--purple);
}
.topbar {
  height: 76px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  gap: 24px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  color: #9599a8;
}
.breadcrumb span:last-child {
  color: #54596b;
}
.topbar-actions {
  display: flex;
  gap: 19px;
  align-items: center;
}
.global-search {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a0a4b2;
  border: 1px solid var(--line);
  border-radius: 7px;
  width: 212px;
  background: #fff;
  padding: 8px 10px;
  font-size: 11px;
  text-align: left;
}
.global-search kbd {
  margin-left: auto;
  font-family: inherit;
  background: #f8f8fa;
  border: 1px solid #ececf1;
  border-radius: 3px;
  padding: 1px 4px;
  font-size: 9px;
}
.divider {
  height: 24px;
  width: 1px;
  background: var(--line);
}
.ozon-label {
  font-size: 10px;
  letter-spacing: 1.2px;
  font-weight: 800;
  color: #0761ed;
}
.connection-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #7c8293;
}
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3eb28b;
}
.dot.warn {
  background: #e2a54a;
}
.dot.inactive {
  background: #b9bfcc;
}
.notification {
  position: relative;
}
.notification:after {
  content: "";
  position: absolute;
  right: 6px;
  top: 5px;
  width: 5px;
  height: 5px;
  background: #9175e6;
  border-radius: 50%;
  border: 2px solid white;
  box-sizing: content-box;
}
.content {
  padding: 29px 34px 30px;
  max-width: 1700px;
  margin: auto;
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 23px;
}
.page-header p {
  font-size: 12px;
  color: #9095a5;
  margin-top: 8px;
  line-height: 1.6;
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  border: 1px solid var(--purple);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 550;
  padding: 10px 15px;
  min-height: 37px;
  white-space: nowrap;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn:hover {
  background: var(--purple-dark);
}
.btn:active {
  transform: translateY(1px);
}
.btn .icon {
  width: 15px;
  height: 15px;
}
.btn.secondary {
  background: #fff;
  border-color: #e4e6ed;
  color: #626a7e;
  box-shadow: 0 2px 2px #11111102;
}
.btn.secondary:hover {
  background: #faf9ff;
  border-color: #cfc4f5;
}
.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--purple);
  padding: 7px 0;
}
.btn.danger {
  background: var(--red-soft);
  border-color: #ffd4d9;
  color: var(--red);
}
.btn.sm {
  font-size: 11px;
  min-height: 30px;
  padding: 7px 11px;
}
.btn.full {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.date-select {
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 8px;
  padding: 10px 13px;
  color: #676e80;
  font-size: 11px;
  height: 37px;
}
.demo-strip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #eeebfa;
  border: 1px solid #e7e1f7;
  border-radius: 9px;
  padding: 9px 13px;
  font-size: 11px;
  color: #8a78b1;
  margin-bottom: 21px;
}
.demo-strip .icon {
  width: 14px;
  height: 14px;
}
.demo-strip button {
  margin-left: auto;
  background: transparent;
  color: #7058ca;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 23px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
}
.kpi {
  padding: 19px 21px 17px;
  position: relative;
  overflow: hidden;
}
.kpi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #8a8f9f;
  font-size: 11px;
  margin-bottom: 15px;
}
.kpi-icon {
  width: 28px;
  height: 28px;
  background: #f5f4fb;
  color: #9d92cb;
  border-radius: 8px;
  display: grid;
  place-content: center;
}
.kpi-icon .icon {
  width: 14px;
  height: 14px;
}
.kpi-value {
  font-size: 29px;
  letter-spacing: -1px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  white-space: nowrap;
}
.kpi-value small {
  font-size: 19px;
  font-weight: 500;
  color: #969baa;
  margin-left: 4px;
}
.kpi-bottom {
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a2a6b4;
  margin-top: 15px;
  white-space: nowrap;
}
.change {
  color: var(--green);
  font-weight: 550;
  background: #edf8f2;
  padding: 3px 5px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.change .icon {
  width: 10px;
  height: 10px;
}
.change.down {
  background: var(--red-soft);
  color: var(--red);
}
.kpi-spark {
  position: absolute;
  right: 14px;
  bottom: 12px;
  opacity: 0.55;
  width: 63px;
  height: 28px;
}
.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 305px;
  gap: 21px;
  margin-bottom: 23px;
}
.card-header {
  padding: 20px 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.card-header p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}
.segmented {
  display: flex;
  padding: 3px;
  border: 1px solid #eeedf5;
  background: #f8f8fc;
  border-radius: 7px;
  gap: 2px;
}
.segmented button {
  padding: 6px 10px;
  border-radius: 5px;
  background: transparent;
  font-size: 10px;
  color: #989baa;
}
.segmented button.active {
  background: #fff;
  box-shadow: 0 1px 4px #0000000a;
  color: #5a556e;
}
.chart-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 23px 0;
  font-size: 10px;
  color: #9296a6;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}
.legend-dot.green {
  background: #69c1aa;
}
.chart {
  padding: 8px 15px 11px 13px;
  position: relative;
}
.chart svg {
  width: 100%;
  height: 231px;
  overflow: visible;
}
.chart text {
  font-size: 10px;
  font-family: inherit;
  fill: #a6aabb;
}
.chart .grid-line {
  stroke: #f0f1f6;
  stroke-dasharray: 3 4;
  stroke-width: 1;
}
.chart-summary {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #8c92a3;
  padding: 13px 23px;
}
.chart-summary .icon {
  width: 13px;
  height: 13px;
  color: #aaa1c3;
}
.attention {
  padding: 20px;
}
.attention-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.attention-title h2 {
  font-size: 14px;
}
.attention-title .counter {
  background: #fff2de;
  color: #c3944f;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 9px;
}
.attention-item {
  display: flex;
  gap: 11px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  width: 100%;
  background: transparent;
}
.attention-item:first-of-type {
  padding-top: 0;
}
.attention-item:last-of-type {
  border-bottom: 0;
}
.attention-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-content: center;
  border-radius: 8px;
  background: #fff5e9;
  color: #d6a060;
  flex-shrink: 0;
}
.attention-icon .icon {
  width: 15px;
  height: 15px;
}
.attention-icon.red {
  background: var(--red-soft);
  color: #df8892;
}
.attention-icon.purple {
  background: var(--purple-soft);
  color: #9d85e7;
}
.attention-item h3 {
  font-size: 11px;
  line-height: 1.4;
}
.attention-item p {
  font-size: 10px;
  color: #9a9fae;
  line-height: 1.65;
  margin-top: 4px;
}
.attention-item .icon.arrow {
  width: 13px;
  height: 13px;
  color: #b6baca;
  margin-left: auto;
  margin-top: 8px;
}
.attention-bottom {
  font-size: 10px;
  line-height: 1.6;
  color: #a3a7b5;
  padding-top: 13px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title .count {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 6px;
  border-radius: 5px;
  background: #f3f4f9;
  color: #9097aa;
}
.table-card {
  overflow: hidden;
}
.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  gap: 12px;
}
.table-toolbar h2 {
  font-size: 14px;
}
.table-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.input-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 8px 10px;
  color: #afb3c0;
}
.input-search .icon {
  width: 15px;
  height: 15px;
}
.input-search input {
  border: 0;
  outline: none !important;
  min-width: 0;
  width: 145px;
  background: transparent;
  font-size: 11px;
  color: var(--ink);
}
.input-search input::placeholder {
  color: #afb3c0;
}
.table-scroll {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}
th {
  padding: 13px 18px;
  background: #fafbfe;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #969bad;
  font-size: 10px;
  font-weight: 500;
}
td {
  padding: 13px 18px;
  border-bottom: 1px solid #f0f1f6;
  font-size: 11px;
  color: #626a80;
  font-variant-numeric: tabular-nums;
}
th:first-child,
td:first-child {
  padding-left: 23px;
}
th:last-child,
td:last-child {
  padding-right: 23px;
}
tr:last-child td {
  border-bottom: 0;
}
tbody tr:hover {
  background: #fcfbff;
}
td.numeric,
th.numeric {
  text-align: right;
}
.product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.product-thumb {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #f5f2ed;
  overflow: hidden;
}
.product-thumb svg {
  width: 29px;
  height: 29px;
  stroke: #7d8197;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-thumb.p1 {
  background: #eff2f7;
}
.product-thumb.p2 {
  background: #edf5f3;
}
.product-thumb.p3 {
  background: #f5f0f7;
}
.product-thumb.p4 {
  background: #f5efe9;
}
.product-name {
  color: #4c5265;
  font-size: 11px;
  font-weight: 500;
  max-width: 245px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-meta {
  font-size: 9px;
  color: #a5a9b8;
  margin-top: 5px;
}
.money-strong {
  color: #454c60;
  font-weight: 550;
}
.margin-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #edf7f1;
  color: #4eaa88;
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 5px;
}
.margin-pill.bad {
  background: var(--red-soft);
  color: #d4767d;
}
.margin-pill.warn {
  background: #fff5e7;
  color: #c19759;
}
.stock-number {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.stock-dot {
  width: 4px;
  height: 4px;
  background: #d7dce7;
  border-radius: 50%;
}
.stock-dot.low {
  background: #dda959;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #8a7dc1;
  background: #f3effc;
  border: 1px solid #ece6f8;
  padding: 4px 7px;
  border-radius: 5px;
}
.status-pill.green {
  color: #3e9f7c;
  background: #eef9f3;
  border-color: #e0f1e7;
}
.status-pill.gray {
  color: #8f96a8;
  background: #f5f6fa;
  border-color: #edf0f5;
}
.status-pill.orange {
  color: #c6995f;
  background: #fff8ed;
  border-color: #f5e9d6;
}
.status-pill.red {
  color: #cb7881;
  background: #fff0f1;
  border-color: #ffe0e4;
}
.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 23px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #a1a6b6;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination button {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  color: #9aa0b0;
  border: 1px solid #ebedf4;
  background: white;
  display: grid;
  place-content: center;
}
.pagination span {
  font-size: 10px;
}
.bottom-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  margin-top: 23px;
}
.experiment-banner {
  background: linear-gradient(110deg, #f0ecfd, #f8f6ff);
  border: 1px solid #e6def9;
  padding: 22px 24px;
  display: flex;
  gap: 17px;
  align-items: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.orbit-art {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid #d8cef6;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  position: relative;
  transform: rotate(-20deg);
}
.orbit-art:after {
  content: "";
  position: absolute;
  right: -3px;
  top: 15px;
  background: #9a7ce6;
  width: 8px;
  height: 8px;
  border: 3px solid #f5f0ff;
  border-radius: 50%;
  box-sizing: content-box;
}
.orbit-art .icon {
  width: 30px;
  height: 30px;
  color: #9b7ce1;
  transform: rotate(20deg);
}
.experiment-banner h3 {
  font-size: 13px;
  color: #685389;
}
.experiment-banner p {
  color: #a28fb5;
  font-size: 10px;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 6px;
}
.experiment-banner .btn {
  margin-top: 12px;
  font-size: 10px;
  padding: 7px 11px;
  min-height: 29px;
}
.health-card {
  padding: 21px 23px;
}
.health-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.health-heading h3 {
  font-size: 12px;
}
.health-score {
  color: #55a785;
  font-size: 10px;
}
.health-track {
  height: 6px;
  border-radius: 5px;
  background: #f0f2f7;
  overflow: hidden;
  display: flex;
  gap: 3px;
}
.health-track span {
  display: block;
  border-radius: 3px;
  background: #a8d8c1;
}
.health-track span:nth-child(2) {
  background: #edcf9e;
}
.health-track span:nth-child(3) {
  background: #e4b4bc;
}
.health-legend {
  display: flex;
  gap: 17px;
  margin-top: 14px;
  font-size: 9px;
  color: #a0a5b4;
}
.health-legend .legend-dot {
  width: 5px;
  height: 5px;
}
.page-footer {
  margin-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b4b8c5;
  font-size: 9px;
}
.page-footer .brand {
  font-size: 13px;
  letter-spacing: -0.4px;
  gap: 4px;
  color: #a8adbd;
}
.mobile-menu {
  display: none;
}
.notice {
  padding: 13px 16px;
  border: 1px solid #e4def6;
  background: #f5f1fd;
  color: #8b77ab;
  border-radius: 9px;
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.notice.warn {
  background: #fff8ed;
  color: #b68b4e;
  border-color: #f4e6d3;
}
.notice.error {
  background: var(--red-soft);
  color: var(--red);
  border-color: #ffdce1;
}
.notice.success {
  color: #34876b;
  background: #eef9f3;
  border-color: #dceee3;
}
.oauth-result,
.access-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.oauth-result .icon-btn {
  flex-shrink: 0;
  color: inherit;
}
.access-notice {
  flex-wrap: wrap;
}
.filters {
  display: flex;
  gap: 8px;
  padding: 0 22px 17px;
}
.filter {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #9297a7;
  background: white;
  font-size: 10px;
  padding: 7px 11px;
}
.filter.active {
  background: var(--purple-soft);
  color: var(--purple);
  border-color: #e3d9fa;
}
.empty {
  padding: 65px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.empty-icon {
  background: var(--purple-soft);
  color: #a690e0;
  border-radius: 18px;
  width: 64px;
  height: 64px;
  display: grid;
  place-content: center;
  margin-bottom: 20px;
}
.empty-icon .icon {
  width: 28px;
  height: 28px;
}
.empty h2 {
  font-size: 18px;
}
.empty p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 390px;
  margin: 12px 0 22px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}
.spaced {
  margin-bottom: 22px;
}
.padded {
  padding: 23px;
}
.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.list-row:last-child {
  border-bottom: 0;
}
.list-row .label {
  color: #8f96a7;
}
.list-row.total {
  font-weight: 650;
  color: var(--purple);
  font-size: 15px;
}
.waterfall-bar {
  height: 8px;
  display: flex;
  gap: 3px;
  border-radius: 8px;
  overflow: hidden;
  margin: 21px 0 13px;
}
.waterfall-bar span {
  background: var(--purple);
}
.waterfall-bar span:nth-child(2) {
  background: #b4a3e8;
}
.waterfall-bar span:nth-child(3) {
  background: #dfd7f4;
}
.waterfall-bar span:nth-child(4) {
  background: #edd8c1;
}
.waterfall-bar span:nth-child(5) {
  background: #a9d7c6;
}
.experiment-card {
  padding: 23px;
  margin-bottom: 17px;
}
.experiment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.experiment-card h3 {
  font-size: 14px;
}
.experiment-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.experiment-stats small {
  font-size: 10px;
  color: #939aad;
  display: block;
  margin-bottom: 8px;
}
.experiment-stats strong {
  font-size: 17px;
  font-weight: 600;
}
.progress-track {
  height: 5px;
  background: #f0edf9;
  border-radius: 6px;
  margin: 13px 0;
}
.progress-track span {
  display: block;
  background: var(--purple);
  border-radius: 6px;
  height: 100%;
}
.experiment-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 17px;
  flex-wrap: wrap;
}
.experiment-actions .muted {
  margin-right: auto;
  font-size: 10px;
}
.observation-table {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: auto;
}
.audit-list {
  padding: 5px 24px;
}
.audit-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.audit-item:last-child {
  border: 0;
}
.audit-item .attention-icon {
  background: #f1eefb;
  color: #9f8bcf;
}
.audit-body {
  flex: 1;
}
.audit-body h3 {
  font-size: 12px;
}
.audit-body p {
  font-size: 11px;
  color: #a0a5b4;
  line-height: 1.7;
  margin-top: 7px;
}
.audit-item time {
  font-size: 10px;
  color: #a4a9b8;
  padding-top: 5px;
}
.store-card {
  padding: 24px;
}
.store-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.store-heading {
  flex: 1;
  min-width: 100px;
  overflow-wrap: anywhere;
}
.ozon-square {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #075bf7;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  font-style: italic;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.store-head h3 {
  font-size: 15px;
  margin-bottom: 7px;
}
.store-head .status-pill {
  margin-left: auto;
}
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.store-notice {
  margin: 15px 0;
}
.connection-start {
  padding: 24px;
  margin-bottom: 22px;
}
.connection-start-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}
.connection-start h2 {
  font-size: 17px;
}
.connection-start p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin-top: 8px;
  max-width: 570px;
}
.connection-start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.connection-footnote {
  margin-top: 12px;
  line-height: 1.8;
}
.connection-help {
  padding: 23px;
}
.connection-help ol {
  padding-left: 19px;
  color: #969cac;
  font-size: 12px;
  line-height: 2.2;
}
.connection-help h3 {
  margin-bottom: 14px;
}
.connection-help a {
  color: var(--purple);
}
.integration-placeholder {
  border: 1px dashed #dcd6ed;
  background: #faf9fe;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 270px;
  border-radius: var(--radius);
  color: #9c8cb5;
  gap: 13px;
}
.integration-placeholder .icon {
  width: 28px;
  height: 28px;
}
.integration-placeholder p {
  font-size: 11px;
}
.settings-form {
  max-width: 600px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}
.field label {
  font-size: 11px;
  color: #6b7387;
  font-weight: 550;
}
.field input,
.field select {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e5ee;
  color: #424b63;
  padding: 11px 12px;
  border-radius: 8px;
  min-height: 41px;
  font-size: 12px;
  transition: border-color 0.15s;
}
.field input::placeholder {
  color: #b5b9c6;
}
.field small {
  color: #a0a7b7;
  font-size: 10px;
  line-height: 1.6;
}
.form-grid .field {
  margin: 0;
}
.form-section-title {
  font-size: 11px;
  font-weight: 650;
  color: #82889b;
  margin: 21px 0 13px;
  letter-spacing: 0.4px;
}
.form-error {
  font-size: 12px;
  color: var(--red);
  background: var(--red-soft);
  padding: 12px;
  border-radius: 8px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.form-error:empty {
  display: none;
}
.overlay {
  position: fixed;
  inset: 0;
  background: #1b19334d;
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.modal {
  background: #fff;
  max-height: 90vh;
  width: 520px;
  max-width: 100%;
  border: 1px solid #ffffff60;
  border-radius: 19px;
  box-shadow: 0 30px 100px #20124830;
  overflow: auto;
}
.modal.wide {
  width: 760px;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 26px 19px;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}
.modal-header h2 {
  font-size: 18px;
}
.modal-header p {
  color: #939bab;
  font-size: 11px;
  margin-top: 8px;
  line-height: 1.6;
}
.modal-body {
  padding: 23px 26px;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 26px;
  border-top: 1px solid var(--line);
  background: #fcfcff;
}
.modal-summary {
  background: #f7f5fd;
  border: 1px solid #ede7fa;
  border-radius: 10px;
  padding: 14px 17px;
  margin: 18px 0;
}
.modal-summary .list-row {
  padding: 8px 0;
  font-size: 11px;
}
.modal-summary .total {
  font-size: 14px;
}
.price-comparison {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #f8f7fc;
  border-radius: 11px;
  padding: 21px;
  margin-bottom: 23px;
}
.price-comparison small {
  font-size: 10px;
  display: block;
  color: #979bad;
  margin-bottom: 8px;
}
.price-comparison strong {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.8px;
}
.price-comparison .icon {
  color: #b8abdc;
}
.drawer {
  margin-left: auto;
  height: 100%;
  max-height: 100%;
  border-radius: 16px 0 0 16px;
  width: 490px;
}
.overlay.drawer-overlay {
  padding: 0;
}
.toast {
  position: fixed;
  bottom: 26px;
  right: 28px;
  z-index: 200;
  background: #2e3045;
  color: #fff;
  border-radius: 11px;
  padding: 14px 18px;
  box-shadow: 0 8px 40px #17162f20;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 440px;
  line-height: 1.5;
}
.toast.error {
  background: #8d414e;
}
.toast .icon {
  color: #b8e3c9;
  width: 17px;
  height: 17px;
}
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  background: white;
}
.login-visual {
  background: #211b39;
  position: relative;
  overflow: hidden;
  color: white;
  padding: 48px 9%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.login-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff04 1px, transparent 1px),
    linear-gradient(90deg, #ffffff04 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(transparent, #000);
}
.login-visual:after {
  content: "";
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: absolute;
  right: -200px;
  top: 200px;
  background: radial-gradient(circle, #7855c637, transparent 65%);
  pointer-events: none;
}
.login-visual > * {
  position: relative;
  z-index: 1;
}
.login-visual .brand-mark:after {
  border-color: #211b39;
}
.login-visual .brand {
  font-size: 28px;
}
.login-intro {
  padding: 50px 0 35px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b0a1d2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
}
.eyebrow:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #b4f28c;
  border-radius: 50%;
}
.login-intro h1 {
  font-size: 49px;
  letter-spacing: -2px;
  line-height: 1.14;
  font-weight: 500;
}
.login-intro h1 span {
  color: #b8a4ef;
}
.login-intro p {
  font-size: 13px;
  line-height: 1.9;
  color: #9b91ad;
  margin-top: 23px;
  max-width: 330px;
}
.login-preview {
  background: #302743;
  border: 1px solid #ffffff12;
  border-radius: 16px;
  transform: rotate(-3deg);
  padding: 24px;
  max-width: 390px;
  margin: 30px 0 35px;
  box-shadow: 0 20px 60px #120b2440;
}
.login-preview .mini-header {
  display: flex;
  justify-content: space-between;
  color: #a298b9;
  font-size: 10px;
}
.login-preview .mini-header span {
  color: #b4e0c0;
}
.login-preview strong {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  display: block;
  margin-top: 13px;
}
.login-preview svg {
  width: 100%;
  height: 75px;
  margin-top: 17px;
}
.login-preview .mini-foot {
  display: flex;
  justify-content: space-between;
  color: #796c93;
  font-size: 9px;
}
.login-visual footer {
  font-size: 10px;
  color: #716383;
  line-height: 1.8;
}
.login-form-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 65px;
  position: relative;
}
.login-form-wrap {
  width: 350px;
  max-width: 100%;
}
.login-form-wrap h2 {
  font-size: 28px;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.login-form-wrap > p {
  font-size: 12px;
  color: #9c9dab;
  line-height: 1.8;
  margin-bottom: 29px;
}
.login-form-wrap .field label {
  font-size: 12px;
}
.login-form-wrap .field input {
  padding: 13px;
  min-height: 46px;
}
.login-form-wrap .btn {
  min-height: 45px;
  font-size: 12px;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  color: #b2b5c0;
  margin: 23px 0;
}
.form-divider:before,
.form-divider:after {
  content: "";
  height: 1px;
  background: #ececf1;
  flex: 1;
}
.auth-switch {
  margin-top: 23px;
  text-align: center;
  color: #a1a3af;
  font-size: 11px;
}
.auth-switch button {
  padding: 0;
  background: none;
  color: var(--purple);
  font-size: 11px;
  font-weight: 550;
}
.login-bottom {
  position: absolute;
  bottom: 28px;
  color: #b5b8c4;
  font-size: 10px;
}
.demo-note {
  font-size: 10px;
  color: #acb0bd;
  text-align: center;
  margin-top: 11px;
  line-height: 1.7;
}
.metric-subtitle {
  font-size: 11px;
  color: #9a9fb0;
  margin-bottom: 22px;
  line-height: 1.7;
}
.chart-empty {
  height: 246px;
  display: grid;
  place-content: center;
  font-size: 12px;
  color: #a3a8b7;
}
.route-loading {
  height: 300px;
  display: grid;
  place-content: center;
  color: var(--muted);
}
.skeleton {
  background: linear-gradient(90deg, #f3f2f8, #fafaff, #f3f2f8);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  border-radius: 8px;
  height: 80px;
}
.search-results {
  display: grid;
  gap: 7px;
}
.search-result {
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  background: #faf9fe;
  padding: 12px;
  border: 1px solid #eeebf6;
  border-radius: 8px;
  width: 100%;
}
.search-result:hover {
  border-color: #c5b8ec;
}
.search-result span {
  flex: 1;
}
.search-result .product-name {
  max-width: 100%;
}
.tab-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 25px 0 13px;
}
.tab-heading h3 {
  font-size: 12px;
}
.chip {
  font-size: 10px;
  background: #f0ecfa;
  color: #9682bb;
  padding: 3px 6px;
  border-radius: 5px;
}
@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
@media (min-width: 1550px) {
  .content {
    padding: 35px 45px;
  }
  .topbar {
    padding: 0 45px;
  }
  .main-grid {
    grid-template-columns: minmax(0, 1fr) 335px;
  }
  .kpi {
    padding: 23px;
  }
  .kpi-value {
    font-size: 33px;
  }
  .chart svg {
    height: 254px;
  }
  td {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 1250px) {
  .shell {
    grid-template-columns: 210px minmax(0, 1fr);
  }
  .sidebar {
    padding: 25px 12px 15px;
  }
  .content {
    padding: 25px 23px;
  }
  .topbar {
    padding: 0 23px;
  }
  .kpi {
    padding: 17px;
  }
  .kpi-value {
    font-size: 25px;
  }
  .kpi-bottom {
    font-size: 8px;
  }
  .kpi-spark {
    display: none;
  }
  .main-grid {
    grid-template-columns: minmax(0, 1fr) 265px;
    gap: 16px;
  }
  .attention {
    padding: 18px;
  }
  .global-search {
    width: 175px;
  }
  .product-name {
    max-width: 190px;
  }
  td,
  th {
    padding-left: 13px;
    padding-right: 13px;
  }
  .bottom-grid {
    gap: 16px;
  }
  .experiment-banner {
    padding: 18px;
  }
  .orbit-art {
    width: 50px;
    height: 50px;
  }
  .login-intro h1 {
    font-size: 43px;
  }
}
@media (max-width: 1050px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .attention {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .attention-title {
    grid-column: 1/-1;
    margin-bottom: 0;
  }
  .attention-item {
    padding: 0 !important;
    border: 0;
  }
  .attention-bottom {
    grid-column: 1/-1;
    padding-top: 10px;
    margin: 0;
  }
  .topbar-actions .global-search {
    display: none;
  }
  .kpi-grid {
    gap: 10px;
  }
  .kpi-value {
    font-size: 22px;
  }
  .kpi-icon {
    width: 23px;
    height: 23px;
  }
  .kpi-top {
    font-size: 10px;
  }
  .kpi-bottom {
    white-space: normal;
    line-height: 1.6;
  }
  .bottom-grid {
    grid-template-columns: 1fr;
  }
  .experiment-banner p {
    max-width: 100%;
  }
  .chart svg {
    height: 245px;
  }
  .login-form-area {
    padding: 45px;
  }
  .login-intro h1 {
    font-size: 38px;
  }
  .login-visual {
    padding: 38px 10%;
  }
  .experiment-stats {
    gap: 12px;
  }
  .experiment-stats strong {
    font-size: 15px;
  }
}
@media (max-width: 760px) {
  .shell {
    display: block;
  }
  .sidebar {
    position: fixed;
    width: 236px;
    left: -250px;
    transition: left 0.2s;
    box-shadow: 20px 0 60px #17152a20;
  }
  .sidebar.open {
    left: 0;
  }
  .sidebar.open:after {
    content: "";
    position: fixed;
    inset: 0 0 0 236px;
    background: #211b392b;
    z-index: -1;
  }
  .mobile-menu {
    display: grid;
  }
  .topbar {
    height: 60px;
    padding: 0 18px;
    gap: 12px;
  }
  .breadcrumb {
    font-size: 10px;
    gap: 8px;
    flex: 1;
  }
  .breadcrumb > span:first-child {
    display: none;
  }
  .breadcrumb .icon {
    display: none;
  }
  .topbar-actions {
    gap: 12px;
  }
  .topbar-actions .divider,
  .connection-indicator {
    display: none;
  }
  .content {
    padding: 23px 16px;
  }
  .page-header {
    flex-wrap: wrap;
    gap: 17px;
    margin-bottom: 19px;
  }
  h1 {
    font-size: 24px;
  }
  .page-header p {
    font-size: 11px;
  }
  .header-buttons {
    width: 100%;
    justify-content: space-between;
  }
  .header-buttons .btn {
    font-size: 11px;
  }
  .demo-strip {
    font-size: 9px;
    line-height: 1.5;
    padding: 9px 10px;
  }
  .demo-strip button {
    font-size: 9px;
  }
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }
  .kpi {
    padding: 15px;
  }
  .kpi-top {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .kpi-value {
    font-size: 25px;
  }
  .kpi-bottom {
    font-size: 8px;
    margin-top: 12px;
  }
  .kpi-value small {
    font-size: 16px;
  }
  .card-header {
    padding: 18px 17px 0;
  }
  .card-header h2 {
    font-size: 14px;
  }
  .segmented button {
    padding: 5px 8px;
    font-size: 9px;
  }
  .chart-legend {
    padding-left: 17px;
    font-size: 9px;
  }
  .chart {
    padding-left: 5px;
    padding-right: 9px;
  }
  .chart svg {
    height: 210px;
  }
  .chart-summary {
    padding: 12px 17px;
    font-size: 9px;
  }
  .attention {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .attention-title {
    margin-bottom: 3px;
  }
  .attention-item {
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .attention-item h3 {
    font-size: 12px;
  }
  .attention-item p {
    font-size: 11px;
  }
  .attention-bottom {
    display: none;
  }
  .table-toolbar {
    padding: 16px;
    flex-wrap: wrap;
  }
  .table-toolbar h2 {
    font-size: 13px;
  }
  .table-toolbar .input-search input {
    width: 105px;
  }
  .table-actions {
    gap: 8px;
  }
  .table-actions .btn {
    font-size: 10px;
  }
  .table-footer {
    padding: 12px 16px;
    font-size: 9px;
  }
  .table-scroll table {
    min-width: 680px;
  }
  .filters {
    padding: 0 16px 16px;
    overflow-x: auto;
  }
  .filter {
    white-space: nowrap;
  }
  .bottom-grid {
    margin-top: 18px;
  }
  .experiment-banner {
    padding: 18px;
  }
  .health-card {
    padding: 19px;
  }
  .page-footer {
    font-size: 8px;
    line-height: 1.7;
    gap: 14px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .overlay {
    padding: 13px;
  }
  .modal {
    max-height: 95vh;
    border-radius: 14px;
  }
  .modal-header {
    padding: 20px;
  }
  .modal-body {
    padding: 20px;
  }
  .modal-footer {
    padding: 16px 20px;
  }
  .modal-header h2 {
    font-size: 17px;
  }
  .form-grid {
    gap: 12px;
  }
  .experiment-card {
    padding: 18px;
  }
  .experiment-card-top {
    align-items: flex-start;
  }
  .experiment-card-top h3 {
    font-size: 12px;
  }
  .experiment-stats {
    grid-template-columns: 1fr 1fr;
    gap: 19px;
  }
  .experiment-actions .muted {
    width: 100%;
  }
  .audit-list {
    padding: 0 16px;
  }
  .audit-item {
    flex-wrap: wrap;
    gap: 10px;
  }
  .audit-item time {
    width: 100%;
    padding-left: 42px;
  }
  .audit-body h3 {
    font-size: 11px;
  }
  .store-head {
    gap: 11px;
  }
  .store-head h3 {
    font-size: 13px;
  }
  .store-head .status-pill {
    font-size: 8px;
  }
  .login-page {
    display: block;
  }
  .login-visual {
    padding: 26px 25px;
  }
  .login-intro {
    padding: 35px 0 12px;
  }
  .login-intro h1 {
    font-size: 37px;
  }
  .login-intro p {
    font-size: 12px;
    margin-top: 17px;
  }
  .login-preview,
  .login-visual footer {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .login-form-area {
    padding: 35px 25px 65px;
  }
  .login-form-wrap {
    width: 100%;
    max-width: 390px;
  }
  .login-form-wrap h2 {
    font-size: 25px;
  }
  .login-bottom {
    bottom: 25px;
    font-size: 9px;
  }
  .login-visual .brand {
    font-size: 24px;
  }
  .login-visual .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 32px;
  }
  .toast {
    right: 14px;
    left: 14px;
    bottom: 15px;
    max-width: none;
    font-size: 11px;
  }
  .drawer {
    border-radius: 0;
    width: 100%;
  }
  .topbar .ozon-label {
    font-size: 9px;
  }
  .input-search {
    max-width: 100%;
  }
  .settings-form {
    padding: 20px;
  }
  .chart text {
    font-size: 11px;
  }
  .page-footer > span:first-child {
    max-width: 75%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 760px) {
  .sidebar {
    box-shadow: none;
  }
  .sidebar.open {
    box-shadow: 20px 0 60px #17152a20;
  }
  .card-header .segmented {
    flex-shrink: 0;
  }
  .card-header .segmented button {
    font-size: 9px;
    padding: 5px 6px;
  }
  .card-header > div:first-child {
    min-width: 0;
  }
  .kpi-value {
    font-size: clamp(21px, 6.3vw, 25px);
  }
}
