/* Frontend CSS for AF Gallery */
.af-gallery-wrapper {
    position: relative;
    width: 100%;
}

.af-gallery-title {
    margin-bottom: 15px;
    text-align: center;
}

.swiper-container-wrapper {
    position: relative;
    overflow: hidden;
}

.af-gallery-thumbs {
    padding: 10px 0;
}

.af-gallery-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.af-gallery-main .swiper-slide img {
    display: block;
    max-height: 80vh;
    object-fit: contain;
}

.af-gallery-thumbs .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .af-gallery-thumbs {
        padding: 0 30px;
    }
    
    .af-gallery-main .swiper-button-next,
    .af-gallery-main .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .af-gallery-thumbs {
        padding: 0 25px;
    }
    
    .af-gallery-thumbs .thumb-prev,
    .af-gallery-thumbs .thumb-next {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}