/* ── Storage stats bar ── */
.stats-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 7px 20px;
  background: var(--bg-el);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-3);
  overflow-x: auto;
  scrollbar-width: none;
}
.stats-bar::-webkit-scrollbar { display: none; }
.stats-bar.hidden { display: none; }

.stat-total {
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
}

.stat-sep {
  color: var(--border-h);
}

.stat-cat {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-cat::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
