.askus { position: fixed; right: 20px; bottom: 20px; z-index: 200; font-family: "Outfit", -apple-system, Helvetica, Arial, sans-serif; }
.askus-fab {
  display: flex; align-items: center; gap: 8px;
  border: 0; cursor: pointer;
  background: linear-gradient(120deg, #f4308e, #ff5e4d 45%, #ff9e2c);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 12px 18px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(244, 48, 142, 0.35);
}
.askus-fab:hover { transform: translateY(-1px); }
.askus-panel {
  position: absolute; right: 0; bottom: 62px;
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 120px));
  background: #fffdf8; color: #16224a;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(22, 34, 74, 0.18);
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid rgba(22, 34, 74, 0.08);
}
.askus-panel[hidden] { display: none; }
.askus-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 16px 12px;
  background: #16224a; color: #fffdf8;
}
.askus-title { font-family: "Fraunces", Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.askus-sub { font-size: 0.82rem; opacity: 0.8; margin-top: 2px; }
.askus-close {
  background: transparent; border: 0; color: #fffdf8;
  font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 0 4px;
}
.askus-log { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.askus-msg { max-width: 88%; padding: 10px 12px; border-radius: 14px; font-size: 0.92rem; line-height: 1.45; }
.askus-msg-them { background: #f7ecd8; align-self: flex-start; }
.askus-msg-me { background: #16224a; color: #fffdf8; align-self: flex-end; }
.askus-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(22, 34, 74, 0.08); }
.askus-input {
  flex: 1; border: 1px solid rgba(22, 34, 74, 0.16); border-radius: 999px;
  padding: 10px 14px; font: inherit; background: #fff;
}
.askus-send {
  border: 0; border-radius: 999px; cursor: pointer;
  background: linear-gradient(120deg, #f4308e, #ff5e4d);
  color: #fff; font-weight: 700; padding: 10px 14px;
}
@media (max-width: 520px) {
  .askus { right: 12px; bottom: 12px; }
  .askus-fab-label { display: none; }
  .askus-fab { padding: 14px; }
}
