#home-donate {
    /*position: relative;*/
    background-color: var(--theme-color-primary);
    color: var(--theme-color-reverse-text);
}

/*#nav-to-donate { !* an anchor for the external links to compensate for the page header height *!*/
/*    position: absolute;*/
/*    top: calc(-1 * var(--header-height));*/
/*}*/

#home-donate .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 1024px) { /*TODO*/
    #home-donate .grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

#home-donate .description {
    font-size: 1.25rem;
    color: var(--theme-color-reverse-text-trans1);
    line-height: 1.6;

    margin-bottom: 32px;
}

#home-donate .description h2 {
    /*font-family: var(--font-heading);*/
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;

    margin-bottom: 32px;
}

@media (max-width: 768px) {/*TODO*/
    #home-donate .description h2 {
        font-size: 2rem;
    }
}

#home-donate .accent {
    color: var(--theme-color-accent)
}

#home-donate .benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;

    margin-top: 32px;
}

#home-donate .benefits .item {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 1.125rem;
}

#home-donate .benefits .item svg {
    width: 24px;
    height: 24px;
    color: var(--theme-color-accent);
    flex-shrink: 0;
}

/* TODO: Donation Form, redesign to accommodate Paypal/etc API */

.donate-card {
    background-color: #f8f8f8;
    color: #1f2937;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 448px;
    margin: 0 auto;
    width: 100%;
}

.donate-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
}

.tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 32px;
    background-color: #e5e7eb;
    padding: 4px;
    border-radius: 8px;
}

.tab-button {
    padding: 12px;
    border: none;
    background-color: transparent;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button.active {
    background-color: white;
    color: #1f2937;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-button:hover:not(.active) {
    color: #6b7280;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.amount-btn {
    padding: 12px;
    border: 2px solid #d1d5db;
    background-color: white;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: rgba(50, 103, 81, 0.5);
}

.amount-btn.active {
    border-color: #326753;
    background-color: rgba(50, 103, 81, 0.05);
    color: #326753;
}

.custom-amount-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.custom-amount-wrapper::before {
    content: '$';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.custom-amount-input {
    width: 100%;
    padding: 12px 12px 12px 32px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1.125rem;
    /*font-family: inherit;*/
    transition: border-color 0.2s ease;
}

.custom-amount-input:focus {
    outline: none;
    border-color: #326753;
    box-shadow: 0 0 0 3px rgba(50, 103, 81, 0.1);
}

.custom-amount-input::placeholder {
    color: #d1d5db;
}

.donate-button {
    width: 100%;
    padding: 20px;
    background-color: #fb923c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(251, 146, 60, 0.2);
}

.donate-button:hover {
    background-color: #ea8a3a;
    box-shadow: 0 15px 25px -5px rgba(251, 146, 60, 0.3);
}

.donate-button:active {
    transform: scale(0.98);
}

.heart-icon {
    width: 20px;
    height: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    opacity: 0.6;
    filter: grayscale(100%);
}

.payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 32px;
    background-color: #d1d5db;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    color: #4b5563;
}
