/**
 * Shared repair wizard styles (homepage booking + fonespot repair-prices).
 * Uses landing theme CSS variables with fallbacks for admin layouts.
 */
/* Fallbacks for admin layout (landing theme already defines these on homepage) */
.repair-wizard-scope {
    --default-color: #3d4348;
    --heading-color: #3e5055;
    --accent-color: #388da8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-hover-color: #77b6ca;
}

.wizard-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
    margin-top: 15px;
}
.wizard-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #fff;
}
.wizard-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wizard-preview-item .remove {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(255,255,255,0.8);
    color: #ff0000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
}


/* Repair booking wizard - matches landing theme */
.repair-wizard-steps {
    padding: 0.5rem 0;
}

.wizard-steps-reset-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.35rem;
}

.wizard-steps-reset-btn {
    border: none;
    background: transparent;
    color: var(--accent-color);
    font-size: 0.85rem;
    line-height: 1;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
}

.wizard-steps-reset-btn:hover {
    color: var(--nav-hover-color);
}

.wizard-step {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--default-color);
    transition: 0.3s;
}

.wizard-step.active {
    color: var(--accent-color);
    font-weight: 600;
}

.wizard-step-num {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.wizard-step.active .wizard-step-num {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.wizard-step-label {
    font-size: 0.9rem;
}

.wizard-connector {
    width: 40px;
    align-self: center;
    border-top: 2px solid #dee2e6;
}

.repair-wizard-box {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.wizard-pane {
    display: none;
}

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

/* Device step: progressive sections */
.wizard-device-section {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 1.25rem;
}

.wizard-device-section:last-of-type {
    margin-bottom: 0;
}

.btn-wizard-back.btn-link-style {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    cursor: pointer;
}

.btn-wizard-back.btn-link-style:hover {
    color: var(--nav-hover-color);
    text-decoration: underline;
}

.wizard-step1-heading-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-step-pane-shell {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 0 78px;
}

.wizard-step-pane-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 38px;
}

.wizard-step-pane-header h4 {
    line-height: 1.2;
}

.wizard-step-pane-header .btn-wizard-back.btn-wizard-back-icon {
    position: absolute;
    left: -78px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    flex-shrink: 0;
}

.wizard-step1-filter-row {
    gap: 0.75rem;
}

.wizard-step1-filter-row .btn-wizard-back.btn-wizard-back-icon {
    margin-left: 0;
    flex-shrink: 0;
}

.btn-wizard-back.btn-wizard-back-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--accent-color);
    border-radius: 15%;
    background: var(--accent-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 28px;
}

.btn-wizard-back.btn-wizard-back-icon:hover {
    color: #fff;
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), black 12%);
    text-decoration: none;
}

.btn-wizard-back.btn-wizard-back-icon .bi {
    color: #fff;
}

.btn-wizard-secondary {
    color: var(--accent-color);
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-wizard-secondary:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
}

