.reservation-flow {
    display: flex;
    align-items: center;
    margin-top:40px;
    margin-bottom: 40px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lt-step-bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lt-step-color-muted);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-circle.check {
    background: var(--lt-step-bg-active);
    color: var(--lt-step-color-active);
}

.step-circle.check svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.step-label {
    color: var(--lt-step-color-muted);
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: var(--lt-step-bg-active);
    color: var(--lt-step-color-active);
    box-shadow: 0 4px 8px rgba(39, 63, 92, 0.3);
    transform: scale(1.1);
}

.step.active .step-label {
    color: var(--lt-step-bg-active);
    font-weight: 600;
}

.step.completed .step-circle {
    background: var(--lt-step-bg-active);
    color: var(--lt-step-color-active);
}

.step.completed .step-label {
    color: var(--lt-step-bg-active);
    font-weight: 600;
}

.reservation-flow::before {
    content: '';
    position: absolute;
    top: 40px + 20px; /* padding-top + half circle height */
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--lt-step-bg-muted);
    z-index: 1;
}

@media (max-width: 600px) {
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .step-label {
        font-size: 12px;
    }

    .reservation-flow {
        margin-top:20px;
        margin-bottom: 20px;
    }

    .reservation-flow::before {
        top: 30px + 16px;
        left: 15px;
        right: 15px;
    }
}
