.booking-progress {
    max-width: 1200px;
    margin: 1rem auto 2rem;
    padding: 1.5rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    border-radius: 22px;

    background: linear-gradient(
            180deg,
            rgba(40,47,68,.92),
            rgba(25,29,50,.98)
    );

    border: 1px solid rgba(216,189,138,.22);

    box-shadow:
            0 18px 40px rgba(0,0,0,.25);
}

.progress-step {
    flex: 1;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: .75rem;

    text-decoration: none;
    color: var(--soft-fawn);

    font-weight: 700;
}

/* Verbindungslinie */

.progress-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 24px;
    left: calc(50% + 24px);

    width: calc(100% - 48px);
    height: 4px;

    background: rgba(216,189,138,.25);

    border-radius: 999px;

    z-index: 0;
}

/* Abgeschlossene Schritte */

.progress-step.completed:not(:last-child)::after {
    background: var(--honey-bronze);
}

/* Kreise */

.progress-step span {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    border: 2px solid rgba(216,189,138,.35);

    color: var(--soft-fawn);

    font-size: 1.2rem;
    font-weight: 800;

    transition: all .25s ease;
}

/* Bereits erledigt */

.progress-step.completed span {
    background: var(--honey-bronze);
    border-color: var(--honey-bronze);
    color: var(--prussian-blue);
}

/* Aktueller Schritt */

.progress-step.current span {
    background: var(--honey-bronze);
    border-color: var(--honey-bronze);

    color: var(--prussian-blue);

    box-shadow:
            0 0 0 4px rgba(236,167,44,.25),
            0 0 20px rgba(236,167,44,.55);
}

/* Beschriftung */

.progress-step p {
    margin: 0;

    font-size: .95rem;
    text-align: center;
    white-space: nowrap;
}

/* Hover */

.progress-step:hover {
    color: var(--honey-bronze);
    text-decoration: none;
}

.progress-step:hover span {
    border-color: var(--honey-bronze);
}

/* Mobile */

@media (max-width: 900px) {

    .booking-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .progress-step {
        flex: 0 0 calc(50% - 1rem);
    }

    .progress-step::after {
        display: none;
    }
}