/**
 * Envio24 – Order Form – Steps Indicator
 *
 * @version 1.0.6
 * @package envio24-core/assets/css/order-form/
 *
 * ZMIANY 1.0.6 (PL):
 * - Usunięto wszelkie reguły dotyczące layoutu formularza (#e24-order-form, .e24-section).
 *   Odpowiedzialność za RWD formularza przejmuje base.css (v3.2.4).
 * - Pozostawiono tylko style paska postępu (.e24-steps-*).
 */

/* STYLE PASKA POSTĘPU */
.e24-steps-indicator {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Wersja dolna */
.e24-steps-indicator--bottom {
    display: block;
    width: 100%;
    margin-bottom: 0;
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 30px;
    padding-bottom: 30px;
}

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

/* Element kroku */
.e24-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    cursor: default;
}

/* Ikona */
.e24-step__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E0E0E0;
    color: #888;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Label */
.e24-step__label {
    font-family: "Rubik", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    transition: color 0.3s ease;
    text-align: center;
}

/* Stan: Aktywny */
.e24-step.is-active .e24-step__icon {
    background-color: var(--e24-brand-accent, #D35400);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.15);
    transform: scale(1.1);
}

.e24-step.is-active .e24-step__label {
    color: var(--e24-brand-accent, #D35400);
    font-weight: 700;
}

/* Stan: Ukończony */
.e24-step.is-completed .e24-step__icon {
    background-color: var(--e24-brand-dark, #2F353B);
    color: #fff;
}

.e24-step.is-completed .e24-step__label {
    color: var(--e24-brand-dark, #2F353B);
}

/* Connector */
.e24-step-connector {
    flex: 1;
    height: 2px;
    background-color: #E0E0E0;
    margin: 0 10px;
    position: relative;
    top: -12px;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.e24-step.is-completed + .e24-step-connector {
    background-color: var(--e24-brand-dark, #2F353B);
}

/* RWD (tylko dla paska) */
@media (max-width: 768px) {
    .e24-steps-indicator {
        padding: 0 5px;
    }

    .e24-step__label { font-size: 10px; }
    .e24-step__icon { width: 28px; height: 28px; font-size: 12px; }
    .e24-step-connector { top: -10px; margin: 0 5px; }
}