/* ═══ BOTTOM STRIP ═══ */
.bottom-strip {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 18px; background:var(--card);
  border-top:1px solid var(--border); flex-shrink:0; height:76px;
  gap: 0;
  overflow: hidden;
  white-space: nowrap;
}

/* ─── Sections ─── */
.bs-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bs-section.hl-sec     { gap: 5px; }
.bs-section.bs-signals { gap: 8px; }
.bs-section.bs-right   { margin-left: auto; gap: 8px; }
.bs-section.ls-bar-wrap { gap: 4px; }

/* ─── Divider ─── */
.bs-divider {
  width: 1px;
  height: 32px;
  background: var(--faint);
  opacity: 0.35;
  flex-shrink: 0;
  margin: 0 8px;
}

/* ─── Items ─── */
.bs-item {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.bs-item-wide { max-width: 200px; overflow: hidden; }

/* ─── Coin name ─── */
.bs-coin-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}
.bs-sym {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  line-height: 1.2;
}
.bs-exch {
  font-size: 9px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* ─── Labels ─── */
.bs-label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── Values ─── */
.bs-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.bs-value.mono { font-family: 'JetBrains Mono', monospace; }

/* ─── Special values ─── */
.chart-price  { font-weight: 700; font-size: 13px; }
.chart-change { font-size: 12px; }
.chart-change.green { color: var(--green); }
.chart-change.red   { color: var(--red); }
.bs-value.green     { color: var(--green); }
.bs-value.red       { color: var(--red); }
.bs-value.dim       { color: var(--dim); }

/* ─── HL track ─── */
.hl-track {
  width: 70px;
  height: 3px;
  background: rgba(90,100,120,0.25);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.hl-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* ─── Long/Short bar ─── */
.ls-track {
  width: 60px;
  height: 3px;
  background: rgba(245,71,91,0.3);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.ls-bar-l {
  height: 100%;
  background: rgba(46,189,133,0.7);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* ─── Fullscreen btn ─── */
.fs-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  color: var(--faint);
  font-size: 14px;
  transition: 0.12s;
  user-select: none;
  flex-shrink: 0;
}
.fs-btn:hover { color: var(--accent); background: var(--input); }

/* ─── Theme button ─── */
.topbar-theme-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  cursor: pointer;
  color: var(--dim);
  border-radius: 6px;
  transition: 0.12s;
  font-size: 12px;
  white-space: nowrap;
}
.topbar-theme-btn:hover { color: var(--text); background: var(--input); }
