/* ==========================================================================
   W3AYS Photography - Luxury Booking Wizard & Checkout UI Styles
   ========================================================================== */

/* Wizard Modal Overlay */
.booking-wizard-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 10500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-wizard-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal Window Container */
.booking-wizard-modal {
    background: linear-gradient(155deg, #14141d 0%, #0a0a0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    width: 100%;
    max-width: 920px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(214, 40, 40, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-wizard-overlay.active .booking-wizard-modal {
    transform: scale(1);
}

/* Modal Header */
.wizard-modal-header {
    padding: 22px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
}

.wizard-title-wrap h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wizard-title-wrap p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 3px 0 0 0;
}

.wizard-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.wizard-close-btn:hover {
    background: #d62828;
    border-color: #d62828;
    transform: rotate(90deg);
}

/* Progress Step Tracker Bar */
.wizard-progress-bar-container {
    padding: 16px 30px;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-steps-tracker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    max-width: 780px;
}

.wizard-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.wizard-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1c1c26;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wizard-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.wizard-step-node.active .wizard-step-circle {
    background: #d62828;
    border-color: #ff4d4d;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(214, 40, 40, 0.6);
    transform: scale(1.1);
}

.wizard-step-node.active .wizard-step-label {
    color: #ffffff;
    font-weight: 700;
}

.wizard-step-node.completed .wizard-step-circle {
    background: #198754;
    border-color: #20c997;
    color: #ffffff;
}

.wizard-step-node.completed .wizard-step-label {
    color: rgba(255, 255, 255, 0.9);
}

.wizard-tracker-line {
    position: absolute;
    top: 17px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.wizard-tracker-fill {
    height: 100%;
    background: linear-gradient(90deg, #198754, #d62828);
    width: 0%;
    transition: width 0.35s ease;
}

/* Wizard Modal Body */
.wizard-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    min-height: 420px;
}

.wizard-step-pane {
    display: none;
    animation: fadeInStep 0.35s ease forwards;
}

.wizard-step-pane.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Header */
.step-pane-header {
    margin-bottom: 24px;
}

.step-pane-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.step-pane-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Form Inputs & Select Boxes (High Contrast) */
.wizard-form-group {
    margin-bottom: 18px;
}

.wizard-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wizard-input,
.wizard-select,
.wizard-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff !important;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.wizard-select option {
    background-color: #161622 !important;
    color: #ffffff !important;
    padding: 8px;
}

.wizard-input:focus,
.wizard-select:focus,
.wizard-textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #d62828;
    box-shadow: 0 0 12px rgba(214, 40, 40, 0.4);
}

.wizard-input::placeholder,
.wizard-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Step 1: Investment Summary Banner */
.wizard-price-summary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Step 2: Province Selector Buttons & Photographer Cards */
.province-pill-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.province-pill-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.province-pill-btn.active {
    background: #d62828 !important;
    border-color: #d62828 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.5);
}

.photographer-select-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.photographer-select-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.photographer-select-card.selected {
    background: rgba(214, 40, 40, 0.14) !important;
    border-color: #d62828 !important;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.pro-avatar-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d62828;
    flex-shrink: 0;
}

.pro-name-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.pro-role-subtitle {
    font-size: 0.8rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 6px;
}

.pro-desc-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    margin: 8px 0 0 0;
}

/* Step 3: Calendar & Time Slots Grid (Fixed High-Contrast) */
.wizard-calendar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 18px;
}

.cal-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cal-month-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.cal-nav-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-nav-btn:hover {
    background: #d62828;
    border-color: #d62828;
    color: #ffffff;
}

.cal-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.cal-weekday-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 6px;
    text-transform: uppercase;
}

.cal-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.cal-day-cell:hover:not(.disabled):not(.empty) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cal-day-cell.selected {
    background: #d62828 !important;
    color: #ffffff !important;
    border-color: #ff4d4d !important;
    font-weight: 800;
    box-shadow: 0 0 12px rgba(214, 40, 40, 0.6);
}

.cal-day-cell.today {
    border: 1.5px solid #d62828;
}

.cal-day-cell.disabled {
    color: rgba(255, 255, 255, 0.18);
    cursor: not-allowed;
    background: transparent;
    pointer-events: none;
}

.cal-day-cell.empty {
    background: transparent;
    cursor: default;
    pointer-events: none;
}

/* Time Slot Buttons */
.time-slot-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.time-slot-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.time-slot-btn.selected {
    background: #d62828 !important;
    border-color: #ff4d4d !important;
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(214, 40, 40, 0.4);
}

.time-slot-btn.disabled,
.time-slot-btn:disabled {
    opacity: 0.28;
    cursor: not-allowed !important;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
    color: rgba(255, 255, 255, 0.35) !important;
    text-decoration: line-through;
}

/* Step 5: Booking Review & Payment Selector */
.review-summary-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 20px;
}

