/* Minimal, theme-friendly styles for product-card sliders */
.af-pga-swiper,
.af-pga-single {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.af-pga-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Arrows */
.af-pga-swiper .swiper-button-prev,
.af-pga-swiper .swiper-button-next {
  top: 45%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.af-pga-swiper .swiper-button-prev:after,
.af-pga-swiper .swiper-button-next:after {
  font-size: 12px;
  color: #111;
}

/* Show arrows on hover for desktop; always visible on touch */
@media (hover:hover) {
  .af-pga-swiper .swiper-button-prev,
  .af-pga-swiper .swiper-button-next {
    opacity: 0;
    transition: opacity .2s ease;
  }
  .af-pga-swiper:hover .swiper-button-prev,
  .af-pga-swiper:hover .swiper-button-next {
    opacity: 1;
  }
}

/* Pagination dots (mobile) */
.af-pga-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.9);
}
