.nav_images [data-bs-target]{
    height: 100px;
    width: 100px;

}
.nav_images{
    position: relative;
    margin-right: 0;
    margin-left: 0;
    justify-content: start;
}
.nav_images img{
    height: 100px;
    width: 100px;
}
#product_des li button{
    font-size: 20px;
    color: black;
    position: relative;
    transition: 0.4s;

}

#product_des li.nav-item button::after{
    content: "";
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: orange;
    transition: 0.4s;
}
#product_des li.nav-item button.active::after{
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: orange;
    
}
#product_des li.nav-item button:hover:after{
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: orange;
}

.custom_zoom {
    position: relative;
    overflow: hidden;
}

.zoomed-image-container {
    position: absolute;
    top: 0;
    left: 100%;
    width: 200%;
    height: 200%;
    overflow: hidden;
    display: none;
}

.zoomed-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.visible {
    display: block;
}