/* btc.css — externalized from btc.html (strict CSP: no inline styles). */

.pay-wrap { max-width: 680px; margin: 40px auto; padding: 0 18px; }
  .pay-card {
    border: 1px solid var(--panel-stroke);
    background: var(--panel);
    border-radius: 14px;
    padding: 28px;
  }
  .addr-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 6px;
    padding: 12px 14px;
    background: #0c0e10;
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 14px;
    color: var(--text);
    word-break: break-all;
  }
  .addr-row button {
    background: var(--accent);
    color: #0c0e10;
    border: 0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    flex: 0 0 auto;
  }
  .wallet-open {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .wallet-link {
    display: inline-block;
    background: var(--accent, #f0b429);
    color: #0c0e10;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
  .wallet-note { font-size: 12px; opacity: 0.75; }
  .price-row {
    display: flex;
    gap: 18px;
    align-items: baseline;
    margin: 16px 0;
    padding: 14px;
    background: var(--accent-soft);
    border-radius: 8px;
  }
  .price-row .usd { font-size: 24px; color: var(--accent); font-weight: 500; }
  .price-row .btc { font-family: var(--mono); color: var(--text-soft); font-size: 14px; }
  .pack-pick { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 18px; }
  .pack-pick button {
    flex: 1 1 auto;
    min-width: 100px;
    padding: 10px;
    border: 1px solid var(--panel-stroke);
    background: transparent;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
  }
  .pack-pick button.active {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
  }
  /* margin-top was an inline style= on the <ol> (dropped under CSP). */
  ol.btc-steps { padding-left: 22px; line-height: 1.7; color: var(--text-soft); margin-top: 24px; }
  ol.btc-steps strong { color: var(--text); }
  .email-form { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
  .email-form input, .email-form textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--panel-stroke);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
  }
  .email-form button {
    padding: 12px;
    background: var(--accent);
    color: #0c0e10;
    border: 0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
  }
  .wallet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    list-style: none;
    padding: 0;
  }
  .wallet-list li {
    padding: 4px 10px;
    background: var(--panel);
    border: 1px solid var(--panel-stroke);
    border-radius: 999px;
    font-size: 12px;
    color: var(--muted);
  }

/* --- Extracted from inline style= attributes (strict CSP: style-src 'self'
   silently drops every style= attribute, so none of this was rendering).
   Declarations below are verbatim from the removed inline styles. --- */

  /* Was style="color:var(--text-soft);" on the page lede <p> and on the
     "3. Tell us you paid" <p>. */
  .pay-lede { color: var(--text-soft); }
  /* Was style="margin-left:auto;font-size:12px;color:var(--muted);" on the
     trailing <span> in .price-row (flex row — margin-left:auto right-aligns). */
  .price-row .price-tag { margin-left: auto; font-size: 12px; color: var(--muted); }
  /* Was style="font-size:12px;color:var(--muted);margin:4px 0 0;" on the
     under/over-payment note beneath .addr-row. */
  .addr-note { font-size: 12px; color: var(--muted); margin: 4px 0 0; }
  /* Was style="font-size:13px;color:var(--text-soft);margin:0;" on
     #claim-msg (margin:0 matters — .email-form is a flex column with gap). */
  .claim-msg { font-size: 13px; color: var(--text-soft); margin: 0; }
  /* Was style="margin-top:30px;color:var(--muted);font-size:13px;
     text-align:center;" on the closing card/checkout note. */
  .pay-foot-note {
    margin-top: 30px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
  }
