/* Buzzen V5 donation page presentation.
 * Build 0082 moves the shared shell/title/breadcrumb/card typography into buzzen.css.
 * This file now owns Donate-specific composition only. Payment behavior remains the
 * legacy fixed PayPal hosted-button handoff.
 */
.buzzen-donate-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 20px;
    padding: 28px;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 210, 74, .20) 0, rgba(255, 210, 74, 0) 26%),
        linear-gradient(135deg, #ffffff 0%, #edf7fd 100%);
    overflow: hidden;
}

.buzzen-donate-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #1b79bd 0%, #ffd24a 100%);
}

.buzzen-donate-hero-copy {
    padding: 4px 4px 4px 8px;
}
.buzzen-donate-hero h1 {
    max-width: 720px;
    margin: 0 0 14px;
    color: #123d5c;
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.02em;
}

.buzzen-donate-hero-copy > p {
    max-width: 760px;
    margin: 0 0 10px;
    color: #3c5669;
    font-size: 15px;
    line-height: 1.7;
}

.buzzen-donate-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.buzzen-donate-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(27, 121, 189, .14);
    border-radius: var(--buzzen-radius-pill);
    background: rgba(255,255,255,.82);
    color: #31566d;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 5px 13px rgba(17, 71, 111, .04);
}

.buzzen-donate-hero-points i {
    color: #1b79bd;
}

.buzzen-donate-hero-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border: 1px solid rgba(18, 61, 92, .16);
    border-radius: var(--buzzen-radius-md);
    background: linear-gradient(145deg, #103858 0%, #155c91 70%, #1b79bd 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(12, 55, 91, .20);
}

.buzzen-donate-paypal-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--buzzen-radius-md);
    background: rgba(255,255,255,.10);
    color: #ffd24a;
    font-size: 27px;
}

.buzzen-donate-action-label {
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 800;
}

.buzzen-donate-hero-action p {
    margin: 0 0 15px;
    color: rgba(255,255,255,.83);
    font-size: 14px;
    line-height: 1.55;
}

.buzzen-donate-hero-action small {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-top: 10px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.5;
}

.buzzen-donate-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(260px, .85fr);
    gap: 18px;
    align-items: start;
}

.buzzen-donate-main,
.buzzen-donate-sidebar {
    min-width: 0;
}

.buzzen-donate-section {
    margin-bottom: 18px;
    overflow: hidden;
}
.buzzen-donate-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}

.buzzen-donate-benefit {
    display: flex;
    flex-direction: column;
    min-height: 150px;
    padding: 16px;
    border: 1px solid rgba(34, 103, 154, .12);
    border-radius: var(--buzzen-radius-md);
    background: linear-gradient(145deg, #fbfdff 0%, #f4f9fd 100%);
}

.buzzen-donate-benefit > i {
    margin-bottom: 12px;
    color: #e5a31e;
    font-size: 21px;
}

.buzzen-donate-benefit strong {
    margin-bottom: 5px;
    color: #173f5c;
    font-size: 15px;
}

.buzzen-donate-benefit span {
    color: #5a7182;
    font-size: 14px;
    line-height: 1.55;
}

.buzzen-room-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 18px 0;
}

.buzzen-room-type-card {
    padding: 16px;
    border: 1px solid rgba(34, 103, 154, .13);
    border-radius: var(--buzzen-radius-md);
    background: #fbfdff;
}

.buzzen-room-type-card-supported {
    border-color: rgba(245, 173, 36, .30);
    background: linear-gradient(145deg, #fffdf6 0%, #f9fcff 100%);
}

.buzzen-room-type-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.buzzen-room-type-heading img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex: 0 0 30px;
}

.buzzen-room-type-heading h3 {
    margin: 0;
    color: #153e5b;
    font-size: 17px;
    font-weight: 800;
}

.buzzen-room-type-card p {
    margin: 0;
    color: #526d80;
    font-size: 14px;
    line-height: 1.6;
}

.buzzen-bsr-offer {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 18px;
    margin: 16px 18px 18px;
    padding: 16px;
    border: 1px solid rgba(245, 173, 36, .34);
    border-radius: var(--buzzen-radius-md);
    background: linear-gradient(135deg, rgba(255, 246, 210, .82) 0%, rgba(242, 249, 254, .94) 100%);
}

.buzzen-bsr-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--buzzen-radius-sm);
    background: #123d5c;
    color: #fff;
    text-align: center;
}

.buzzen-bsr-price-label {
    color: #ffd24a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.buzzen-bsr-price strong {
    display: block;
    margin: 3px 0 0;
    font-size: 29px;
    line-height: 1;
}

.buzzen-bsr-price strong small {
    font-size: 13px;
    font-weight: 700;
}

.buzzen-bsr-price > span:last-child {
    margin-top: 5px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 700;
}

.buzzen-bsr-copy h3 {
    margin: 1px 0 6px;
    color: #123d5c;
    font-size: 17px;
    font-weight: 800;
}

.buzzen-bsr-copy p {
    color: #49677b;
    font-size: 14px;
    line-height: 1.6;
}

.buzzen-bsr-copy a,
.buzzen-donate-help-link {
    color: #0f6499;
    font-weight: 800;
}

.buzzen-donate-reasons {
    padding: 18px;
}

.buzzen-donate-reasons > ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.buzzen-donate-reasons > ul > li {
    position: relative;
    padding-left: 23px;
    color: #486477;
    font-size: 14px;
    line-height: 1.55;
}

