/* ============================================
   CHUPA — Donate Page
   ============================================ */

.checkout-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}

.checkout-page-head {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.checkout-page-head .back-link {
    align-self: flex-start;
    margin-bottom: 8px;
}

.page-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.page-sub {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 540px;
}

/* Reuse .checkout / .checkout-left / .checkout-right / .summary / .form from styles.css
   but stretch it a bit and make it look more like a focused page */
.checkout-page .checkout {
    margin-top: 0;
}

/* Amount input + quick chips */
.amount-input {
    position: relative;
}

.amount-quick {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.amount-chip {
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.2s var(--ease);
    cursor: pointer;
    font-family: inherit;
}

.amount-chip:hover {
    border-color: var(--accent);
    color: var(--accent-2);
    background: rgba(61, 220, 151, 0.06);
}

.amount-chip.active {
    border-color: var(--accent);
    background: rgba(61, 220, 151, 0.12);
    color: var(--accent-2);
}

.amount-hint {
    font-size: 12px;
    color: var(--text-mute);
    margin-top: 8px;
}

/* Single payment method (no radio-list behaviour, just one big tile) */
.method-single {
    cursor: default;
}

.method-single .method-title {
    font-size: 15px;
}

/* PLATEGA icon — без белого фона, по центру */
.method-icon-platega {
    background: transparent !important;
    padding: 4px;
    box-shadow: none;
}

.method-icon-platega img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* При активном состоянии НЕ перекрашиваем иконку PLATEGA в зелёный */
.method.active .method-icon-platega {
    background: transparent !important;
    color: inherit;
    box-shadow: 0 0 0 1px var(--accent);
}

/* Make summary slightly more prominent on this page */
.checkout-page .summary {
    border-color: rgba(61, 220, 151, 0.25);
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 24px 16px 60px;
    }
}
