/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 33, 71, 0.9), rgba(10, 33, 71, 0.9)), url('../images/donation-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 1.5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Donation Content */
.donation-content {
    padding: 3rem 0;
}

.donation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Form Styles */
.form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.form-container h2 {
    color: red;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h3 {
    color: green;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 33, 71, 0.1);
}

/* Amount Options */
.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.amount-btn {
    padding: 0.75rem;
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.amount-btn:hover {
    border-color: var(--primary-color);
    background: rgb(1, 170, 1);
}

.amount-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Frequency Options */
.frequency-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.radio-option:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.radio-option input[type="radio"] {
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.payment-option {
    cursor: pointer;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background: var(--primary-color);
    height: 100%;
}

.payment-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background:  green;
}

.payment-option.selected .payment-card {
    border-color: var(--primary-color);
    background: rgba(10, 33, 71, 0.05);
    box-shadow: 0 0 0 3px rgba(10, 33, 71, 0.1);
}

.payment-card i {
    font-size: 1.5rem;
    color: white;
}

.payment-card span {
    font-weight: 600;
    color: white;
}

/* Checkbox Options */
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-option input[type="checkbox"] {
    margin: 0;
}

/* Buttons */
.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Donation Info Sidebar */
.donation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.bordered-card {
    border: 2px solid var(--border-color);
}

.info-card h3 {
    color: green;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.impact-item i {
    font-size: 1.5rem;
    color: red;
}

.impact-text h4 {
    color: rgb(0, 146, 12);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.impact-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Benefits List */
.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--background-light);
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.benefits-list span {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Help Options */
.help-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.help-item {
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.help-item i {
    font-size: 2rem;
    color: green;
    margin-bottom: 0.75rem;
}

.help-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.help-item p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: white;
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

/* Trust Section */
.trust-section {
    background: var(--background-light);
    padding: 3rem 0;
}

.trust-content {
    text-align: center;
}

.trust-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.trust-item i {
    font-size: 2.5rem;
    color: red;
    margin-bottom: 1rem;
}

.trust-item h3 {
    color: green;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-color);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .amount-options {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .frequency-options {
        flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2.5rem 0;
    }
    
    .donation-content {
        padding: 2rem 0;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .impact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   DONATION PAGE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Base Mobile Styles */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .donation-grid {
        gap: 1.5rem;
    }
}

/* Tablet & Large Mobile (768px - 992px) */
@media (max-width: 992px) and (min-width: 768px) {
    .donation-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .amount-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
    /* Page Header */
    .page-header {
        padding: 2.5rem 0;
        min-height: auto;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    /* Donation Content */
    .donation-content {
        padding: 1.5rem 0;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Form Container */
    .form-container {
        padding: 1.25rem;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border: 1px solid var(--border-color);
    }
    
    .form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    /* Form Sections */
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }
    
    .form-section:last-of-type {
        margin-bottom: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    /* Form Groups */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
        display: block;
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Amount Options */
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .amount-btn {
        padding: 0.75rem;
        font-size: 0.95rem;
        text-align: center;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        background: var(--background-light);
        transition: all 0.2s ease;
    }
    
    .amount-btn.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    /* Custom Amount Input */
    .custom-amount-container {
        margin-top: 0.75rem;
    }
    
    .custom-amount-container input {
        text-align: center;
        font-weight: 600;
        padding: 0.75rem;
        border: 2px solid var(--primary-color);
    }
    
    /* Frequency Options */
    .frequency-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .radio-option {
        display: flex;
        align-items: center;
        padding: 0.75rem;
        background: var(--background-light);
        border-radius: 6px;
        border: 1px solid var(--border-color);
        width: 100%;
    }
    
    .radio-option input[type="radio"] {
        margin: 0;
        width: 18px;
        height: 18px;
    }
    
    .radio-option label {
        margin-left: 0.5rem;
        font-weight: 500;
        flex: 1;
        cursor: pointer;
    }
    
    /* Payment Methods */
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .payment-option {
        width: 100%;
    }
    
    .payment-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: white;
        transition: all 0.2s ease;
        width: 100%;
    }
    
    .payment-card i {
        font-size: 1.5rem;
        color: var(--primary-color);
    }
    
    .payment-card span {
        font-weight: 600;
        color: var(--text-color);
        flex: 1;
    }
    
    .payment-option.selected .payment-card {
        border-color: var(--primary-color);
        background: rgba(10, 33, 71, 0.05);
        box-shadow: 0 0 0 2px rgba(10, 33, 71, 0.1);
    }
    
    /* Checkbox Options */
    .checkbox-option {
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .checkbox-option input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin: 0;
    }
    
    .checkbox-option label {
        margin-left: 0.5rem;
        font-size: 0.9rem;
        cursor: pointer;
    }
    
    /* Buttons */
    .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .btn-small {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* Donation Info Sidebar */
    .donation-info {
        gap: 1.25rem;
    }
    
    .info-card {
        padding: 1.25rem;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
    
    .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    /* Impact Stats */
    .impact-stats {
        gap: 0.75rem;
    }
    
    .impact-item {
        flex-direction: row;
        text-align: left;
        padding: 0.75rem;
        gap: 0.75rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }
    
    .impact-item i {
        font-size: 1.25rem;
        min-width: 24px;
    }
    
    .impact-text h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .impact-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Benefits List */
    .benefits-list {
        padding: 0;
    }
    
    .benefits-list li {
        align-items: flex-start;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
        border: 1px solid var(--border-color);
        border-radius: 6px;
    }
    
    .benefits-list i {
        font-size: 1rem;
        margin-top: 0.25rem;
    }
    
    .benefits-list span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Help Options */
    .help-options {
        gap: 1rem;
    }
    
    .help-item {
        padding: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }
    
    .help-item i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .help-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .help-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .social-share {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
        border: 1px solid var(--primary-color);
    }
    
    /* Trust Section */
    .trust-section {
        padding: 2rem 0;
    }
    
    .trust-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1.25rem;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        text-align: center;
    }
    
    .trust-item i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Form Validation Messages */
    .form-group .error-message {
        color: #dc3545;
        font-size: 0.8rem;
        margin-top: 0.25rem;
        display: block;
    }
    
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
        border-color: #dc3545;
    }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .page-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .donation-content {
        padding: 1rem 0;
    }
    
    .form-container {
        padding: 1rem;
        margin: 0 10px;
    }
    
    .form-container h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .amount-options {
        grid-template-columns: 1fr;
    }
    
    .amount-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .impact-item {
        padding: 0.5rem;
    }
    
    .impact-item i {
        font-size: 1.1rem;
    }
    
    .impact-text h4 {
        font-size: 0.95rem;
    }
    
    .impact-text p {
        font-size: 0.8rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 0.85rem;
        font-size: 1rem;
    }
    
    .trust-content h2 {
        font-size: 1.3rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
    
    .trust-item i {
        font-size: 1.75rem;
    }
    
    .trust-item h3 {
        font-size: 1rem;
    }
    
    .trust-item p {
        font-size: 0.85rem;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .donation-content {
        padding: 1rem 0;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .amount-btn:hover {
        transform: none;
        background: var(--background-light);
    }
    
    .amount-btn:active {
        background: var(--primary-color);
        color: white;
        transform: scale(0.98);
    }
    
    .payment-card:hover {
        transform: none;
    }
    
    .payment-card:active {
        transform: scale(0.98);
        border-color: var(--primary-color);
    }
    
    .radio-option:hover {
        background: var(--background-light);
    }
    
    .radio-option:active {
        background: rgba(10, 33, 71, 0.1);
    }
    
    .social-btn:hover {
        transform: none;
    }
    
    .social-btn:active {
        transform: scale(0.95);
    }
    
    .btn-large:hover {
        transform: none;
    }
    
    .btn-large:active {
        transform: scale(0.98);
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .page-header {
        background: linear-gradient(rgba(10, 33, 71, 0.92), rgba(10, 33, 71, 0.92)), url('../images/donation-hero.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .amount-btn,
    .payment-card,
    .radio-option,
    .social-btn,
    .btn-large {
        transition: none;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        transition: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .form-container,
    .info-card,
    .payment-card,
    .trust-item {
        background: #ffffff;
        color: #000000;
        border-color: #9e9e9e;
    }
    
    .amount-btn,
    .radio-option,
    .impact-item,
    .benefits-list li,
    .help-item {
        background: #f7f7f7;
        border-color: #c5c5c5;
        color: #000000;
    }
    
    .form-group label,
    .impact-text p,
    .benefits-list span,
    .help-item p,
    .trust-item p {
        color: #000000;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #ffffff;
        color: #000000;
        border-color: #f0f0f0;
    }
    
    .amount-btn.active {
        background: var(--primary-color);
        color: white;
    }
    
    .payment-card i {
        color: red;
    }
    
    .payment-card span {
        color: #000000;
    }
    
    .amount-btn:hover:not(.active),
    .radio-option:hover,
    .payment-card:hover {
        background: #00790a;
    }
}

/* Form Focus States for Mobile */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(10, 33, 71, 0.2);
}

/* iOS-Specific Styles */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .amount-btn,
    .radio-option,
    .payment-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(10, 33, 71, 0.1);
    }
}

/* Print Styles */
@media print {
    .page-header {
        background: none !important;
        color: #000 !important;
        padding: 1rem 0 !important;
    }
    
    .donation-content {
        padding: 0 !important;
    }
    
    .form-container,
    .info-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .trust-section {
        display: none !important;
    }
    
    .social-share,
    .help-item .btn-small {
        display: none !important;
    }
    
    .header, .footer {
        display: none !important;
    }
    
    .btn-large {
        display: none !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border: 1px solid #ddd !important;
        background: none !important;
    }
}

/* Mobile Payment Icons Optimization */
.payment-card i {
    font-size: 1.5rem;
}

.payment-card[data-payment="paypal"] i {
    color: #003087;
}

.payment-card[data-payment="credit"] i {
    color: #1a1a1a;
}

.payment-card[data-payment="bank"] i {
    color: #008000;
}

/* Loading States */
.btn-large.loading {
    position: relative;
    color: transparent;
}

.btn-large.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile-Specific Form Improvements */
@media (max-width: 767px) {
    /* Ensure proper input sizing on mobile */
    input[type="tel"],
    input[type="email"],
    input[type="number"] {
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }
    
    /* Remove number input spinner */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    /* Style for focused elements */
    .amount-btn:focus-visible,
    .radio-option:focus-visible,
    .payment-card:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Ensure proper spacing for mobile keyboards */
    .form-group input:focus,
    .form-group textarea:focus {
        position: relative;
        z-index: 1;
    }
}