/* ── Обёртка ───────────────────────────────────────────────── */

.gladiator-chat-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

/* ── Главная кнопка ─────────────────────────────────────────── */

.gladiator-chat-main {
    width: 80px;
    height: 80px;
    background: #01d019;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(1, 208, 25, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: gcw-pulse 2.4s ease-in-out infinite;
    position: relative;
}

/* Пульс-кольцо */
.gladiator-chat-main::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(1, 208, 25, 0.25);
    animation: gcw-ring 2.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gcw-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.10); }
}

@keyframes gcw-ring {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.22); opacity: 0; }
}

/* Когда виджет открыт — убираем пульс */
.gladiator-chat-widget.active .gladiator-chat-main {
    animation: none;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.gladiator-chat-widget.active .gladiator-chat-main::before {
    display: none;
}

.gladiator-chat-main:hover {
    transform: scale(1.08);
}

/* Иконки внутри главной кнопки */
.gladiator-chat-main .gcw-icon-chat,
.gladiator-chat-main .gcw-icon-close {
    width: 38px;
    height: 38px;
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: absolute;
}

.gladiator-chat-main .gcw-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.gladiator-chat-widget.active .gladiator-chat-main .gcw-icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.gladiator-chat-widget.active .gladiator-chat-main .gcw-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ── Список иконок ──────────────────────────────────────────── */

.gladiator-chat-items {
    position: absolute;
    right: 0;
    bottom: 92px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gladiator-chat-widget.active .gladiator-chat-items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ── Единый размер каждой иконки ───────────────────────────── */

.gladiator-chat-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.gladiator-chat-item:hover {
    transform: scale(1.10);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* Все SVG внутри иконок — одинаковый размер */
.gladiator-chat-item svg {
    width: 60px;
    height: 60px;
    display: block;
    flex-shrink: 0;
}

/* Телефон — фон отдельный, иконка меньше */
.gladiator-chat-item.phone {
    background: #27ae60;
}

.gladiator-chat-item.phone svg {
    width: 28px;
    height: 28px;
}

/* VK и MAX — фон встроен в SVG */
.gladiator-chat-item.vk,
.gladiator-chat-item.max {
    background: transparent;
    padding: 0;
}

/* ── Мобильные ──────────────────────────────────────────────── */

@media (max-width: 767px) {
    .gladiator-chat-widget {
        right: 16px;
        bottom: 16px;
    }

    .gladiator-chat-main {
        width: 74px;
        height: 74px;
    }

    .gladiator-chat-item {
        width: 52px;
        height: 52px;
    }

    .gladiator-chat-item svg {
        width: 52px;
        height: 52px;
    }

    .gladiator-chat-item.phone svg {
        width: 24px;
        height: 24px;
    }

    .gladiator-chat-items {
        bottom: 84px;
    }
}
