/* ===== DQ CHATBOT WIDGET ===== */
#dq-chat-launcher{
  position:fixed;bottom:22px;right:22px;z-index:9999;
  width:60px;height:60px;border-radius:50%;
  background:var(--brand,#CE630C);color:#fff;border:none;cursor:pointer;
  box-shadow:0 8px 24px rgba(69,51,45,.35);
  display:flex;align-items:center;justify-content:center;font-size:1.6rem;
  transition:transform .15s ease;
}
#dq-chat-launcher:hover{transform:scale(1.06);}
#dq-chat-launcher .dq-dot{
  position:absolute;top:6px;right:6px;width:11px;height:11px;border-radius:50%;
  background:#5fbf6c;border:2px solid #fff;
}

#dq-chat-panel{
  position:fixed;bottom:96px;right:22px;z-index:9999;
  width:360px;max-width:92vw;height:480px;max-height:75vh;
  background:#fff;border-radius:12px;overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
  display:none;flex-direction:column;
  font-family:'Montserrat',sans-serif;
  border:1px solid #E4D8C4;
}
#dq-chat-panel.open{display:flex;}

.dq-chat-header{
  background:var(--choc,#45332D);color:#fff;padding:16px 18px;
  display:flex;align-items:center;justify-content:space-between;
}
.dq-chat-header .dq-title{font-weight:700;font-size:.98rem;}
.dq-chat-header .dq-sub{font-size:.74rem;color:#D9C9B4;margin-top:2px;}
.dq-chat-header button{background:none;border:none;color:#fff;font-size:1.3rem;cursor:pointer;line-height:1;}

.dq-chat-body{flex:1;overflow-y:auto;padding:16px;background:#FBF6EE;}
.dq-msg{max-width:82%;margin-bottom:12px;padding:10px 13px;border-radius:10px;font-size:.87rem;line-height:1.5;}
.dq-msg.bot{background:#fff;border:1px solid #E4D8C4;color:#45332D;border-bottom-left-radius:2px;}
.dq-msg.user{background:var(--brand,#CE630C);color:#fff;margin-left:auto;border-bottom-right-radius:2px;}

.dq-chips{display:flex;flex-wrap:wrap;gap:8px;margin:6px 0 16px;}
.dq-chip{
  background:#fff;border:1px solid var(--brand,#CE630C);color:var(--brand,#CE630C);
  padding:7px 12px;border-radius:20px;font-size:.78rem;cursor:pointer;font-weight:600;
}
.dq-chip:hover{background:var(--brand,#CE630C);color:#fff;}

.dq-chat-input{display:flex;border-top:1px solid #E4D8C4;padding:10px;gap:8px;background:#fff;}
.dq-chat-input input{
  flex:1;border:1px solid #E4D8C4;border-radius:20px;padding:10px 14px;font-size:.87rem;
  font-family:inherit;outline:none;
}
.dq-chat-input input:focus{border-color:var(--brand,#CE630C);}
.dq-chat-input button{
  background:var(--brand,#CE630C);color:#fff;border:none;border-radius:50%;
  width:38px;height:38px;flex-shrink:0;cursor:pointer;font-size:1rem;
}

@media(max-width:480px){
  #dq-chat-panel{right:10px;bottom:82px;width:94vw;}
  #dq-chat-launcher{right:14px;bottom:14px;}
}
