.barraBusca {
  display: none;
}

.barraBusca {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 15px;
}

.barBusca ul {
  margin: 0px;
  padding: 0px;
}

.busca-container {
  position: relative;
  width: 100%;
}

.inputBusca {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.inputBusca:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  background: white;
}

.inputBusca::placeholder {
  color: #aaa;
  font-style: italic;
}

.sugestoes-lista {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 12px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sugestoes-lista.active {
  display: block;
}

.sugestao-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sugestao-item:last-child {
  border-bottom: none;
}

.sugestao-item:hover {
  background: #f0f2ff;
}

.sugestao-item .nome {
  font-weight: 500;
  color: #333;
}

.sugestao-item .preco {
  color: #667eea;
  font-weight: 600;
}

.sugestao-item .categoria {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.loading {
  text-align: center;
  padding: 15px;
  color: #888;
}

.sem-resultados {
  text-align: center;
  padding: 15px;
  color: #888;
  font-style: italic;
}

.info-ajax {
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.info-ajax code {
  background: #e9ecef;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}
