.maps-zoom > div:hover > img {
    transform: scale(2);
}

.zoom-wrap {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    cursor: crosshair;
    background: #1a1a1a;
    flex-shrink: 0;
}

/* Both images stacked; hi-res sits on top once ready */
.zoom-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    pointer-events: none;
    user-select: none;
    display: block;
}

.zoom-wrap .z-lowres  { z-index: 1; transition: 0.3s ease-in, filter 0.3s; }

.zoom-wrap .z-hires   { z-index: 2; opacity: 0; transition: 0.3s ease-in, opacity 0.25s; }
.zoom-wrap.hires-ready .z-hires { opacity: 1; }

/* Loading indicator */
.zoom-wrap .z-loader {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.zoom-wrap.hires-loading .z-loader { opacity: 1; }
.zoom-wrap.hires-ready   .z-loader { opacity: 0; }

.z-loader::after {
    content: '';
    width: 28px; height: 28px;
    border: 2px solid rgba(255,255,255,0.15);
    border-top-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.zo-25-25 {
    transform-origin: 25% 25%;
}
