/* ================================================================
   Image Slider Pro - Frontend Styles
   ================================================================ */

.isp-wrapper {
  position: relative;
  padding-bottom: 3em;
}

.isp-swiper {
  overflow: hidden;
}

/* Navigation buttons */
.isp-btn-prev,
.isp-btn-next {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.4);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.isp-btn-prev::after,
.isp-btn-next::after {
  font-size: 18px !important;
  font-weight: 700;
}

.isp-btn-prev:hover,
.isp-btn-next:hover {
  background: rgba(0, 0, 0, 0.65);
}

/* Pagination */
.isp-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.2s ease;
}

.isp-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* Caption */
.isp-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}

.swiper-slide {
  position: relative;
}

/* ── Full Width Output ── */
.isp-wrapper-full {
  width: 100%;
  max-width: 100% !important;
}

.isp-wrapper-full .isp-swiper {
  border-radius: 0;
}

/* ── Continuous Scroll Mode ── */
.isp-swiper-continuous .swiper-wrapper {
  transition-timing-function: linear !important;
}