.rfc-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 320px;
    background: #fff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    padding: 15px 15px 15px 80px;
    font-size: 14px;
    z-index: 9999;
    animation: rfc-pop 0.5s ease-out;
}

.rfc-popup a {
    color: #d81b60;
    font-weight: 600;
    text-decoration: underline;
}

.rfc-mascotte {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 60px;
    height: auto;
}

.rfc-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
}

@keyframes rfc-pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}