/* ===== SWIPER CORE STYLES ===== */
.swiper {
  width: 100vw;
  height: 100dvh;
  box-sizing: border-box;
  background: #111;
  position: relative;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.swiper-slide img {
  width: 100vw;
  height: 100dvh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #000;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  touch-action: pinch-zoom;
}

.swiper-scrollbar {
  background: rgba(255, 255, 255, 0.15);
  height: 10px !important;
  border-radius: 8px;
}

.swiper-scrollbar-drag {
  background: #00ff99 !important;
  border-radius: 8px;
  height: 10px !important;
  box-shadow: 0 0 6px #00ff99, 0 0 2px #fff;
  opacity: 1 !important;
}

/* ===== NAVIGATION BUTTONS ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  opacity: 0.6;
  --swiper-navigation-color: #fff;
  font-weight: bold;
  font-size: 2em;
  text-shadow: 0 0 4px #000;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000 !important;
  transition: opacity 0.2s, background 0.2s, box-shadow 0.2s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #fff !important;
  font-weight: bold;
  font-size: 1em;
  text-shadow: 0 0 4px #000;
  -webkit-text-stroke: 1.5px #fff;
  stroke: 1.5px #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: none;
  box-shadow: none;
}

.slide-image {
  max-width: 100vw;
  max-height: 100dvh;
  display: block;
  margin: auto;
}

/* ===== ZOOM & SWIPER ENHANCEMENTS ===== */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-zoom-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #000;
  -webkit-user-select: none;
  user-select: none;
}

.swiper-slide-zoomed .swiper-zoom-container {
  cursor: move;
}

.swiper-wrapper {
  display: flex;
}

.fullscreen-playback-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 4rem;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  pointer-events: none;
}

.fullscreen-playback-indicator.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== SWIPER PAGINATION ===== */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #fff;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.4);
  opacity: 1;
  margin: 0 6px;
  transition: background 0.2s, border-color 0.2s;
}

.swiper-pagination-bullet-active {
  background: rgba(250, 73, 19, 0.75);
  border-color: #fff;
  box-shadow: 0 0 8px 3px #fa4913cc, 0 0 4px 2px rgba(0, 0, 0, 0.4);
}

.swiper-pagination {
  position: relative;
  padding: 6px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.18);
  bottom: 25px !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 480px) {
  .swiper-pagination {
    display: none !important;
  }
}