/* ============================================
   Give2 Wizard Styles (Approach B: Multi-Page)
   Shared across all steps via SCRIPT_NAME override.
   ============================================ */

:root {
    --wiz-accent: #500000;
    --wiz-accent-light: #7a1a1a;
    --wiz-accent-bg: #fdf5f5;
    --wiz-text: #333;
    --wiz-text-light: #666;
    --wiz-text-muted: #999;
    --wiz-border: #e0e0e0;
    --wiz-bg: #f7f7f8;
    --wiz-white: #fff;
    --wiz-radius: 8px;
    --wiz-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --wiz-shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
    --wiz-transition: 0.2s ease;
    --wiz-success: #2e7d32;
    --wiz-success-bg: #e8f5e9;
}


/* ---- Page Layout ---- */

.wiz-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 16px 40px;
}


/* ---- Progress Bar ---- */

.wiz-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0 28px;
    gap: 0;
}

.wiz-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.wiz-progress-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--wiz-border);
    background: var(--wiz-white);
    color: var(--wiz-text-muted);
    transition: all 0.3s ease;
}

.wiz-progress-step.active .wiz-progress-circle {
    background: var(--wiz-accent);
    border-color: var(--wiz-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(80, 0, 0, 0.25);
}

.wiz-progress-step.completed .wiz-progress-circle {
    background: var(--wiz-success);
    border-color: var(--wiz-success);
    color: #fff;
}

.wiz-progress-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--wiz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.wiz-progress-step.active .wiz-progress-label {
    color: var(--wiz-accent);
}

.wiz-progress-step.completed .wiz-progress-label {
    color: var(--wiz-success);
}

.wiz-progress-line {
    flex: 1;
    height: 2px;
    background: var(--wiz-border);
    margin: 0 4px;
    margin-bottom: 22px;
    transition: background 0.3s ease;
    max-width: 80px;
}

.wiz-progress-line.active {
    background: var(--wiz-success);
}


/* ---- Member Bar ---- */

.wiz-member-bar {
    background: var(--wiz-accent-bg);
    border: 1px solid #e8d0d0;
    border-radius: var(--wiz-radius);
    padding: 10px 16px;
    font-size: 14px;
    color: var(--wiz-text);
    margin-bottom: 20px;
}

.wiz-member-bar a {
    color: var(--wiz-accent);
    font-weight: 600;
}


/* ---- Admin Bar ---- */

.wiz-admin-bar {
    background: #e8f0fe;
    border: 1px solid #4285f4;
    border-radius: var(--wiz-radius);
    padding: 10px 16px;
    font-size: 14px;
    margin-bottom: 20px;
}

.wiz-admin-order {
    background: #e8f0fe;
    border: 1px solid #4285f4;
    border-radius: var(--wiz-radius);
    padding: 10px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.wiz-admin-order label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}


/* ---- Admin Panel (step 1 donor lookup) ---- */

.wiz-admin-panel {
    background: #e8f0fe;
    border: 2px solid #4285f4;
}

.wiz-admin-panel .wiz-card-title {
    color: #1a56db;
}

.wiz-admin-lookup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .wiz-admin-lookup-grid {
        grid-template-columns: 1fr;
    }
}

.wiz-admin-sm-results {
    max-height: 260px;
    overflow-y: auto;
    margin-bottom: 12px;
}

.wiz-admin-sm-results h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 6px 0;
    color: #1a56db;
}

