/* Floating Button */
.ai-chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #0e939c;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999999;
}

/* Chatbox */
.ai-chatbox {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    max-height: 450px;
    display: none;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: #fff;
    z-index: 9999;
    overflow: hidden;
}

/* Header */
.ai-chat-header {
    background: #0e939c;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Messages */
.ai-chat-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
}
.ai-chat-messages p {
    margin: 8px 0;
}
.ai-user { text-align: right; color: #0e939c; }
.ai-bot { text-align: left; color: #333; }

/* Input */
.ai-chat-input {
    display: flex;
    border-top: 1px solid #ddd;
}
.ai-chat-input input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    outline: none;
}
.ai-chat-input button {
    background: #ba9f5e;
    border: none;
    padding: 10px 16px;
    color: #fff;
    cursor: pointer;
}

.ai-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px;
    border-top: 1px solid #f1f1f1;
    background: #fafafa;
}
.ai-chat-suggestions button {
    flex: 1 1 auto;
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid #0e939c;
    background: #fff;
    border-radius: 20px;
    color: #0e939c;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ai-chat-suggestions button:hover {
    background: #0e939c;
    color: #fff;
}
