/* Стили для иконки AI на кнопке консультанта */

.ai-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.3);
    position: relative;
    animation: ai-pulse 2s infinite;
}

@keyframes ai-pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(30, 41, 59, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(30, 41, 59, 0.5);
    }
}

/* Hover эффект */
.btn-ai-chat:hover .ai-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(30, 41, 59, 0.5);
}

/* Для светлой кнопки делаем контрастнее */
.btn-secondary .ai-icon {
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .ai-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* Альтернативный стиль с точками (имитация AI активности) */
.ai-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    bottom: -2px;
    right: -2px;
    animation: ai-active 1.5s infinite;
}

@keyframes ai-active {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Добавляем эффект свечения для AI иконки */
.ai-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 8px;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
    animation: ai-glow 2s infinite;
}

@keyframes ai-glow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}