.product-gallery{
    max-width:100%;
    position:relative;
}

.main-slider .item img{
    width:100%;
    border-radius:10px;
    display:block;
}

.thumb-slider{
    display:flex;
    gap:10px;
    margin-top:15px;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
    padding-bottom:5px;
}

.thumb-slider::-webkit-scrollbar{
    height:5px;
}

.thumb-slider .thumb{
    width:70px;
    height:70px;
    min-width:70px;
    object-fit:cover;
    border:2px solid #ddd;
    border-radius:5px;
}

.thumb-slider .thumb:hover,
.thumb-slider .thumb.active{
    border-color:#d32f2f;
    transform:scale(1.05);
}

.gallery-nav{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:15px;
}

.gallery-nav button{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#d32f2f;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.gallery-nav button:hover{
    transform:translateY(-2px);
}

.gallery-nav i{
    font-size:16px;
}

