.donate-widget {
    max-width: 720px;
    margin: auto;
    background: #fff;
    border-radius: 32px;
    padding: 40px;
}


.donate-widget h1{
    font-size:clamp(2.6rem,5vw,4rem);
    font-weight:400;
    margin-bottom:5px;
    text-align: center;
    color:#009893;
}

.donate-widget p{
    font-weight:400;
    margin-bottom:40px;
    text-align: center;
}

.donate-tabs {
    display: flex;
    background: #E8F5F4;
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 30px
}

.donate-tab {
    flex: 1;
    border: 0;
    background: none;
    padding: 14px;
    border-radius: 999px;
    font: 700 1rem Quicksand, sans-serif;
    cursor: pointer
}

.donate-tab.active {
background: linear-gradient(135deg, #009893 0%, #04A3B8 100%);    color: #fff
}

.donation-panel {
    display: none
}

.donation-panel.active {
    display: block
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0
}

.amount-chip {
    padding: 16px;
    border: 2px solid #E8F5F4;
    background: #fff;
    border-radius: 18px;
    font-weight: 700;
    cursor: pointer
}

.amount-chip.active {
    background: #00252A;
    color: #fff;
    border-color: #00252A;
}

.custom-row input {
    width: 100%;
    padding: 16px;
    border: 2px solid #E8F5F4;
    border-radius: 16px
}

.btn-donate-widget {
    display: block;
    text-align: center;
    margin-top: 20px
}

.donate-note {
    text-align: center;
    color: #666;
    margin-top: 20px
}

@media(max-width:768px) {
    .donate-widget {
        padding: 30px 20px
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}