    /* Base circle */
.stepper-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bs-secondary-bg);
    color: var(--bs-body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto;
    transition: all .25s ease;
    position: relative;
}
.stepper-circle.completed {
    background: var(--bs-success);
    color: #fff;
}
.stepper-circle.current {
    background: var(--bs-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow:
        0 0 0 4px rgba(var(--bs-primary-rgb), 0.15),
        0 6px 14px rgba(0, 0, 0, 0.15);
}
.stepper-circle.current::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(var(--bs-primary-rgb), 0.25);
    animation: stepperPulse 1.8s infinite ease-out;
}

@keyframes stepperPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.stepper-item .stepper-title-small {
    font-size: 11px;
    margin-top: 6px;
    color: var(--bs-secondary-color);
    transition: all .2s ease;
}

.stepper-item .stepper-circle.current + .stepper-title-small {
    color: var(--bs-primary);
    font-weight: 600;
}
.mobile-stepper-fixed {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 90;
}
.mobile-stepper {
    backdrop-filter: blur(6px);
}
.stepper-progress {
    height: 3px;
    background: var(--bs-border-color);
    width: 100%;
}
.stepper-progress-bar {
    height: 100%;
    background: var(--bs-primary);
    transition: width .4s cubic-bezier(.4,0,.2,1);
}
