﻿/* Premium Background */
.donation-wrapper {
    background: linear-gradient(180deg, #f3f4f6 0%, #fff 100%);
    padding: 4rem 0;
    font-family: 'Inter', sans-serif;
}

/* The Main Card */
.donate-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
}

/* Left Side: Story & Trust */
.donate-info {
    background: #4f46e5;
    padding: 3rem;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .donate-info::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://www.transparenttextures.com/patterns/cubes.png');
        opacity: 0.1;
    }

/* Right Side: Action */
.donate-action {
    padding: 2.5rem;
}

/* Tabs for Payment Method */
.payment-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: #f3f4f6;
    padding: 0.4rem;
    border-radius: 1rem;
}

.payment-tab {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: transparent;
    color: #6b7280;
}

    .payment-tab.active {
        background: white;
        color: #4f46e5;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

/* QR Display */
.qr-container {
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px dashed #e5e7eb;
    position: relative;
}

.qr-img {
    max-width: 220px;
    border-radius: 0.75rem;
    border: 1px solid #eee;
}

/* Amount Buttons */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.amount-btn {
    border: 1px solid #e5e7eb;
    background: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #374151;
    transition: 0.2s;
}

    .amount-btn:hover, .amount-btn.selected {
        border-color: #4f46e5;
        background: #eef2ff;
        color: #4f46e5;
    }

/* Steps */
.step-circle {
    width: 28px;
    height: 28px;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 0.75rem;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

/* Copy Button */
.copy-pill {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    cursor: pointer;
}

    .copy-pill:active {
        background: #f3f4f6;
    }

/* Mobile Responsive */
@@media (max-width: 991px) {
    .donate-info {
        padding: 2rem;
        min-height: auto;
    }

    .donate-action {
        padding: 1.5rem;
    }
}
