/* DGTL Chatbot — couleurs marque (accent #FF3D00) */
#dgtl-chat{position:fixed;bottom:22px;right:22px;z-index:99999;font-family:var(--font,'Geist',system-ui,sans-serif)}
.dgtl-chat-bubble{width:62px;height:62px;border-radius:50%;background:#0A0A0A;border:0;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 30px rgba(255,61,0,.35);transition:.2s}
.dgtl-chat-bubble:hover{transform:scale(1.07)}
.dgtl-chat-bubble.is-open{background:#FF3D00}
.dgtl-chat-bubble svg{display:block}
.dgtl-chat-panel{position:absolute;bottom:74px;right:0;width:352px;max-width:90vw;height:480px;max-height:74vh;background:#fff;border:1px solid rgba(10,10,10,.12);border-radius:18px;box-shadow:0 24px 60px rgba(0,0,0,.28);display:flex;flex-direction:column;overflow:hidden}
.dgtl-chat-panel[hidden]{display:none}
.dgtl-chat-head{background:#0A0A0A;color:#fff;padding:14px 16px;display:flex;justify-content:space-between;align-items:center;font-weight:700;font-size:15px}
.dgtl-chat-head span{display:flex;align-items:center;gap:8px}
.dgtl-chat-head svg{width:22px;height:22px}
.dgtl-chat-head button{background:none;border:0;color:#fff;font-size:24px;line-height:1;cursor:pointer}
.dgtl-chat-body{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:9px;background:#FAFAF7}
.dgtl-chat-quick{display:flex;flex-wrap:wrap;gap:7px;padding:0 14px 10px;background:#FAFAF7}
.dgtl-chat-form{display:flex;border-top:1px solid rgba(10,10,10,.1);padding:10px;gap:8px;background:#fff}
.dgtl-chat-form input{flex:1;border:1px solid rgba(10,10,10,.15);border-radius:22px;padding:10px 15px;font-size:14px;outline:none}
.dgtl-chat-form input:focus{border-color:#FF3D00}
.dgtl-chat-form button{background:#FF3D00;color:#fff;border:0;width:42px;height:42px;border-radius:50%;cursor:pointer;font-size:16px;flex:0 0 auto}
.dgtl-cb{max-width:84%;padding:10px 14px;border-radius:15px;font-size:14px;line-height:1.5}
.dgtl-cb a{color:#FF3D00;font-weight:600;text-decoration:underline}
.dgtl-cb-bot,.dgtl-cb-admin{align-self:flex-start;background:#fff;border:1px solid rgba(10,10,10,.1);color:#0A0A0A}
.dgtl-cb-admin{border-color:#FF3D00;background:#fff6f2}
.dgtl-cb-me{align-self:flex-end;background:#0A0A0A;color:#fff}
.dgtl-chip{background:#fff;border:1px solid #FF3D00;color:#FF3D00;border-radius:20px;padding:7px 13px;font-size:12.5px;font-weight:600;cursor:pointer;transition:.15s}
.dgtl-chip:hover{background:#FF3D00;color:#fff}
.dgtl-chat-emailrow{display:flex;gap:6px;width:100%}
.dgtl-chat-emailinput{flex:1;border:1px solid rgba(10,10,10,.15);border-radius:18px;padding:8px 13px;font-size:13px;outline:none}
.dgtl-chat-emailinput:focus{border-color:#FF3D00}
@media(max-width:480px){.dgtl-chat-panel{width:92vw}}