:root {
  --bg: #f8f3ea;
  --panel: #ffffff;
  --panel-2: #fff9f0;
  --line: #eadfce;
  --ink: #171717;
  --muted: #8b8476;
  --dim: #ada290;
  --blue: #1b8dff;
  --green: #16b56f;
  --violet: #8f6bff;
  --orange: #ff914d;
  --red: #df5a52;
  --gold: #ffb43c;
  --teal: #20c1b5;
  --radius: 8px;
  --shadow: 0 14px 30px rgba(56, 41, 17, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
    radial-gradient(circle at 15% 8%, rgba(242, 219, 184, 0.58), transparent 24%),
    var(--bg);
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  line-height: 1.34;
}

button, input, select { font: inherit; }
button { color: inherit; }

.appbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #232323;
  color: #fff7e8;
  font-weight: 900;
}

h1, h2, h3, h4, p {
  margin: 0;
  line-height: 1.18;
}

h1, h2 {
  font-family: "Songti SC", "Noto Serif CJK SC", serif;
  letter-spacing: 0;
}

h1 { font-size: 18px; }
h2 { font-size: 32px; }
h3 { font-size: 16px; }
h4 { font-size: 13px; }

.brand p,
.eyebrow,
.stamp,
.control-label,
.muted,
.bar-value,
.legend-row,
.overview-label,
.overview-value,
.metric-sub {
  color: var(--muted);
}

.brand p {
  margin-top: 2px;
  font-size: 12px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
}

.icon-btn.primary {
  background: #edf8f6;
  border-color: #c8ece5;
  color: #146d68;
}

.icon-btn.danger {
  color: #9c463e;
}

.icon-btn svg,
.tab svg { width: 16px; height: 16px; flex: 0 0 auto; }

.tabs {
  position: static;
  z-index: 1;
  width: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::before {
  display: none;
}

.tabs::after {
  display: none;
}

.tab {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #ece1cd;
  border-radius: 999px;
  background: transparent;
  color: #323232;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}

.tab.active {
  background: #252525;
  color: #fff;
  border-color: #252525;
}

.tab:hover {
  background: #fff6e8;
}

main {
  width: min(1540px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 10px 22px 54px;
}

.page { display: none; }
.page.active { display: block; }

.page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.eyebrow {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.metric-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 9px;
}

.metric-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.metric-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.metric-card,
.center-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.metric-card {
  position: relative;
  min-height: 98px;
  padding: 10px 13px;
  overflow: hidden;
  background: var(--tint, #fff);
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent, var(--blue));
}

.metric-label {
  color: #4b4b4b;
  font-size: 12px;
  font-weight: 800;
}

.metric-value {
  margin-top: 4px;
  font-family: "Avenir Next Condensed", "PingFang SC", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.metric-sub {
  margin-top: 4px;
  font-size: 12px;
}

.panel {
  margin-bottom: 9px;
  padding: 10px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.center-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.center-card {
  padding: 10px;
  background: linear-gradient(180deg, #fff, #fbf8f1);
}

.center-card h4 {
  margin-bottom: 6px;
  font-size: 13px;
}

.center-stats {
  display: grid;
  gap: 4px;
}

.stat-line,
.mini-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bar-chart {
  display: grid;
  gap: 5px;
  overflow: hidden;
}

.bar-row {
  display: grid;
  grid-template-columns: 96px 1fr 86px;
  gap: 8px;
  align-items: center;
}

.bar-name {
  color: #333;
  white-space: nowrap;
}

.bar-track {
  height: 18px;
  border-radius: 4px;
  background: #f0e6d7;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
}

.bar-value {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.overview-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: end;
}

.overview-column {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 142px auto;
  gap: 4px;
  min-height: 188px;
  text-align: center;
}

.overview-value {
  font-size: 12px;
  font-weight: 700;
}

.overview-track {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 142px;
  background: linear-gradient(180deg, rgba(42,163,157,0.16), rgba(42,163,157,0.04));
  border-radius: 8px 8px 0 0;
  padding: 0 6px;
}

.overview-track span {
  width: 72%;
  min-height: 18px;
  border-radius: 8px 8px 0 0;
}

.overview-label {
  font-size: 12px;
  line-height: 1.1;
}

.segmented,
.choice-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.segmented button,
.choice-row button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: #57524b;
  cursor: pointer;
}

.segmented button,
.choice-row button {
  padding: 6px 12px;
}

.choice-row.compact button { min-width: 84px; }

.segmented button.active,
.choice-row button.active {
  background: #232323;
  color: #fff;
  border-color: #232323;
}

.controls-panel {
  display: grid;
  gap: 8px;
}

.control-label {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
}

select,
input[type="search"] {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.matrix-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid #efe5d7;
  border-radius: 8px;
  background: #fff;
}

.matrix-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 7px;
}

.matrix-title-row {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.matrix-title-row .eyebrow {
  flex: 0 0 100%;
  margin-bottom: -6px;
}

.matrix-legend {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: #6b6255;
  font-size: 12px;
}

.matrix-legend strong {
  color: #2c2721;
}

.matrix-swatch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.matrix-swatch i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.matrix-metric {
  justify-content: flex-start;
  align-items: center;
}

table.matrix,
table.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
  table-layout: fixed;
}

.matrix th,
.matrix td,
.data-table th,
.data-table td {
  border-right: 1px solid #f1e8da;
  border-bottom: 1px solid #f1e8da;
}

.matrix th,
.data-table th {
  background: #f8f3eb;
  color: #534c41;
  font-weight: 800;
}

.matrix th:first-child,
.matrix td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
}

.matrix th {
  min-width: 52px;
  padding: 4px 3px;
  text-align: center;
}

.matrix th:first-child {
  min-width: 104px;
  text-align: left;
}

.matrix td {
  min-width: 52px;
  height: 24px;
  padding: 3px 3px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}

.matrix td:first-child {
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.vlabel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
  overflow: hidden;
  max-height: 120px;
}

.matrix .nowrap-head {
  display: inline-block;
  max-width: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 9px;
}

.page#product .panel,
.page#region .panel,
.page#store .panel {
  padding: 10px;
}

.page#product .panel,
.page#store .panel {
  margin-bottom: 9px;
}

.page#product .split-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 10px;
}