.wiz-admin-sm-results table.sm_lookup {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.wiz-admin-sm-results table.sm_lookup td {
    padding: 4px 6px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.wiz-admin-sm-results table.sm_lookup td:first-child {
    white-space: nowrap;
}

/* Hide ADDRESS (4th) and PHONE (7th) columns — too wide for panel */
.wiz-admin-sm-results table.sm_lookup td:nth-child(4),
.wiz-admin-sm-results table.sm_lookup td:nth-child(7) {
    display: none;
}

.wiz-admin-sm-results table.sm_lookup thead td {
    font-weight: 600;
    background: #d2e3fc;
    border-bottom: 2px solid #4285f4;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.wiz-admin-sm-results .sm_choose {
    color: var(--wiz-accent);
    font-weight: 600;
    cursor: pointer;
}

/* Hide "Edit" link in step 1 results — not needed here */
.wiz-admin-sm-results .sm_choose + a {
    display: none;
}

.wiz-admin-donor-selected {
    background: #e8f5e9;
    border: 1px solid #81c784;
    border-radius: var(--wiz-radius);
    padding: 10px 16px;
    font-size: 14px;
    color: #2e7d32;
}

.wiz-admin-donor-note {
    background: #e8f5e9;
    border: 1px solid #81c784;
    border-radius: var(--wiz-radius);
    padding: 10px 16px;
    font-size: 14px;
    color: #2e7d32;
    margin-bottom: 12px;
}

.wiz-donor-note-source {
    font-size: 12px;
    color: #66bb6a;
    font-style: italic;
}

.wiz-admin-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1a56db;
    cursor: pointer;
    margin-top: 12px;
}

.sm_input_highlight {
    border-color: #4285f4 !important;
    background: #e8f0fe !important;
}

.wiz-btn-sm-connect {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #1a56db;
    background: #e8f0fe;
    border: 1px solid #4285f4;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
}

.wiz-btn-sm-connect:hover {
    background: #d2e3fc;
}

.wiz-btn-sm-connect:disabled {
    opacity: 0.6;
    cursor: default;
}

.wiz-sm-connected {
    font-size: 13px;
    font-weight: 600;
    color: #2e7d32;
    background: #e8f5e9;
    border: 1px solid #81c784;
    border-radius: 6px;
    padding: 6px 12px;
    margin-top: 8px;
}


/* ---- Error Box ---- */

.wiz-error-box {
    background: #fff0f0;
    border: 1px solid #e8a0a0;
    border-radius: var(--wiz-radius);
    padding: 14px 18px;
    color: #a00;
    margin-bottom: 16px;
    text-align: center;
    font-size: 15px;
}


/* ---- Cards ---- */

.wiz-card {
    background: var(--wiz-white);
    border: 1px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--wiz-shadow);
}

.wiz-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--wiz-text);
    margin: 0 0 4px;
}

.wiz-card-subtitle {
    font-size: 14px;
    color: var(--wiz-text-light);
    margin: 0 0 20px;
}


/* ---- Step 1: Donation Type Toggle ---- */

.wiz-type-toggle {
    display: flex;
    gap: 16px;
}

.wiz-type-option {
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.wiz-type-option input[type="radio"] {
    display: none;
}

.wiz-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    border: 2px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    text-align: center;
    transition: border-color var(--wiz-transition), background var(--wiz-transition), box-shadow var(--wiz-transition);
}

.wiz-type-option input[type="radio"]:checked + .wiz-type-card {
    border-color: var(--wiz-accent);
    background: var(--wiz-accent-bg);
    box-shadow: 0 0 0 1px var(--wiz-accent);
}

.wiz-type-card:hover {
    border-color: #bbb;
}

.wiz-type-icon {
    font-size: 32px;
}

.wiz-type-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--wiz-text);
}

.wiz-type-desc {
    font-size: 13px;
    color: var(--wiz-text-light);
}


/* ---- Recurring Day Picker ---- */

.wiz-recurring-extra {
    margin-top: 20px;
    padding: 16px;
    background: var(--wiz-bg);
    border-radius: var(--wiz-radius);
}

.wiz-day-label {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.wiz-day-input {
    width: 64px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 6px 8px;
    border: 1px solid var(--wiz-border);
    border-radius: 6px;
}

.wiz-help-text {
    font-size: 13px;
    color: var(--wiz-text-light);
    line-height: 1.5;
    margin: 8px 0 0;
}


/* ---- Step 2: Designations ---- */

.wiz-designation-choice {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.wiz-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0;
    margin: 0;
}

.wiz-designations-list {
    margin-top: 8px;
}

.wiz-des-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 14px;
    border: 1px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    margin-bottom: 8px;
    transition: border-color var(--wiz-transition), box-shadow var(--wiz-transition);
    background: var(--wiz-white);
    gap: 8px 12px;
}

.wiz-des-row:hover {
    border-color: #c0c0c0;
}

