.product-gallery{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.product-main-image{
    width:100%;
    aspect-ratio:1/1;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
//    background:#fff;
background:transparent;
}

.product-main-image img{
    width:100%;
    height:100%;
  //  object-fit:contain;
object-fit:cover;
    display:block;
    cursor:zoom-in;
}

.product-thumbs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.product-thumb{
    width:80px;
    height:80px;
    border:2px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    cursor:pointer;
    transition:.2s;
}

.product-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-thumb.active{
    border-color:#0a7cff;
}


#nexorun-gallery-preview{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.gallery-item{
    position:relative;
    width:90px;
    height:90px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    border:1px solid #ddd;
    border-radius:6px;
}

.gallery-remove{

    position:absolute;

    top:-8px;

    right:-8px;

    width:22px;

    height:22px;

    border:none;

    border-radius:50%;

    background:#d63638;

    color:#fff;

    cursor:pointer;

    font-size:14px;

    line-height:22px;

    padding:0;

    font-weight:bold;

}

.gallery-remove:hover{

    background:#b32d2e;

}





.gallery-sort-ghost{

    opacity:.4;

    transform:scale(.95);

}












