/**
 * Swiper Popup Carousel Styles
 * 
 * Custom styles for Swiper carousels in map popups
 * 
 * @package ReallyDecent
 * @subpackage ContentMap
 */

/* Popup Swiper container */
.rd-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.rd-popup-swiper {
  width: 100%;
  height: 100%;
}

.rd-popup-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-popup-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation buttons - smaller for popup context */
.rd-popup-swiper .swiper-button-prev,
.rd-popup-swiper .swiper-button-next {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #333;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 20px;
  width: 20px;
}
.rd-popup-swiper .swiper-button-prev:hover,
.rd-popup-swiper .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.rd-popup-swiper .swiper-button-prev::after,
.rd-popup-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

.rd-popup-swiper .swiper-button-prev {
  left: 8px;
}

.rd-popup-swiper .swiper-button-next {
  right: 8px;
}

/* Pagination dots */
.rd-popup-swiper .swiper-pagination {
  bottom: 8px !important;
}

.rd-popup-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.rd-popup-swiper .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.rd-popup-swiper .swiper-pagination-bullet-active {
  background-color: white;
  transform: scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .rd-popup-swiper .swiper-button-prev,
  .rd-popup-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
  }

  .rd-popup-swiper .swiper-button-prev::after,
  .rd-popup-swiper .swiper-button-next::after {
    font-size: 12px;
  }

  .rd-popup-swiper .swiper-button-prev {
    left: 4px;
  }

  .rd-popup-swiper .swiper-button-next {
    right: 4px;
  }

  .rd-popup-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
