.lemon-kulki {
    position: relative;
}

.lemon-kulki::before,
.lemon-kulki::after {
    content: "";
    position: absolute;
    border-radius: 0;
    background-image: url("/wp-content/themes/lemon/assets/cytryna.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transition: transform 0.05s linear;
    z-index: 2;
}

/* duża kulka — góra, prawa strona */
.lemon-kulki::before {
    width: 110px;
    height: 110px;
    top: -40%;
    right: -5%;
    transform: translateY( var( --lemon-kulki-shift-1, 0px ) ) rotate( var( --lemon-kulki-rotate-1, 0deg ) );
}

/* mała kulka — dół, lewa strona */
.lemon-kulki::after {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 15%;
    transform: translateY( var( --lemon-kulki-shift-2, 0px ) ) rotate( var( --lemon-kulki-rotate-2, 0deg ) );
}

@media ( max-width: 782px ) {
    .lemon-kulki::before {
        width: 80px;
        height: 80px;
    }
    .lemon-kulki::after {
        width: 54px;
        height: 54px;
    }
}