/* Primary button in wizard - match theme .btn-get-started */
.repair-wizard-box .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.repair-wizard-box .btn-get-started:hover:not(:disabled) {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.repair-wizard-box .btn-get-started:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.repair-wizard-box a.btn-get-started {
    text-decoration: none;
    display: inline-block;
}

.wizard-device-search-panel {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 1.5rem;
    padding: 1.1rem 1.1rem 1rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
    border-radius: 20px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, #ffffff 100%);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.wizard-device-search-label-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.wizard-device-search-label-wrap .form-label {
    margin-bottom: 0;
}

.wizard-device-search-label-wrap .wizard-steps-reset-btn {
    flex-shrink: 0;
}

.wizard-device-search-help {
    font-size: 0.88rem;
    color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.wizard-device-search-box {
    position: relative;
}

.wizard-device-search-box .form-control {
    min-height: 56px;
    border-radius: 999px;
    padding-top: 0.9rem;
    padding-right: 3rem;
    padding-bottom: 0.9rem;
    padding-left: 3.75rem !important;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.wizard-device-search-box .form-control:focus {
    border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 84%);
}

.wizard-device-search-icon,
.wizard-device-search-clear {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.wizard-device-search-icon {
    left: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 22%);
    font-size: 1rem;
    pointer-events: none;
}

.wizard-device-search-clear {
    right: 0.9rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wizard-device-search-clear:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 78%);
    transform: translateY(-50%) scale(1.04);
}

.wizard-device-search-results {
    position: absolute;
    top: calc(100% - 0.1rem);
    left: 1.1rem;
    right: 1.1rem;
    z-index: 20;
    margin-top: 0.7rem;
    padding: 0.55rem;
    border-radius: 18px;
    border: 1px solid #e9ecef;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    max-height: 360px;
    overflow-y: auto;
}

.wizard-device-search-result {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem 0.9rem;
    border: none;
    border-radius: 14px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wizard-device-search-result:hover,
.wizard-device-search-result:focus-visible {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    outline: none;
}

.wizard-device-search-result-thumb {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8f9fa 0%, #eef2f6 100%);
    overflow: hidden;
    border: 1px solid #eef2f7;
}

.wizard-device-search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.45rem;
}

.wizard-device-search-result-body {
    min-width: 0;
    flex: 1;
}

.wizard-device-search-result-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--heading-color);
    line-height: 1.3;
}

.wizard-device-search-result-meta {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.wizard-device-search-state {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: var(--default-color);
}

.wizard-device-selected {
    margin-top: 0.9rem;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
    background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.wizard-step-pane-header + .wizard-device-selected {
    margin-top: 0;
}

.wizard-device-selected-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.wizard-device-selected-thumb {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9fa 0%, #eef2f6 100%);
    border: 1px solid #eef2f7;
}

.wizard-device-selected-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.45rem;
}

.wizard-device-selected-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--default-color), transparent 28%);
    margin-bottom: 0.15rem;
}

.wizard-device-selected-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
}

.wizard-device-selected-meta {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.84rem;
    color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.wizard-device-search-divider {
    position: relative;
    margin: 0 auto 1.4rem;
    text-align: center;
    max-width: 960px;
}

.wizard-device-search-divider::before {
    content: '';
    position: absolute;
    inset: 50% 0 auto;
    border-top: 1px solid #e9ecef;
    transform: translateY(-50%);
}

.wizard-device-search-divider span {
    position: relative;
    display: inline-block;
    padding: 0 0.8rem;
    background: var(--surface-color);
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wizard-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 200px));
    gap: 0.75rem;
    justify-content: center;
}

/* Category tiles: modern design with prominent images */
#wizard-categories.wizard-option-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

#wizard-categories .wizard-option-card {
    flex: 0 1 200px;
    /* Reduced from 240px to fit 5 in a row */
    min-width: 140px;
}

@media (min-width: 992px) {
    #wizard-categories.wizard-option-grid {
        flex-wrap: nowrap;
        /* Force one line on desktop size */
    }
}

#wizard-categories .wizard-option-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    text-align: center;
    overflow: hidden;
    background: var(--surface-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#wizard-categories .wizard-option-card:hover {
    border-color: var(--nav-hover-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

#wizard-categories .wizard-option-card.selected {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
}

#wizard-categories .wizard-option-card .img-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#wizard-categories .wizard-option-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
    max-width: none;
    margin: 0;
}

#wizard-categories .wizard-option-card .name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    padding: 1rem 0.75rem;
    text-transform: capitalize;
}

.wizard-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    max-width: 240px;
}

.wizard-option-card:hover {
    border-color: var(--nav-hover-color);
}

.wizard-option-card.selected {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.wizard-option-card img {
    max-height: 48px;
    max-width: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.wizard-option-card .name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--heading-color);
}

/* Brand tiles: same modern design as category tiles */
#wizard-brands.wizard-option-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 220px));
    gap: 1.25rem;
    justify-content: center;
}

