/* ==========================================================================
   Qtalk AI — Chat Widget CSS  (no Bootstrap required)
   ========================================================================== */

/* ── Theme variables (overridden via inline <style> generato dal backend) ──
   Definite su :root così sono lette anche dagli elementi fuori dal widget
   (launcher, modale lead, dialog di conferma). */
:root {
  --qtalk-brand:        #3b82f6;   /* colore primario: bolle utente, link, accenti */
  --qtalk-radius:       14px;
  --qtalk-header-bg:    #3b82f6;   /* sfondo header */
  --qtalk-on-header:    #ffffff;   /* testo e icone sull'header */
  --qtalk-btn:          #3b82f6;   /* sfondo pulsanti (invio, launcher, CTA) */
  --qtalk-on-btn:       #ffffff;   /* icone e testo sui pulsanti */
  --qtalk-surface:      #ffffff;
  --qtalk-msg-bg:       #f1f5f9;
  --qtalk-border:       #e2e8f0;
  --qtalk-text:         #0f172a;
  --qtalk-text-muted:   #64748b;
  --qtalk-user-bg:      var(--qtalk-brand);
  --qtalk-user-text:    #ffffff;
  --qtalk-shadow:       0 12px 40px rgba(15,23,42,.14);
}

.qtalk-widget {
  /* layout */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--qtalk-border);
  box-shadow: var(--qtalk-shadow);
  background: var(--qtalk-surface);
  font: 14px/1.55 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--qtalk-text);
  box-sizing: border-box;
}
.qtalk-widget *, .qtalk-widget *::before, .qtalk-widget *::after {
  box-sizing: border-box;
}

/* ── Header ── */
.qtalk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--qtalk-header-bg);
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  position: relative;
  z-index: 1;
}
.qtalk-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qtalk-avatar-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.qtalk-avatar-wrap img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
  display: block;
}
.qtalk-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--qtalk-header-bg);
}
.qtalk-header-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.qtalk-header-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--qtalk-on-header);
  line-height: 1.2;
}
.qtalk-header-status {
  font-size: 12px;
  color: var(--qtalk-on-header);
  opacity: .8;
  line-height: 1.2;
}
.qtalk-header-right {
  display: flex;
  gap: 4px;
}
.qtalk-icon-btn {
  background: rgba(127,127,127,.16);
  border: 0;
  color: var(--qtalk-on-header);
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .92;
  transition: background .15s, opacity .15s;
}
.qtalk-icon-btn:hover { background: rgba(127,127,127,.3); opacity: 1; }

/* ── Messages area ── */
.qtalk-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  background: #f8fafc;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.qtalk-messages::-webkit-scrollbar { width: 5px; }
.qtalk-messages::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 99px; }

/* ── Message rows ── */
.qtalk-msg {
  margin-bottom: 14px;
  max-width: 85%;
}
.qtalk-msg.qtalk-user {
  margin-left: auto;
}
.qtalk-msg-inner {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.qtalk-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 2px;
}
.qtalk-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.qtalk-avatar-initials {
  width: 100%;
  height: 100%;
  background: var(--qtalk-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qtalk-botlabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--qtalk-text-muted);
  margin-bottom: 4px;
  letter-spacing: .02em;
}

/* ── Bubbles ── */
.qtalk-bubble {
  display: inline-block;
  padding: 10px 13px;
  border-radius: var(--qtalk-radius);
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.qtalk-assistant .qtalk-bubble {
  background: var(--qtalk-surface);
  border: 1px solid var(--qtalk-border);
  color: var(--qtalk-text);
  border-top-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(15,23,42,.05);
}
.qtalk-user .qtalk-bubble {
  background: var(--qtalk-user-bg);
  color: var(--qtalk-user-text);
  border-bottom-right-radius: 4px;
}

/* ── Typing indicator ── */
.qtalk-typing .qtalk-bubble {
  padding: 12px 14px;
}
.qtalk-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.qtalk-dots span {
  width: 7px;
  height: 7px;
  background: #94a3b8;
  border-radius: 50%;
  animation: qtalkBounce 1.2s infinite ease-in-out;
}
.qtalk-dots span:nth-child(2) { animation-delay: .2s; }
.qtalk-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes qtalkBounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}

/* ── Citations ── */
.qtalk-citations {
  margin-top: 6px;
  font-size: 12px;
  color: var(--qtalk-text-muted);
  border-top: 1px dashed var(--qtalk-border);
  padding-top: 6px;
}
.qtalk-citations-label {
  font-weight: 600;
  margin-bottom: 3px;
}
.qtalk-citations ul {
  margin: 0;
  padding-left: 16px;
}
.qtalk-citations li { margin: 2px 0; }
.qtalk-citations a { color: var(--qtalk-brand); text-decoration: none; }
.qtalk-citations a:hover { text-decoration: underline; }

