/* ===== Estoque ===== */

.estoque-alerta {
  margin: 0 0 12px;
  padding: 9px 12px;
  border-radius: 9px;
  background: color-mix(in srgb, #f59e0b 15%, transparent);
  color: #f59e0b;
  font-size: 12.5px;
  line-height: 1.4;
}
.estoque-baixo { color: var(--color-danger); font-weight: 600; }
.estoque-ok { color: var(--color-success); font-weight: 600; }

/* etiquetas / inventário */
.etiq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 50vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px;
}
.etiq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 6px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
}
.etiq-row:last-child { border-bottom: none; }
.etiq-qtd {
  width: 80px;
  padding: 5px 7px;
  border-radius: 7px;
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 12.5px;
  text-align: right;
}
