.hg-suggest-widget { position: relative; z-index: 999999; }

.hg-suggest-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  background: #111;
  color: #fff;
}

.hg-suggest-modal{
  position: fixed;
  inset: 0;
  display: none;
}

.hg-suggest-modal.is-open{ display: block; }

.hg-suggest-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
}

.hg-suggest-panel{
  position:absolute;
  right: 18px;
  bottom: 88px;
  width: min(420px, calc(100vw - 36px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}

.hg-suggest-head{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px 10px 14px;
  background:#f6f7fb;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hg-suggest-title{ font-weight: 900; font-size: 16px; }
.hg-suggest-sub{ font-size: 12px; opacity: .75; margin-top: 2px; }

.hg-suggest-close{
  border:0;
  background: transparent;
  cursor:pointer;
  font-size: 16px;
  opacity: .65;
  padding: 6px 8px;
  border-radius: 8px;
}
.hg-suggest-close:hover{ background: rgba(0,0,0,.05); opacity: 1; }

.hg-suggest-body{ padding: 14px; }
.hg-suggest-label{ display:block; font-weight: 800; margin-bottom: 8px; }

.hg-suggest-text{
  width: 100%;
  resize: vertical;
  min-height: 110px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}
.hg-suggest-text:focus{
  border-color: rgba(0,0,0,.28);
  box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

.hg-suggest-msg{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}
.hg-suggest-msg.is-ok{ background:#e7f7ea; color:#1f6d2a; border:1px solid #bfe6c7; }
.hg-suggest-msg.is-error{ background:#fdeaea; color:#8a1f1f; border:1px solid #f3b9b9; }

.hg-suggest-foot{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  padding: 12px 14px 14px 14px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.hg-suggest-btn{
  border:0;
  cursor:pointer;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 13px;
}
.hg-suggest-btn--ghost{
  background:#f2f3f6;
  color:#111;
}
.hg-suggest-btn--primary{
  background:#111;
  color:#fff;
}
.hg-suggest-btn:disabled{ opacity:.6; cursor:not-allowed; }

.hg-suggest-locked{
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:14px;
  background:#fff;
}
.hg-suggest-locked__title{
  font-weight:900;
  font-size:15px;
  margin-bottom:6px;
}
.hg-suggest-locked__text{
  font-size:13px;
  opacity:.75;
  line-height:1.4;
}
.hg-suggest-locked__actions{
  margin-top:12px;
}