/* Empower Chatbot Widget */
#empower-chat-bubble{position:fixed;bottom:20px;right:20px;z-index:99999;width:60px;height:60px;border-radius:50%;background:#0d5c46;color:#fff;font-size:1.5rem;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 16px rgba(13,92,70,0.4);transition:all 0.3s;border:2px solid #fff}
#empower-chat-bubble:hover{transform:scale(1.1);background:#1a8866}
#empower-chat-window{display:none;position:fixed;bottom:90px;right:20px;z-index:99999;width:360px;max-width:calc(100vw - 40px);height:480px;max-height:calc(100vh - 120px);background:#fff;border-radius:12px;box-shadow:0 8px 32px rgba(0,0,0,0.15);flex-direction:column;overflow:hidden;border:1px solid #e5e7eb}
#empower-chat-window.open{display:flex}
#empower-chat-header{background:#0d5c46;color:#fff;padding:16px;font-weight:600;display:flex;justify-content:space-between;align-items:center}
#empower-chat-header .close{cursor:pointer;font-size:1.2rem;opacity:0.8}
#empower-chat-header .close:hover{opacity:1}
#empower-chat-messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:12px;background:#f8faf9}
.ec-msg{max-width:85%;padding:12px 16px;border-radius:12px;font-size:0.9rem;line-height:1.5}
.ec-msg.bot{background:#fff;border:1px solid #e5e7eb;align-self:flex-start}
.ec-msg.user{background:#0d5c46;color:#fff;align-self:flex-end}
.ec-msg.bot a{color:#0d5c46;font-weight:600}
.ec-typing{align-self:flex-start;color:#6b7280;font-size:0.85rem;padding:8px}
#empower-chat-input-wrap{display:flex;padding:12px;border-top:1px solid #e5e7eb;gap:8px}
#empower-chat-input{flex:1;padding:10px 14px;border:1px solid #d1d5db;border-radius:8px;font-size:0.9rem;outline:none;transition:border-color 0.25s}
#empower-chat-input:focus{border-color:#0d5c46}
#empower-chat-send{background:#0d5c46;color:#fff;border:none;border-radius:8px;padding:10px 16px;cursor:pointer;font-weight:600;font-size:0.9rem}
#empower-chat-send:hover{background:#1a8866}
.ec-suggestions{display:flex;flex-wrap:wrap;gap:8px;padding:12px}
.ec-suggestion{background:#f3f4f6;border:1px solid #e5e7eb;border-radius:16px;padding:6px 14px;font-size:0.8rem;cursor:pointer;color:#0d5c46;transition:all 0.25s}
.ec-suggestion:hover{background:#0d5c46;color:#fff}
@media(max-width:480px){#empower-chat-window{width:calc(100vw - 20px);right:10px;bottom:85px;height:70vh}#empower-chat-bubble{bottom:15px;right:15px;width:52px;height:52px}}
