.hero-chat-demo{--primary-color: #4CAF50;--primary-hover: #45a049;--widget-border-radius: 12px}.hero-chat-demo .chat-content{width:100%;display:flex;flex-direction:column;background:#fff;box-shadow:0 10px 40px #00000026;border-radius:var(--widget-border-radius);overflow:hidden;height:500px;font-family:system-ui,-apple-system,sans-serif}.hero-chat-demo .chat-header{background:linear-gradient(135deg,var(--primary-color),var(--primary-hover));color:#fff;padding:10px 16px;display:flex;align-items:center;justify-content:space-between}.hero-chat-demo .bot-info{display:flex;align-items:center;gap:12px}.hero-chat-demo .bot-avatar{width:40px;height:40px;background:#fff3;border-radius:50%;display:flex;align-items:center;justify-content:center}.hero-chat-demo .bot-avatar svg{width:28px;height:28px}.hero-chat-demo .bot-details h3{font-size:16px;font-weight:600;margin:0;line-height:1.1}.hero-chat-demo .bot-status{font-size:11px;opacity:.9;font-weight:500;font-style:italic;display:flex;align-items:center;gap:6px;margin-top:2px}.hero-chat-demo .bot-status:before{content:"";width:7px;height:7px;border-radius:50%;background:#b9f6ca;box-shadow:0 0 6px #b9f6ca}.hero-chat-demo .chat-actions{display:flex;gap:8px}.hero-chat-demo .action-btn{width:30px;height:30px;background:#fff3;border:none;border-radius:8px;color:#fff;cursor:default;display:flex;align-items:center;justify-content:center}.hero-chat-demo .action-btn svg{width:14px;height:14px}.hero-chat-demo .chat-messages{flex:1;min-width:0;padding:18px 16px;overflow-x:hidden;overflow-y:auto;scroll-behavior:smooth;background:#fff}.hero-chat-demo .chat-messages::-webkit-scrollbar{width:4px}.hero-chat-demo .chat-messages::-webkit-scrollbar-track{background:#f1f1f1}.hero-chat-demo .chat-messages::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:2px}.hero-chat-demo .message{display:flex;margin-bottom:14px;animation:hero-chat-fadeInUp .3s ease}@keyframes hero-chat-fadeInUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.hero-chat-demo .message-avatar{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:10px;flex-shrink:0}.hero-chat-demo .bot-message .message-avatar{background:var(--primary-color)}.hero-chat-demo .bot-message .message-avatar svg{width:20px;height:20px}.hero-chat-demo .user-message{flex-direction:row-reverse}.hero-chat-demo .user-message .message-avatar{background:#007bff;color:#fff;margin-left:10px;margin-right:0}.hero-chat-demo .user-message .message-avatar svg{width:18px;height:18px;fill:#fff}.hero-chat-demo .message-content{background:#f8f9fa;padding:10px 14px;border-radius:var(--widget-border-radius);max-width:calc(100% - 52px);word-wrap:break-word;font-size:14px;line-height:1.45}.hero-chat-demo .user-message .message-content{background:#007bff;color:#fff}.hero-chat-demo .bot-message .message-content{background:#e8f5e8;border-left:3px solid var(--primary-color);color:#444}.hero-chat-demo .bot-message .message-content strong{color:#2e7d32;font-weight:600}.hero-chat-demo .product-cards{display:flex;flex-direction:column;gap:10px;margin:-4px 0 14px 42px;animation:hero-chat-fadeInUp .3s ease}.hero-chat-demo .product-card{background:#fff;border-radius:8px;box-shadow:0 1px 6px #00000014;display:flex;flex-direction:row;padding:10px;gap:10px;border:1px solid #eef2ef;animation:hero-chat-cardIn .35s ease both}@keyframes hero-chat-cardIn{0%{opacity:0;transform:translateY(8px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.hero-chat-demo .product-image{width:78px;height:78px;background:linear-gradient(135deg,#e8f5e8,#d4edda);display:flex;align-items:center;justify-content:center;overflow:hidden;border-radius:6px;flex-shrink:0}.hero-chat-demo .product-image img{width:100%;height:100%;object-fit:cover}.hero-chat-demo .product-image .product-image-fallback,.hero-chat-demo .product-image.no-image img{display:none}.hero-chat-demo .product-image.no-image .product-image-fallback{display:block;width:36px;height:36px;fill:#4caf50;opacity:.4}.hero-chat-demo .product-info{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:space-between}.hero-chat-demo .product-title{font-size:13px;font-weight:600;font-style:italic;color:#333;margin:0 0 2px;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hero-chat-demo .product-sub{font-size:11px;color:#888;font-style:italic;margin:0 0 4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hero-chat-demo .product-category{font-size:10px;color:#4caf50;background:#e8f5e8;padding:2px 6px;border-radius:8px;display:inline-block;font-weight:500;align-self:flex-start;margin-bottom:4px}.hero-chat-demo .product-price{font-size:14px;font-weight:700;color:#4caf50;margin:0}.hero-chat-demo .product-price .regular{font-size:12px;color:#999;font-weight:500;text-decoration:line-through;margin-right:6px}.hero-chat-demo .product-price .sale{color:#e74c3c}.hero-chat-demo .product-buttons{display:flex;gap:6px;align-items:stretch;margin-top:8px}.hero-chat-demo .product-buttons .btn{flex:1;padding:6px 8px;border:none;border-radius:8px;font-size:11px;font-weight:500;cursor:default;display:inline-flex;align-items:center;justify-content:center;gap:5px;text-decoration:none;line-height:1;white-space:nowrap}.hero-chat-demo .product-buttons .btn .btn-icon{width:11px;height:11px;flex-shrink:0;display:block}.hero-chat-demo .product-buttons .btn-primary{background:var(--primary-color);color:#fff}.hero-chat-demo .product-buttons .btn-secondary{background:#f8f9fa;color:#555;border:1.5px solid #e9ecef;padding:5px 8px}.hero-chat-demo .typing-indicator{display:none;align-items:center;padding:0 16px 8px;animation:hero-chat-fadeInUp .3s ease}.hero-chat-demo .typing-indicator.active{display:flex}.hero-chat-demo .typing-avatar{width:32px;height:32px;border-radius:50%;background:var(--primary-color);display:flex;align-items:center;justify-content:center;margin-right:10px;flex-shrink:0}.hero-chat-demo .typing-avatar svg{width:20px;height:20px}.hero-chat-demo .typing-dots{display:flex;gap:4px;padding:12px 16px;background:#f8f9fa;border-radius:var(--widget-border-radius)}.hero-chat-demo .typing-dots span{width:8px;height:8px;background:#999;border-radius:50%;animation:hero-chat-typing 1.4s infinite ease-in-out}.hero-chat-demo .typing-dots span:nth-child(1){animation-delay:0s}.hero-chat-demo .typing-dots span:nth-child(2){animation-delay:.2s}.hero-chat-demo .typing-dots span:nth-child(3){animation-delay:.4s}@keyframes hero-chat-typing{0%,60%,to{transform:translateY(0);opacity:.5}30%{transform:translateY(-10px);opacity:1}}.hero-chat-demo .chat-input-area{padding:10px 16px 14px;border-top:1px solid #eee;background:#fff}.hero-chat-demo .chat-input-wrapper{display:flex;align-items:center;background:#f8f9fa;border-radius:24px;padding:4px 4px 4px 16px;transition:box-shadow .2s ease}.hero-chat-demo .chat-input-wrapper.focused{box-shadow:0 0 0 2px #4caf5033}.hero-chat-demo .chat-input{flex:1;font-size:14px;color:#333;padding:10px 0;min-height:20px;line-height:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;user-select:none}.hero-chat-demo .chat-input.placeholder-shown{color:#999}.hero-chat-demo .chat-input.typing:after{content:"";display:inline-block;width:1.5px;height:16px;background:#333;margin-left:1px;vertical-align:-3px;animation:hero-chat-cursor-blink .9s step-end infinite}@keyframes hero-chat-cursor-blink{0%,50%{opacity:1}51%,to{opacity:0}}.hero-chat-demo .send-btn{width:36px;height:36px;background:#ccc;border:none;border-radius:50%;color:#fff;cursor:default;display:flex;align-items:center;justify-content:center;transition:background .2s ease;flex-shrink:0}.hero-chat-demo .send-btn.active{background:#4caf50}.hero-chat-demo .send-btn svg{width:16px;height:16px}.hero-chat-demo .chat-footer{margin-top:6px;text-align:right;letter-spacing:.4px}.hero-chat-demo .chat-footer a{font-size:10px;color:#888;text-decoration:none;opacity:.7}.dark .hero-chat-demo .chat-content{background:#1e1e1e;box-shadow:0 8px 32px #0000004d}.dark .hero-chat-demo .chat-messages,.dark .hero-chat-demo .chat-input-area{background:#1e1e1e}.dark .hero-chat-demo .chat-input-area{border-top-color:#333}.dark .hero-chat-demo .chat-input-wrapper{background:#262626}.dark .hero-chat-demo .chat-input{color:#e0e0e0}.dark .hero-chat-demo .chat-input.placeholder-shown{color:#666}.dark .hero-chat-demo .chat-input.typing:after{background:#e0e0e0}.dark .hero-chat-demo .bot-message .message-content{background:#1a3a1a;color:#e0e0e0}.dark .hero-chat-demo .bot-message .message-content strong{color:#8fd48f}.dark .hero-chat-demo .user-message .message-content{background:#0066d6}.dark .hero-chat-demo .typing-dots{background:#1a3a1a}.dark .hero-chat-demo .product-card{background:#2a2a2a;border-color:#3a3a3a;box-shadow:0 1px 6px #0006}.dark .hero-chat-demo .product-title{color:#e0e0e0}.dark .hero-chat-demo .product-sub{color:#999}.dark .hero-chat-demo .product-buttons .btn-secondary{background:#333;color:#ccc;border-color:#444}#demo-video [data-dialog-backdrop]{background-color:color-mix(in oklch,var(--color-foreground) 25%,transparent)}
