/* Donation Form Styles */
.donation-form-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Progress Indicator */
.donation-progress {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--combo-donate-accent);
    color: white;
}

.progress-step.completed .step-number {
    background: var(--combo-donate-success);
    color: white;
}

.step-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--combo-donate-accent);
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: var(--combo-donate-success);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
    transition: background 0.3s ease;
}

.progress-line.completed {
    background: var(--combo-donate-success);
}

/* Step Content */
.donation-step {
    background: white;
    border-radius: 5px;
    padding: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.step-header {
    margin-bottom: 32px;
}

.checkbox-group{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475467;
    margin: 0;    
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.checkbox-group-label{
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
}

.checkbox-group label span {
    user-select: none;
    white-space: nowrap;
    font-weight: 400;
    font-style: normal;
}


.step-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.step-header p {
    color: #475467;
    font-size: 1.1rem;
    margin: 0;
}

.amount-summary {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 60px;
    gap: 32px;
}

.amount-summary-total {
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
    line-height: 40px;
    letter-spacing: 0;
    margin: 0;
    color: var(--combo-donate-primary);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--combo-donate-accent);
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.back-btn:hover {
    background: #fef6f0;
}

/* Amount Selection */
.amount-selection {
    margin-bottom: 40px;
}

.amount-selection h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
}

/* Donor Information */
.donor-information {
    margin-bottom: 40px;
}

.donor-information h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 24px 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: #333;
    margin-bottom: 8px;
}

.form-group label span {
    color: #e74c3c;
}

.form-group-description{
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    color: #475467;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--combo-donate-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 32px;
}

.continue-btn,
.payment-btn {
    background: var(--combo-donate-accent);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.continue-btn:hover,
.payment-btn:hover {
    background: var(--combo-donate-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 95, 136, 0.3);
}

.continue-btn.disabled,
.payment-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Payment Summary */
.payment-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.payment-summary h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: #475467;
}

.summary-item strong {
    color: #333;
    font-weight: bold;
}

/* Payment Methods */
.payment-methods-section {
    margin-bottom: 32px;
}

.payment-methods-section h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
}
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 173px;
    height: 83px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .payment-method {
        width: 100%;
        padding: 16px;
    }
}

.payment-method:hover {
    border-color: var(--combo-donate-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 124, 46, 0.1);
}

.payment-method.selected {
    border-color: var(--combo-donate-accent);
    background: #fef6f0;
}

.payment-method:focus {
    outline: none;
    border-color: var(--combo-donate-accent);
}

.fundraiser-summary-thanks {
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
    color: #333;
    margin-top: 16px;
}

.payment-method img {
    height: 32px;
    object-fit: contain;
}

.payment-method span {
    font-weight: 500;
    color: #333;
    text-align: center;
}

.payments-agreement {
    font-size: 14px;
    color: #475467;
    margin-top: 16px;
}



/* Sidebar Fundraiser Summary */
.fundraiser-summary {
    background: white;
    border-radius: 5px;
    position: sticky;
    top: 20px;
}



.fundraiser-summary h1 {
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0;
    margin: 0 0 20px 0;
}

.fundraiser-thumb {
    width: 100%;
    height: 394px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 16px;
}

.fundraiser-summary h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.fundraiser-summary p {
    color: #475467;
    margin: 0 0 16px 0;
}

.amount-raised {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0;
    color: #178D4E;
    margin: 0 0 8px 0;
    text-align: center;
}
.amount-raised span {
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    color: #475467;
    margin-left: 8px;
}

.progress-stats{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    display: flex;
    justify-content: space-between;
    color: #475467;
}

.progress-stats span{
    margin: 0;
    font-weight: 600;
}

/* Bank Account Info */
.bank-account {
    background: #f8f9fa;
    border-radius: 5px;
    padding: 16px;
    margin-top: 20px;
}

.bank-account h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.bank-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #333;
    margin: 0 0 4px 0;
}

.bank-number {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: var(--combo-donate-accent);
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    margin: 0 0 12px 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bank-number:hover {
    background: #fef6f0;
}

.bank-title-text {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #475467;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .fundraisers-layout {
        flex-direction: column-reverse;
        gap: 32px;
    }
    
    .fundraiser-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .donation-form-container {
        padding: 16px;
    }
    
    .donation-step {
        padding: 24px 20px;
    }
    
    .step-header h2 {
        font-size: 1.6rem;
    }
    
    .progress-steps {
        max-width: 300px;
    }
    
    .progress-line {
        margin: 0 12px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .continue-btn,
    .payment-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .donation-form-container {
        padding: 12px;
        margin: 0 -20px;
    }
    
    .donation-step {
        border-radius: 0;
        margin: 0 -12px 24px -12px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 12px;
    }
}