.buzzen-donate-reasons > ul > li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    color: #1b79bd;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.buzzen-donate-room-rules {
    margin-top: 16px;
    padding: 13px 15px;
    border: 1px solid rgba(34, 103, 154, .12);
    border-radius: var(--buzzen-radius-sm);
    background: #f4f9fd;
}

.buzzen-donate-room-rules > strong {
    color: #173f5c;
    font-size: 14px;
}

.buzzen-donate-room-rules > strong i {
    margin-right: 5px;
    color: #f5ad24;
}

.buzzen-donate-room-rules ul {
    margin: 7px 0 0;
    padding-left: 18px;
    color: #577184;
    font-size: 13px;
    line-height: 1.55;
}

.buzzen-donate-sidebar {
    display: grid;
    gap: 16px;
}

.buzzen-donate-side-card {
    padding: 19px;
}

.buzzen-donate-side-card-primary {
    position: relative;
    padding: 24px 20px;
    border-color: rgba(18, 61, 92, .22);
    background: linear-gradient(145deg, #103858 0%, #155c91 70%, #1b79bd 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.buzzen-donate-side-card-primary::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -65px;
    bottom: -75px;
    border-radius: 50%;
    background: rgba(255, 210, 74, .15);
}

.buzzen-donate-side-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 17px;
    background: rgba(255,255,255,.10);
    color: #ffd24a;
    font-size: 26px;
}

.buzzen-donate-side-card h2 {
    margin: 0 0 8px;
    color: #123d5c;
    font-size: 17px;
    font-weight: 800;
}

.buzzen-donate-side-card-primary h2 {
    color: #fff;
    font-size: 21px;
}

.buzzen-donate-side-card p {
    margin: 0;
    color: #5a7182;
    font-size: 14px;
    line-height: 1.6;
}

.buzzen-donate-side-card-primary p {
    color: rgba(255,255,255,.84);
}

.buzzen-donate-side-divider {
    width: 58px;
    height: 3px;
    margin: 16px auto 12px;
    border-radius: var(--buzzen-radius-pill);
    background: #ffd24a;
}

.buzzen-donate-side-note {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
}

.buzzen-donate-side-heading {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 8px;
}

.buzzen-donate-side-heading i {
    color: #e5a31e;
    font-size: 17px;
}

.buzzen-donate-side-heading h2 {
    margin: 0;
}

.buzzen-donate-help-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    text-decoration: none;
}

.buzzen-donate-final {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(270px, .6fr);
    gap: 24px;
    align-items: center;
    margin-top: 2px;
    padding: 22px 24px;
    background:
        radial-gradient(circle at 96% 0%, rgba(255, 210, 74, .18) 0, transparent 28%),
        #fff;
}

.buzzen-donate-final h2 {
    margin: 0 0 7px;
    color: #123d5c;
    font-size: 23px;
    font-weight: 800;
}

.buzzen-donate-final p {
    margin: 0;
    color: #526d80;
    font-size: 14px;
    line-height: 1.6;
}

.buzzen-donate-final-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.buzzen-paypal-form {
    margin: 0;
}

.buzzen-paypal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid #0d65a1;
    border-radius: var(--buzzen-radius-sm);
    background: linear-gradient(180deg, #1889d1 0%, #0870b6 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 94, 153, .20), inset 0 1px 0 rgba(255,255,255,.18);
}

.buzzen-paypal-button:hover,
.buzzen-paypal-button:focus {
    border-color: #085a91;
    background: linear-gradient(180deg, #0f7fc6 0%, #0566a8 100%);
    color: #fff;
    box-shadow: 0 9px 21px rgba(0, 94, 153, .26), 0 0 0 3px rgba(27, 121, 189, .11);
}

.buzzen-donate-refund {
    padding: 8px 10px;
    border: 1px solid rgba(214, 154, 22, .35);
    border-radius: var(--buzzen-radius-sm);
    background: #fff7d8;
    color: #725713;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.buzzen-donate-refund i {
    margin-right: 4px;
    color: #b88100;
}

@media (max-width: 991.98px) {
    .buzzen-donate-hero,
    .buzzen-donate-grid,
    .buzzen-donate-final {
        grid-template-columns: 1fr;
    }

    .buzzen-donate-hero-action {
        max-width: none;
    }

    .buzzen-donate-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .buzzen-donate-side-card {
        height: 100%;
    }
}

@media (max-width: 767.98px) {
    .buzzen-donate-hero {
        gap: 16px;
        padding: 20px 18px;
    }

    .buzzen-donate-hero h1 {
        font-size: 28px;
    }

    .buzzen-donate-benefits,
    .buzzen-room-type-grid,
    .buzzen-donate-sidebar {
        grid-template-columns: 1fr;
    }

    .buzzen-donate-benefit {
        min-height: 0;
    }

    .buzzen-bsr-offer {
        grid-template-columns: 1fr;
    }

    .buzzen-bsr-price {
        min-height: 112px;
    }

    .buzzen-donate-benefits,
    .buzzen-room-type-grid,
    .buzzen-donate-reasons {
        padding-left: 14px;
        padding-right: 14px;
    }

    .buzzen-bsr-offer {
        margin-left: 14px;
        margin-right: 14px;
    }

    .buzzen-donate-final {
        padding: 19px 17px;
    }
}

@media (max-width: 480px) {
    .buzzen-donate-hero {
        padding: 18px 15px;
    }

    .buzzen-donate-hero h1 {
        font-size: 25px;
    }

    .buzzen-donate-hero-points {
        display: grid;
    }

    .buzzen-donate-hero-points span {
        justify-content: flex-start;
    }
}
