/* ─────────────────────────────────────────
   Cart Progress Indicator
   Used on: cart, checkout, order-received
   Line rendered via ::before on __steps;
   top: 5px = half of 10px dot = exact center.
   ───────────────────────────────────────── */

.fe-cart-progress {
    max-width: 600px;
    margin: 0.75rem auto 1.5rem;
    padding: 0 2rem;
}

.fe-cart-progress__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* Line bisects dot centre: top = dot-height / 2 = 5px */
.fe-cart-progress__steps::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 1px;
    background: var(--fe-border);
    z-index: 0;
}

.fe-cart-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    position: relative;
    z-index: 1;
}

.fe-cart-progress__dot {
    width: 10px;
    height: 10px;
    background: var(--fe-white);
    border: 1px solid var(--fe-warm-gray);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.fe-cart-progress__step--active .fe-cart-progress__dot {
    background: var(--fe-black);
    border-color: var(--fe-black);
}

.fe-cart-progress__step--done .fe-cart-progress__dot {
    background: var(--fe-black);
    border-color: var(--fe-black);
}

.fe-cart-progress__label {
    font-family: var(--fe-font-body);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fe-warm-gray);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.fe-cart-progress__step--active .fe-cart-progress__label {
    color: var(--fe-black);
    font-weight: 500;
}

/* ── Responsive ───────────────────────── */

@media (max-width: 768px) {
    .fe-cart-progress {
        /* Alineado con el 1rem del wrapper .fe-co */
        padding: 0;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .fe-cart-progress__label {
        font-size: 7px;
        letter-spacing: 0.15em;
    }
}
