#img-zoomer-box {
    position: relative;
    margin-top: 10px;
}

#img-1 {
    width: 100%;
    height: auto;
}

#img-zoomer-box:hover, #img-zoomer-box:active {
    cursor: pointer;
    display: block;
}

#img-zoomer-box:hover #img-2, #img-zoomer-box:active #img-2 {
    opacity: 1;
}
#img-2 {
    width: 340px;
    height: 340px;
    box-shadow: 0 5px 10px -2px rgba(0,0,0,0.3);
    pointer-events: none;
    position: absolute;
    opacity: 0;
    border: 4px solid whitesmoke;
    z-index: 99;
    border-radius: 100%;
    display: block;
    transition: opacity .2s;
}
#testata-etichetta {
    margin-top: 20px;
    color: #97835C;
    border-bottom: 1px solid #97835C;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding-bottom: 3px;
}

@media (max-width: 768px) {
    #img-2 {
        display: none !important;
    }
}

@media (hover: none) and (pointer: coarse) {
    #img-2 {
        display: none !important;
    }
}