/* === LCM Infinite Scroll === */

/* Hide classic pagination when JS is active */
.lcm-is-active .products__pagination {
  display: none;
}

/* Page markers not needed in CSS — tracking done by article index */

/* Spinner */
.lcm-is-spinner {
  text-align: center;
  padding: 2rem 1rem;
}
.lcm-is-spinner::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 3px solid #e5e1dc;
  border-top-color: #5a4a3f;
  border-radius: 50%;
  animation: lcm-is-spin 0.6s linear infinite;
}
@keyframes lcm-is-spin {
  to { transform: rotate(360deg); }
}

/* Progress indicator */
.lcm-is-indicator {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(90, 74, 63, 0.85);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.lcm-is-indicator.lcm-is-visible {
  opacity: 1;
}

/* End of catalog */
.lcm-is-end {
  text-align: center;
  padding: 1rem;
  color: #736e6a;
  font-size: 0.85rem;
}
