/* Swiper CSS (minified) */
.swiper-container {
  width: 90%%;
  max-width: 900px;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.swiper-slide-active img {
  transform: scale(1.05);
}
.swiper-pagination-bullet-active {
  background: #FF69B4;
}
