.track-container { max-width: 800px; margin: 0 auto; padding: 2rem; }
.track-search { display: flex; gap: 1rem; margin: 2rem 0; }
.track-search input { flex: 1; }

.order-status-card { background: var(--bg-card); padding: 2rem; margin-top: 2rem; }
.order-status-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 2rem;
}

.status-timeline {
    display: flex; justify-content: space-between; margin: 2rem 0;
    position: relative;
}
.status-timeline::before {
    content: ''; position: absolute; top: 25px; left: 10%; right: 10%;
    height: 2px; background: var(--border); z-index: 0;
}
.timeline-step {
    display: flex; flex-direction: column; align-items: center;
    z-index: 1; flex: 1;
}
.step-icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--bg-input); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 0.5rem;
}
.timeline-step.completed .step-icon {
    background: var(--text); border-color: var(--text);
}
.step-label { font-size: 0.8rem; color: var(--text-muted); }
.timeline-step.completed .step-label { color: var(--text); }

.detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin: 1.5rem 0;
}
.detail-item { padding: 1rem; background: var(--bg-input); }
.detail-label {
    font-size: 0.75rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.25rem;
}

.order-items { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.order-item {
    display: flex; justify-content: space-between; padding: 0.75rem 0;
    border-bottom: 1px solid var(--border); font-size: 0.9rem;
}

.track-error { text-align: center; padding: 3rem; }
.track-error h3 { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
    .track-search { flex-direction: column; }
    .detail-grid { grid-template-columns: 1fr; }
}