/* ================= CHATBOT ================= */

#chat-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

#chat-tooltip {
    background: #ffffff;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    white-space: nowrap;
}

#chat-bubble {
    width: 56px;
    height: 56px;
    background: #E88CA7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

#chat-bubble:hover {
    transform: scale(1.1);
}

#chat-popup {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

#chat-header {
    background: #E88CA7;
    color: #fff;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 15px;
}

#chat-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
    color: #444;
}

#chat-input-area {
    display: flex;
    border-top: 1px solid #eee;
}

#chat-input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

#send-btn {
    background: #B9C8A2;
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

#send-btn:hover {
    background: #a3b88c;
}