#dc-chatbot{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  font-family:var(--font-body, 'General Sans', sans-serif);
  color:var(--color-text);
}
.dc-chat-button{
  width:62px;
  height:62px;
  border-radius:999px;
  border:1px solid color-mix(in oklab,var(--color-text) 14%,transparent);
  background:var(--color-accent);
  color:white;
  box-shadow:var(--shadow-lg);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform .18s cubic-bezier(.16,1,.3,1),box-shadow .18s;
}
.dc-chat-button:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(15,42,68,.22)}
.dc-chat-panel{
  position:fixed;
  right:22px;
  bottom:96px;
  width:min(380px,calc(100vw - 28px));
  max-height:min(680px,calc(100vh - 120px));
  display:none;
  grid-template-rows:auto 1fr auto;
  background:#fffdf8;
  color:#0F2A44;
  border:1px solid #cfc1ae;
  border-radius:24px;
  box-shadow:0 18px 48px rgba(15,42,68,.22);
  overflow:hidden;
  isolation:isolate;
}
.dc-chat-panel.open{display:grid!important;visibility:visible!important;opacity:1!important}
#dc-chatbot .dc-chat-panel:not(.open){display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important}
.dc-chat-head{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:1px solid rgba(15,42,68,.1);background:#f4efe6;color:#0F2A44}
.dc-chat-head>div{display:grid;gap:2px}.dc-chat-head strong{display:block;line-height:1.2}.dc-chat-head span{font-size:12px;line-height:1.2;color:#5f6b72}.dc-chat-close{width:36px;height:36px;border-radius:999px;background:#fffdf8;cursor:pointer;border:1px solid rgba(15,42,68,.12)}
.dc-chat-log{min-height:190px;padding:16px;overflow-y:auto;display:flex;flex-direction:column;gap:10px;background:#fffdf8}.dc-msg{max-width:86%;padding:10px 12px;border-radius:16px;font-size:14px;line-height:1.45}.dc-bot{align-self:flex-start;background:#f4efe6;border:1px solid rgba(15,42,68,.08)}.dc-user{align-self:flex-end;background:#0F2A44;color:#fffaf2}.dc-quick{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}.dc-quick button{border:1px solid rgba(201,116,58,.45);border-radius:999px;background:#f0d5c2;padding:8px 10px;font-weight:700;font-size:12px;color:#0F2A44;cursor:pointer}.dc-chat-form{display:grid;grid-template-columns:1fr auto;gap:8px;padding:12px;border-top:1px solid rgba(15,42,68,.1);background:#fffdf8}.dc-chat-form input{min-height:44px;border-radius:999px;border:1px solid #cfc1ae;background:#FAF7F2;padding:0 14px;color:#0F2A44}.dc-chat-form button{min-width:44px;border-radius:999px;background:#C9743A;color:#fff;font-weight:700}.dc-field{display:grid;gap:8px}.dc-field input,.dc-field select,.dc-field textarea{border:1px solid #cfc1ae;border-radius:12px;background:#FAF7F2;padding:10px;font:inherit}.dc-field button{border-radius:999px;background:#C9743A;color:#fff;padding:10px 14px;font-weight:700}
[data-theme='dark'] .dc-chat-panel,[data-theme='dark'] .dc-chat-log,[data-theme='dark'] .dc-chat-form{background:#152432;color:#f4eee4}[data-theme='dark'] .dc-chat-head{background:#203446;color:#f4eee4}[data-theme='dark'] .dc-chat-head span{color:#c6c1b8}[data-theme='dark'] .dc-bot{background:#203446;color:#f4eee4}[data-theme='dark'] .dc-chat-form input{background:#101a22;color:#f4eee4;border-color:#405768}
@media(max-width:620px){#dc-chatbot{right:14px;bottom:14px}.dc-chat-button{width:56px;height:56px}.dc-chat-panel{inset:auto 10px 86px 10px;width:auto}.sticky-call~footer~.mobile-cta~#dc-chatbot,#dc-chatbot:has(+ .sticky-call){bottom:86px}body:has(.sticky-call) #dc-chatbot{bottom:86px}}
