.bc-chat-bubble{position:fixed;bottom:24px;right:24px;z-index:9999;width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,#C9A96E,#E8D5A3);box-shadow:0 4px 24px rgba(201,169,110,.4);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:transform .3s;animation:bcPulse 2s infinite}
.bc-chat-bubble:hover{transform:scale(1.1)}
.bc-chat-bubble svg{width:28px;height:28px;fill:#1A1814}
@keyframes bcPulse{0%,100%{box-shadow:0 4px 24px rgba(201,169,110,.4)}50%{box-shadow:0 4px 32px rgba(201,169,110,.7)}}
.bc-chat-window{position:fixed;bottom:96px;right:24px;z-index:9999;width:380px;height:520px;border-radius:16px;background:#1A1814;border:1px solid rgba(201,169,110,.2);box-shadow:0 8px 48px rgba(0,0,0,.4);display:none;flex-direction:column;overflow:hidden;animation:bcSlideUp .3s ease}
.bc-chat-window.open{display:flex}
@keyframes bcSlideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.bc-chat-header{padding:16px 20px;background:linear-gradient(135deg,#C9A96E,#E8D5A3);display:flex;align-items:center;justify-content:space-between}
.bc-chat-header .bc-title{font-family:var(--font-display);font-size:1rem;font-weight:700;color:#1A1814}
.bc-chat-header .bc-close{width:28px;height:28px;border-radius:50%;background:rgba(0,0,0,.15);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#1A1814;font-size:1.1rem}
.bc-chat-header .bc-status{font-size:.7rem;color:rgba(26,24,20,.6)}
.bc-chat-messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:10px}
.bc-msg{max-width:80%;padding:10px 14px;border-radius:12px;font-size:.85rem;line-height:1.5;word-break:break-word}
.bc-msg.customer{align-self:flex-end;background:#C9A96E;color:#1A1814;border-bottom-right-radius:4px}
.bc-msg.admin{align-self:flex-start;background:#2A2720;color:#F0EDE6;border-bottom-left-radius:4px}
.bc-msg .bc-translated{font-size:.75rem;color:rgba(255,254,249,.5);margin-top:4px;font-style:italic}
.bc-msg .bc-time{font-size:.6rem;color:rgba(0,0,0,.4);margin-top:4px;text-align:right}
.bc-msg.admin .bc-time{color:rgba(255,254,249,.4)}
.bc-welcome{text-align:center;color:rgba(255,254,249,.5);font-size:.8rem;padding:20px;line-height:1.6}
.bc-chat-input{padding:12px 16px;background:#232019;border-top:1px solid rgba(201,169,110,.15);display:flex;gap:8px;align-items:center}
.bc-chat-input input{flex:1;padding:10px 14px;border-radius:20px;border:1px solid rgba(201,169,110,.2);background:rgba(255,255,255,.05);color:#F0EDE6;font-size:.85rem;outline:none}
.bc-chat-input input:focus{border-color:#C9A96E}
.bc-chat-input button{width:36px;height:36px;border-radius:50%;background:#C9A96E;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center}
.bc-chat-input button:hover{background:#E8D5A3}
.bc-chat-input button svg{width:16px;height:16px;fill:#1A1814}
.bc-chat-footer{text-align:center;padding:8px;font-size:.6rem;color:rgba(255,254,249,.25);background:#1A1814}
.bc-chat-start{padding:24px 20px;display:flex;flex-direction:column;gap:12px;flex:1;justify-content:center}
.bc-chat-start h3{font-family:var(--font-display);color:#E8D5A3;font-size:1.1rem;text-align:center;margin-bottom:8px}
.bc-chat-start input{padding:10px 14px;border-radius:8px;border:1px solid rgba(201,169,110,.2);background:rgba(255,255,255,.05);color:#F0EDE6;font-size:.85rem;outline:none}
.bc-chat-start input:focus{border-color:#C9A96E}
.bc-chat-start button{padding:12px;border-radius:8px;background:#C9A96E;color:#1A1814;font-weight:600;font-size:.85rem;border:none;cursor:pointer}
.bc-chat-start button:hover{background:#E8D5A3}
@media(max-width:480px){.bc-chat-window{width:calc(100vw - 32px);right:16px;bottom:88px;height:70vh}}
