﻿#main-img {
    position: relative;
    overflow: hidden;
}

#main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#zoom-result {
    position: absolute;
    top: 0;
    left: -16vw; /* نمایش در سمت چپ تصویر اصلی */
    width: 15vw;
    height: 15vw;
    border: 0.2vw solid #ccc;
    background-repeat: no-repeat;
    background-size: 300%; /* بزرگ‌نمایی 3 برابر */
    display: none;
    border-radius: 1vw;
    overflow: hidden;
    z-index: 999;
    pointer-events: none;
}
