/* Account-page Pi login — no floating FAB on every page */
.pi-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: 4px;
  background: #6f42c1;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
}

.pi-auth-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.pi-auth-btn--account {
  width: 100%;
  max-width: 320px;
  margin-top: 0.5rem;
}

.pi-account-box {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(111, 66, 193, 0.25);
  border-radius: 6px;
  background: rgba(111, 66, 193, 0.06);
}

.pi-account-title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.pi-account-desc {
  margin: 0 0 0.75rem;
  opacity: 0.85;
}

.pi-account-box--connected {
  border-color: rgba(40, 167, 69, 0.35);
  background: rgba(40, 167, 69, 0.06);
}

.pi-auth-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 99999;
  max-width: min(90vw, 360px);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pi-auth-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pi-checkout-note {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  background: rgba(111, 66, 193, 0.08);
  border-left: 3px solid #6f42c1;
  color: inherit;
}
