/* Order Status Tracker */
.status-tracker {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 1.5rem 0;
    position: relative;
}

.status-tracker::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.status-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.status-dot {
    width: 14px;
    height: 14px;
    background: #e0e0e0;
    border-radius: 50%;
    border: 2px solid #fff; /* Gap for line */
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.status-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
}

/* Active/Completed States */
.status-step.completed .status-dot {
    background: var(--action-green);
}

.status-step.completed .status-label {
    color: var(--action-green);
}

.status-step.active .status-dot {
    background: var(--action-green);
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(46, 89, 54, 0.1);
}

.status-step.active .status-label {
    color: var(--action-green);
    font-weight: 700;
}

/* Progress Bar Logic */
/* We can use a colored line overlay */
.status-progress-bar {
    position: absolute;
    top: 6px;
    left: 0;
    height: 2px;
    background: var(--action-green);
    z-index: 0;
    transition: width 0.3s ease;
}
