.wishlist-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background-color: var(--grey);
    border-top: 1px solid grey;
}

@keyframes genieEffectBottom {
    0% {
        transform: scale(1, 1) translateY(0); /* Start met volledige grootte */
        opacity: 1;
    }
    20% {
        transform: scale(1, 1) translateY(-50px); /* Tikje omhoog zonder verandering in breedte */
        opacity: 1;
    }
    100% {
        transform: scale(0.1, 0.9) translateY(110vh); /* Modal wordt smaller en valt naar beneden */
        opacity: 1;
    }
}

.genie-out-bottom {
    animation: genieEffectBottom 1.5s forwards; /* Iets langere duur voor vloeiende beweging */
}


.attention-flash {
    animation: attentionFlash 1s ease-in-out;
}

@keyframes attentionFlash {
    0%, 100% {
        background-color: #d5e7ff;
    }
    50% {
        background-color: #b0c9ff;
    }
}
