/* ── Amount entry section ─────────────────────────────────────────────── */
.donate-amount-section {
    text-align: center;
    padding: 60px 20px 80px;
}

.donate-amount-heading {
    font-size: 30px;
    color: #1a3a6b;
    margin: 0 0 10px 0;
}

.donate-amount-subheading {
    font-size: 17px;
    color: #555;
    margin: 0 0 40px 0;
}

.donate-amount-wrapper {
    max-width: 400px;
    margin: 0 auto 20px;
}

.donate-amount-field {
    display: flex;
    align-items: center;
    gap: 0;
}

.donate-currency-symbol {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a6b;
    padding: 10px 8px 10px 0;
    line-height: 1;
}

.donate-amount-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid #e6e6e6;
    border-radius: 0;
    background: transparent;
    font-size: 28px;
    font-weight: 700;
    color: #1a3a6b;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.15s ease;
}

.donate-amount-input:focus {
    border-bottom-color: #dc1f34;
}

.donate-amount-input::placeholder {
    color: #ccc;
    font-weight: 400;
}

.donate-amount-error {
    color: #ff6b6b;
    font-size: 14px;
    min-height: 20px;
    margin-bottom: 16px;
}

.donate-submit-btn {
    display: inline-block;
    padding: 14px 60px;
    background: #dc1f34;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.donate-submit-btn:hover    { background: #b51a2b; }
.donate-submit-btn:disabled { background: #d4a0a7; cursor: not-allowed; }

/* ── Checkout section (hidden until amount is submitted) ──────────────── */
.donate-checkout-section {
    display: none;
    padding: 60px 20px 80px;
    background: #f5f7fa;
}

.donate-checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.donate-checkout-heading {
    font-size: 30px;
    color: #1a3a6b;
    margin: 0 0 10px 0;
}

.donate-checkout-sub {
    font-size: 17px;
    color: #555;
    margin: 0;
}

/* ── Reused checkout form wrapper + section styles from policy-book.css ── */

/* ── Donate pay button — red to match contribute branding ─────────────── */
.donate-pay-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #dc1f34;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.donate-pay-btn:hover    { background: #b51a2b; }
.donate-pay-btn:disabled { background: #d4a0a7; cursor: not-allowed; }

@media (max-width: 600px) {
    .donate-amount-section    { padding: 40px 16px 60px; }
    .donate-amount-heading    { font-size: 24px; }
    .donate-amount-input      { font-size: 22px; }
    .donate-currency-symbol   { font-size: 22px; }
    .donate-checkout-section  { padding: 40px 16px 60px; }
    .donate-checkout-heading  { font-size: 24px; }
}