.ai-chat-button{position:fixed;bottom:30px;right:30px;width:60px;height:60px;background:linear-gradient(135deg,#1434cb,#0f2a9e);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 12px rgba(20,52,203,.4);transition:all .3s ease;z-index:1000}.ai-chat-button:hover{transform:scale(1.1);box-shadow:0 6px 20px rgba(20,52,203,.6)}.ai-chat-button svg{width:30px;height:30px;fill:#fcc015}.ai-chat-button.pulse{animation:pulse 2s infinite}@keyframes pulse{0%{box-shadow:0 4px 12px rgba(20,52,203,.4)}50%{box-shadow:0 4px 20px rgba(20,52,203,.8)}to{box-shadow:0 4px 12px rgba(20,52,203,.4)}}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes bounce{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}.ai-chat-widget{position:fixed;bottom:100px;right:30px;width:380px;height:550px;background:#fff;border-radius:16px;box-shadow:0 8px 32px rgba(0,0,0,.15);display:none;flex-direction:column;z-index:1000;overflow:hidden}.ai-chat-widget.open{display:flex;animation:slideUp .3s ease}.ai-chat-header{background:linear-gradient(135deg,#1434cb,#0f2a9e);color:#fcc015;padding:20px;display:flex;justify-content:space-between;align-items:center}.ai-chat-header-title{display:flex;align-items:center;gap:10px}.ai-chat-header-title h3{margin:0;font-size:18px;font-weight:700;color:#fcc015}.ai-chat-header-status{font-size:12px;color:#fff}.ai-chat-close{background:none;border:none;color:#fcc015;font-size:24px;cursor:pointer;width:30px;height:30px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background .2s}.ai-chat-close:hover{background:rgba(252,192,21,.2)}.ai-chat-messages{flex:1;overflow-y:auto;padding:20px;background:#f8f9fa}.ai-chat-message{margin-bottom:15px;display:flex;gap:10px;animation:fadeIn .3s ease}.ai-chat-message.user{flex-direction:row-reverse}.ai-chat-message.user .ai-chat-message-avatar{background:#1434cb}.ai-chat-message.user .ai-chat-message-content{background:#1434cb;color:#fcc015;border-radius:12px 12px 2px 12px}.ai-chat-message.assistant .ai-chat-message-avatar{background:#1434cb}.ai-chat-message.assistant .ai-chat-message-content{background:#fff;color:#333;border-radius:12px 12px 12px 2px;box-shadow:0 1px 2px rgba(0,0,0,.1)}.ai-chat-message-avatar{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}.ai-chat-message-content{max-width:75%;padding:10px 14px;border-radius:12px;line-height:1.5;font-size:14px;white-space:pre-line}.ai-chat-input-container{padding:15px 20px;background:#fff;border-top:1px solid #e0e0e0}.ai-chat-input-form{display:flex;gap:10px;align-items:center}.ai-chat-input{flex:1;padding:10px 14px;border:1px solid #e0e0e0;border-radius:20px;font-size:14px;transition:border-color .2s}.ai-chat-input:focus{outline:none;border-color:#1434cb}.ai-chat-send-btn{width:36px;height:36px;background:#1434cb;color:#fcc015;border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;flex-shrink:0}.ai-chat-send-btn svg{stroke:#fcc015}.ai-chat-send-btn:hover{background:#0f2a9e}.ai-chat-send-btn:disabled{background:#ccc;cursor:not-allowed}.ai-chat-send-btn:disabled svg{stroke:#fff}.ai-chat-loading{display:flex;gap:4px;padding:8px}.ai-chat-loading span{width:8px;height:8px;background:#666;border-radius:50%;animation:bounce 1.4s ease-in-out infinite both}.ai-chat-loading span:first-child{animation-delay:-.32s}.ai-chat-loading span:nth-child(2){animation-delay:-.16s}.ai-chat-welcome{text-align:center;padding:30px 20px;color:#666}.ai-chat-welcome h3{color:#1434cb;margin-bottom:10px;font-size:18px}.ai-chat-welcome p{font-size:14px;margin-bottom:15px}.ai-chat-welcome ul{list-style:none;padding:0;font-size:13px}.ai-chat-welcome ul li{padding:8px 0}@media (max-width:480px){.ai-chat-widget{width:calc(100vw - 20px);height:calc(100vh - 120px);right:10px;bottom:90px}}