.hope-donation {
    width: 100%;
    margin-top: 18px;
}

.hope-donation__amount,
.hope-donation__donated {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.hope-donation__amount span {
    color: #72b788;
}

.hope-donation__amount strong {
    color: #e3262e;
}

.hope-donation__donated {
    color: #55aa73;
    margin-top: 2px;
}

.hope-progress {
    width: 100%;
    height: 10px;
    margin-top: 12px;
    background: #e8e8e8;
    border-radius: 999px;
    overflow: hidden;
}

.hope-progress__bar {
    height: 100%;
    border-radius: 999px;
    background: repeating-linear-gradient(45deg, #159c68 0, #159c68 9px, #ffffff 9px, #ffffff 14px);
    transition: width .5s ease;
}

.hope-donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    background: #c92737;
    color: #fff !important;
    border: 4px solid #f3a0a8;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: transform .2s ease, background .2s ease;
}

.hope-donate-button:hover {
    background: #b51f2e;
    color: #fff !important;
    transform: translateY(-1px);
}

.hope-checkout {
    width: 100%;
    max-width: 620px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.hope-checkout__heading {
    text-align: center;
    margin-bottom: 28px;
}

.hope-checkout__label {
    color: #777;
    font-size: 14px;
}

.hope-checkout__title {
    margin: 5px 0 0;
    font-size: 24px;
}

.hope-checkout__form {
    display: grid;
    gap: 22px;
}

.hope-checkout__field {
    display: grid;
    gap: 8px;
}

.hope-checkout__field > label {
    font-weight: 600;
}

.hope-checkout__field input[type="text"],
.hope-checkout__field input[type="email"],
.hope-checkout__field input[type="number"] {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 7px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.hope-checkout__field input:focus {
    border-color: #159c68;
}

.hope-amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hope-amount-options label {
    position: relative;
    cursor: pointer;
}

.hope-amount-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hope-amount-options span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-weight: 600;
    transition: border-color .2s ease, background .2s ease;
}

.hope-amount-options input:checked + span {
    border-color: #159c68;
    background: #eef9f3;
    color: #159c68;
}

.hope-checkout__submit {
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 7px;
    background: #a50064;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.hope-checkout__submit:hover {
    background: #870053;
}

.hope-checkout__notice,
.hope-checkout-message {
    font-size: 13px;
    color: #777;
}

@media (max-width: 600px) {
    .hope-checkout {
        margin: 20px auto;
        padding: 20px;
    }

    .hope-amount-options {
        grid-template-columns: 1fr 1fr;
    }
}
