/* =========================================================
   Infinite scroll: loader / sentinel / pagination
========================================================= */

.esf-products-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 18px 0 8px;
  color: #2f3d57;
  font-weight: 600;
}

.esf-products-loader.is-active {
  display: flex;
}

.esf-products-loader.is-complete {
  display: none;
}

.esf-products-loader.is-error {
  display: flex;
  color: #8a2d2d;
}

.esf-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(85, 47, 218, 0.25);
  border-top-color: #552fda;
  border-radius: 50%;
  animation: esf-spin 0.8s linear infinite;
}

.esf-infinite-scroll-sentinel {
  width: 100%;
  height: 1px;
}

@keyframes esf-spin {
  to {
    transform: rotate(360deg);
  }
}

.esf-infinite-scroll-debug {
  outline: 1px dashed rgba(43,110,242,0.15);
}

/* Скрити стандартни пагинации (достъпност: markup остава) */
.pagination,
.nav-links,
.page-numbers,
.woocommerce-pagination,
.pagination-wrap,
.load-more,
.nav-previous,
.nav-next {
  display: none !important;
}

.esf-infinite-spinner {
  font-size: 0.95rem;
  color: var(--esf-muted,#666);
  padding: 12px;
}
