/* Shared order tracking (Validée → Expédiée → Livrée) */

.track-line {
    height: 4px;
    background-color: #ddd;
    width: 100%;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.line-active {
    background-color: var(--color-burgundy);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.step-dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
    position: absolute;
    top: -8px;
    z-index: 2;
    transition: all 0.3s;
}

.step-1 { left: 0%; }
.step-2 { left: 50%; transform: translateX(-50%); }
.step-3 { right: 0%; }

.step-active {
    background-color: var(--color-burgundy);
    box-shadow: 0 0 0 4px rgba(56, 17, 28, 0.2);
}

.step-label {
    position: absolute;
    top: 25px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
    width: 100px;
    text-align: center;
}

.label-1 { left: -40px; }
.label-2 { left: 50%; transform: translateX(-50%); }
.label-3 { right: -40px; }

.label-active { color: var(--color-burgundy); }

