/* =========================================================
   ENZA SHOP GALLERY
========================================================= */

.enza-gallery{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: inherit;

    /* فضای مخصوص نقطه‌ها */
    padding-bottom: 28px;
}

.enza-gallery .swiper-wrapper{
    display: flex;
}

.enza-gallery .swiper-slide{
    flex-shrink: 0;
    width: 100%;
}

.enza-gallery .swiper-slide img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}



/* =========================================================
   PAGINATION
========================================================= */

.enza-gallery .swiper-pagination{

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0 !important;

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;

    z-index: 20;

}

.enza-gallery .swiper-pagination-bullet{

    width: 8px;
    height: 8px;

    margin: 0 !important;

    border-radius: 50%;

    background: rgba(255,255,255,.75);

    opacity: 1;

    transition: all .25s ease;

    cursor: pointer;

}

.enza-gallery .swiper-pagination-bullet-active{

    background: #000;

    transform: scale(1.2);

}



/* =========================================================
   PRODUCT LINK
========================================================= */

.thumbnail-wrapper{

    position: relative;

}

.enza-product-link{

    position: absolute;

    inset: 0;

    z-index: 5;

}



/* =========================================================
   DESKTOP
========================================================= */

@media (hover:hover){

    .enza-gallery{

        cursor: grab;

    }

    .enza-gallery:active{

        cursor: grabbing;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width:767px){

    .enza-gallery{

        padding-bottom:24px;

    }

    .enza-gallery .swiper-pagination{

        bottom:0 !important;

    }

    .enza-gallery .swiper-pagination-bullet{

        width:7px;
        height:7px;

    }

}