/* ===== Shared order-status timeline — used on track-order.php and account.php ===== */
.ord-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 24px 0;
}

.ord-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.ord-timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #e0ddd8;
    z-index: 0;
}

.ord-timeline-step.ord-timeline-done:not(:last-child)::after {
    background: #0E2A22;
}

.ord-timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e0ddd8;
    border: 3px solid #e0ddd8;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.ord-timeline-done .ord-timeline-dot {
    background: #0E2A22;
    border-color: #0E2A22;
}

.ord-timeline-active .ord-timeline-dot {
    background: #ffffff;
    border-color: #0E2A22;
    box-shadow: 0 0 0 4px rgba(14, 42, 34, 0.15);
}

.ord-timeline-label {
    font-size: 13px;
    font-weight: 600;
    color: #6d6265;
}

.ord-timeline-done .ord-timeline-label,
.ord-timeline-active .ord-timeline-label {
    color: #0E2A22;
}

@media (max-width: 480px) {
    .ord-timeline-label {
        font-size: 11px;
    }
}
