﻿.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    /* Size of magnifier glass */
    width: 150px;
    height: 150px;
    /* Optional: add a subtle shadow */
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    /* Hide overflow for clean edges */
    overflow: hidden;
    /* Make sure it’s above the image */
    z-index: 10;
    transition: opacity 0.3s ease;
    opacity: 1;
}

    .img-magnifier-glass.hidden {
        opacity: 0;
        pointer-events: none;
    }
