.tne-product-gallery,
.tne-product-gallery *{
    box-sizing:border-box;
}
.tne-product-gallery{
    width:100%;
    --tne-gallery-arrow-edge: 0px;
}
.tne-product-gallery__main{
    position:relative;
    width:100%;
    min-height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid #eef2f6;
    border-radius:18px;
    overflow:hidden;
    cursor:zoom-in;
    transition:box-shadow .25s ease,border-color .25s ease,transform .25s ease;
}
.tne-product-gallery__main-img{
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
    user-select:none;
    -webkit-user-drag:none;
}
.tne-product-gallery__zoom{
    position:absolute;
    left:24px;
    bottom:24px;
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#28c6cf;
    box-shadow:0 10px 28px rgba(20,39,60,.12);
    opacity:.92;
    transform:translateY(0);
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
}
.tne-product-gallery__main:hover .tne-product-gallery__zoom{
    opacity:1;
    transform:translateY(-2px) scale(1.03);
}
.tne-product-gallery__thumbs-wrap{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    width:100%;
}
.tne-product-gallery__thumbs-viewport{
    flex:1;
    min-width:0;
    overflow:hidden;
}
.tne-product-gallery__thumbs-track{
    display:flex;
    align-items:center;
    gap:18px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:2px 2px 8px;
}
.tne-product-gallery__thumbs-track::-webkit-scrollbar{
    display:none;
}
.tne-product-gallery__thumb{
    flex:0 0 170px;
    width:170px;
    height:110px;
    border:1px solid #eef2f6;
    border-radius:14px;
    background:#fff;
    padding:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:pointer;
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.tne-product-gallery__thumb:hover,
.tne-product-gallery__thumb.is-active{
    border-color:#8de9ee;
    box-shadow:0 10px 24px rgba(26,188,198,.12);
}
.tne-product-gallery__thumb.is-active{
    transform:translateY(-1px);
}
.tne-product-gallery__thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
    pointer-events:none;
    user-select:none;
    -webkit-user-drag:none;
}
.tne-product-gallery__arrow{
    flex:0 0 auto;
    width:42px;
    height:42px;
    border:1px solid #eef2f6;
    border-radius:50%;
    background:#fff;
    color:#0f172a;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    padding:0;
    box-shadow:0 8px 20px rgba(15,23,42,.06);
    transition:background .2s ease,color .2s ease,box-shadow .2s ease,opacity .2s ease;
}
.tne-product-gallery__arrow:hover{
    box-shadow:0 12px 28px rgba(15,23,42,.12);
}
.tne-product-gallery__arrow.is-hidden{
    display:none;
}
.tne-product-gallery__lightbox{
    position:fixed;
    inset:0;
    z-index:999999;
    background:rgba(10,15,25,.84);
    display:none;
    align-items:center;
    justify-content:center;
    padding:32px;
    opacity:0;
    transition:opacity .2s ease;
}
.tne-product-gallery__lightbox.is-open{
    display:flex;
    opacity:1;
}
.tne-product-gallery__lightbox-img{
    max-width:min(1100px,92vw);
    max-height:88vh;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
    background:#fff;
    border-radius:14px;
    padding:14px;
    box-shadow:0 22px 70px rgba(0,0,0,.35);
}
.tne-product-gallery__lightbox-close{
    position:absolute;
    top:18px;
    left:22px;
    width:46px;
    height:46px;
    border:0;
    border-radius:50%;
    background:#fff;
    color:#111827;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 34px rgba(0,0,0,.24);
}
.tne-product-gallery .tne-product-single-placeholder{
    display:block;
    padding:16px;
    border:1px dashed #cbd5e1;
    border-radius:12px;
    color:#64748b;
    background:#fff;
}
@media (max-width: 767px){
    .tne-product-gallery__thumbs-wrap{
        gap:8px;
    }
    .tne-product-gallery__arrow{
        width:34px;
        height:34px;
    }
    .tne-product-gallery__zoom{
        width:40px;
        height:40px;
        left:14px;
        bottom:14px;
    }
    .tne-product-gallery__lightbox{
        padding:16px;
    }
}
