.fake-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 16px;
    color: #333;
    display: none;
    z-index: 9999;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fake-popup strong {
    color: #2a7a2a;
}

@media (min-width: 992px) {
    .fake-popup {
        padding: 18px 28px;
        font-size: 18px;
        bottom: 40px;
        left: 40px;
    }
}
