.custom-lightbox-gallery {
    display: flex;
}

.custom-lightbox-gallery a {
    display: block;
    overflow: hidden;
    transition: transform 0.150s ease-in-out;
}

.custom-lightbox-gallery img {
    display: block;
    transition: transform 0.150s ease-in-out;
}

/* Animacja najechania – zmniejszenie do środka */
.custom-lightbox-gallery a:hover img {
    transform: scale(0.9);
}

.custom-download-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 24px;
    background: #ffa52e;
    color: #000;
    border-radius: 12px;
    text-decoration: none;
    z-index: 99999;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.150s ease-in-out;
}

.custom-download-button:hover {
    background: #e83f4b;
    color: #000;
}