.fmb-qc-wrap {
  position: fixed;
  bottom: 38px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: calc(100vw - 32px);
}
.fmb-qc-right { right: 30px; align-items: flex-end; }
.fmb-qc-left { left: 30px; align-items: flex-start; }

.fmb-qc-trigger {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--fmb-qc-accent, #0f766e);
  color: var(--fmb-qc-text, #ffffff);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.fmb-qc-trigger:hover { transform: translateY(-1px); }
.fmb-qc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.fmb-qc-panel {
  min-width: 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.08);
}

.fmb-qc-link {
  display: block;
  text-decoration: none;
  color: #111827;
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 6px 0;
  font-weight: 600;
}
.fmb-qc-link:hover {
  background: #eef2f7;
}

@media (max-width: 640px) {
  .fmb-qc-wrap { bottom: 22px; }
  .fmb-qc-right { right: 18px; }
  .fmb-qc-left { left: 18px; }
  .fmb-qc-panel { min-width: 220px; }
  .fmb-qc-trigger { padding: 13px 16px; font-size: 14px; }
}
