#sugerenciasBusqueda {
  top: 100%; /* 🟢 Esto hace que se coloque justo debajo del input */
  left: 0;
}

.sugerencia-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.sugerencia-item:hover {
  background-color: #f0f0f0; /* 🔘 Color plomo al pasar */
}

.sugerencia-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 0.75rem;
}

.sugerencia-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sugerencia-precio {
  font-size: 0.85rem;
  color: #555;
  white-space: nowrap;
}




@media (max-width: 576px) {
  .search-form {
    width: 100%;
    margin-top: 0.5rem;
  }

  #sugerenciasBusqueda {
    font-size: 0.9rem;
  }
  }