/* Swiper Custom Styles */
.swiper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

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

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--white);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 6px;
    opacity: 1;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
  }
  
  .swiper-pagination-bullet-active {
    background: #0099ff;
    transform: scale(1.3);
    border-color: #0099ff;
  }
  

/* Thumbnails */
.swiper-thumbs {
    margin-top: 10px;
}

.swiper-thumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* Lazy Loading */
.swiper-lazy-preloader {
    border-color: var(--primary-blue);
    border-top-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
} 