.wiz-des-row.wiz-highlight {
    border-color: var(--wiz-accent);
    background: var(--wiz-accent-bg);
}

.wiz-des-row.wiz-row-alt {
    background: #fafafa;
}

.wiz-des-row.wiz-des-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* "Where Needed Most" row */
.wiz-des-wnm {
    cursor: pointer;
    border: 2px solid var(--wiz-border);
    background: var(--wiz-white);
    transition: all var(--wiz-transition);
}

.wiz-des-wnm:hover {
    border-color: var(--wiz-accent);
}

.wiz-des-wnm.wiz-des-wnm-active {
    border-color: var(--wiz-accent);
    background: var(--wiz-accent-bg);
}

.wiz-des-wnm .wiz-des-label {
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.wiz-des-wnm-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--wiz-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--wiz-transition);
}

.wiz-des-wnm-active .wiz-des-wnm-check {
    background: var(--wiz-accent);
    border-color: var(--wiz-accent);
}

.wiz-des-wnm-checkmark {
    color: transparent;
    font-size: 16px;
    font-weight: bold;
    transition: color var(--wiz-transition);
}

.wiz-des-wnm-active .wiz-des-wnm-checkmark {
    color: #fff;
}

.wiz-des-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.wiz-des-body {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.wiz-des-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--wiz-text);
    margin: 0;
    cursor: default;
    white-space: normal;
    flex: 1;
    min-width: 0;
}

.wiz-des-label-text {
    white-space: nowrap;
}

.wiz-input-extra {
    border: 1px solid var(--wiz-border);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 14px;
    width: 120px;
    min-width: 80px;
    flex-shrink: 1;
    transition: border-color var(--wiz-transition);
}

.wiz-input-extra:focus {
    border-color: var(--wiz-accent);
    outline: none;
}

.wiz-add-more {
    font-size: 16px;
    color: var(--wiz-accent);
    text-decoration: none;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--wiz-accent);
    flex-shrink: 0;
}

.wiz-add-more:hover {
    background: var(--wiz-accent);
    color: #fff;
}

.wiz-des-amount {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
    color: var(--wiz-text-light);
}

.wiz-des-amount input.wiz-amount-input {
    width: 90px;
    padding: 8px 10px;
    font-size: 15px;
    border: 1px solid var(--wiz-border);
    border-radius: 6px;
    text-align: right;
    transition: border-color var(--wiz-transition);
    margin: 0;
}

