/* Checkout Steps - Modern Tasaru0131m */
.payment-process {
    margin: 40px 0;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #999;
    font-size: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.checkout-step.active .step-icon {
    background-color: #000;
    color: white;
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    text-align: center;
}

.checkout-step.active .step-label {
    color: #000;
    font-weight: 600;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -25px;
    min-width: 50px;
    max-width: 80px;
}

/* Responsive Tasaru0131m */
@media (max-width: 576px) {
    .checkout-steps {
        max-width: 100%;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .step-connector {
        min-width: 30px;
        top: -20px;
    }
}
