    /* Main Slider */
.main-slider {
    position: relative;
    width: 100%;
    border-radius: 8px;
}

.main-slide {
    display: none;
    width: 100%;
}

.main-slide.active {
    display: block;
}

.main-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Dot Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 10px;
    position: absolute;
    bottom: -31px;
    z-index: 99;
    left: 45%;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: #555; /* dark dot for active */
    transform: scale(1.2);
}

/* Wishlist icon top-right */
.cat_wish {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.main-slider {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.main-slide img {
    width: 100%;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

@media only screen and (max-width:4000px) and (min-width:1600px){
    .product_details_colmd6 {
        width: 70%;
    }
    .product_dtl_img {
        width: 30%;
    }
}
@media only screen and (max-width:1599px) and (min-width:1400px){
    .product_details_colmd6 {
        width: 63%;
    }
    .product_dtl_img {
        width: 37%;
    }
}