/* ======================================
   PRODUCT GALLERY
====================================== */

.product-gallery{
    width:100%;
}

.gallery-main{
    position:relative;
    border:1px solid #eee;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.gallery-main img{

    width:100%;
    height:620px;
    object-fit:contain;
    display:block;
    transition:.3s;

}

/* ==========================
   THUMBNAILS
========================== */

.gallery-thumbs{

    display:flex;
    gap:12px;
    margin-top:18px;
    overflow-x:auto;
    scrollbar-width:none;

}

.gallery-thumbs::-webkit-scrollbar{
    display:none;
}

.gallery-thumb{

    width:90px;
    height:90px;

    min-width:90px;

    object-fit:cover;

    border:2px solid #ddd;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    background:#fff;

}

.gallery-thumb:hover{

    border-color:#ff5a5f;

}

.gallery-thumb.active{

    border-color:#ff5a5f;

}


/* ==========================
   ARROWS
========================== */

.gallery-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:42px;

    height:42px;

    border:none;

    background:#fff;

    border-radius:50%;

    box-shadow:0 4px 12px rgba(0,0,0,.15);

    cursor:pointer;

    z-index:20;

    transition:.3s;

}

.gallery-arrow:hover{

    background:#ff5a5f;

    color:#fff;

}

.gallery-arrow.left{

    left:15px;

}

.gallery-arrow.right{

    right:15px;

}

.gallery-arrow i{

    font-size:20px;

}


/* ==========================
   NEW BADGE
========================== */

.flag-new{

    position:absolute;

    top:15px;

    right:15px;

    background:#ff5a5f;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    z-index:20;

}


/* ==========================
   ZOOM
========================== */

.gallery-main a{

    display:block;

}


/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

.gallery-main img{

    height:450px;

}

.gallery-thumb{

    width:75px;

    height:75px;

    min-width:75px;

}

}


@media(max-width:576px){

.gallery-main img{

    height:320px;

}

.gallery-thumb{

    width:60px;

    height:60px;

    min-width:60px;

}

.gallery-arrow{

    width:36px;

    height:36px;

}

.gallery-arrow i{

    font-size:18px;

}

}