.fic-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}
/* Continuous scroll smoothing */
.fic-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}
.fic-swiper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}
.fic-swiper .swiper-slide a.fic-lightbox-link {
    display: block;
    width: 100%;
    height: 100%;
}
.fic-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
/* Active slide pop effect */
.fic-swiper .swiper-slide-active img {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}


/* Lightbox styles */
#fic-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#fic-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.fic-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}
.fic-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 1;
}
.fic-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.fic-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}
