.ba-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.ba-stat {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 5px 12px;
  text-align: center;
  min-width: 70px;
  box-shadow: var(--shadow-sm);
}
.ba-k { display: block; font-size: 11px; color: var(--muted); }
.ba-stat b { font-size: 18px; color: var(--ink); }

.ba-queue {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  width: min(94vw, 460px);
  margin: 8px auto;
  min-height: 118px;
}
.ba-cust {
  width: 104px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s;
}
.ba-cust:active { transform: scale(0.96); }
.ba-cust.ready { border-color: var(--mint); }
.ba-face { font-size: 26px; line-height: 1.1; }
.ba-order { font-size: 13px; font-weight: 800; color: var(--ink); margin: 2px 0 4px; }
.ba-recipe { font-size: 15px; letter-spacing: 1px; }
.ba-pat {
  height: 7px;
  border-radius: 4px;
  background: #eee3f2;
  margin-top: 6px;
  overflow: hidden;
}
.ba-pat i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--sun));
  transition: width 0.12s linear;
}
.ba-pat.low i { background: linear-gradient(90deg, #ff9f45, #ff5470); }

.ba-cup-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 6px 0;
}
.ba-cup {
  min-width: 190px;
  min-height: 46px;
  border: 2px dashed var(--grape);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 22px;
  padding: 6px 12px;
}
.ba-cup-empty { font-size: 13px; color: var(--muted); }
.ba-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(94vw, 460px);
  margin: 8px auto;
}
.ba-tool {
  border: none;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--line);
  padding: 8px 12px;
  min-width: 74px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.ba-tool span { display: block; font-size: 22px; line-height: 1.2; }
.ba-tool:active { background: var(--surface-2); transform: scale(0.96); }
.ba-best {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}
.ba-book { text-align: left; font-size: 14px; line-height: 1.9; }
