#chatbotButton {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 9999;

    background: linear-gradient(145deg, #2b211c, #5a4333);
    color: white;
    font-size: 24px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.28),
        inset 0 1px 2px rgba(255,255,255,0.08);

    transition: 0.25s ease;
}

#chatbotButton:hover {
    transform: translateY(-3px);
}

#chatbotWindow {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 420px;
    height: 650px;
    background: #f6f2ee;
    border-radius: 28px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(120,90,70,0.15);
    display: flex;
    flex-direction: column;
    font-family: "Helvetica Neue", Arial, sans-serif;
}


.chatbot-header {
    background:
        linear-gradient(
            135deg,
            #2b211c,
            #5a4333
        );

    padding: 24px 28px 22px;

    position: relative;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 6px 18px rgba(0,0,0,0.12);
}



.chatbot-header::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;
    top: 12px;
    bottom: 12px;

    border-radius: 18px;

    border:
        1px solid rgba(255,255,255,0.12);

    background:
        linear-gradient(
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.01)
        );

    pointer-events: none;
}



#chatbotHeaderTitle {
    position: relative;
    z-index: 2;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: 1px;

    color: white;

    font-family:
        "Georgia",
        serif;

    margin-bottom: 6px;
}


#chatbotHeaderSub {
    position: relative;
    z-index: 2;

    font-size: 11px;

    letter-spacing: 3px;

    color:
        rgba(255,255,255,0.72);

    text-transform: uppercase;
}

#chatbotMessages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 26px;
    background: #f6f2ee;
}


#chatbotMessages::-webkit-scrollbar {
    width: 5px;
}

#chatbotMessages::-webkit-scrollbar-thumb {
    background: rgba(80,60,45,0.25);
    border-radius: 20px;
}


.bot-message {
    background: white;

    color: #2b211c;

    padding: 16px 18px;

    border-radius: 20px;

    margin-bottom: 18px;

    max-width: 82%;

    line-height: 1.7;

    font-size: 14px;

    box-shadow:
        0 4px 14px rgba(0,0,0,0.06);

    border:
        1px solid rgba(90,67,51,0.08);
}


.user-message {
    margin-left: auto;

    background:
        linear-gradient(
            145deg,
            #2b211c,
            #4e392c
        );

    color: white;

    padding: 14px 18px;

    border-radius: 20px;

    margin-bottom: 18px;

    max-width: 78%;

    line-height: 1.6;

    font-size: 14px;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.12);
}


.chatbot-time {
    text-align: center;

    font-size: 12px;

    color: #9d8c80;

    margin: 18px 0;
}


#chatbotInputArea {
    flex-shrink: 0;
    height: 92px;
    background: white;
    border-top: 1px solid rgba(90,67,51,0.08);
    display: flex;
    align-items: center;
    padding: 18px;
}

#chatbotInput {
    flex: 1;

    height: 52px;

    border: none;

    background: #f3efeb;

    border-radius: 14px;

    padding: 0 18px;

    outline: none;

    font-size: 14px;
}

#chatbotSend {
    width: 92px;

    height: 52px;

    margin-left: 12px;

    border: none;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #2b211c,
            #4e392c
        );

    color: white;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.2s ease;
}

#chatbotSend:hover {
    opacity: 0.92;
}

@media (max-width: 480px) {

    #chatbotWindow {
        width: calc(100% - 24px);
        height: 92vh;

        right: 12px;
        bottom: 12px;

        border-radius: 24px;
    }
}
.chatbot-hidden {
    display: none !important;
}

.chatbot-open {
    display: flex !important;
}
.chatbot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 24px;
}

.quick-btn {
    border: none;

    padding: 10px 16px;

    border-radius: 14px;

    background: white;

    color: #4e392c;

    font-size: 13px;

    cursor: pointer;

    transition: 0.2s ease;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.05);

    border:
        1px solid rgba(90,67,51,0.08);
}

.quick-btn:hover {
    background:
        linear-gradient(
            145deg,
            #2b211c,
            #5a4333
        );

    color: white;

    transform: translateY(-2px);
}