/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 17 2026 | 12:58:57 */
/* ============================================
   ВСПЛЫВАЮЩИЕ УВЕДОМЛЕНИЯ О ЗАКАЗАХ
   ============================================ */

.el-sales-notification {
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 999999;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.el-sales-notification.el-notification-show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.el-notification-content {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    border-left: 4px solid #AD681D;
    position: relative;
    overflow: hidden;
}

/* Анимированная полоса сверху */
.el-notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #AD681D 0%, #D4A574 100%);
    animation: progressLine 5s linear;
}

@keyframes progressLine {
    0% { transform: scaleX(1); transform-origin: left; }
    100% { transform: scaleX(0); transform-origin: left; }
}

.el-notification-icon {
    font-size: 28px;
    margin-right: 12px;
    flex-shrink: 0;
}

.el-notification-text {
    flex: 1;
    min-width: 0;
}

.el-notification-title {
    font-size: 13px;
    font-weight: 700;
    color: #AD681D;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.el-notification-message {
    font-size: 14px;
    line-height: 1.5;
    color: #2d3748;
}

.el-notification-message strong {
    color: #1a202c;
    font-weight: 600;
}

.el-notification-time {
    font-size: 12px;
    color: #718096;
    margin-top: 4px;
    display: block;
}

.el-notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 20px;
    color: #a0aec0;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.el-notification-close:hover {
    background: #f7fafc;
    color: #4a5568;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .el-sales-notification {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .el-notification-content {
        max-width: none;
        padding: 14px 16px;
    }
    
    .el-notification-message {
        font-size: 13px;
    }
}