.chatbot-toggle{position:fixed;bottom:20px;right:20px;width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,#8B0000 0%,#B22222 100%);border:none;cursor:pointer;box-shadow:0 4px 20px rgba(139,0,0,0.4);z-index:9998;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease;}[dir="rtl"] .chatbot-toggle{right:auto;left:20px;}.chatbot-toggle:hover{transform:scale(1.1);box-shadow:0 6px 25px rgba(139,0,0,0.5);}.chatbot-toggle i{font-size:1.5rem;color:white;transition:transform 0.3s ease;}.chatbot-toggle.active i{transform:rotate(180deg);}.chatbot-window{position:fixed;bottom:90px;right:20px;width:380px;max-width:calc(100vw - 40px);height:500px;max-height:calc(100vh - 120px);background:#fff;border-radius:16px;box-shadow:0 10px 40px rgba(0,0,0,0.2);z-index:9997;display:none;flex-direction:column;overflow:hidden;animation:chatSlideUp 0.3s ease;}[dir="rtl"] .chatbot-window{right:auto;left:20px;}.chatbot-window.active{display:flex;}@keyframes chatSlideUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}.chatbot-header{background:linear-gradient(135deg,#8B0000 0%,#B22222 100%);color:white;padding:1rem 1.25rem;display:flex;align-items:center;gap:0.75rem;}.chatbot-avatar{width:45px;height:45px;border-radius:50%;background:rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-size:1.25rem;}.chatbot-info h4{margin:0;font-size:1rem;font-weight:600;}.chatbot-info p{margin:0;font-size:0.75rem;opacity:0.9;}.chatbot-close{margin-left:auto;background:none;border:none;color:white;font-size:1.25rem;cursor:pointer;opacity:0.8;transition:opacity 0.2s;}[dir="rtl"] .chatbot-close{margin-left:0;margin-right:auto;}.chatbot-close:hover{opacity:1;}.chatbot-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:0.75rem;background:#f8f9fa;}.chat-message{max-width:85%;padding:0.75rem 1rem;border-radius:16px;font-size:0.9rem;line-height:1.4;animation:messageAppear 0.3s ease;}@keyframes messageAppear{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}.chat-message.bot{background:white;color:#333;align-self:flex-start;border-bottom-left-radius:4px;box-shadow:0 1px 3px rgba(0,0,0,0.1);}[dir="rtl"] .chat-message.bot{border-bottom-left-radius:16px;border-bottom-right-radius:4px;}.chat-message.user{background:linear-gradient(135deg,#8B0000 0%,#B22222 100%);color:white;align-self:flex-end;border-bottom-right-radius:4px;}[dir="rtl"] .chat-message.user{border-bottom-right-radius:16px;border-bottom-left-radius:4px;}.quick-replies{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:0.5rem;}.quick-reply-btn{background:white;border:1px solid #8B0000;color:#8B0000;padding:0.4rem 0.75rem;border-radius:20px;font-size:0.8rem;cursor:pointer;transition:all 0.2s;}.quick-reply-btn:hover{background:#8B0000;color:white;}.typing-indicator{display:flex;align-items:center;gap:4px;padding:0.75rem 1rem;background:white;border-radius:16px;border-bottom-left-radius:4px;align-self:flex-start;box-shadow:0 1px 3px rgba(0,0,0,0.1);}.typing-indicator span{width:8px;height:8px;background:#8B0000;border-radius:50%;animation:typingBounce 1.4s infinite ease-in-out;}.typing-indicator span:nth-child(1){animation-delay:0s;}.typing-indicator span:nth-child(2){animation-delay:0.2s;}.typing-indicator span:nth-child(3){animation-delay:0.4s;}@keyframes typingBounce{0%,80%,100%{transform:scale(0.6);opacity:0.5;}40%{transform:scale(1);opacity:1;}}.chatbot-input{padding:1rem;background:white;border-top:1px solid #eee;display:flex;gap:0.5rem;}.chatbot-input input{flex:1;padding:0.75rem 1rem;border:1px solid #ddd;border-radius:25px;font-size:0.9rem;outline:none;transition:border-color 0.2s;}.chatbot-input input:focus{border-color:#8B0000;}.chatbot-input button{width:45px;height:45px;border-radius:50%;background:linear-gradient(135deg,#8B0000 0%,#B22222 100%);border:none;color:white;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:transform 0.2s;}.chatbot-input button:hover{transform:scale(1.05);}@media (max-width:480px){.chatbot-window{bottom:0;right:0;left:0;width:100%;max-width:100%;height:100%;max-height:100%;border-radius:0;}[dir="rtl"] .chatbot-window{right:0;left:0;}.chatbot-toggle{bottom:15px;right:15px;width:55px;height:55px;}[dir="rtl"] .chatbot-toggle{right:auto;left:15px;}}