/* ==========================================================
   VELZA Product Gallery
   ========================================================== */

.vz-product-gallery{
    display:flex;
    gap:24px;
    width:100%;
    align-items:flex-start;
}

/* ==========================================================
   Thumbnails
   ========================================================== */

.vz-gallery-thumbs{
    width:90px;
    height:650px;
    flex-shrink:0;
    overflow:hidden;
}

.vz-gallery-thumbs .swiper-wrapper{
    height:100%;
}

.vz-gallery-thumbs .swiper-slide{
    width:90px;
    height:90px;
    cursor:pointer;
    border:1px solid #e5e5e5;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    transition:.25s;
    box-sizing:border-box;
}

.vz-gallery-thumbs .swiper-slide:hover{
    border-color:#000;
}

.vz-gallery-thumbs .swiper-slide-thumb-active{
    border:2px solid #000;
}

.vz-gallery-thumbs img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ==========================================================
   Video Thumbnail
   ========================================================== */

.vz-video-thumb{
    width:100%;
    height:100%;
    position:relative;
}

.vz-play-icon{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(0,0,0,.75);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    pointer-events:none;
}

/* ==========================================================
   Main Gallery
   ========================================================== */

.vz-gallery-main{
    flex:1;
    min-width:0;
    position:relative;
    overflow:hidden;
    border-radius:10px;
    aspect-ratio:4/5;
    background:#fff;
}

.vz-gallery-main .swiper-wrapper{
    height:100%;
}

.vz-gallery-main .swiper-slide{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vz-media-wrapper{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vz-main-image{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.vz-main-video{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    background:#000;
}

/* ==========================================================
   Navigation
   ========================================================== */

.vz-gallery-prev,
.vz-gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
    cursor:pointer;
    z-index:50;
    user-select:none;
}

.vz-gallery-prev{
    left:16px;
}

.vz-gallery-next{
    right:16px;
}

.vz-gallery-prev::before{
    content:"❮";
    font-size:22px;
    color:#000;
}

.vz-gallery-next::before{
    content:"❯";
    font-size:22px;
    color:#000;
}

.vz-gallery-prev::after,
.vz-gallery-next::after{
    display:none !important;
}

/* ==========================================================
   Desktop
   ========================================================== */

@media(min-width:768px){

    .vz-gallery-main{
        max-height:720px;
    }

}

/* ==========================================================
   Mobile
   ========================================================== */

@media(max-width:767px){

    .vz-product-gallery{
        flex-direction:column;
        gap:16px;
    }

    .vz-gallery-main{
        width:100%;
        order:1;
        aspect-ratio:4/5;
    }

    .vz-gallery-thumbs{
        width:100%;
        height:85px;
        order:2;
    }

    .vz-gallery-thumbs .swiper-slide{
        width:70px;
        height:70px;
    }

    .vz-gallery-prev,
    .vz-gallery-next{
        width:38px;
        height:38px;
    }

}