/* --------------------------------------------------------- */
/* CHATBOT TOGGLER BUTTON
/* --------------------------------------------------------- */
body.beerloyuz-ai-active.beerloyuz-ai-loaded #beerloyuz-ai-chatbot-toggler {
    display: flex;
}

#beerloyuz-ai-chatbot-toggler * {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#beerloyuz-ai-chatbot-toggler {
    position: fixed;
    bottom: 15px;
    right: 15px;
    min-width: fit-content;
    padding: 10px 10px;
    border: none;
    cursor: pointer;
    display: none;
    gap: 7px;
    align-items: center;
    justify-content: center;
    background: var(--beerloyuz-ai-color);
    color: #fff;
    letter-spacing: 0.1px;
    border-radius: 25px;
    transition: background 0.2s ease;
    z-index: 2147483646;
}

#beerloyuz-ai-chatbot-toggler:hover {
    background: var(--beerloyuz-ai-hover-color);
}

#beerloyuz-ai-chatbot-toggler h3 {
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    text-transform: none !important;
    letter-spacing: normal !important;
}

#beerloyuz-ai-chatbot-toggler img {
    color: #fff;
}

/* API Error Placeholder (Admin Only) */
@keyframes beerloyuz-pulse-error {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.beerloyuz-ai-api-error-placeholder {
    padding: 14px 20px !important;
    border-radius: 35px !important;
    gap: 12px !important;
    animation: beerloyuz-pulse-error 1.8s ease infinite !important;
    display: flex !important;
}

.beerloyuz-ai-api-error-placeholder:hover {
    background-color: #dc2626 !important;
    animation-play-state: paused !important;
}

.beerloyuz-ai-api-error-placeholder svg {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
}