.lp-support {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 101;
  max-width: calc(100vw - 40px);
  font-family: inherit;
}
.lp-support [hidden] { display: none !important; }
.lp-support-launcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 100px;
  background: #bd4518;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(70, 28, 8, .18);
}
.lp-support-launcher:hover { background: #a73b13; }
.lp-support-launcher svg { flex-shrink: 0; }
.lp-support-launcher:focus-visible,
.lp-support-error a:focus-visible { outline: 3px solid #1a1a1a; outline-offset: 4px; }
.lp-support-launcher[aria-busy="true"] { cursor: progress; }
.lp-support-error {
  width: 290px;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid #e5ded8;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}
.lp-support-error p { margin: 0 0 8px; }
.lp-support-error a { color: #a73b13; text-underline-offset: 3px; }
@media (max-width: 768px) {
  /* Reserve space only when the existing floating App Store CTA is rendered. */
  .lp-support { right: 16px; bottom: calc(var(--lp-support-mobile-bottom, 16px) + env(safe-area-inset-bottom)); max-width: calc(100vw - 32px); }
  .lp-support-launcher { padding: 10px 15px; }
}
