#zoe-widget-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: Inter, system-ui, sans-serif; }

#zoe-button { width: 56px; height: 56px; border-radius: 50%; background: #FF5A00; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(255,90,0,0.4); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
#zoe-button:hover { transform: scale(1.08); }
#zoe-button svg { width: 24px; height: 24px; fill: white; }

#zoe-window { display: none; flex-direction: column; position: fixed; bottom: 90px; right: 24px; width: 360px; height: 520px; background: #111111; border: 1px solid #222; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.6); }
#zoe-window.zoe-open { display: flex; }

#zoe-header { background: #050505; padding: 12px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #222; flex-shrink: 0; }
.zoe-avatar { width: 36px; height: 36px; border-radius: 50%; background: #FF5A00; color: white; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zoe-header-info { flex: 1; }
.zoe-name { color: white; font-weight: 600; font-size: 14px; }
.zoe-status { display: flex; align-items: center; gap: 4px; color: #A1A1AA; font-size: 11px; }
.zoe-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }
#zoe-close { background: none; border: none; color: #A1A1AA; font-size: 22px; cursor: pointer; padding: 0; line-height: 1; margin-left: auto; }

#zoe-messages { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 12px; display: flex; flex-direction: column; gap: 8px; box-sizing: border-box; }
#zoe-messages::-webkit-scrollbar { width: 4px; }
#zoe-messages::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

.zoe-message-row { display: flex; width: 100%; box-sizing: border-box; }
.zoe-bot-row { justify-content: flex-start; align-items: flex-end; gap: 6px; }
.zoe-user-row { justify-content: flex-end; }

.zoe-msg-avatar { width: 24px; height: 24px; border-radius: 50%; background: #FF5A00; color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.zoe-bubble { max-width: 75%; min-width: 0; padding: 10px 13px; font-size: 13px; line-height: 1.5; word-break: break-word; overflow-wrap: break-word; box-sizing: border-box; }
.zoe-bot-row .zoe-bubble { background: #1a1a1a; border: 1px solid #2a2a2a; color: white; border-radius: 14px 14px 14px 4px; }
.zoe-user-row .zoe-bubble { background: #FF5A00; color: white; border-radius: 14px 14px 4px 14px; }

#zoe-faq-chips { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-left: 30px; }
.zoe-faq-chip { background: #1a1a1a; border: 1px solid #FF5A00; color: white; border-radius: 20px; padding: 5px 12px; font-size: 12px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.zoe-faq-chip:hover { background: #FF5A00; }

.zoe-typing { display: flex; gap: 4px; align-items: center; padding: 2px 0; }
.zoe-typing span { width: 6px; height: 6px; border-radius: 50%; background: #A1A1AA; animation: zoeBounce 1.2s infinite; }
.zoe-typing span:nth-child(2) { animation-delay: 0.2s; }
.zoe-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes zoeBounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }

.contact-form { display: flex; flex-direction: column; gap: 6px; }
.contact-form input { background: #222; border: 1px solid #333; border-radius: 8px; color: white; padding: 8px 11px; font-size: 13px; outline: none; width: 100%; box-sizing: border-box; }
.contact-form input::placeholder { color: #A1A1AA; }
#zoe-submit { background: #333; color: white; border: none; border-radius: 8px; padding: 9px; font-size: 13px; font-weight: 600; cursor: default; transition: background 0.2s; width: 100%; }
#zoe-submit:not(:disabled) { background: #FF5A00; cursor: pointer; }

#zoe-input-area { padding: 10px 12px; border-top: 1px solid #222; display: flex; gap: 8px; align-items: center; background: #050505; flex-shrink: 0; }
#zoe-input { flex: 1; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; color: white; padding: 9px 13px; font-size: 13px; outline: none; min-width: 0; }
#zoe-input::placeholder { color: #A1A1AA; }
#zoe-send { width: 36px; height: 36px; border-radius: 10px; border: none; background: #222; cursor: default; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
#zoe-send.active { background: #FF5A00; cursor: pointer; }
#zoe-send svg { width: 16px; height: 16px; fill: white; }

#zoe-footer { text-align: center; padding: 4px 0 8px; color: #333; font-size: 10px; flex-shrink: 0; background: #111111; }
