/* JeusPended Slider — v1.0.1 */

.jps-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jps-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Slide base ── */
.jps-slide {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #c0c8d0;
  text-decoration: none;
  display: block;
  transition-property: width, height, transform, opacity, box-shadow;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: var(--jps-speed, 550ms);
  will-change: transform, width, height, opacity;
}

.jps-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* States — base values, JS overrides inline width/height/transform */
.jps-slide.active {
  z-index: 5;
  opacity: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.jps-slide.prev,
.jps-slide.next {
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.jps-slide.hidden-left,
.jps-slide.hidden-right {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* ── Navigation Arrows ── */
.jps-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1c2541;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 37, 65, 0.4);
  padding: 0;
  line-height: 1;
}

.jps-nav:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(28, 37, 65, 0.5);
}

.jps-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.jps-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #d4a843;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jps-prev {
  left: calc(50% - 30%);
}

.jps-next {
  right: calc(50% - 30%);
}

/* ── Dots ── */
.jps-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.jps-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #b0bec5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.jps-dot.active {
  transform: scale(1.3);
}
