#chatInput,#chatMessages{background:var(--color-background)}#closeChatButton,#sendChatButton,.chat-header{color:#fff;display:flex}#closeChatButton,#sendChatButton,.quick-reply-btn{cursor:pointer;transition:.2s}#chatbotButton{position:fixed;bottom:30px;left:30px;width:70px;height:70px;border-radius:50%;background:linear-gradient(135deg,gold 0,orange 100%);border:3px solid #ff6b35;cursor:pointer;box-shadow:0 8px 25px rgba(255,107,53,.4);z-index:9999;display:flex;align-items:center;justify-content:center;transition:.3s cubic-bezier(.16, 1, .3, 1);animation:2s ease-in-out infinite glow}@keyframes glow{0%,100%{box-shadow:0 8px 25px rgba(255,107,53,.4),0 0 20px rgba(255,215,0,.3)}50%{box-shadow:0 8px 35px rgba(255,107,53,.7),0 0 40px rgba(255,215,0,.6);transform:scale(1.05)}}#chatbotButton:hover{transform:scale(1.1) rotate(5deg);box-shadow:0 12px 40px rgba(255,107,53,.6)}#chatbotButton:active,#sendChatButton:active{transform:scale(.95)}#chatbotButton svg{width:40px;height:40px;filter:drop-shadow(2px 2px 3px rgba(0,0,0,.3))}#chatbotWindow{position:fixed;bottom:110px;left:30px;width:400px;max-width:calc(100vw - 60px);height:550px;max-height:calc(100vh - 150px);background:var(--color-surface);border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,.3);z-index:9998;display:none;flex-direction:column;overflow:hidden;border:2px solid var(--color-card-border);animation:.4s cubic-bezier(.16,1,.3,1) slideIn}@keyframes slideIn{from{opacity:0;transform:translateY(30px) scale(.9)}to{opacity:1;transform:translateY(0) scale(1)}}#chatbotWindow.active{display:flex}.chat-header{background:linear-gradient(135deg,#ff6b35 0,orange 100%);padding:16px 20px;align-items:center;gap:12px;border-bottom:2px solid rgba(255,215,0,.5)}#chatInput,.quick-reply-btn{font-family:Cairo,sans-serif;color:var(--color-text)}.chat-header-icon{width:50px;height:50px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid gold;animation:2s ease-in-out infinite bounce;flex-shrink:0}@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}.chat-title{flex:1;min-width:0}.chat-title h3{font-size:var(--font-size-lg);margin:0 0 4px;font-weight:var(--font-weight-bold)}.chat-title p{font-size:var(--font-size-sm);margin:0;opacity:.9}#closeChatButton{background:rgba(255,255,255,.2);border:2px solid #fff;width:32px;height:32px;border-radius:50%;font-size:20px;align-items:center;justify-content:center;flex-shrink:0}#closeChatButton:hover{background:rgba(255,255,255,.3);transform:rotate(90deg)}#chatMessages{flex:1;overflow-y:auto;padding:16px;scrollbar-width:thin;scrollbar-color:var(--color-border) transparent}#chatMessages::-webkit-scrollbar{width:6px}#chatMessages::-webkit-scrollbar-track{background:0 0}#chatMessages::-webkit-scrollbar-thumb{background:var(--color-border);border-radius:3px}.message{margin-bottom:12px;animation:.3s ease-out fadeInMessage}@keyframes fadeInMessage{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.message.bot{display:flex;gap:8px;align-items:flex-start}.bot-avatar{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,gold,orange);display:flex;align-items:center;justify-content:center;flex-shrink:0;border:2px solid #ff6b35;font-size:18px}.message-content,.quick-replies{background:var(--color-surface)}#chatInput,.message-content{font-size:var(--font-size-sm)}.message-content{padding:12px 14px;border-radius:12px;max-width:75%;box-shadow:var(--shadow-sm);border:1px solid var(--color-card-border);line-height:1.5}.message.user{display:flex;justify-content:flex-end}.message.user .message-content{background:var(--color-primary);color:var(--color-btn-primary-text);border-color:var(--color-primary)}.quick-replies{padding:12px 16px;border-top:1px solid var(--color-card-border);display:flex;flex-wrap:wrap;gap:6px;max-height:100px;overflow-y:auto}.quick-reply-btn{padding:8px 12px;background:var(--color-secondary);border:1px solid var(--color-border);border-radius:16px;font-size:var(--font-size-xs);font-weight:var(--font-weight-medium)}.quick-reply-btn:hover{background:var(--color-secondary-hover);transform:translateY(-2px);box-shadow:var(--shadow-sm)}.chat-input-container{padding:16px;background:var(--color-surface);border-top:1px solid var(--color-card-border);display:flex;gap:8px}#chatInput{flex:1;padding:10px 14px;border:1px solid var(--color-border);border-radius:20px;transition:border-color .2s}#chatInput:focus{outline:0;border-color:var(--color-primary);box-shadow:var(--focus-ring)}#sendChatButton{background:linear-gradient(135deg,#ff6b35,orange);border:none;width:44px;height:44px;border-radius:50%;font-size:18px;align-items:center;justify-content:center;flex-shrink:0}#sendChatButton:hover{transform:scale(1.1);box-shadow:0 4px 12px rgba(255,107,53,.4)}@media (max-width:768px){#chatbotWindow{left:10px;right:10px;width:calc(100vw - 20px);bottom:90px;height:500px}#chatbotButton{bottom:20px;left:20px;width:60px;height:60px}#chatbotButton svg{width:35px;height:35px}.message-content{max-width:80%;font-size:var(--font-size-xs)}.chat-header-icon{width:45px;height:45px}}@media (max-width:480px){.quick-replies{max-height:80px}.quick-reply-btn{font-size:10px;padding:6px 10px}}