/* Responsive Coverflow Swiper */
.swiper {
  width: 100%;
  padding: 40px 0 60px 0;
}

.swiper-slide {
  width: 640px !important;
  height: 640px !important;
}

/* Mobile-first responsive card sizes */
@media (max-width: 480px) {
  .swiper {
    padding: 20px 0 40px 0;
  }
  .swiper-slide {
    width: calc(100vw - 40px) !important;
    max-width: 280px !important;
    height: 480px !important;
  }
}

@media (min-width: 481px) and (max-width: 640px) {
  .swiper {
    padding: 30px 0 50px 0;
  }
  .swiper-slide {
    width: calc(100vw - 60px) !important;
    max-width: 320px !important;
    height: 520px !important;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .swiper-slide {
    width: 380px !important;
    height: 560px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .swiper-slide {
    width: 480px !important;
    height: 600px !important;
  }
}

.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  margin: 0 !important;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 4px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
  }
}

.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Touch-friendly navigation */
@media (max-width: 640px) {
  .custom-prev-btn,
  .custom-next-btn {
    min-height: 44px;
    min-width: 44px;
  }
}
