/* =========================================
   BOOKING WIZARD STYLES
   Premium Multi-Step Repair Booking Flow
========================================= */

:root {
    --wizard-primary: #0A1FB8;
    --wizard-primary-dark: #070E6B;
    --wizard-primary-light: #E8ECFF;
    --wizard-accent: #FF6B35;
    --wizard-success: #10B981;
    --wizard-text-dark: #0F172A;
    --wizard-text-light: #64748B;
    --wizard-text-muted: #94A3B8;
    --wizard-bg-light: #FFFFFF;
    --wizard-white: #FFFFFF;
    --wizard-border: #E2E8F0;
    --wizard-shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --wizard-shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --wizard-shadow-lg: 0 20px 50px rgba(10,31,184,0.15);
    --wizard-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   WIZARD CONTAINER
========================================= */

.booking-wizard {
    background: var(--wizard-bg-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* =========================================
   PROGRESS INDICATOR
========================================= */

.wizard-progress {
    background: var(--wizard-white);
    padding: 32px 0;
    border-bottom: 1px solid var(--wizard-border);
    position: sticky;
    top: 72px;
    z-index: 100;
    box-shadow: var(--wizard-shadow-sm);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: var(--wizard-transition);
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--wizard-white);
    border: 3px solid var(--wizard-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--wizard-text-muted);
    transition: var(--wizard-transition);
    z-index: 2;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--wizard-text-muted);
    transition: var(--wizard-transition);
    white-space: nowrap;
}

.progress-step.active .step-circle {
    background: var(--wizard-primary);
    border-color: var(--wizard-primary);
    color: var(--wizard-white);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(10,31,184,0.3);
}

.progress-step.active .step-label {
    color: var(--wizard-primary);
}

.progress-step.completed .step-circle {
    background: var(--wizard-success);
    border-color: var(--wizard-success);
    color: var(--wizard-white);
}

.progress-step.completed .step-label {
    color: var(--wizard-success);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--wizard-border);
    position: relative;
    min-width: 60px;
    max-width: 120px;
    transition: var(--wizard-transition);
}

.progress-line.completed {
    background: var(--wizard-success);
}

/* =========================================
   WIZARD STEPS - BASE
========================================= */

.wizard-step {
    padding: 80px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;              /* ✅ instead of absolute */
}

.wizard-step.active {
    display: block;             /* ✅ restores layout flow */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.step-content {
    max-width: 1000px;
    margin: 0 auto;
}

.step-content-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   STEP HEADERS
========================================= */

.step-header {
    text-align: center;
    margin-bottom: 48px;
}

.step-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--wizard-text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.step-description {
    font-size: 18px;
    color: var(--wizard-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   STEP 1: DEVICE SELECTION
========================================= */

.device-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.device-option {
    background: var(--wizard-white);
    border: 3px solid var(--wizard-border);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--wizard-transition);
    position: relative;
    overflow: hidden;
}

.device-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--wizard-primary-light) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-option:hover {
    transform: translateY(-8px);
    box-shadow: var(--wizard-shadow-md);
    border-color: var(--wizard-primary);
}

.device-option:hover::before {
    opacity: 0.3;
}

.device-option.selected {
    border-color: var(--wizard-primary);
    background: var(--wizard-primary-light);
    box-shadow: 0 20px 40px rgba(10,31,184,0.2);
}

.device-option.selected::before {
    opacity: 1;
}

.device-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.device-icon-wrapper img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: var(--wizard-transition);
}

.device-option:hover .device-icon-wrapper img,
.device-option.selected .device-icon-wrapper img {
    transform: scale(1.1);
}

.device-option h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wizard-text-dark);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.device-option p {
    font-size: 14px;
    color: var(--wizard-text-light);
    position: relative;
    z-index: 1;
}

.selection-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--wizard-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wizard-white);
    opacity: 0;
    transform: scale(0);
    transition: var(--wizard-transition);
}

.device-option.selected .selection-indicator {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   STEP 2: BRAND & MODEL
========================================= */

.device-summary-panel {
    position: relative;
}

.summary-card {
    background: var(--wizard-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--wizard-shadow-md);
    position: sticky;
    top: 200px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.summary-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wizard-text-dark);
}

.change-link,
.change-link-small {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--wizard-primary);
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--wizard-transition);
}

.change-link:hover,
.change-link-small:hover {
    color: var(--wizard-primary-dark);
    transform: translateX(-2px);
}

.device-display {
    text-align: center;
    padding: 24px 0;
}

.device-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    background: var(--wizard-bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-icon-large img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.device-display h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wizard-text-dark);
}

.brand-model-form {
    background: var(--wizard-white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--wizard-shadow-sm);
}

.brand-model-form .step-header {
    text-align: left;
    margin-bottom: 40px;
}

/* =========================================
   FORM ELEMENTS
========================================= */

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--wizard-text-dark);
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--wizard-border);
    border-radius: 12px;
    font-size: 15px;
    color: var(--wizard-text-dark);
    transition: var(--wizard-transition);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--wizard-primary);
    box-shadow: 0 0 0 4px rgba(10,31,184,0.1);
}

