/* Ocultar barra de scroll nativa pero mantener la función táctil */
.is-swipe-container {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.is-swipe-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.is-swipe-item {
  scroll-snap-align: center; /* Alinea los items al centro al soltar el swipe */
  scroll-snap-stop: always;
}

/* Interfaz de navegación inyectada */
.hswipe-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

.ui-swipe-dots {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ui-swipe-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ui-swipe-dots li.is-active {
  background: #4b5563; /* Cámbialo por el color primario de tu tema */
  transform: scale(1.25);
}

.ui-swipe-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: opacity 0.3s ease;
}

.ui-swipe-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}