/**
 * Notification System Styles
 * Novoshop Theme
 */

.novoshop-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    min-width: 300px;
    max-width: 450px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.novoshop-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notification-message {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* Success Notification */
.notification-success {
    border-right: 4px solid #4caf50;
}

.notification-success .notification-icon {
    background: #e8f5e9;
}

.notification-success .notification-icon::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
    font-size: 16px;
}

/* Error Notification */
.notification-error {
    border-right: 4px solid #f44336;
}

.notification-error .notification-icon {
    background: #ffebee;
}

.notification-error .notification-icon::before {
    content: '✕';
    color: #f44336;
    font-weight: bold;
    font-size: 16px;
}

/* Info Notification */
.notification-info {
    border-right: 4px solid #2196f3;
}

.notification-info .notification-icon {
    background: #e3f2fd;
}

.notification-info .notification-icon::before {
    content: 'ℹ';
    color: #2196f3;
    font-weight: bold;
    font-size: 16px;
}

/* Warning Notification */
.notification-warning {
    border-right: 4px solid #ff9800;
}

.notification-warning .notification-icon {
    background: #fff3e0;
}

.notification-warning .notification-icon::before {
    content: '⚠';
    color: #ff9800;
    font-weight: bold;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .novoshop-notification {
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
    }
    
    .notification-content {
        padding: 15px;
    }
    
    .notification-message {
        font-size: 14px;
    }
}

/* Animation for multiple notifications */
.novoshop-notification:nth-child(n+2) {
    margin-top: 10px;
}

