/* Magnifier */

.magnifier-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid white;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.magnifier-container img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    touch-action: none;
}

.magnifier-glass {
    position: absolute;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: none;
    display: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7), 
                0 0 0 10000px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 10;
    background-repeat: no-repeat;
    background-color:lightgrey;
}