.wiz-des-amount input.wiz-amount-input:focus {
    border-color: var(--wiz-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(80, 0, 0, 0.1);
}

/* ---- Specific designation toggle link ---- */

.wiz-specific-toggle {
    text-align: center;
    margin: 12px 0;
}

.wiz-show-specific {
    color: var(--wiz-accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.wiz-show-specific:hover {
    text-decoration: underline;
}

/* ---- Recurring note ---- */

.wiz-recurring-note {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    color: #8d6e00;
    text-align: center;
    margin: 8px 0 12px;
}

/* ---- Clear (X) button on designation rows ---- */

.wiz-des-clear {
    color: var(--wiz-text-muted);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 2px 6px;
    margin-left: 4px;
    border-radius: 4px;
    transition: color var(--wiz-transition), background var(--wiz-transition);
    flex-shrink: 0;
}

.wiz-des-clear:hover {
    color: #c00;
    background: #fff0f0;
}


/* ---- Child Select2 ---- */

.wiz-des-body .select2-container {
    width: 100% !important;
    min-width: 0;
}

.wiz-des-body .select2-container .select2-choice {
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    border-radius: 6px;
}

.wiz-des-body .select2-container .select2-chosen {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding-right: 26px;
}


/* ---- Total Bar ---- */

.wiz-total-bar {
    background: var(--wiz-accent);
    border-radius: var(--wiz-radius);
    padding: 18px 24px;
    margin-bottom: 20px;
    box-shadow: var(--wiz-shadow);
}

.wiz-total-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.wiz-total-text {
    font-size: 18px;
    font-weight: 600;
}

.wiz-total-input-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wiz-total-dollar {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.wiz-total-bar input[name="amount"] {
    width: 130px;
    padding: 10px 12px;
    font-size: 22px;
    font-weight: 700;
    text-align: right;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: border-color var(--wiz-transition);
}

.wiz-total-bar input[name="amount"]:focus {
    border-color: #fff;
    outline: none;
    background: rgba(255, 255, 255, 0.25);
}

.wiz-total-bar input[name="amount"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


/* ---- Billing Grid ---- */

.wiz-billing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.wiz-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 4px;
}

.wiz-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--wiz-text-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

.wiz-field-full {
    grid-column: 1 / -1;
}

.wiz-input {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid var(--wiz-border);
    border-radius: 6px;
    transition: border-color var(--wiz-transition);
    width: 100%;
    box-sizing: border-box;
}

.wiz-input:focus {
    border-color: var(--wiz-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(80, 0, 0, 0.08);
}

.wiz-input.sm_input_highlight {
    border-color: #4285f4;
    background: #e8f0fe;
}

.wiz-select {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid var(--wiz-border);
    border-radius: 6px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.wiz-textarea {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid var(--wiz-border);
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
}

.wiz-textarea:focus,
.wiz-select:focus {
    border-color: var(--wiz-accent);
    outline: none;
}

input.error {
    border-color: #e00 !important;
}


/* ---- Review Summary ---- */

.wiz-review-summary {
    background: var(--wiz-bg);
    border-radius: var(--wiz-radius);
    padding: 20px;
}

.wiz-review-section {
    margin-bottom: 16px;
}

.wiz-review-section:last-child {
    margin-bottom: 0;
}

.wiz-review-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wiz-text-muted);
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--wiz-border);
}

.wiz-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 15px;
}

.wiz-review-row-label {
    color: var(--wiz-text-light);
}

.wiz-review-row-value {
    font-weight: 600;
    color: var(--wiz-text);
}

.wiz-review-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--wiz-accent);
    border-top: 2px solid var(--wiz-accent);
    padding-top: 10px;
    margin-top: 8px;
}

.wiz-review-child-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    font-weight: 600;
    color: var(--wiz-text);
}

.wiz-review-child-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.wiz-review-extra-note {
    margin-left: 8px;
    font-size: 13px;
    color: var(--wiz-text-muted);
}


/* ---- Wizard Navigation ---- */

.wiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    margin-bottom: 8px;
}

.wiz-btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--wiz-radius);
    cursor: pointer;
    transition: background var(--wiz-transition), transform 0.1s;
    text-decoration: none;
    display: inline-block;
}

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

.wiz-btn-next {
    background: var(--wiz-accent);
    color: #fff;
}

.wiz-btn-next:hover {
    background: var(--wiz-accent-light);
}

.wiz-btn-back {
    background: transparent;
    color: var(--wiz-text-light);
    border: 1px solid var(--wiz-border);
}

.wiz-btn-back:hover {
    background: var(--wiz-bg);
    color: var(--wiz-text);
    text-decoration: none;
}

.wiz-btn-submit {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: var(--wiz-accent);
    border: none;
    border-radius: var(--wiz-radius);
    cursor: pointer;
    margin-top: 16px;
    text-align: center;
}

.wiz-btn-submit:hover {
    background: var(--wiz-accent-light);
}


/* ---- reCAPTCHA ---- */

.wiz-card .g-recaptcha {
    margin: 0 0 12px;
}


/* ---- Stripe Payment Form Override ---- */

.wiz-card #st-payment-form {
    margin-top: 16px;
}

.wiz-card #st-payment-form h2.payment-form-header {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}


/* ---- Footer Elements ---- */

.wiz-blessing {
    text-align: center;
    color: var(--wiz-text-light);
    font-size: 15px;
    margin-top: 24px;
}

.wiz-paypal-link {
    text-align: center;
    margin: 16px 0;
    font-size: 14px;
}

