/* ============================================================
   Donate page: modern refresh consistent with the rest of the
   site (Shop, Reviews, Download, Versions, guides).
   Scoped to .donatev2 so it never affects other pages.
   ============================================================ */

.donatev2 {
    background: #fff;
    padding: 10px 0 50px;
}

.donatev2 .container {
    max-width: 1000px;
}

/* ---- Intro lead under the breadcrumb ---- */
.donatev2 .lead {
    max-width: 1000px;
    margin: 6px auto 24px;
    background: linear-gradient(135deg, #f4faf3, #eef6ec);
    border: 1px solid #e1ebde;
    border-left: 4px solid #3aa635;
    border-radius: 12px;
    padding: 18px 22px;
    color: #3a4734;
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    text-align: left;
    font-weight: 400;
}

/* ============================================================
   Donation card holding the PayPal options
   ============================================================ */
.donatev2 .donate-card {
    background: #ffffff;
    border: 1px solid #e8ece6;
    border-top: 3px solid #3aa635;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 32px 28px 28px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.donatev2 .donate-card h2 {
    color: #26331e;
    font-weight: 400;
    margin: 0 0 6px;
}

.donatev2 .donate-card .donate-sub {
    color: #5a6753;
    font-size: 15px;
    margin: 0 0 22px;
}

/* PayPal buttons row */
.donatev2 .donate-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 4px 0 24px;
}

.donatev2 .donate-options a {
    display: inline-block;
    padding: 6px;
    border: 1px solid #e3e8df;
    border-radius: 12px;
    background: #fbfdfa;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.donatev2 .donate-options a:hover {
    transform: translateY(-3px);
    border-color: #cfe3c9;
    box-shadow: 0 10px 22px rgba(31,122,28,.16);
}

.donatev2 .donate-options img {
    display: block;
    margin: 0;
}

/* Supporter perk callout */
.donatev2 .donate-note {
    background: #f4faf3;
    border: 1px solid #e1ebde;
    border-radius: 12px;
    padding: 16px 20px;
    color: #3a4734;
    font-size: 14px;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.donatev2 .donate-note p {
    margin: 0;
}

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 767px) {
    .donatev2 .donate-card {
        padding: 24px 18px 22px;
    }

    .donatev2 .donate-options {
        gap: 12px;
    }
}