/* ── Feedback (👍👎) ── */
.qtalk-feedback {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  margin-left: 36px;
}
.qtalk-feedback button {
  background: none;
  border: 1px solid var(--qtalk-border);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.qtalk-feedback button:hover { background: #f1f5f9; border-color: #94a3b8; }

/* ── System notices ── */
.qtalk-system {
  text-align: center;
  font-size: 12px;
  color: var(--qtalk-text-muted);
  padding: 6px 10px;
  background: #f1f5f9;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ── Lead CTA button ── */
.qtalk-lead-btn {
  margin-top: 6px;
  margin-left: 36px;
  padding: 7px 14px;
  border: 0;
  border-radius: 10px;
  background: var(--qtalk-btn);
  color: var(--qtalk-on-btn);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: opacity .15s;
  display: inline-block;
}
.qtalk-lead-btn:hover { opacity: .88; }

/* ── Input area ── */
.qtalk-input-wrap {
  flex-shrink: 0;
  background: var(--qtalk-surface);
  border-top: 1px solid var(--qtalk-border);
}
.qtalk-input {
  display: flex;
  gap: 8px;
  padding: 10px 12px 8px;
  margin: 0;
}
.qtalk-input textarea {
  flex: 1;
  min-height: 40px;
  max-height: 110px;
  padding: 9px 12px;
  border: 1px solid var(--qtalk-border);
  border-radius: 10px;
  resize: none;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  background: #f8fafc;
  color: var(--qtalk-text);
}
.qtalk-input textarea:focus {
  border-color: var(--qtalk-brand);
  background: #fff;
}
.qtalk-input textarea::placeholder { color: #94a3b8; }
.qtalk-send-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--qtalk-btn);
  color: var(--qtalk-on-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .15s, transform .1s;
  align-self: flex-end;
}
.qtalk-send-btn:hover { opacity: .88; }
.qtalk-send-btn:active { transform: scale(.95); }
.qtalk-send-btn:disabled { opacity: .5; cursor: not-allowed; }
.qtalk-powered {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  padding: 0 0 8px;
}
.qtalk-powered strong { color: #64748b; }

/* ── Floating launcher ── */
.qtalk-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--qtalk-btn, #3b82f6);
  color: var(--qtalk-on-btn, #ffffff);
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(15,23,42,.28);
  display: grid;
  place-items: center;
  z-index: 2147483000;
  transition: transform .2s, box-shadow .2s;
}
.qtalk-launcher:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
/* Launcher con etichetta di testo: diventa un "pill" icona + testo */
.qtalk-launcher.has-label {
  width: auto;
  height: auto;
  min-height: 52px;
  border-radius: 999px;
  padding: 12px 20px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  grid-template-columns: none;
}
.qtalk-launcher-label {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}
/* Ad app aperta il launcher torna compatto (solo icona di chiusura) */
.qtalk-launcher.has-label[aria-expanded="true"] {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
.qtalk-launcher[aria-expanded="true"] .qtalk-launcher-label { display: none; }
.qtalk-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  border-radius: 999px;
  padding: 1px 6px;
  line-height: 1.4;
  border: 2px solid #fff;
}

/* ── Floating panel ── */
#qtalk-float {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 380px;
  max-width: calc(100vw - 40px);
  z-index: 2147483000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  animation: qtalkSlideUp .22s ease-out;
}
@keyframes qtalkSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  #qtalk-float { right: 10px; left: 10px; width: auto; bottom: 84px; }
  .qtalk-widget { max-width: 100%; height: 500px; border-radius: 12px; }
}

/* ── Lead modal ── */
.qtalk-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2147483200;
  backdrop-filter: blur(2px);
}
.qtalk-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(480px, 94vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  z-index: 2147483210;
  display: none;
}
.qtalk-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #f1f5f9;
}
.qtalk-modal-head h3 { margin: 0; font-size: 16px; }
.qtalk-close {
  background: none;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: #94a3b8;
  line-height: 1;
  padding: 0 4px;
}
.qtalk-close:hover { color: #475569; }
.qtalk-form { padding: 16px 18px; display: grid; gap: 12px; }
.qtalk-form label { display: grid; gap: 4px; font-size: 13px; font-weight: 500; color: #374151; }
.qtalk-form input[type="text"],
.qtalk-form input[type="email"],
.qtalk-form input[type="tel"],
.qtalk-form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  font: 14px/1.4 inherit;
  outline: none;
  transition: border-color .15s;
}
.qtalk-form input:focus, .qtalk-form textarea:focus { border-color: var(--qtalk-brand); }
.qtalk-consent { display: flex; align-items: flex-start; gap: 8px; font-weight: 400 !important; }
.qtalk-consent input { margin-top: 2px; flex-shrink: 0; }
.qtalk-actions { display: flex; gap: 8px; justify-content: flex-end; padding-top: 4px; }
.qtalk-submit {
  background: var(--qtalk-btn);
  color: var(--qtalk-on-btn);
  border: 0;
  border-radius: 8px;
  padding: 8px 18px;
  font: 14px inherit;
  cursor: pointer;
  font-weight: 600;
  transition: opacity .15s;
}
.qtalk-submit:hover { opacity: .88; }
.qtalk-cancel {
  background: #f1f5f9;
  color: #475569;
  border: 0;
  border-radius: 8px;
  padding: 8px 16px;
  font: 14px inherit;
  cursor: pointer;
  transition: background .15s;
}
.qtalk-cancel:hover { background: #e2e8f0; }
.qtalk-form-msg { font-size: 13px; color: #059669; min-height: 1em; }
.qtalk-form-msg.is-error { color: #dc2626; }
.qtalk-no-scroll { overflow: hidden; }

/* ── License warning ── */
.qtalk-license-warning, .qtalk-disabled {
  padding: 12px 16px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 13px;
  color: #92400e;
}
.qtalk-disabled { background: #f8fafc; color: #94a3b8; border-color: #e2e8f0; }

/* ── Chip: quick-replies & suggerimenti follow-up ── */
.qtalk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 4px;
  padding: 0 6px;
}
.qtalk-chip {
  border: 1px solid var(--qtalk-brand);
  background: #fff;
  color: var(--qtalk-brand);
  font-size: 12.5px;
  line-height: 1.2;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  max-width: 100%;
}
.qtalk-chip:hover { background: var(--qtalk-brand); color: #fff; }
.qtalk-suggest { margin-top: 8px; }

/* ── Icone (Bootstrap Icons) ── */
.qtalk-widget .bi,
.qtalk-launcher .bi { line-height: 1; display: inline-flex; }
.qtalk-icon-btn .bi { font-size: 18px; }
.qtalk-send-btn .bi { font-size: 18px; }
.qtalk-launcher .bi { font-size: 26px; }
.qtalk-close .bi { font-size: 16px; }
.qtalk-feedback button .bi { font-size: 15px; }

/* ── Launcher: toggle icona chat/chiudi ── */
.qtalk-launcher .qtalk-ic-close { display: none; }
.qtalk-launcher[aria-expanded="true"] .qtalk-ic-open  { display: none; }
.qtalk-launcher[aria-expanded="true"] .qtalk-ic-close { display: block; }

/* ── Mini-card prodotto (WooCommerce) ── */
.qtalk-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 4px 36px;
}
.qtalk-product {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--qtalk-border);
  border-radius: 12px;
  background: var(--qtalk-surface);
  text-decoration: none;
  color: var(--qtalk-text);
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.qtalk-product:hover {
  border-color: var(--qtalk-brand);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transform: translateY(-1px);
}
.qtalk-product-thumb {
  width: 52px;
  height: 52px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}
.qtalk-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qtalk-product-thumb--empty { background: #e2e8f0; }
.qtalk-product-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.qtalk-product-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.qtalk-product-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qtalk-product-price { font-size: 13px; font-weight: 700; color: var(--qtalk-brand); }
.qtalk-product-stock { font-size: 11px; font-weight: 600; padding: 1px 7px; border-radius: 99px; }
.qtalk-product-stock.in  { background: #d1fae5; color: #065f46; }
.qtalk-product-stock.out { background: #fee2e2; color: #991b1b; }
.qtalk-products-more {
  align-self: flex-start;
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--qtalk-brand);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--qtalk-brand);
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.qtalk-products-more:hover { background: var(--qtalk-brand); color: #fff; }

/* ── Dialog di conferma (chiusura chat) ── */
.qtalk-confirm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2147483600;
  backdrop-filter: blur(2px);
}
.qtalk-confirm {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(360px, 92vw);
  background: #fff;
  color: #0f172a;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  z-index: 2147483610;
  padding: 20px 20px 16px;
  font: 14px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.qtalk-confirm-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.qtalk-confirm-text { font-size: 13.5px; color: #475569; margin-bottom: 16px; }
.qtalk-confirm-actions { display: flex; gap: 8px; justify-content: flex-end; }
.qtalk-confirm-actions button {
  border: 0;
  border-radius: 9px;
  padding: 8px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.qtalk-confirm-no { background: #f1f5f9; color: #475569; }
.qtalk-confirm-no:hover { background: #e2e8f0; }
.qtalk-confirm-yes { background: #dc2626; color: #fff; }
.qtalk-confirm-yes:hover { background: #b91c1c; }


/* v0.25.0 — markdown nelle risposte e taglie nelle schede */
.qtalk-bubble a { color: var(--qtalk-brand, #3b82f6); text-decoration: underline; word-break: break-word; }
.qtalk-user .qtalk-bubble a { color: inherit; }
.qtalk-bubble strong { font-weight: 700; }
.qtalk-bubble .qtalk-li { display: block; padding-left: 4px; }
.qtalk-product-sizes { display: block; font-size: 11px; color: #64748b; margin-top: 3px; }


/* v0.26.0 — mobile a schermo intero, pulsanti scheda, stato strumenti */
@media (max-width: 480px) {
  #qtalk-float { position: fixed !important; inset: 0 !important; width: 100% !important; height: 100vh; height: 100dvh; right: 0 !important; bottom: 0 !important; left: 0 !important; border-radius: 0; }
  .qtalk-widget { max-width: 100% !important; height: 100% !important; border-radius: 0 !important; }
  body.qtalk-chat-open { overflow: hidden; }
  body.qtalk-chat-open .qtalk-launcher { display: none; }
  .qtalk-input-wrap { padding-bottom: max(8px, env(safe-area-inset-bottom)); }
}
.qtalk-product-actions { display: flex; gap: 6px; margin-top: 6px; }
.qtalk-product-cart { font-size: 11px; padding: 4px 9px; border-radius: 999px; border: 1px solid var(--qtalk-btn, #3b82f6); background: var(--qtalk-btn, #3b82f6); color: var(--qtalk-on-btn, #fff); cursor: pointer; line-height: 1.2; }
.qtalk-product-cart[disabled] { opacity: .7; cursor: default; }
.qtalk-product-cart.done { background: #16a34a; border-color: #16a34a; color: #fff; }
.qtalk-status { font-size: 12px; color: #64748b; margin: 2px 0 8px 44px; }
.qtalk-bubble.qtalk-streaming::after { content: '▍'; opacity: .6; animation: qtalkBlink 1s steps(2) infinite; }
@keyframes qtalkBlink { to { opacity: 0; } }


/* v0.27.0 — isolamento dallo stile del tema (pulsanti maiuscoli, font, ombre…) */
.qtalk-widget, .qtalk-widget *, .qtalk-modal, .qtalk-modal *, .qtalk-confirm, .qtalk-confirm *, .qtalk-launcher, .qtalk-launcher * { box-sizing: border-box; }
.qtalk-widget button, .qtalk-widget .qtalk-chip, .qtalk-widget .qtalk-lead-btn, .qtalk-widget .qtalk-product-cart, .qtalk-widget .qtalk-products-more,
.qtalk-modal button, .qtalk-confirm button, .qtalk-launcher {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: inherit !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-decoration: none !important;
  outline-offset: 2px;
  min-height: 0;
  line-height: 1.25;
}
.qtalk-widget .qtalk-chip { font-size: 12.5px !important; padding: 7px 12px !important; border-radius: 999px !important; }
.qtalk-widget .qtalk-lead-btn { font-size: 13px !important; }
.qtalk-widget .qtalk-icon-btn, .qtalk-widget .qtalk-send-btn { font-weight: 400 !important; }
.qtalk-widget textarea, .qtalk-widget input, .qtalk-modal input, .qtalk-modal textarea {
  text-transform: none !important; letter-spacing: normal !important; font-family: inherit !important; box-shadow: none !important; text-shadow: none !important;
}
.qtalk-widget .qtalk-bubble, .qtalk-widget .qtalk-botlabel, .qtalk-widget .qtalk-header-name, .qtalk-widget .qtalk-header-status, .qtalk-widget .qtalk-system {
  text-transform: none !important; letter-spacing: normal !important;
}
.qtalk-feedback button { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 28px; padding: 0 !important; color: #64748b; line-height: 1; }
.qtalk-feedback button svg { width: 15px; height: 15px; display: block; }
.qtalk-feedback button:hover { color: var(--qtalk-brand, #3b82f6); }
