/* ── Cliente dropdown busca ── */
.cliente-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--brand);
  border-top: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  max-height: 220px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,120,150,.12);
}
.cliente-dropdown-item {
  padding: 9px 14px;
  font-size: .88rem;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--warm2);
}
.cliente-dropdown-item:last-child { border-bottom: none; }
.cliente-dropdown-item:hover { background: var(--brand-ll); color: var(--brand-d); }
.cliente-dropdown-item.vazio { color: var(--text3); font-style: italic; cursor: default; }
