/* Стили для красивых алертов OpenCart */
.alert-anyshopai {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease-out;
    font-size: 14px;
    line-height: 1.5;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-anyshopai.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
}

.alert-anyshopai.alert-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
}

.alert-anyshopai.alert-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
}

.alert-anyshopai.alert-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
}

.alert-anyshopai i {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-anyshopai .alert-message {
    flex: 1;
}

.alert-anyshopai .alert-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
}

.alert-anyshopai .alert-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Стандартные алерты OpenCart тоже стилизуем */
.alert-dismissible {
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.alert-danger {
    background-color: #ef4444;
    color: white;
    border-color: #ef4444;
}

.alert-warning {
    background-color: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.alert-info {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

