.amovivre-sales-popup {
    position: fixed;
    left: 20px;
    right: auto;
    bottom: 90px;
    max-width: 320px;
    background: #1e1d1b;
    color: #f6f1e7;
    padding: 16px 42px 16px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.amovivre-sales-popup__text {
    margin: 0;
    text-align: right;
}

.amovivre-sales-popup.is-fadein {
    opacity: 1;
    transform: translateY(0);
}

.amovivre-sales-popup.is-fadeout {
    opacity: 0;
    transform: translateY(10px);
}

.amovivre-sales-popup.is-hidden {
    display: none;
}

@media (max-width: 480px) {
    .amovivre-sales-popup {
        left: 12px;
        right: auto;
        max-width: none;
        bottom: 90px;
    }
}
