﻿#order-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #333;
    font-size: 12px;
    display: none;
    z-index: 99999;
    animation: slide-in 0.3s ease-out;
    width: 100%;
    max-width: 264px;
    margin: 20px auto;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px dashed #c29adf;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}
#order-alert .points-card__title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #8a4dbf;
}
#order-alert .points-card__subtitle {
        margin: 0 0 10px;
        font-size: 12px;
        font-weight: 600;
        color: #333;
}
#order-alert .points-card__thanks {
        margin: 0;
        font-size: 12px;
        color: #666;
}
@keyframes slide-in {
    from {
        transform: translateX(150%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