.form-input::placeholder {
    color: var(--wizard-text-muted);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* =========================================
   STEP ACTIONS
========================================= */

.step-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.step-actions.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--wizard-transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--wizard-primary);
    color: var(--wizard-white);
    box-shadow: 0 4px 14px rgba(10,31,184,0.3);
}

.btn-primary:hover {
    background: var(--wizard-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10,31,184,0.4);
}

.btn-primary:disabled {
    background: var(--wizard-text-muted);
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: var(--wizard-white);
    color: var(--wizard-primary);
    border: 2px solid var(--wizard-primary);
}

.btn-secondary:hover {
    background: var(--wizard-primary-light);
    transform: translateY(-2px);
}

.back-btn-text {
    background: transparent;
    color: var(--wizard-text-light);
    border: none;
}

.back-btn-text:hover {
    color: var(--wizard-primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* =========================================
   STEP 3: SERVICE SELECTION
========================================= */

.service-selection {
    background: var(--wizard-white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--wizard-shadow-sm);
}

.service-selection .step-header {
    text-align: left;
    margin-bottom: 32px;
}

.service-grid {
    display: grid;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--wizard-bg-light);
    border: 2px solid var(--wizard-border);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--wizard-transition);
}

.service-item:hover {
    border-color: var(--wizard-primary);
    background: var(--wizard-white);
    box-shadow: var(--wizard-shadow-sm);
}

.service-item.selected {
    border-color: var(--wizard-primary);
    background: var(--wizard-primary-light);
    box-shadow: 0 4px 12px rgba(10,31,184,0.15);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--wizard-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--wizard-transition);
}

.service-item.selected .service-checkbox {
    background: var(--wizard-primary);
    border-color: var(--wizard-primary);
    color: var(--wizard-white);
}

.service-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--wizard-text-dark);
    margin-bottom: 4px;
}

.service-details p {
    font-size: 13px;
    color: var(--wizard-text-light);
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--wizard-primary);
}

/* =========================================
   REPAIR SUMMARY PANEL
========================================= */

.repair-summary-panel {
    position: relative;
}

.summary-card.sticky {
    position: sticky;
    top: 200px;
}

.summary-device {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.device-info {
    flex: 1;
}

.device-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--wizard-primary-light);
    color: var(--wizard-primary);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.device-info p {
    font-size: 14px;
    color: var(--wizard-text-light);
}

.summary-divider {
    height: 1px;
    background: var(--wizard-border);
    margin: 20px 0;
}

.selected-services {
    margin: 20px 0;
}

.empty-state {
    text-align: center;
    color: var(--wizard-text-muted);
    font-size: 14px;
    padding: 20px;
}

.service-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--wizard-bg-light);
}

.service-summary-item:last-child {
    border-bottom: none;
}

.service-summary-name {
    font-size: 14px;
    color: var(--wizard-text-dark);
    flex: 1;
}

.service-summary-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--wizard-text-dark);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.summary-total span {
    font-size: 16px;
    color: var(--wizard-text-light);
}

.summary-total strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--wizard-primary);
}

.summary-total.large strong {
    font-size: 32px;
}

/* =========================================
   STEP 4: DELIVERY OPTIONS
========================================= */

.delivery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.delivery-option {
    background: var(--wizard-white);
    border: 3px solid var(--wizard-border);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--wizard-transition);
    position: relative;
}

.delivery-option:hover {
    transform: translateY(-8px);
    border-color: var(--wizard-primary);
    box-shadow: var(--wizard-shadow-md);
}

.delivery-option.selected {
    border-color: var(--wizard-primary);
    background: var(--wizard-primary-light);
    box-shadow: 0 20px 40px rgba(10,31,184,0.2);
}

.delivery-icon {
    color: var(--wizard-text-light);
    margin-bottom: 20px;
    transition: var(--wizard-transition);
}

.delivery-option:hover .delivery-icon,
.delivery-option.selected .delivery-icon {
    color: var(--wizard-primary);
    transform: scale(1.1);
}

.delivery-option h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wizard-text-dark);
    margin-bottom: 8px;
}

.delivery-option p {
    font-size: 14px;
    color: var(--wizard-text-light);
    margin-bottom: 16px;
}

.delivery-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--wizard-success);
    color: var(--wizard-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.delivery-badge.fastest {
    background: var(--wizard-accent);
}

.delivery-badge.convenient {
    background: var(--wizard-primary);
}

/* =========================================
   STEP 5: BOOKING FORM
========================================= */

.booking-form {
    background: var(--wizard-white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--wizard-shadow-sm);
}

.booking-form .step-header {
    text-align: left;
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--wizard-border);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wizard-text-dark);
    margin-bottom: 20px;
}

/* =========================================
   FINAL SUMMARY PANEL
========================================= */

.final-summary-panel {
    position: relative;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--wizard-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.summary-value {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-value strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--wizard-text-dark);
}

.summary-value span {
    font-size: 14px;
    color: var(--wizard-text-light);
}

