.stepper {
    display: flex;
    /*justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;*/
    margin-bottom: 1.6rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.step::before {
    content: "";
    position: absolute;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--border-strong);
    z-index: 0;
}

.step.done::before, .step.active::before {
    background: var(--gold);
}

.step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.step:first-child::before {
    display: none;
}

.step a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step .dot {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--surface-2);
    border: 2px solid var(--border-strong);
    color: var(--text-muted);
    font-weight: 700;
    font-size: .85rem;
}

.step.done .dot {
    border-color: var(--gold);
    background: var(--gold);
    color: #2a1d05;
}

.step.active .dot {
    border-color: var(--gold);
    color: var(--gold-strong);
    background: var(--stepper-gs);
}

.step .lbl {
    font-size: .74rem;
    color: var(--text-muted);
    margin-top: .4rem;
    text-align: center;
}

.step.active .lbl {
    color: var(--text);
    font-weight: 600;
}

/*.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--surface-3);
    border: 1px solid var(--border-strong);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--text-faint);
    margin-bottom: 5px;
    transition: background-color 0.3s, color 0.3s;
}*/

/*.step-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}*/

.step.already-passed .step-circle {
    background-color: var(--gold-soft);
    color: var(--gold-strong);
    border-color: var(--gold);
}

.step.active .step-circle {
    background-color: var(--gold);
    color: #2a1d05;
    border: none;
}

.step-bar {
    width: 100px;
    height: 4px;
    background-color: var(--border);
    transition: background-color 0.3s;
    border-radius: 10px;
    margin-bottom: 20px;
}

.step-bar.already-passed {
    background-color: var(--gold-soft);
    border: 1px solid var(--gold);
}

.step.already-passed .step-title {
    color: var(--text-muted);
}

.step.active .step-title {
    color: var(--gold);
}

/*****************
 VERTICAL STEPPER
 *****************/

.v-stepper {
    flex-shrink: 0;
    position: sticky;
    top: 1.5rem;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}
.v-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.v-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.v-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border-strong);
    background: var(--surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-faint);
    transition: all 0.25s;
    flex-shrink: 0;
}
.v-step.active .v-step-dot {
    border-color: var(--gold);
    background: var(--gold-soft);
    color: var(--gold-strong);
}
.v-step.done .v-step-dot {
    border-color: var(--success);
    background: rgba(79, 174, 139, 0.12);
}
.v-step-connector {
    width: 1.5px;
    height: 32px;
    background: var(--border);
    margin: 3px 0;
    transition: background 0.25s;
}
.v-step.done .v-step-connector {
    background: rgba(79, 174, 139, 0.3);
}

.v-step-info {
    padding-top: 3px;
    padding-bottom: 0;
}

.v-step-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-faint);
    letter-spacing: 0.03em;
    transition: color 0.25s;
}

.v-step.active .v-step-title {
    color: var(--text);
}

.v-step.done .v-step-title {
    color: var(--text-muted);
}

.v-step-status {
    font-size: 0.62rem;
    margin-top: 1px;
    color: var(--text-faint);
    transition: color 0.25s;
}
.v-step.active .v-step-status {
    color: var(--gold);
}

.v-step.done .v-step-status {
    color: var(--success);
}

.v-step-spacer {
    height: 32px;
}

/* Coche */
.v-step-dot .vscheckmark {
    width: 12px;
    height: 12px;
    position: relative;
    display: block;
}

.v-step-dot .vscheckmark::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 1px;
    width: 5px;
    height: 8px;
    border: 1.5px solid var(--success);
    border-top: none; border-left: none;
    transform: rotate(45deg);
}
