/* WRAPPER */
.pgs-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

/* SLIDES */
.pgs-main .swiper-slide {
    width: 70%;
    opacity: 0.4;
    transition: all 0.4s ease;
    cursor: pointer;
}

.pgs-main .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.pgs-main .swiper-slide-prev,
.pgs-main .swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.9);
}

.pgs-main img {
    width: 100%;
    border-radius: 20px;
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* FULLSCREEN LIGHTBOX */
.pgs-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.pgs-lightbox.active {
    display: flex;
}

.pgs-lightbox-inner {
    width: 90%;
    height: 90%;
}

.pgs-lightbox .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CLOSE */
.pgs-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
}
