/* Container für das Bild */
.img-magnifier-container {
    position: relative;
    display: inline-block;
}

/* Das Lupen-Element */
.img-magnifier-glass {
    /* WICHTIG: fixed klinkt die Lupe aus dem Grid aus und klebt sie an die Maus */
    position: fixed; 
    border: 3px solid #000 !important;
    border-radius: 50% !important;
    
    /* Deine gewünschte Größe */
    width: 300px !important;
    height: 300px !important;
    
    cursor: none;
    display: none;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 9999;
}