.review-summary-table {
    width: 100%;
}

.review-summary-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.92rem;
}

.review-summary-table td:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    width: 40%;
}

.review-summary-table td:last-child {
    color: #ffffff;
    font-weight: 700;
    text-align: right;
}

/* Payment Mode Radio Cards */
.payment-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.payment-choice-card {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.payment-choice-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.payment-choice-card.selected {
    background: rgba(214, 40, 40, 0.14);
    border-color: #d62828;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.35);
}

.payment-choice-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #d62828;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
}

.payment-choice-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.payment-choice-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff4d4d;
    margin-bottom: 4px;
}

.payment-choice-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* FNB Banking Details Card */
.fnb-banking-card {
    background: linear-gradient(135deg, rgba(20, 20, 28, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
    border: 1px solid rgba(0, 168, 150, 0.4);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.fnb-header-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fnb-brand-badge {
    background: #008272;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fnb-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.fnb-detail-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
}

.fnb-detail-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
}

.fnb-detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fnb-copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #00e5c9;
    border-radius: 6px;
    padding: 3px 9px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fnb-copy-btn:hover {
    background: #008272;
    color: #ffffff;
    border-color: #008272;
}

/* 24-Hour Payment Deadline Alert */
.payment-deadline-alert {
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.2) 0%, rgba(214, 40, 40, 0.1) 100%);
    border: 1px solid rgba(214, 40, 40, 0.5);
    border-left: 5px solid #d62828;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 18px;
    color: #ffd6d6;
    font-size: 0.88rem;
    line-height: 1.5;
}

.payment-deadline-alert strong {
    color: #ffffff;
}

/* ==========================================================================
   Compact High-Res Invoice Preview (Single A4 Page Fit)
   ========================================================================== */
.invoice-preview-container {
    background: #ffffff !important;
    color: #111827 !important;
    border-radius: 12px;
    padding: 22px 26px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    max-width: 780px;
    margin: 0 auto 16px;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    page-break-inside: avoid;
}

.inv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.inv-logo-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.inv-logo-subtitle {
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.35;
}

.inv-meta-block {
    text-align: right;
}

.inv-badge-type {
    background: #d62828;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 4px;
}

.inv-number {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    font-family: monospace;
}

.inv-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.inv-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.inv-info-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
}

.inv-info-card h6 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d62828;
    margin-bottom: 6px;
}

.inv-info-card p {
    font-size: 0.82rem;
    margin: 0 0 2px;
    color: #1f2937;
    line-height: 1.35;
}

.inv-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
}

.inv-table th {
    background: #0f172a;
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    text-align: left;
}

.inv-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.82rem;
    color: #1f2937;
}

.inv-table th.text-end,
.inv-table td.text-end {
    text-align: right;
}

.inv-totals-box {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-bottom: 14px;
}

.inv-total-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.85rem;
    color: #4b5563;
}

.inv-total-row.highlight {
    border-top: 2px solid #0f172a;
    padding-top: 6px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.inv-total-row.deposit-due {
    color: #d62828;
    font-weight: 800;
    font-size: 0.95rem;
    border-top: 1px dashed #d1d5db;
    padding-top: 6px;
    margin-top: 4px;
}

.inv-banking-box {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.inv-banking-title {
    color: #0f766e;
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.inv-banking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 10px;
    font-size: 0.78rem;
    color: #134e4a;
}

.inv-notice-24h {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-left: 4px solid #e11d48;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.76rem;
    color: #9f1239;
    line-height: 1.35;
    margin-bottom: 12px;
}

.inv-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: #6b7280;
}

/* Invoice Action Toolbar */
.invoice-actions-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Modal Footer Navigation */
.wizard-modal-footer {
    padding: 18px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.35);
}

.wizard-btn-prev {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard-btn-prev:hover {
    background: rgba(255, 255, 255, 0.18);
}

.wizard-btn-next {
    background: linear-gradient(135deg, #d62828 0%, #b21e1e 100%);
    border: none;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wizard-btn-next:hover {
    background: linear-gradient(135deg, #e53838 0%, #c42424 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.6);
}

.wizard-btn-submit {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
    border: none;
    color: #ffffff;
    padding: 13px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(25, 135, 84, 0.5);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wizard-btn-submit:hover {
    background: linear-gradient(135deg, #1fa768 0%, #178351 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 135, 84, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wizard-modal-header {
        padding: 16px 18px;
    }
    .wizard-modal-body {
        padding: 18px 14px;
    }
    .wizard-modal-footer {
        padding: 14px 18px;
    }
    .payment-choice-grid {
        grid-template-columns: 1fr;
    }
    .inv-grid-2col {
        grid-template-columns: 1fr;
    }
    .inv-banking-grid {
        grid-template-columns: 1fr;
    }
    .wizard-step-label {
        display: none;
    }
}
