/* --- ИНДИКАТОР ШАГОВ --- */
.checkout-steps {
    border-top: 1px solid #2b2b2b;
    box-shadow: 0 4px 15px rgb(0 0 0);
    display: flex;
    justify-content: center;
    gap: 1em;
    padding: 1em 0;
    background-color: #161616;
    position: sticky;
    top: 0;
    z-index: 999;
}
.step-indicator {
    border-top: 1px solid #5b5b5b;
    box-shadow: 0 4px 15px rgb(0 0 0);
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.step-indicator.active {
    color: #ffffff;
    background-color: rgb(0 0 0);
    border-color: #FFEB3B;
    
    
}
.step-indicator::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    
}
.step-indicator[data-step="1"]::before { content: "\f2c2"; }
.step-indicator[data-step="2"]::before { content: "\f54e"; }
.step-indicator[data-step="3"]::before { content: "\f09d"; }