.wiz-paypal-link a {
    color: var(--wiz-text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wiz-paypal-link a:hover {
    color: var(--wiz-accent);
}

.wiz-paypal-link img {
    width: 40px;
    vertical-align: middle;
}


/* ---- SharpMailer Area ---- */

.sm_area {
    margin: 8px 0;
}

.sm_area table.sm_lookup {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sm_area table.sm_lookup td {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
}

.sm_area table.sm_lookup thead td {
    font-weight: 600;
    background: #d2e3fc;
    border-bottom: 2px solid #4285f4;
}

.sm_area .sm_choose {
    color: var(--wiz-accent);
    font-weight: 600;
    cursor: pointer;
}


/* ---- Hide number spinners ---- */

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/* ---- Override old h1 ---- */

.donate h1 {
    display: none;
}


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 860px) {
    .wiz-des-row {
        flex-wrap: wrap;
    }

    .wiz-des-body {
        flex: 1 1 0;
        min-width: 150px;
    }
}

/* ---- Quick Donate ---- */

.wiz-quick-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.wiz-quick-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid var(--wiz-border);
}

.wiz-quick-divider span {
    position: relative;
    background: var(--wiz-bg);
    padding: 0 16px;
    color: var(--wiz-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wiz-quick-card {
    border: 2px dashed var(--wiz-border);
    background: linear-gradient(135deg, #fdfaf7 0%, var(--wiz-white) 100%);
}

.wiz-quick-amounts {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.wiz-quick-amt {
    flex: 1;
    min-width: 70px;
    padding: 12px 8px;
    border: 2px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    background: var(--wiz-white);
    font-size: 16px;
    font-weight: 700;
    color: var(--wiz-text);
    cursor: pointer;
    transition: all var(--wiz-transition);
}

.wiz-quick-amt:hover {
    border-color: var(--wiz-accent-light);
    background: var(--wiz-accent-bg);
}

.wiz-quick-amt.active {
    border-color: var(--wiz-accent);
    background: var(--wiz-accent-bg);
    color: var(--wiz-accent);
    box-shadow: 0 0 0 1px var(--wiz-accent);
}

.wiz-quick-custom {
    margin-bottom: 16px;
}

.wiz-quick-custom label {
    display: block;
    font-size: 13px;
    color: var(--wiz-text-light);
    margin-bottom: 6px;
}

.wiz-quick-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.wiz-quick-dollar {
    padding: 8px 12px;
    background: var(--wiz-bg);
    border: 1px solid var(--wiz-border);
    border-right: none;
    border-radius: var(--wiz-radius) 0 0 var(--wiz-radius);
    color: var(--wiz-text-light);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.wiz-quick-input {
    border-radius: 0 var(--wiz-radius) var(--wiz-radius) 0 !important;
    font-size: 18px !important;
    font-weight: 600;
}

.wiz-quick-email-field {
    margin-bottom: 16px;
    display: none;
}

.wiz-quick-card .wiz-help-text {
    text-align: center;
    margin-top: 12px;
}

.wiz-quick-card .wiz-quick-anon-note {
    text-align: center;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.wiz-quick-submit {
    width: 100%;
    font-size: 17px;
    padding: 14px;
}

.wiz-quick-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


@media (max-width: 640px) {
    .wiz-page {
        padding: 0 8px 32px;
    }

    .wiz-card {
        padding: 16px;
        border-radius: 6px;
    }

    .wiz-type-toggle {
        flex-direction: column;
    }

    .wiz-billing-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wiz-des-row {
        padding: 10px 12px;
    }

    .wiz-input-extra {
        width: 100%;
        box-sizing: border-box;
    }

    .wiz-des-amount input.wiz-amount-input {
        flex: 1;
    }

    .wiz-total-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .wiz-total-input-wrap {
        width: 100%;
    }

    .wiz-total-bar input[name="amount"] {
        flex: 1;
        width: 100%;
    }

    .wiz-progress-label {
        font-size: 10px;
    }

    .wiz-progress-circle {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .wiz-nav {
        gap: 12px;
    }

    .wiz-btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .wiz-des-body {
        flex: 1 1 100%;
        flex-wrap: wrap;
        order: 1;
    }

    .wiz-add-more {
        order: 2;
    }

    .wiz-des-amount {
        order: 3;
    }

    .wiz-des-body .select2-container {
        min-width: 0;
        width: 100% !important;
    }

    .wiz-card-title {
        font-size: 18px;
    }

    .wiz-review-row {
        font-size: 14px;
    }
}
