/* donate.css - Faithful replica of the DonorDrive donation form styling */

/* ===== Step Container & Transitions ===== */
.step-container {
    display: none;
    animation: stepFadeIn 0.25s ease-in-out;
}

.step-container.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.step-container.active::-webkit-scrollbar {
    display: none;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Donation Form Container ===== */
.donation-form-container {
    margin: 0 auto;
    max-width: 576px;
}

#donation-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

/* ===== Dialog Header ===== */
.dialog-header {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    padding: 0 16px;
    min-height: 56px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.dialog-header .back-btn {
    grid-column: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.dialog-header .back-btn:hover {
    opacity: 0.7;
}

.dialog-header .back-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.dialog-header .header-center {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.dialog-header .step-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #111827;
}

/* ===== Progress Indicator ===== */
.progress-indicator {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-indicator-fill {
    height: 100%;
    background: var(--brand-accent, #4a5d23);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ===== Form Fields ===== */
.dd-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dd-field-label {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

.dd-required {
    color: #dc2626;
    margin-left: 1px;
}

.dd-field-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #9ca3af;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.dd-field-input-wrap:focus-within {
    outline: 2px solid #111827;
    outline-offset: 2px;
    border-color: #9ca3af;
    box-shadow: none;
}

.dd-field-input-wrap .input-prefix {
    padding: 12px 0 12px 16px;
    font-size: 16px;
    color: #111827;
    user-select: none;
    flex-shrink: 0;
    line-height: 1.5;
}

.dd-field-input-wrap input,
.dd-field-input-wrap select {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 12px 16px 12px 4px !important;
    font-size: 16px !important;
    color: #111827 !important;
    background: transparent !important;
    line-height: 1.5 !important;
    height: auto !important;
    min-width: 0;
}

.dd-field-input-wrap input:focus,
.dd-field-input-wrap select:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.dd-field-input-wrap input::placeholder {
    color: #9ca3af !important;
}

.dd-field>input[type="text"],
.dd-field>input[type="email"],
.dd-field>input[type="tel"],
.dd-field .iti>input[type="tel"],
.dd-field>select,
.dd-field>textarea {
    width: 100% !important;
    border: 1px solid #9ca3af !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    color: #111827 !important;
    background: #fff !important;
    line-height: 1.5 !important;
    height: auto !important;
    box-shadow: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.dd-field .iti>input[type="tel"] {
    padding-left: 52px !important;
}

.dd-field>select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
    cursor: pointer;
}

.dd-field>input:focus,
.dd-field .iti>input[type="tel"]:focus,
.dd-field>select:focus,
.dd-field>textarea:focus {
    outline: 2px solid #111827 !important;
    outline-offset: 2px;
    border-color: #9ca3af !important;
    box-shadow: none !important;
}

.dd-field>input::placeholder {
    color: #9ca3af !important;
}

.dd-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* ===== Checkbox & Radio ===== */
.dd-checkbox,
.dd-radio {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.dd-checkbox input[type="checkbox"],
.dd-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--brand-accent, #4a5d23);
    cursor: pointer;
}

/* ===== Field Group (radio/checkbox label header) ===== */
.dd-field-group-label {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

/* ===== Buttons ===== */
.dd-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: var(--brand-accent, #4a5d23);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s, transform 0.1s;
    letter-spacing: 0.16px;
    line-height: 1.25;
    position: relative;
    z-index: 10;
    margin: 0;
}

.dd-btn-primary:hover {
    opacity: 0.9;
}

.dd-btn-primary:active {
    transform: scale(0.98);
}

.dd-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dd-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #fff;
    color: var(--brand-accent, #4a5d23);
    border: 1px solid var(--brand-accent, #4a5d23);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dd-btn-secondary:hover {
    background: #f9fafb;
}

/* Payment type buttons */
.dd-btn-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    border: none;
    min-height: 44px;
    width: 100%;
}

.dd-btn-payment-cc {
    background: var(--brand-accent, #4a5d23);
    color: #fff;
}

.dd-btn-payment-cc:hover {
    opacity: 0.9;
}

.dd-btn-payment-paypal {
    background: #ffc439;
    color: #003087;
    font-style: italic;
}

.dd-btn-payment-paypal:hover {
    background: #f0b830;
}

.dd-btn-payment-zelle {
    background: #6d1ed1;
    color: #fff;
}

.dd-btn-payment-zelle:hover {
    background: #5a18b0;
}

.dd-btn-payment-crypto {
    background: #1a1a1a;
    color: #fff;
}

.dd-btn-payment-crypto:hover {
    background: #333;
}

/* ===== Card / Summary ===== */
.dd-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}

.dd-card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0;
}

.dd-card-row dt,
.dd-card-row dd {
    margin: 0;
    font-size: 14px;
    color: #374151;
}

.dd-card-row dt {
    font-weight: 600;
    color: #4a5d23;
}

.dd-card-row dd {
    font-weight: 700;
    color: #111827;
}

.dd-card-row-total dt,
.dd-card-row-total dd {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.dd-hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 12px 0;
}

/* ===== Secure message ===== */
.dd-secure-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

.dd-secure-msg svg {
    width: 16px;
    height: 16px;
    fill: #6b7280;
    flex-shrink: 0;
}

/* ===== Payment amounts header ===== */
.dd-payment-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px 32px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.dd-payment-header .amount {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    letter-spacing: -0.5px;
}

.dd-payment-header .label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5d23;
    background: rgba(74, 93, 35, 0.1);
    padding: 3px 12px;
    border-radius: 12px;
    margin: 8px 0 0 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ===== Credit Card Form ===== */
.cc-card-visual {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.cc-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.cc-lock-icon {
    margin-left: auto;
}

.cc-fields-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
}

.cc-number-wrap {
    position: relative;
}

.cc-type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
    flex-shrink: 0;
}

.cvv-hint-icon {
    display: flex;
    align-items: center;
    padding-right: 10px;
    cursor: help;
    flex-shrink: 0;
}

.cc-accepted-cards {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.cc-accepted-label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cc-card-logos {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Payment methods grid ===== */
.dd-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dd-payment-grid .full-width {
    grid-column: 1 / -1;
}

/* ===== CC row (2 columns) ===== */
.dd-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ===== Dialog footer ===== */
.dialog-footer {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* ===== Step content padding ===== */
.step-body {
    padding: 16px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-body-amount {
    padding: 40px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

/* ===== Thank You Step ===== */
.dd-thank-you-text {
    padding: 0 32px;
    text-align: center;
}

.dd-thank-you-text p {
    font-size: 14px;
    color: #374151;
    margin: 0 0 16px;
}

.dd-social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 0 16px 16px;
}

.dd-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    flex: 1;
    max-width: 50%;
    min-width: 100px;
    transition: opacity 0.2s;
}

.dd-social-btn:hover {
    opacity: 0.85;
}

.dd-social-btn-facebook {
    background: #1877f2;
}

.dd-social-btn-twitter {
    background: #000;
}

.dd-social-btn-linkedin {
    background: #0077b5;
}

.dd-social-heading {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
    padding: 0 16px;
    color: #111827;
}

/* ===== Recaptcha text ===== */
.dd-recaptcha-text {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin: 0;
    padding: 0 16px;
}

.dd-recaptcha-text a {
    color: var(--brand-accent, #4a5d23);
}

/* ===== Loading Spinner ===== */
.dd-loading-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 50;
    align-items: center;
    justify-content: center;
}

.dd-loading-overlay.active {
    display: flex;
}

.dd-loading-spinner {
    width: 50px;
    height: 50px;
}

/* ===== Error toast ===== */
.dd-toast {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    max-width: 90%;
    text-align: center;
}

.dd-toast.show {
    display: block;
    animation: toastSlideIn 0.3s ease;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 450px) {

    .step-body,
    .step-body-amount {
        padding-left: 16px;
        padding-right: 16px;
    }

    .dd-payment-header {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ===== Utility overrides for form ===== */
.dd-u-justify-center {
    justify-content: center;
}

.dd-u-h-full {
    height: 100%;
}

.dd-u-gap-rows-4 {
    row-gap: 4px;
}

.dd-u-gap-rows-12 {
    row-gap: 12px;
}

.dd-u-gap-rows-24 {
    row-gap: 24px;
}

.dd-u-py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.dd-u-py-16 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.dd-u-py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.dd-u-px-32 {
    padding-left: 32px;
    padding-right: 32px;
}

.dd-u-text-center {
    text-align: center;
}

.dd-u-mb-0 {
    margin-bottom: 0;
}

.dd-u-fs-14 {
    font-size: 14px;
}

.dd-u-bg-white {
    background-color: #fff;
}

.dd-u-flex {
    display: flex;
}

.dd-u-flex-col {
    flex-direction: column;
}

.dd-u-items-center {
    align-items: center;
}

.dd-u-w-full {
    width: 100%;
}

.dd-u-overflow-clip {
    overflow: clip;
}

.dd-u-rounded-8 {
    border-radius: 8px;
}

.dd-u-shadow-light-1 {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dd-u-border-b-1 {
    border-bottom-width: 1px;
}

.dd-u-border-b-solid {
    border-bottom-style: solid;
}

.dd-u-border-neutral-light-1-2 {
    border-color: #e5e7eb;
}

.dd-u-block {
    display: block;
}

.dd-u-rounded-full {
    border-radius: 9999px;
}

.dd-u-w-150 {
    width: 150px;
}

.dd-u-border-solid {
    border-style: solid;
}

.dd-u-border-5 {
    border-width: 5px;
}

.dd-u-justify-between {
    justify-content: space-between;
}

.dd-u-relative {
    position: relative;
}

.dd-u-absolute {
    position: absolute;
}

.dd-u-left-0 {
    left: 0;
}

.dd-u-top-0 {
    top: 0;
}

.dd-u-max-w-full {
    max-width: 100%;
}

.h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

/* ===== Zelle & Crypto Info Styles ===== */
.payment-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.payment-instruction {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 16px;
}

.address-copy-row {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 8px 8px 16px;
    gap: 12px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.address-copy-row:hover {
    border-color: #cbd5e1;
}

.address-text {
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    word-break: break-all;
    text-align: left;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #334155;
    transform: translateY(-1px);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: #10b981;
}

.payment-note {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Crypto Selection Grid */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.crypto-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.crypto-option:hover {
    border-color: var(--brand-accent, #4a5d23);
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.crypto-option img,
.crypto-option .crypto-icon {
    width: 36px;
    height: 36px;
}

.crypto-option span {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
}

/* Crypto Payment Box */
.crypto-payment-box {
    text-align: center;
}

.crypto-selected-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.crypto-selected-icon {
    width: 28px;
    height: 28px;
}

.crypto-selected-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

/* Crypto Payment Steps */
.crypto-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: left;
}

.crypto-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--brand-accent, #4a5d23);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.crypto-step-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.4;
}

/* Confirm Payment Button */
.dd-btn-confirm-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 8px;
}

.dd-btn-confirm-payment:hover {
    background: #15803d;
}

.dd-btn-confirm-payment:active {
    transform: scale(0.98);
}

.dd-btn-confirm-payment:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.dd-btn-confirm-payment .spinner-icon {
    animation: confirmSpin 0.8s linear infinite;
}

@keyframes confirmSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dd-btn-link {
    background: none;
    border: none;
    color: var(--brand-accent, #4a5d23);
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.dd-btn-link:hover {
    opacity: 0.8;
}

/* ===== Zelle Payment Styles ===== */
.zelle-payment-box {
    text-align: center;
    padding: 20px 24px;
}

.zelle-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.zelle-header-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.zelle-teach-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    color: #6d1ed4;
    border: 2px solid #6d1ed4;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 12px;
}

.zelle-teach-btn:hover {
    background: #f5f0ff;
}

/* Zelle Guide */
.zelle-guide {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
}

.zelle-guide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.zelle-guide-title {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.zelle-guide-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    transition: color 0.2s;
}

.zelle-guide-close:hover {
    color: #374151;
}

.zelle-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zelle-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.zelle-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #6d1ed4;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.zelle-step-content {
    flex: 1;
}

.zelle-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px;
    line-height: 1.6;
}

.zelle-step-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.zelle-guide-email {
    margin: 20px 0;
    padding: 16px;
    background: #f5f0ff;
    border: 1px solid #e0d4f5;
    border-radius: 8px;
}

.zelle-guide-email-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6d1ed4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* ===== Crypto Confirmation Page ===== */
.crypto-confirm-icon {
    width: 64px;
    height: 64px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: confirmPop 0.4s ease;
}

@keyframes confirmPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.crypto-confirm-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 6px;
}

.crypto-confirm-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 24px;
}

/* Receipt card */
.crypto-receipt {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.crypto-receipt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.crypto-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #d97706;
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 3px 10px;
    border-radius: 12px;
}

.crypto-status-dot {
    width: 7px;
    height: 7px;
    background: #f59e0b;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.crypto-receipt-rows {
    padding: 4px 0;
}

.crypto-receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 16px;
    gap: 12px;
}

.crypto-receipt-row + .crypto-receipt-row {
    border-top: 1px solid #f3f4f6;
}

.crypto-receipt-label {
    font-size: 13px;
    color: #6b7280;
    flex-shrink: 0;
}

.crypto-receipt-value {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    text-align: right;
    word-break: break-all;
}

.crypto-receipt-address {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    max-width: 200px;
}

/* What happens next */
.crypto-next-steps {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.crypto-next-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.crypto-next-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

.crypto-next-item + .crypto-next-item {
    margin-top: 10px;
}

.crypto-next-item svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.crypto-confirm-note {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin: 0 0 12px;
}

.crypto-reach-out {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-accent, #4a5d23);
    text-align: center;
    width: 100%;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.crypto-reach-out:hover {
    opacity: 0.75;
}