.checkout-progress {
    padding: 2rem 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.checkout-page .checkout-progress{
    margin-top: 0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    width: 33.3%;
}
.step:after{
    content: " ";
    position: absolute;
    display: block;
    left:50%;
    top: 25px;
    width:50%;
    height:1px;
    background-color: #eaecef;
    z-index: -1;
}
.step:before{
    content: " ";
    position: absolute;
    display: block;
    right:50%;
    top: 25px;
    width:50%;
    height:1px;
    background-color: #eaecef;
    z-index: -1;
}
.step:last-child:after{
    display: none;
}
.step:first-child:before{
    display: none;
}
.step.active .step-number,
.step.completed .step-number{
    background-color: #845df5;
    color:#fff;
    border-color:#845df5;
    box-shadow: 0 0 10px #845df5;
}

.step.active .step-number{
    font-weight: 700;
}
.step.active .step-label{
    font-weight: 700;
    color:#000;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    position: relative;
}

.step-label {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.checkout-page {
    padding: 40px 0;
}
@media (max-width: 768px) {
    .step-label{
        font-size: 12px;
    }
    .step-number{
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .checkout-progress{
        padding: 1rem 0;
        margin-top: 1.5rem;
    }
    .progress-steps{
        padding: 0;
    }
    .checkout-page {
        padding-top: 20px !important;
    }
}