.rfc-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 360px;
    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;
    min-height: 80px;
}

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

.rfc-mascotte {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 60px;
    height: auto;
    max-height: calc(100% - 20px);
    object-fit: contain;
}

.rfc-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 4px;
}

.rfc-close:hover {
    color: #d81b60;
}

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

/* Responsive pour mobile */
@media (max-width: 480px) {
    .rfc-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 50px 10px 12px 10px;
        min-height: auto;
    }
    
    .rfc-mascotte {
        left: 50%;
        transform: translateX(-50%)!important;
        top: 10%;
        bottom: auto;
        width: 50px;
        max-height: 50px;
    }
    
    .rfc-content {
        text-align: center;
    }
    
    .rfc-close {
        top: 6px;
        right: 10px;
    }
}

@media (max-width: 360px) {
    .rfc-popup {
        font-size: 13px;
        padding: 45px 8px 10px 8px;
    }
    
    .rfc-mascotte {
        width: 45px;
        max-height: 45px;
        top: -25px;
    }
}