.summary-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-service-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--wizard-text-dark);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--wizard-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wizard-text-light);
    font-size: 13px;
}

.trust-item svg {
    color: var(--wizard-success);
}

/* =========================================
   STEP 6: CONFIRMATION
========================================= */

.confirmation-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.confirmation-card {
    background: var(--wizard-white);
    border-radius: 24px;
    padding: 60px 48px;
    box-shadow: var(--wizard-shadow-lg);
    text-align: center;
    max-width: 600px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    color: var(--wizard-success);
    margin-bottom: 24px;
    animation: checkmark 0.6s ease 0.3s both;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.confirmation-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--wizard-text-dark);
    margin-bottom: 16px;
}

.confirmation-description {
    font-size: 16px;
    color: var(--wizard-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.booking-details {
    background: var(--wizard-bg-light);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--wizard-border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: var(--wizard-text-light);
}

.detail-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--wizard-text-dark);
}

.confirmation-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.help-text {
    font-size: 14px;
    color: var(--wizard-text-light);
}

.help-text a {
    color: var(--wizard-primary);
    text-decoration: none;
    font-weight: 600;
}

.help-text a:hover {
    text-decoration: underline;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 1024px) {
    .step-content-split {
        grid-template-columns: 1fr;
    }

    .summary-card.sticky,
    .final-summary-panel .summary-card {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .device-summary-panel {
        order: 2;
    }

    .brand-model-form,
    .service-selection,
    .booking-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .booking-wizard {
        padding-top: 60px;
    }

    .wizard-progress {
        padding: 20px 0;
        top: 60px;
    }

    .progress-steps {
        gap: 0;
    }

    .step-label {
        font-size: 11px;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .progress-line {
        min-width: 30px;
        max-width: 60px;
    }

    .wizard-step {
        padding: 40px 0;
    }

    .step-title {
        font-size: 28px;
    }

    .step-description {
        font-size: 16px;
    }

    .device-selection-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .delivery-options {
        grid-template-columns: 1fr;
    }

    .brand-model-form,
    .service-selection,
    .booking-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .step-actions {
        flex-direction: column-reverse;
    }

    .confirmation-card {
        padding: 40px 24px;
    }

    .confirmation-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .step-title {
        font-size: 24px;
    }

    .progress-steps {
        justify-content: start;
        padding: 20px;
    }

    .device-option,
    .delivery-option {
        padding: 32px 20px;
    }
}

/* =========================================
   LOADING STATE
========================================= */

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--wizard-border);
    border-top-color: var(--wizard-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* =========================================
   DOUBLE-CLICK PREVENTION CSS
   Add this to your booking-wizard.css
========================================= */

/* Prevent double-click selection on all interactive elements */
.device-option,
.delivery-option,
.service-item,
button[data-nav],
[data-change-step] {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Add a visual indicator when navigation is disabled */
.device-option[style*="pointer-events: none"],
.delivery-option[style*="pointer-events: none"],
button[data-nav][style*="pointer-events: none"] {
    cursor: not-allowed !important;
    transition: opacity 0.2s ease;
}

/* Prevent rapid clicking on buttons */
.device-option,
.delivery-option,
button[data-nav] {
    transition: transform 0.1s ease, opacity 0.2s ease;
}

/* Visual feedback on click */
.device-option:active:not([style*="pointer-events: none"]),
.delivery-option:active:not([style*="pointer-events: none"]),
button[data-nav]:active:not([disabled]):not([style*="pointer-events: none"]) {
    transform: scale(0.98);
}

/* Disable button states */
button[data-nav]:disabled,
button[data-nav][style*="pointer-events: none"] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Optional: Add a loading state class */
.wizard-step.transitioning {
    pointer-events: none;
    opacity: 0.8;
}

/* =========================================
   MOBILE SUMMARY PANEL - FLOW BELOW SERVICES
========================================= */

@media (max-width: 1024px) {
    /* Change grid to single column */
    .wizard-step[data-step="3"] .step-content-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Service selection comes first */
    .wizard-step[data-step="3"] .service-selection {
        order: 1;
        padding-bottom: 24px;
    }
    
    /* Summary panel comes after (below) */
    .wizard-step[data-step="3"] .repair-summary-panel {
        order: 2;
        position: relative; /* Remove sticky */
    }
    
    .wizard-step[data-step="3"] .repair-summary-panel .summary-card {
        position: relative; /* Remove sticky */
        top: 0;
    }
    
    /* Make summary card full width on mobile */
    .wizard-step[data-step="3"] .repair-summary-panel .summary-card {
        width: 100%;
    }
}

/* Keep desktop behavior unchanged */
@media (min-width: 1025px) {
    .wizard-step[data-step="3"] .step-content-split {
        grid-template-columns: 1fr 400px;
        gap: 48px;
    }
    
    .wizard-step[data-step="3"] .repair-summary-panel .summary-card {
        position: sticky;
        top: 200px;
    }
}

.model {
    font-size: 14px;
    color: #6b7280;
}