/* ===================================
   Swiper Carousel Custom Styles
   =================================== */
.gallery-swiper {
    width: 100%;
    max-width: 100%;
    padding: 2rem 0 3rem 0;
    margin: 0 auto;
    overflow: visible;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    width: 70% !important;
    max-width: 400px;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.5s ease;
    cursor: pointer;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.9);
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    display: block;
    transition: all 0.3s ease;
}

.swiper-slide-active img {
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.5);
}

/* Pagination Dots */
.swiper-pagination {
    bottom: 0 !important;
    position: relative !important;
    margin-top: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .swiper-slide {
        width: 80% !important;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 85% !important;
    }
}
