/* ===== GŁÓWNE ZDJĘCIE ===== */

.fancybox-image {
    cursor: grab;
    touch-action: none;
    user-select: none;
    transition: transform 0.2s ease;
}

.fancybox-image:active {
    cursor: grabbing;
}

/* ===== KONTAINER ===== */

.fancybox-inner {
    overflow: hidden !important;
}

/* ===== IKONA LUPY (CENTRUM) ===== */

.fancybox-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 60px;
    height: 60px;
    
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    z-index: 9999;
    pointer-events: auto;
    cursor: pointer;

    transition: all 0.2s ease;
}

.fancybox-zoom-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.fancybox-zoom-icon svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .fancybox-zoom-icon {
        width: 50px;
        height: 50px;
    }

    .fancybox-zoom-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* ===== OVERLAY ===== */

.fancybox-overlay {
    background: rgba(0, 0, 0, 0.85);
}

/* ===== POPRAWKI ===== */

.fancybox-wrap {
    max-width: 95% !important;
}

.fancybox-inner img {
    max-width: 100% !important;
    height: auto !important;
}