﻿.chatbot-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
}

.chatbot-trigger {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(180deg, #FFB162 0%, #A35139 100%);
    box-shadow: var(--shadow-deep);
    cursor: pointer;
    font-size: 1.35rem;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 340px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-deep);
    overflow: hidden;
    display: none;
}

    .chatbot-panel.show {
        display: block;
    }

.chatbot-header {
    background: linear-gradient(180deg, #1B2632 0%, #2C3B4D 100%);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

    .chatbot-header p {
        margin-top: 4px;
        font-size: .88rem;
        color: rgba(255,255,255,.75);
    }

.chatbot-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-body {
    padding: 18px;
}

.chat-msg.bot {
    background: #F5EFE5;
    border-radius: 18px 18px 18px 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.chat-options {
    display: grid;
    gap: 10px;
}

.chat-option {
    border: 1px solid rgba(24,32,42,.1);
    background: #fff;
    min-height: 46px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

    .chat-option:hover {
        background: #fff8f0;
        border-color: rgba(255,177,98,.4);
    }

@media (max-width: 480px) {
    .chatbot-panel {
        width: min(340px, calc(100vw - 30px));
    }
}
