#aashiro-donation-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

#aashiro-donation-wrapper .aashiro-step-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

#aashiro-donation-wrapper .aashiro-step-indicator .step {
    color: #888;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#aashiro-donation-wrapper .aashiro-step-indicator .step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    font-size: 12px;
    font-weight: bold;
}

#aashiro-donation-wrapper .aashiro-step-indicator .step.active {
    color: #d93832;
}

#aashiro-donation-wrapper .aashiro-step-indicator .step.active span {
    background: #d93832;
    color: #fff;
}

#aashiro-donation-wrapper .aashiro-two-column {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

#aashiro-donation-wrapper .aashiro-main-col {
    flex: 2;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

#aashiro-donation-wrapper .aashiro-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#aashiro-donation-wrapper .sidebar-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

#aashiro-donation-wrapper .info-box {
    border-left: 3px solid #d93832;
}

#aashiro-donation-wrapper .step-title, 
#aashiro-donation-wrapper .sidebar-title {
    color: #1b365d;
    font-family: "Playfair Display", "Lora", "Merriweather", Georgia, serif !important;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

#aashiro-donation-wrapper .sidebar-title {
    font-size: 20px;
}

#aashiro-donation-wrapper .step-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

#aashiro-donation-wrapper .form-group {
    margin-bottom: 20px;
}

#aashiro-donation-wrapper .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1b365d;
    font-size: 14px;
}

#aashiro-donation-wrapper .form-group select,
#aashiro-donation-wrapper .form-group input[type="text"],
#aashiro-donation-wrapper .form-group input[type="email"],
#aashiro-donation-wrapper .form-group input[type="tel"],
#aashiro-donation-wrapper .form-group input[type="number"],
#aashiro-donation-wrapper .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

#aashiro-donation-wrapper .form-group input:focus, 
#aashiro-donation-wrapper .form-group select:focus, 
#aashiro-donation-wrapper .form-group textarea:focus {
    outline: none;
    border-color: #3399cc;
}

#aashiro-donation-wrapper .form-row {
    display: flex;
    gap: 15px;
}

#aashiro-donation-wrapper .form-row .half {
    flex: 1;
}

#aashiro-donation-wrapper .quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#aashiro-donation-wrapper .btn-amount {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #1b365d;
    font-size: 14px;
    transition: all 0.2s;
}

#aashiro-donation-wrapper .btn-amount:hover, 
#aashiro-donation-wrapper .btn-amount.active {
    border-color: #1b365d;
    background: #f4f7fb;
}

#aashiro-donation-wrapper .input-prefix {
    position: relative;
}

#aashiro-donation-wrapper .input-prefix::before {
    content: "₹";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-weight: 600;
}

#aashiro-donation-wrapper .input-prefix input {
    padding-left: 30px;
}

#aashiro-donation-wrapper .min-max-text {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

#aashiro-donation-wrapper .btn-primary {
    background: #d93832 !important;
    color: #fff !important;
    border: 2px solid #a3221e !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: background 0.3s !important;
}

#aashiro-donation-wrapper .btn-primary:hover {
    background: #c12e29 !important;
}

#aashiro-donation-wrapper .btn-primary:disabled {
    background: #e57373 !important;
    border-color: #e57373 !important;
    cursor: not-allowed !important;
}

#aashiro-donation-wrapper .btn-outline {
    background: #fff !important;
    color: #1b365d !important;
    border: 2px solid #1b365d !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s !important;
}

#aashiro-donation-wrapper .btn-outline:hover {
    background: #f4f7fb !important;
}

#aashiro-donation-wrapper .btn-outline-red {
    border: 1px solid #d93832;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: all 0.2s;
}

#aashiro-donation-wrapper .btn-outline-red:hover {
    background: #fffafa;
    color: #bd2d28;
}

#aashiro-donation-wrapper .form-actions-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#aashiro-donation-wrapper .ssl-secured-box {
    background: #eaf5eb;
    border: 1px solid #c8e6c9;
    padding: 15px;
    border-radius: 6px;
    color: #2e7d32;
    font-size: 13px;
    margin: 20px 0;
    line-height: 1.5;
}

#aashiro-donation-wrapper .footer-links {
    text-align: center;
    font-size: 12px;
    margin-top: 25px;
    line-height: 1.8;
}

#aashiro-donation-wrapper .footer-links a {
    color: #666;
    text-decoration: underline;
    margin: 0 5px;
}

#aashiro-donation-wrapper .why-donate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#aashiro-donation-wrapper .why-donate-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
    border-bottom: 1px dashed #eee;
    padding-bottom: 12px;
}

#aashiro-donation-wrapper .why-donate-list li::before {
    content: "•";
    color: #d93832;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -4px;
}

#aashiro-donation-wrapper .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

#aashiro-donation-wrapper .badge {
    background: #eaf5eb;
    color: #2e7d32;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

#aashiro-donation-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

#aashiro-donation-wrapper .summary-row span:first-child {
    color: #888;
}

#aashiro-donation-wrapper .summary-row span:last-child {
    text-align: right;
    font-weight: 500;
    max-width: 60%;
}

#aashiro-donation-wrapper .summary-total {
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #eaeaea;
}

#aashiro-donation-wrapper .summary-total span {
    font-weight: bold !important;
    font-size: 16px;
    color: #1b365d !important;
}

#aashiro-donation-wrapper .summary-total .total-amount {
    font-size: 18px;
}

#aashiro-donation-wrapper .terms label {
    font-weight: normal;
    font-size: 13px;
    display: block !important;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
}

#aashiro-donation-wrapper .terms label input {
    position: absolute;
    left: 0;
    top: 3px;
    margin: 0;
}

#aashiro-donation-wrapper .terms a {
    color: #d93832;
    text-decoration: underline;
    display: inline; /* Prevent flex interference */
}

#aashiro-donation-wrapper .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#aashiro-donation-wrapper .payment-methods label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .aashiro-two-column {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .aashiro-step-indicator {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .aashiro-step-indicator .step {
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .aashiro-step-indicator .step span {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .aashiro-main-col, .sidebar-box, .aashiro-step {
        padding: 20px 15px;
    }
    .step-title {
        font-size: 18px;
    }
    .btn-primary, .btn-outline, .btn-outline-red {
        padding: 12px 15px !important;
        font-size: 15px !important;
    }
    
    /* Order Summary Fixes */
    .summary-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }
    .summary-row span:first-child {
        font-size: 13px;
    }
    .summary-row span:last-child {
        text-align: right;
        font-size: 13px;
        max-width: 60%;
        margin-top: 0;
    }
    .summary-row.summary-total {
        flex-direction: row;
    }
    
    /* Cancel Page Buttons */
    .cancel-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Badges */
    .badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    .badge {
        font-size: 9px !important;
        padding: 3px 6px !important;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-links a, .footer-links br {
        display: block;
    }
    .footer-links br {
        display: none;
    }
}

@keyframes aashiro-spin {
    100% { transform: rotate(360deg); }
}