#wizard-brands .wizard-option-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    text-align: center;
    overflow: hidden;
    background: var(--surface-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#wizard-brands .wizard-option-card:hover {
    border-color: var(--nav-hover-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

#wizard-brands .wizard-option-card.selected {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
}

#wizard-brands .wizard-option-card .img-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#wizard-brands .wizard-option-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: none;
    max-width: none;
    margin: 0;
    padding: 0.75rem;
}

#wizard-brands .wizard-option-card .name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    padding: 1rem 0.75rem;
    text-transform: capitalize;
}

.wizard-brand-filter-input {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 320px;
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.wizard-step1-filter-row .wizard-brand-filter-input {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    margin-bottom: 0;
}

/* Model/device tiles: same modern design as category and brand tiles */
#wizard-products.wizard-option-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 220px));
    gap: 1.25rem;
    justify-content: center;
}

#wizard-products .wizard-option-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    text-align: center;
    overflow: hidden;
    background: var(--surface-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#wizard-products .wizard-option-card:hover {
    border-color: var(--nav-hover-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

#wizard-products .wizard-option-card.selected {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
}

#wizard-products .wizard-option-card .img-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#wizard-products .wizard-option-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: none;
    max-width: none;
    margin: 0;
    padding: 0.75rem;
}

#wizard-products .wizard-option-card .name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    padding: 1rem 0.75rem;
    text-transform: uppercase;
}

/* Step 2: repair list + cart */
/* Step 2: category → jobs drill-down (homepage wizard) */
.wizard-repair-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 220px));
    gap: 1rem;
    justify-content: center;
}

.wizard-repair-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    padding: 1rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    background: var(--surface-color, #fff);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 240px;
}

.wizard-repair-category-card:hover {
    border-color: var(--nav-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.wizard-repair-category-card:focus {
    outline: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    outline-offset: 2px;
}

.wizard-repair-category-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.wizard-repair-category-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wizard-repair-category-card-icon--placeholder {
    font-size: 1.75rem;
    color: var(--accent-color);
    opacity: 0.85;
}

.wizard-repair-category-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.25;
    text-transform: capitalize;
}

.wizard-repair-category-card-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--default-color);
    opacity: 0.85;
    margin-top: 0.35rem;
}

