.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.purchase-popup {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    border-left: 6px solid #10b981;
    margin-bottom: 10px;
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 320px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.popup-check {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.popup-name {
    font-weight: 700;
    color: #1a202c;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.popup-action {
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
}

.popup-meta {
    color: #a0aec0;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.popup-meta::before {
    content: '•';
    color: #10b981;
}