#piet-footer-popup {
    position: fixed;
    bottom: -260px; /* start buiten beeld */
    right: 20px;
    z-index: 9999;
    width: 220px;
    pointer-events: none; /* zodat hij niets blokkeert behalve zijn eigen content */
    transition: bottom 0.6s ease-out;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#piet-footer-popup.show {
    bottom: 0; /* schuift in beeld */
}

#piet-footer-popup .piet-inner {
    position: relative;
    pointer-events: auto; /* hier wél klikbaar */
}

#piet-footer-popup .piet-image {
    display: block;
    width: 500px;
    margin: 0 auto;
}

#piet-footer-popup .piet-tekstballon {
    position: absolute;
    left: -10px;
    top: -70px;
    max-width: 180px;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    font-size: 14px;
}

#piet-footer-popup .piet-tekstballon:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

#piet-footer-popup .piet-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: none;
    background: #333;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}