/* Job + quality tiles reuse category card look */
button.wizard-repair-category-card {
    font-family: inherit;
    font-size: inherit;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

.wizard-repair-category-card-icon .wizard-repair-job-icon {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.wizard-repair-picker-jobs-grid,
.wizard-repair-picker-qualities-grid {
    margin-top: 0.25rem;
}

.wizard-repair-category {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #e9ecef;
}

.wizard-repair-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.wizard-repair-category h5 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.wizard-repair-category h5 .wizard-repair-cat-icon {
    width: 29px;
    height: 29px;
    object-fit: contain;
    flex-shrink: 0;
}

.wizard-repair-job.wizard-repair-category-card:hover:not(.in-cart) {
    border-color: var(--nav-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.wizard-repair-job.wizard-repair-category-card.in-cart {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    cursor: not-allowed;
    opacity: 0.9;
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wizard-repair-job.wizard-repair-category-card.in-cart:hover {
    border-color: var(--accent-color);
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wizard-repair-cart {
    background: color-mix(in srgb, var(--accent-color), transparent 94%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 12px;
    padding: 1.25rem;
    position: sticky;
    top: 1rem;
}

@media (max-width: 991.98px) {
    .wizard-step-pane-shell {
        padding: 0;
    }

    .wizard-step-pane-header {
        gap: 0.65rem;
    }

    .wizard-step-pane-header .btn-wizard-back.btn-wizard-back-icon {
        position: static;
        transform: none;
    }
}

.wizard-cart-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.wizard-cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wizard-cart-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    font-size: 0.9rem;
}

.wizard-cart-list li:last-child {
    border-bottom: none;
}

.wizard-cart-item-price {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}

.wizard-cart-remove {
    background: none;
    border: none;
    color: var(--default-color);
    padding: 0.2rem;
    cursor: pointer;
    border-radius: 4px;
}

.wizard-cart-remove:hover {
    color: #c00;
    background: color-mix(in srgb, #c00, transparent 90%);
}

.wizard-cart-empty {
    font-size: 0.9rem;
    color: var(--default-color);
    opacity: 0.8;
    padding: 0.5rem 0;
}

.wizard-cart-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.wizard-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.wizard-stores-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wizard-store-card {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.wizard-store-card:hover {
    border-color: var(--nav-hover-color);
}

.wizard-store-card.selected {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.wizard-store-card .distance {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}

.wizard-store-main {
    width: 100%;
}

.wizard-store-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.wizard-store-title-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.wizard-store-distance-muted {
    color: #8f95b2;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.wizard-store-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.wizard-store-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: #f4b400;
    line-height: 1;
}

.wizard-store-rating-stars i {
    font-size: 0.92rem;
}

.wizard-store-rating-text {
    font-size: 0.82rem;
    color: #6c757d;
}

.wizard-store-estimate-key {
    color: #8f95b2;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 0.15rem;
}

.wizard-store-estimate-price {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.wizard-store-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}

.wizard-store-meta .dot {
    color: #adb5bd;
}


.wizard-google-map {
    width: 100%;
    min-height: 280px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
}

.repair-wizard-summary {
    padding: 1rem;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 10px;
}

.wizard-repair-picker-qualities {
    padding-top: 0.25rem;
}

.wizard-repair-picker-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.95rem;
}

.wizard-repair-picker-toolbar .btn-wizard-back.btn-link-style {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.wizard-repair-picker-context {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
    min-width: 0;
}

.wizard-repair-picker-context-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
    color: var(--heading-color);
    font-size: 0.82rem;
    line-height: 1.2;
}

.wizard-repair-picker-context-pill strong {
    font-weight: 700;
    color: var(--heading-color);
}

.wizard-repair-qualities-spinner {
    color: var(--accent-color);
}

.wizard-part-quality-option.wizard-repair-category-card {
    text-align: center;
}

.wizard-part-quality-option.wizard-repair-category-card:hover {
    border-color: var(--nav-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.wizard-part-quality-option.wizard-repair-category-card:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent-color), transparent 35%);
    outline-offset: 2px;
}

.wizard-repair-quality-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 0.35rem;
    line-height: 1.2;
}

.wizard-repair-quality-price.is-store {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--default-color);
    opacity: 0.9;
}


/* ===== Admin pricing matrix (fonespot repair-prices step 2) ===== */
.repair-wizard-scope .repair-quality-workspace {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.repair-wizard-scope .repair-quality-nav {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 14px;
    background: var(--surface-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 520px;
    overflow: auto;
}

.repair-wizard-scope .repair-quality-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--heading-color), transparent 25%);
    padding: 4px 8px 8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.repair-wizard-scope .repair-quality-nav-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.repair-wizard-scope .repair-quality-nav-check .form-check-input {
    margin: 0;
    cursor: pointer;
}

.repair-wizard-scope .repair-quality-nav-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.55rem;
    width: 100%;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: inherit;
    padding: 0.75rem 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.repair-wizard-scope .repair-quality-nav-item.is-unavailable {
    opacity: 0.55;
}

.repair-wizard-scope .repair-quality-nav-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.repair-wizard-scope .repair-quality-nav-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.repair-wizard-scope .repair-quality-nav-item.active {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.repair-wizard-scope .repair-quality-nav-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
}

.repair-wizard-scope .repair-quality-nav-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    font-size: 0.72rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.repair-wizard-scope .repair-quality-panel {
    min-width: 0;
}

.repair-wizard-scope .repair-quality-detail {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 16px;
    background: var(--surface-color);
    padding: 1.15rem 1.25rem 1.35rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.repair-wizard-scope .repair-quality-detail-header {
    margin-bottom: 1.1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.repair-wizard-scope .repair-quality-detail-header h5 {
    color: var(--heading-color);
    font-weight: 700;
}

.repair-wizard-scope .repair-quality-detail-header p {
    margin-top: 0.3rem;
    font-size: 0.86rem;
}

.repair-wizard-scope .repair-quality-detail-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
}

.repair-wizard-scope .repair-quality-field label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--heading-color);
    font-size: 0.84rem;
    font-weight: 600;
}

.repair-wizard-scope .repair-quality-field--full {
    grid-column: 1 / -1;
}

.repair-wizard-scope .repair-quality-input,
.repair-wizard-scope .repair-quality-cost-input {
    min-height: 44px;
    border-radius: 10px;
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%) !important;
}

.repair-wizard-scope .vendor-sku-select {
    width: 100%;
}

.repair-wizard-scope .repair-quality-detail .select2-container {
    width: 100% !important;
}

.repair-wizard-scope .repair-quality-detail .select2-container--default .select2-selection--multiple {
    min-height: 46px;
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 10px;
    padding: 4px 6px;
}

@media (max-width: 900px) {
    .repair-wizard-scope .repair-quality-workspace {
        grid-template-columns: 1fr;
    }

    .repair-wizard-scope .repair-quality-nav {
        max-height: none;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.55rem;
    }

    .repair-wizard-scope .repair-quality-nav-title {
        display: none;
    }

    .repair-wizard-scope .repair-quality-nav-item {
        min-width: 180px;
        flex: 0 0 auto;
    }

    .repair-wizard-scope .repair-quality-detail-fields {
        grid-template-columns: 1fr;
    }
}

.repair-wizard-scope .repair-flow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.repair-wizard-scope .repair-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    max-height: 360px;
    overflow: auto;
    padding: 6px 4px;
}

.repair-wizard-scope .repair-picker-tile {
    border: 2px solid #e9ecef;
    border-radius: 14px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    background: var(--surface-color);
    min-height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.repair-wizard-scope .repair-picker-tile:hover {
    border-color: var(--nav-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.repair-wizard-scope .repair-picker-tile.active {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.repair-wizard-scope .repair-picker-tile .name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    word-break: break-word;
    color: var(--heading-color);
}

.repair-wizard-scope .repair-picker-tile .img-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.repair-wizard-scope .repair-picker-tile .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.repair-wizard-scope .repair-picker-tile .img-wrap .img-placeholder {
    font-size: 18px;
    line-height: 1;
    color: var(--accent-color);
}

.repair-wizard-scope .repair-picker-tile.is-add-job {
    border-style: dashed;
    border-color: color-mix(in srgb, var(--default-color), transparent 55%);
    background: color-mix(in srgb, var(--surface-color), transparent 8%);
    opacity: 0.72;
    box-shadow: none;
}

.repair-wizard-scope .repair-picker-tile.is-add-job:hover {
    opacity: 1;
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 94%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.repair-wizard-scope .repair-picker-tile.is-add-job .add-plus {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    background: color-mix(in srgb, var(--default-color), transparent 92%);
}

.repair-wizard-scope .repair-picker-tile.is-add-job:hover .add-plus {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.repair-wizard-scope .repair-picker-tile.is-add-job .name {
    color: color-mix(in srgb, var(--heading-color), transparent 25%);
    font-weight: 600;
}

.repair-wizard-scope .device-group-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
    max-height: 280px;
    overflow-y: auto;
}

/* Admin: keep filter back button left-aligned inside card */
.repair-wizard-scope .wizard-step1-filter-row .btn-wizard-back.btn-wizard-back-icon {
    margin-left: 0;
}

.repair-wizard-scope .wizard-step1-filter-row .wizard-brand-filter-input {
    max-width: none;
}

/* ===== Dark mode (admin / fonespot repair-prices) ===== */
body.dark .repair-wizard-scope {
    --default-color: #bfc9d4;
    --heading-color: #e0e6ed;
    --accent-color: #0197AF;
    --surface-color: #1b2e4b;
    --contrast-color: #ffffff;
    --nav-hover-color: #33b5c9;
}

body.dark .repair-wizard-scope .repair-wizard-box {
    background: transparent;
    box-shadow: none;
}

body.dark .repair-wizard-scope .wizard-connector {
    border-top-color: #3b3f5c;
}

body.dark .repair-wizard-scope .wizard-device-search-panel {
    border-color: rgba(1, 151, 175, 0.35);
    background: linear-gradient(180deg, rgba(1, 151, 175, 0.12) 0%, #1b2e4b 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Dark mode form inputs: intentionally NOT overridden here.
   The global body.dark .form-control from dark/main.css handles background,
   color, and placeholder — matching all other pages (sales, repair, etc.).
   We only override the border to use the wizard accent colour. */
body.dark .repair-wizard-scope .wizard-device-search-box .form-control,
body.dark #repair-prices-wizard-page .wizard-device-search-box .form-control,
body.dark .repair-wizard-scope .wizard-brand-filter-input,
body.dark #repair-prices-wizard-page .wizard-brand-filter-input,
body.dark .repair-wizard-scope .wizard-model-filter-input,
body.dark #repair-prices-wizard-page .wizard-model-filter-input,
body.dark .repair-wizard-scope .repair-quality-input,
body.dark #repair-prices-wizard-page .repair-quality-input,
body.dark .repair-wizard-scope .repair-quality-cost-input,
body.dark #repair-prices-wizard-page .repair-quality-cost-input,
body.dark .repair-wizard-scope .repair-quality-disclaimer-input,
body.dark #repair-prices-wizard-page .repair-quality-disclaimer-input {
    border-color: #3b3f5c !important;
}

body.dark .repair-wizard-scope .wizard-device-search-box .form-control:focus,
body.dark #repair-prices-wizard-page .wizard-device-search-box .form-control:focus,
body.dark .repair-wizard-scope .wizard-brand-filter-input:focus,
body.dark #repair-prices-wizard-page .wizard-brand-filter-input:focus,
body.dark .repair-wizard-scope .wizard-model-filter-input:focus,
body.dark #repair-prices-wizard-page .wizard-model-filter-input:focus,
body.dark .repair-wizard-scope .repair-quality-input:focus,
body.dark #repair-prices-wizard-page .repair-quality-input:focus,
body.dark .repair-wizard-scope .repair-quality-cost-input:focus,
body.dark #repair-prices-wizard-page .repair-quality-cost-input:focus,
body.dark .repair-wizard-scope .repair-quality-disclaimer-input:focus,
body.dark #repair-prices-wizard-page .repair-quality-disclaimer-input:focus {
    border-color: rgba(1, 151, 175, 0.65) !important;
    box-shadow: 0 0 0 3px rgba(1, 151, 175, 0.18) !important;
}

body.dark .repair-wizard-scope .wizard-device-search-icon {
    color: #888ea8;
}

body.dark .repair-wizard-scope .wizard-device-search-clear {
    background: rgba(1, 151, 175, 0.18);
    color: #33b5c9;
}

body.dark .repair-wizard-scope .wizard-device-search-clear:hover {
    background: rgba(1, 151, 175, 0.28);
}

body.dark .repair-wizard-scope .wizard-device-search-results,
body.dark #repair-prices-wizard-page .wizard-device-search-results {
    background: #1b2e4b;
    border-color: #3b3f5c;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

body.dark .repair-wizard-scope .wizard-device-search-result:hover,
body.dark .repair-wizard-scope .wizard-device-search-result:focus-visible {
    background: rgba(1, 151, 175, 0.14);
}

body.dark .repair-wizard-scope .wizard-device-search-result-thumb,
body.dark .repair-wizard-scope .wizard-device-selected-thumb {
    background: linear-gradient(145deg, #1b2e4b 0%, #0e1726 100%);
    border-color: #3b3f5c;
}

body.dark .repair-wizard-scope .wizard-device-search-result-name,
body.dark .repair-wizard-scope .wizard-device-selected-name {
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .wizard-device-search-result-meta,
body.dark .repair-wizard-scope .wizard-device-selected-meta,
body.dark .repair-wizard-scope .wizard-device-search-state,
body.dark .repair-wizard-scope .wizard-device-selected-label {
    color: #888ea8;
}

body.dark .repair-wizard-scope .wizard-device-selected {
    border-color: rgba(1, 151, 175, 0.35);
    background: rgba(1, 151, 175, 0.1);
}

body.dark .repair-wizard-scope .wizard-device-search-divider::before {
    border-top-color: #3b3f5c;
}

body.dark .repair-wizard-scope .wizard-device-search-divider span,
body.dark #repair-prices-wizard-page .wizard-device-search-divider span {
    background: #191e3a;
    color: #888ea8;
}

body.dark .repair-wizard-scope .wizard-option-card,
body.dark .repair-wizard-scope #wizard-categories .wizard-option-card,
body.dark .repair-wizard-scope #wizard-brands .wizard-option-card,
body.dark .repair-wizard-scope #wizard-products .wizard-option-card,
body.dark .repair-wizard-scope .repair-picker-tile,
body.dark .repair-wizard-scope .repair-quality-nav,
body.dark .repair-wizard-scope .repair-quality-detail {
    background: #1b2e4b;
    border-color: #3b3f5c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.dark .repair-wizard-scope .repair-quality-nav-item:hover {
    background: rgba(1, 151, 175, 0.12);
    border-color: rgba(1, 151, 175, 0.35);
}

body.dark .repair-wizard-scope .repair-quality-nav-item.active {
    background: rgba(1, 151, 175, 0.18);
    border-color: rgba(1, 151, 175, 0.5);
    box-shadow: 0 8px 20px rgba(1, 151, 175, 0.15);
}

body.dark .repair-wizard-scope .repair-quality-nav-name,
body.dark .repair-wizard-scope .repair-quality-detail-header h5,
body.dark .repair-wizard-scope .repair-quality-field label {
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .repair-quality-nav-meta,
body.dark .repair-wizard-scope .repair-quality-detail-header p {
    color: #888ea8;
}

body.dark .repair-wizard-scope .repair-quality-detail-header {
    border-bottom-color: #3b3f5c;
}

body.dark .repair-wizard-scope .repair-quality-detail .select2-container--default .select2-selection--multiple {
    background-color: #0e1726;
    border-color: #3b3f5c;
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .repair-quality-detail .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: rgba(1, 151, 175, 0.25);
    border-color: rgba(1, 151, 175, 0.45);
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .wizard-option-card:hover,
body.dark .repair-wizard-scope #wizard-categories .wizard-option-card:hover,
body.dark .repair-wizard-scope #wizard-brands .wizard-option-card:hover,
body.dark .repair-wizard-scope #wizard-products .wizard-option-card:hover,
body.dark .repair-wizard-scope .repair-picker-tile:hover {
    border-color: #33b5c9;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

body.dark .repair-wizard-scope .wizard-option-card.selected,
body.dark .repair-wizard-scope #wizard-categories .wizard-option-card.selected,
body.dark .repair-wizard-scope #wizard-brands .wizard-option-card.selected,
body.dark .repair-wizard-scope #wizard-products .wizard-option-card.selected,
body.dark .repair-wizard-scope .repair-picker-tile.active {
    border-color: #0197AF;
    background: rgba(1, 151, 175, 0.15);
    box-shadow: 0 6px 20px rgba(1, 151, 175, 0.2);
}

body.dark .repair-wizard-scope .wizard-option-card .name,
body.dark .repair-wizard-scope #wizard-categories .wizard-option-card .name,
body.dark .repair-wizard-scope #wizard-brands .wizard-option-card .name,
body.dark .repair-wizard-scope #wizard-products .wizard-option-card .name,
body.dark .repair-wizard-scope .repair-picker-tile .name,
body.dark .repair-wizard-scope .repair-quality-field label {
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .wizard-option-card .img-wrap,
body.dark .repair-wizard-scope #wizard-categories .wizard-option-card .img-wrap,
body.dark .repair-wizard-scope #wizard-brands .wizard-option-card .img-wrap,
body.dark .repair-wizard-scope #wizard-products .wizard-option-card .img-wrap,
body.dark .repair-wizard-scope .repair-picker-tile .img-wrap {
    background: linear-gradient(145deg, #0e1726 0%, #1b2e4b 100%);
}

body.dark .repair-wizard-scope .btn-wizard-back.btn-link-style {
    color: #33b5c9;
}

body.dark .repair-wizard-scope .btn-wizard-back.btn-link-style:hover {
    color: #5cc9da;
}

body.dark .repair-wizard-scope .btn-wizard-back.btn-wizard-back-icon {
    background: #0197AF;
    border-color: #0197AF;
}

body.dark .repair-wizard-scope .btn-wizard-back.btn-wizard-back-icon:hover {
    background: #018a9f;
    border-color: #018a9f;
}

body.dark .repair-wizard-scope .btn-get-started {
    background: #0197AF;
    color: #ffffff;
}

body.dark .repair-wizard-scope .btn-get-started:hover:not(:disabled) {
    background: #018a9f;
    box-shadow: 0 6px 20px rgba(1, 151, 175, 0.25);
}

body.dark .repair-wizard-scope #wizard-grid-wrap {
    background: #0e1726;
    border-color: #3b3f5c !important;
}

body.dark .repair-wizard-scope #wizard-grid-wrap .text-muted {
    color: #888ea8 !important;
}

body.dark .repair-wizard-scope .wizard-step-pane-header h4 {
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .wizard-repair-category-card,
body.dark .repair-wizard-scope .wizard-repair-cart {
    background: #1b2e4b;
    border-color: #3b3f5c;
}

body.dark .repair-wizard-scope .wizard-repair-category-card-name,
body.dark .repair-wizard-scope .wizard-cart-title {
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .wizard-repair-category-card-meta,
body.dark .repair-wizard-scope .wizard-cart-empty {
    color: #888ea8;
}

body.dark .repair-wizard-scope .wizard-store-card {
    background: #1b2e4b;
    border-color: #3b3f5c;
}

body.dark .repair-wizard-scope .wizard-repair-category {
    border-bottom-color: #3b3f5c;
}

body.dark .repair-wizard-scope .wizard-google-map {
    border-color: #3b3f5c;
}

body.dark .repair-wizard-scope .repair-wizard-summary {
    background: rgba(1, 151, 175, 0.12);
    border: 1px solid rgba(1, 151, 175, 0.25);
}

body.dark .repair-wizard-scope .wizard-repair-picker-context-pill {
    background: rgba(1, 151, 175, 0.12);
    border-color: rgba(1, 151, 175, 0.3);
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .wizard-repair-picker-context-pill strong {
    color: #e0e6ed;
}

body.dark .repair-wizard-scope .wizard-preview-item {
    background: #1b2e4b;
    border: 1px solid #3b3f5c;
}

body.dark .repair-wizard-scope .wizard-preview-item .remove {
    background: rgba(27, 46, 75, 0.9);
    border-color: #3b3f5c;
}

body.dark .repair-wizard-scope .repair-picker-tile.is-add-job {
    background: rgba(27, 46, 75, 0.55);
    border-color: #3b3f5c;
    opacity: 0.8;
}

body.dark .repair-wizard-scope .repair-picker-tile.is-add-job:hover {
    background: rgba(1, 151, 175, 0.12);
    border-color: rgba(1, 151, 175, 0.45);
}

body.dark .repair-wizard-scope .repair-picker-tile.is-add-job .add-plus {
    background: rgba(59, 63, 92, 0.65);
    color: #888ea8;
}

body.dark .repair-wizard-scope .repair-picker-tile.is-add-job:hover .add-plus {
    background: rgba(1, 151, 175, 0.2);
    color: #0197af;
}

body.dark .repair-wizard-scope .repair-picker-tile.is-add-job .name {
    color: #888ea8;
}
