/* ==========================================================
   PRODUCT GALLERY
========================================================== */

.product-gallery{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.product-gallery-main{

    background:#fff;

    border-radius:24px;

    padding:30px;

    border:1px solid #E8ECE6;

}

.product-gallery-main img{

    width:100%;

    display:block;

    object-fit:contain;

}

.product-gallery-thumbnails{

    display:flex;

    gap:14px;

}

.gallery-thumb{

    border:none;

    background:#fff;

    border-radius:14px;

    overflow:hidden;

    cursor:pointer;

    border:1px solid #E7ECE4;

    width:90px;

    height:90px;

    padding:0;

}

.gallery-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

}