
.wc-checkout-progress-wrapper {
    margin: 20px 0 30px 0;
    padding: 20px 0;
    background: #F8F9FA;
    border-radius: 0;
    box-shadow: none;
}

.wc-checkout-progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.progress-step a:hover .step-circle {
    transform: scale(1.08);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: none;
    animation: none;
}

.step-number {
    font-weight: 700;
    font-size: 18px;
    color: #999;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 20px;
    border-radius: 0;
    position: relative;
    top: -20px;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: #000000;
    border-color: #000000;
    box-shadow: none;
    animation: none;
}

.progress-step.active .step-number {
    color: #ffffff;
}

.progress-step.active .step-title {
    color: #000000;
    font-weight: 600;
}

.progress-step.completed .step-circle {
    background: #E6DBD1;
    border-color: #E6DBD1;
}

.progress-step.completed .step-number {
    color: #000000;
}

.progress-step.completed .step-title {
    color: #E6DBD1;
    font-weight: 600;
}

.progress-line.completed {
    background: #E6DBD1;
}

/* Responzívnosť */
@media (max-width: 768px) {
    .wc-checkout-progress-bar {
        padding: 0 10px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        font-size: 16px;
    }
    
    .step-title {
        font-size: 12px;
        max-width: 80px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .progress-line {
        margin: 0 10px;
        top: -15px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .wc-checkout-progress-wrapper {
        margin: 10px 0 20px 0;
        padding: 15px 0;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
    }
    
    .step-number {
        font-size: 14px;
    }
    
    .step-title {
        font-size: 11px;
        max-width: 70px;
    }
    
    .progress-line {
        margin: 0 8px;
        top: -12px;
        height: 2px;
    }
}

/* Dark mode podpora */
@media (prefers-color-scheme: dark) {
    .wc-checkout-progress-wrapper {
        background: #2d2d2d;
    }
    
    .progress-step.active .step-title {
        color: #ffffff;
    }
    
    .step-title {
        color: #cccccc;
    }
}

/* Animácie – vypnuté, bez tieňov */
@keyframes pulse { 
    0% { transform: scale(1); box-shadow: none; } 
    70% { transform: scale(1.03); box-shadow: none; } 
    100% { transform: scale(1); box-shadow: none; } 
}
