/* Уведомления на фронте */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: #fff;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    animation: slideIn 0.5s ease-out;
}

.purchase-notification-content {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.purchase-notification img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.purchase-notification p {
    margin: 0;
    font-size: 14px;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Стили для Select2 в админке */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #ddd !important;
    min-height: 36px !important;
}