/* =========================================================
   星生 Exosuit · 统一加微信弹窗组件（全站单一数据源）
   由 portal/assets/payment-widget.js 注入，class 前缀 pw- 避免与页面样式冲突
   使用：页面 <head> 引本文件，<body> 末引 payment-widget.js 并调用 initPaymentWidget({...})
   ========================================================= */
.pw-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5); z-index: 200;
  align-items: center; justify-content: center;
}
.pw-overlay.show { display: flex; }

.pw-modal {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  max-width: 360px; width: 90%; text-align: center;
  position: relative; max-height: 90vh; overflow-y: auto;
}
.pw-modal .pw-close {
  position: absolute; top: 12px; right: 16px;
  font-size: 24px; cursor: pointer; color: #999; background: none; border: none; line-height: 1;
}
.pw-modal h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; color: #1f2329; }
.pw-modal .pw-sub { font-size: 13px; color: #666; margin: 0 0 6px; }
.pw-modal .pw-price { font-size: 30px; font-weight: 800; color: #0F9D58; margin: 8px 0 4px; }

.pw-modal .pw-qrcode {
  background: #f0f0f0; width: 180px; height: 180px; margin: 14px auto;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #999; overflow: hidden;
}
.pw-modal .pw-qrcode img { width: 180px; height: 180px; border-radius: 12px; display: block; }
.pw-modal .pw-qr-tip { font-size: 11px; color: #999; margin: 6px 0 0; }

.pw-modal .pw-steps { text-align: left; margin: 16px 0; padding-left: 20px; font-size: 13px; color: #444; line-height: 1.7; }
.pw-modal .pw-steps li { margin: 8px 0; }

.pw-modal .pw-btn {
  display: block; width: 100%; padding: 12px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none; margin: 8px 0;
  cursor: pointer; border: none; background: #0F9D58; color: #fff;
}
.pw-modal .pw-btn:hover { background: #0c8449; }

.pw-modal .pw-zsxq { font-size: 11px; color: #888; margin: 12px 0 0; padding-top: 12px; border-top: 1px dashed #eee; line-height: 1.6; }
.pw-modal .pw-zsxq a { color: #0F9D58; }
.pw-modal .pw-note { font-size: 11px; color: #999; margin: 8px 0 0; line-height: 1.6; }