.page#product .metric-card {
  min-height: 96px;
}

.page#product .metric-grid {
  gap: 10px;
}

.page#product #productButtons {
  flex-wrap: wrap;
  overflow: hidden;
  padding-bottom: 0;
}

.page#product #productButtons button {
  flex: 0 0 auto;
  min-width: 72px;
}

.page#product .rank-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page#product .rank-card {
  padding: 8px 10px;
}

.page#product .rank-head {
  grid-template-columns: 24px minmax(0, 1fr) max-content;
  margin-bottom: 6px;
}

.page#product .rank-head strong {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.page#product .rank-head .bar-value {
  white-space: nowrap;
  min-width: 58px;
  text-align: right;
}

.page#product .rank-no {
  width: 22px;
  height: 22px;
}

.page#product .rank-meter {
  height: 7px;
}

.page#product .effect-board {
  min-height: 168px;
  gap: 6px;
}

.page#product .effect-top {
  padding: 10px 11px;
}

.page#product .effect-top strong {
  font-size: 18px;
}

.page#product .effect-board .mini-line {
  gap: 8px;
}

.page#product .effect-board .mini-line span {
  white-space: nowrap;
}

.page#store .data-table th,
.page#store .data-table td {
  font-size: 11px;
}

.store-product-panel {
  margin-top: 0;
}

.rank-list {
  display: none;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.rank-card {
  padding: 9px;
  border: 1px solid #efe4d2;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbf7f0);
}

.rank-head {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.rank-no {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #232323;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.rank-meter {
  height: 10px;
  border-radius: 999px;
  background: #f0e5d4;
  overflow: hidden;
}

.rank-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2aa39d, #95d772);
}

.effect-board,
.index-board,
.pie-layout,
.insight-grid {
  min-height: 208px;
}

.effect-board {
  display: grid;
  gap: 6px;
}

.effect-top {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e8dcc8;
  background: linear-gradient(180deg, #fff, #fdf8ef);
}

.effect-top strong {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
}

.index-board {
  display: grid;
  gap: 5px;
}

.index-row {
  display: grid;
  grid-template-columns: 126px 1fr 58px;
  gap: 10px;
  align-items: center;
}

.index-track {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: #f0e5d4;
}

.index-track::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 50%;
  width: 1px;
  background: rgba(80,72,60,0.24);
}

.index-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-radius: inherit;
  background: var(--green);
}

.index-fill.under {
  left: auto;
  right: 50%;
  background: var(--red);
}

.pie-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: center;
}

.pie {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid #eadfce;
  background: conic-gradient(#2aa39d 0 100%);
}

.legend {
  display: grid;
  gap: 8px;
}

.legend-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.legend-row {
  display: grid;
  grid-template-columns: 10px 1fr 48px;
  align-items: center;
  gap: 8px;
  color: #5f564a;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

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

.insight {
  min-height: 126px;
  padding: 11px;
  border: 1px solid #e8dcc8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fcf8f0);
}

.insight p {
  color: #70675a;
  line-height: 1.28;
}

.store-controls {
  grid-template-columns: 180px 1fr minmax(240px, 1fr);
  gap: 12px;
}

.store-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.compare-card,
.store-product-card {
  position: relative;
  border: 1px solid #e8dcc8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fcf8f0);
}

.compare-card::before,
.store-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent, var(--blue));
}

.compare-card {
  padding: 10px 11px;
  min-height: 132px;
}

