/* ─── ORDER TRACKING ─── */
    .track-hero { background: var(--forest); padding: 56px 36px 48px; text-align: center; position: relative; overflow: hidden; }
    .track-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(184,146,42,0.12) 0%, transparent 60%); pointer-events: none; }

    .track-input-row { display: flex; gap: 10px; max-width: 520px; margin: 24px auto 0; position: relative; z-index: 1; }
    .track-input { flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; padding: 12px 16px; font-family: 'Jost', sans-serif; font-size: 0.85rem; color: white; }
    .track-input::placeholder { color: rgba(255,255,255,0.4); }
    .track-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15); }
    .track-btn { background: var(--gold); color: var(--ink); border: none; border-radius: 2px; padding: 12px 22px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
    .track-btn:hover { background: var(--gold-lt); }

    .order-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 28px; margin-bottom: 16px; }
    .order-card-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
    .order-ref { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
    .order-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; }

    /* Stepper */
    .order-stepper { display: flex; align-items: flex-start; gap: 0; margin: 24px 0; }
    .step-item { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
    .step-item:not(:last-child)::after { content: ''; position: absolute; top: 15px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
    .step-item.done:not(:last-child)::after { background: var(--forest); }
    .step-circle { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--ink-muted); position: relative; z-index: 1; flex-shrink: 0; transition: all 0.3s; }
    .step-item.done .step-circle { background: var(--forest); border-color: var(--forest); color: white; }
    .step-item.active .step-circle { background: var(--gold); border-color: var(--gold); color: var(--ink); box-shadow: 0 0 0 4px rgba(184,146,42,0.18); }
    .step-label { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--ink-muted); margin-top: 8px; text-align: center; line-height: 1.3; }
    .step-item.done .step-label, .step-item.active .step-label { color: var(--ink); }

    .order-items-list { border-top: 1px solid var(--border); margin-top: 16px; padding-top: 16px; }
    .order-item-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
    .order-item-row:last-child { border-bottom: none; }
    .order-total-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 0; font-weight: 600; }
