/* ============================================
   PROGRESS INDICATOR
   Koszyk → Zamówienie → Potwierdzenie
   ============================================ */
.vr-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto 28px;
    padding: 8px 16px 0;
}

.vr-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.vr-progress__circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--vr-border, #e2e8f0);
    background: var(--vr-white, #fff);
    color: var(--vr-text-light, #64748b);
    text-decoration: none;
    transition: all 0.2s ease;
}

.vr-progress__step--active .vr-progress__circle {
    border-color: var(--vr-primary, #1a6b9a);
    background: var(--vr-primary, #1a6b9a);
    color: #fff;
}

.vr-progress__step--done .vr-progress__circle {
    border-color: var(--vr-green, #22a352);
    background: var(--vr-green, #22a352);
    color: #fff;
}

a.vr-progress__circle:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.vr-progress__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--vr-text-light, #64748b);
    white-space: nowrap;
}

.vr-progress__step--active .vr-progress__label {
    color: var(--vr-primary, #1a6b9a);
    font-weight: 600;
}

.vr-progress__step--done .vr-progress__label {
    color: var(--vr-green, #22a352);
}

.vr-progress__line {
    flex: 1;
    height: 2px;
    background: var(--vr-border, #e2e8f0);
    margin: 0 8px;
    margin-bottom: 22px;
    min-width: 40px;
}

.vr-progress__line--done {
    background: var(--vr-green, #22a352);
}

@media (max-width: 530px) {
    .vr-progress {
        margin-bottom: 24px;
    }
    .vr-progress__circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .vr-progress__circle svg {
        width: 12px;
        height: 12px;
    }
    .vr-progress__label {
        font-size: 11px;
    }
    .vr-progress__line {
        min-width: 28px;
        margin-bottom: 20px;
    }
}
