/* ===========================
   PRELOADER DE BÚSQUEDA
   =========================== */

.search-preloader {
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
  opacity: 1;
  transition: opacity .35s ease;
}

.search-preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.search-preloader__text {
  font-size: 16px;
  font-weight: 500;
  color: #4e4e4e;
  margin-bottom: 12px;
}

/* Barra animada */
.search-preloader__bar {
  width: 140px;
  height: 4px;
  margin: 0 auto;
  background: #dfe6d0;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.search-preloader__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: #a6c63a;
  border-radius: 50px;

  animation: slide-bar 1s linear infinite;
}

@keyframes slide-bar {
  0% { left: -40%; }
  100% { left: 100%; }
}