.spoton-wizard {
    --spoton-accent: #e2720c;
    --spoton-ink: #202020;
    --spoton-soft: #f7f4f1;
    border: 1px solid #e7e1dc;
    border-radius: 12px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

.spoton-progress {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.spoton-progress li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #777;
    text-align: center;
    font-size: 12px;
}

.spoton-progress li::before {
    content: "";
    position: absolute;
    top: 17px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.spoton-progress li:first-child::before { display: none; }
.spoton-progress li.complete::before,
.spoton-progress li.active::before { background: var(--spoton-accent); }

.spoton-progress span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 2px solid #d5d5d5;
    border-radius: 50%;
    background: #fff;
    font-weight: 700;
}

.spoton-progress li.active span,
.spoton-progress li.complete span {
    border-color: var(--spoton-accent);
    background: var(--spoton-accent);
    color: #fff;
}

.spoton-progress li.active strong,
.spoton-progress li.complete strong { color: var(--spoton-ink); }

.spoton-step h3 {
    margin-bottom: 24px;
    color: var(--spoton-ink);
}

.spoton-wizard .form-group { margin-bottom: 22px; }
.spoton-wizard label,
.spoton-wizard legend { font-weight: 600; }
.spoton-wizard legend { font-size: 16px; }

.spoton-options {
    padding: 18px 20px;
    border-radius: 8px;
    background: var(--spoton-soft);
}

.spoton-options > label {
    display: inline-flex;
    align-items: center;
    margin: 7px 24px 7px 0;
    font-weight: 400;
}

.spoton-options input,
.spoton-consent input { margin-right: 7px; }

.spoton-consent label {
    display: block;
    margin: 18px 0 4px;
    font-weight: 400;
}

.spoton-hint {
    padding: 14px 16px;
    border-left: 4px solid var(--spoton-accent);
    background: var(--spoton-soft);
}

.spoton-actions {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #e6e6e6;
}

.spoton-actions .btn { min-width: 135px; }
.spoton-actions .btn-primary {
    border-color: var(--spoton-accent) !important;
    background-color: var(--spoton-accent) !important;
    color: #fff !important;
}

.spoton-actions .btn-secondary {
    border-color: #f2f1f1 !important;
    background-color: #f2f1f1 !important;
    color: #58585a !important;
}

.spoton-actions .btn-primary:hover,
.spoton-actions .btn-primary:focus,
.spoton-actions .btn-primary:active,
.spoton-actions .btn-secondary:hover,
.spoton-actions .btn-secondary:focus,
.spoton-actions .btn-secondary:active {
    border-color: #303030 !important;
    background-color: #303030 !important;
    color: #fff !important;
}
.spoton-wizard .invalid-feedback:empty { display: none !important; }
.spoton-wizard .has-api-error { border-color: #dc3545; }

@media (max-width: 767px) {
    .spoton-wizard { padding: 20px 15px; }
    .spoton-progress { gap: 2px; margin-bottom: 28px; }
    .spoton-progress strong { display: none; }
    .spoton-progress span { width: 32px; height: 32px; }
    .spoton-progress li::before { top: 15px; }
    .spoton-options > label { display: flex; margin-right: 0; }
    .spoton-actions .btn { min-width: 115px; }
}
