/*
 * Orides Busca — painel de resultados enquanto se digita.
 * Herda as cores do site (--orides-cor-1); sem elas, um azul neutro.
 */

.orides-busca-ancora { position: relative; }

.orides-busca-painel {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  right: 0;
  z-index: 99990;
  max-height: min(70vh, 30rem);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--orides-borda, #e5e7eb);
  border-radius: 14px;
  box-shadow: var(--orides-sombra-alta, 0 14px 34px rgba(17, 24, 39, .14));
  padding: .35rem;
}
.orides-busca-painel[hidden] { display: none; }

.orides-busca-item {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .55rem .6rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
.orides-busca-item:hover,
.orides-busca-ativo { background: var(--orides-cor-clara, #f3f4f6); }

.orides-busca-foto {
  display: flex; align-items: center; justify-content: center;
  width: 3.2rem; height: 3.2rem;
  background: #fff; border-radius: 8px; overflow: hidden;
}
.orides-busca-foto img { width: 100%; height: 100%; object-fit: contain; }

.orides-busca-meio { min-width: 0; }         /* deixa o texto encolher em vez de estourar */
.orides-busca-nome {
  display: block; font-weight: 600; font-size: .92rem; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.orides-busca-sku { display: block; font-size: .74rem; color: #6b7280; margin-top: .12em; }

.orides-busca-preco {
  display: flex; flex-direction: column; align-items: flex-end;
  white-space: nowrap; font-size: .92rem;
}
.orides-busca-preco strong { font-weight: 800; color: var(--orides-cor-1, #2563eb); }
.orides-busca-preco del { font-size: .78rem; color: #9ca3af; font-weight: 400; }

.orides-busca-vazio { margin: 0; padding: 1.1rem .8rem; text-align: center; color: #6b7280; font-size: .9rem; }

.orides-busca-todos {
  display: block; width: 100%; margin-top: .25rem;
  background: none; border: 0; border-top: 1px solid var(--orides-borda, #e5e7eb);
  padding: .75em; cursor: pointer;
  font: inherit; font-size: .86rem; font-weight: 700;
  color: var(--orides-cor-1, #2563eb);
}
.orides-busca-todos:hover { background: var(--orides-cor-clara, #f3f4f6); }

/* enquanto a resposta não chega, uma linha fina corre no topo do painel */
.orides-busca-carregando::before {
  content: "";
  position: sticky; top: 0; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orides-cor-1, #2563eb), transparent);
  background-size: 40% 100%; background-repeat: no-repeat;
  animation: orides-busca-corre 1s linear infinite;
}
@keyframes orides-busca-corre {
  from { background-position: -40% 0; }
  to   { background-position: 140% 0; }
}

@media (max-width: 689px) {
  .orides-busca-painel { max-height: 60vh; }
  .orides-busca-item { grid-template-columns: 2.6rem 1fr auto; gap: .55rem; }
  .orides-busca-foto { width: 2.6rem; height: 2.6rem; }
  .orides-busca-nome { font-size: .86rem; }
}