.compare-head,
.store-product-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.compare-head strong,
.store-product-head strong {
  display: block;
  margin-top: 2px;
  font-size: 16px;
}

.compare-tag {
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f4eee3;
  font-size: 11px;
  font-weight: 800;
}

.compare-values,
.store-product-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.compare-values div,
.store-product-values div {
  padding: 7px 8px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #efe4d1;
}

.compare-values span,
.store-product-values span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.compare-values strong,
.store-product-values strong {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.compare-track,
.store-product-track {
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: #f0e5d4;
  overflow: hidden;
}

.compare-track span,
.store-product-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.store-compare-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.store-product-card {
  padding: 9px 10px;
  min-height: 118px;
}

.store-product-head strong {
  max-width: 72%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-product-track {
  margin-top: 7px;
}

.page#store .insight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.table-wrap {
  border: 1px solid #efe5d7;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 6px 8px;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.data-table th:first-child,
.data-table td:first-child,
.data-table th:nth-child(2),
.data-table td:nth-child(2) {
  text-align: left;
}

.data-table tbody tr:hover td {
  background: #faf4e8;
}

.selected-row td {
  background: #f8efe0;
}

.pos { color: #2f8b55; }
.neg { color: #c4574f; }

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

.compact-empty {
  padding: 16px 14px;
  font-size: 12px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: min(420px, calc(100vw - 44px));
  padding: 12px 14px;
  border: 1px solid #e2d2bc;
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .metric-grid.four,
  .metric-grid.two,
  .center-grid,
  .insight-grid,
  .rank-grid,
  .store-compare-grid,
  .page#store .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .pie-layout {
    grid-template-columns: 1fr;
  }

  .matrix-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .appbar {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 240px;
  }

  .tabs {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .appbar {
    position: static;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 10px 0;
    backdrop-filter: none;
  }

  body.mobile-nav-only .appbar {
    position: sticky;
    top: 0;
    z-index: 60;
    padding-top: 6px;
    padding-bottom: 0;
    background: rgba(248, 243, 234, 0.96);
    box-shadow: 0 8px 18px rgba(56, 41, 17, 0.08);
  }

  body.mobile-nav-only .brand,
  body.mobile-nav-only .actions {
    display: none;
  }

  body.mobile-nav-only .tabs {
    position: static;
    padding: 6px 0 8px;
  }

  .brand {
    min-width: 0;
  }

  .actions {
    justify-content: flex-start;
    gap: 6px;
  }

  .actions .icon-btn {
    min-height: 34px;
    padding: 7px 10px;
  }

  .tabs {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 0;
    background: rgba(248, 243, 234, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }

  .tabs::before,
  .tabs::after {
    display: none;
  }

  .tab {
    justify-content: center;
    gap: 4px;
    min-height: 40px;
    padding: 0 6px;
    font-size: 12px;
  }

  .tab svg {
    width: 14px;
    height: 14px;
  }

  main {
    padding: 10px 10px 60px;
  }

  .metric-grid.four,
  .metric-grid.two,
  .metric-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .center-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insight-grid,
  .rank-grid,
  .store-compare-grid,
  .store-controls {
    grid-template-columns: 1fr;
  }

  .page#store .insight-grid,
  .page#region .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page#store #storeCards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page#store #storeCards .metric-card:first-child {
    grid-column: 1 / -1;
  }

  .page#overview .metric-grid.four,
  .page#product .metric-grid.four,
  .page#region .metric-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page#product .rank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .matrix-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  table.matrix {
    width: max-content;
    min-width: 980px;
  }

  .matrix th,
  .matrix td {
    min-width: 70px;
  }

  .matrix th:first-child,
  .matrix td:first-child {
    min-width: 92px;
  }

  .page#overview .overview-label {
    font-size: 11px;
  }

  .overview-columns {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    gap: 4px;
  }

  .overview-column {
    min-height: 144px;
    grid-template-rows: auto 106px auto;
    gap: 3px;
  }

  .overview-track {
    height: 106px;
    padding: 0 4px;
  }

  .insight {
    min-height: 104px;
    padding: 9px;
  }

  .insight h4 {
    font-size: 12px;
  }

  .insight p {
    font-size: 11px;
    line-height: 1.22;
  }

  .page#overview .center-card {
    padding: 8px;
  }

  .page#overview .center-card h4 {
    font-size: 12px;
  }

  .page#overview .center-stats {
    gap: 3px;
  }

  .page#overview .center-stats .stat-line {
    gap: 8px;
    font-size: 11px;
  }

  .metric-card {
    min-height: 88px;
    padding: 9px 10px;
  }

  .metric-value {
    font-size: 28px;
  }

  .page#store .metric-card:first-child {
    min-height: 82px;
  }

  .page#store .metric-card:nth-child(n + 2) .metric-value {
    font-size: 24px;
  }

  .page#store .metric-card:nth-child(n + 2) .metric-sub {
    font-size: 11px;
  }
}
