     /* ─── PAGE WRAPPER ─── */
    .track-page {
      background: var(--color-bg, #0a0a0a);
      min-height: 100vh;
      padding-bottom: 80px;
    }

    /* ─── PAGE HERO ─── */
    .track-hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 56px 0 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .track-hero::before {
      content: '';
      position: absolute;
      top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .track-hero__eyebrow {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-gold, #d4af37);
      margin-bottom: 14px;
    }
    .track-hero__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 600;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .track-hero__title em {
      font-style: italic;
      color: var(--color-gold, #d4af37);
    }
    .track-hero__subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.5);
      max-width: 420px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ─── BREADCRUMB ─── */
    .breadcrumb {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      background: #0a0a0a;
    }
    .breadcrumb__list {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      margin: 0; padding: 0;
      font-size: 0.8rem;
      font-family: 'Inter', sans-serif;
    }
    .breadcrumb__item { display: flex; align-items: center; gap: 8px; }
    .breadcrumb__item:not(:last-child)::after {
      content: '';
      display: inline-block;
      width: 4px; height: 4px;
      border-top: 1px solid rgba(255,255,255,0.3);
      border-right: 1px solid rgba(255,255,255,0.3);
      transform: rotate(45deg);
    }
    .breadcrumb__link {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .breadcrumb__link:hover { color: rgba(255,255,255,0.8); }
    .breadcrumb__current { color: rgba(255,255,255,0.7); }

    /* ─── TRACK SECTION ─── */
    .track-section {
      padding: 56px 0 0;
    }

    /* ─── SEARCH CARD ─── */
    .track-card {
      background: #141414;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 40px;
      max-width: 540px;
      margin: 0 auto 48px;
      position: relative;
    }
    .track-card::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 60%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    }
    .track-card__icon {
      width: 52px; height: 52px;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      color: var(--color-gold, #d4af37);
    }
    .track-card__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: #fff;
      text-align: center;
      margin-bottom: 6px;
    }
    .track-card__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      text-align: center;
      margin-bottom: 28px;
      line-height: 1.5;
    }

    /* ─── FORM ─── */
    .track-form { display: flex; flex-direction: column; gap: 16px; }
    .track-form__group { display: flex; flex-direction: column; gap: 7px; }
    .track-form__label {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .track-form__input-wrap { position: relative; }
    .track-form__input-icon {
      position: absolute;
      left: 14px; top: 50%;
      transform: translateY(-50%);
      color: rgba(255,255,255,0.3);
      pointer-events: none;
      display: flex;
    }
    .track-form__input {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 13px 14px 13px 42px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: #fff;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      box-sizing: border-box;
    }
    .track-form__input::placeholder { color: rgba(255,255,255,0.25); }
    .track-form__input:focus {
      border-color: rgba(212,175,55,0.5);
      background: rgba(255,255,255,0.07);
    }
    .track-form__input.is-error { border-color: #e74c3c; }
    .track-form__error {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      color: #e74c3c;
      min-height: 16px;
    }
    .track-form__divider {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.25);
      font-size: 0.75rem;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.06em;
    }
    .track-form__divider::before,
    .track-form__divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.1);
    }
    .track-form__submit {
      width: 100%;
      padding: 14px;
      background: var(--color-gold, #d4af37);
      border: none;
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: #0a0a0a;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .track-form__submit:hover { opacity: 0.9; transform: translateY(-1px); }
    .track-form__submit:active { transform: translateY(0); }
    .track-form__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .track-form__spinner {
      width: 16px; height: 16px;
      border: 2px solid rgba(10,10,10,0.3);
      border-top-color: #0a0a0a;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ─── ORDER RESULT ─── */
    #orderResult { display: none; animation: fadeSlideUp 0.4s ease forwards; }
    #orderResult.is-visible { display: block; }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── ORDER HEADER CARD ─── */
    .order-header {
      background: #141414;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .order-header__id {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 4px;
    }
    .order-header__number {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }
    .order-header__date {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
    }
    .order-header__right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }
    .order-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    .order-status-badge__dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    /* Status colours */
    .status--placed     { background: rgba(99,179,237,0.12); color: #63b3ed; }
    .status--placed .order-status-badge__dot     { background: #63b3ed; box-shadow: 0 0 6px #63b3ed; }
    .status--confirmed  { background: rgba(246,173,85,0.12);  color: #f6ad55; }
    .status--confirmed .order-status-badge__dot  { background: #f6ad55; box-shadow: 0 0 6px #f6ad55; }
    .status--processing { background: rgba(246,173,85,0.12);  color: #f6ad55; }
    .status--processing .order-status-badge__dot { background: #f6ad55; animation: pulse-dot 1.2s ease-in-out infinite; }
    .status--shipped    { background: rgba(154,205,50,0.12);  color: #9acd32; }
    .status--shipped .order-status-badge__dot    { background: #9acd32; box-shadow: 0 0 6px #9acd32; }
    .status--out_for_delivery { background: rgba(212,175,55,0.15); color: #d4af37; }
    .status--out_for_delivery .order-status-badge__dot { background: #d4af37; animation: pulse-dot 0.9s ease-in-out infinite; }
    .status--delivered  { background: rgba(72,199,142,0.12);  color: #48c78e; }
    .status--delivered .order-status-badge__dot  { background: #48c78e; box-shadow: 0 0 6px #48c78e; }
    .status--cancelled  { background: rgba(231,76,60,0.12);   color: #e74c3c; }
    .status--cancelled .order-status-badge__dot  { background: #e74c3c; }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(1.4); }
    }
    .order-header__total {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
    }
    .order-header__total strong {
      color: #fff;
      font-size: 1rem;
    }

    /* ─── PROGRESS TIMELINE ─── */
    .order-timeline-wrap {
      background: #141414;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 32px;
      margin-bottom: 20px;
      position: relative;
    }
    .order-timeline-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 32px; right: 32px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    }
    .order-timeline-title {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 28px;
    }

    /* Horizontal on desktop */
    .order-timeline {
      display: flex;
      align-items: flex-start;
      position: relative;
    }
    .order-timeline__track {
      position: absolute;
      top: 20px;
      left: calc(50px / 2);
      right: calc(50px / 2);
      height: 2px;
      background: rgba(255,255,255,0.08);
      z-index: 0;
    }
    .order-timeline__progress {
      height: 100%;
      background: linear-gradient(90deg, #d4af37, rgba(212,175,55,0.4));
      border-radius: 2px;
      transition: width 0.8s ease;
    }
    .order-timeline__step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .order-timeline__dot {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.12);
      background: #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      transition: all 0.3s ease;
      flex-shrink: 0;
      color: rgba(255,255,255,0.25);
    }
    .order-timeline__step.is-done .order-timeline__dot {
      background: #d4af37;
      border-color: #d4af37;
      color: #0a0a0a;
      box-shadow: 0 0 14px rgba(212,175,55,0.35);
    }
    .order-timeline__step.is-active .order-timeline__dot {
      border-color: #d4af37;
      color: #d4af37;
      background: rgba(212,175,55,0.1);
      animation: pulse-ring 1.8s ease-in-out infinite;
    }
    @keyframes pulse-ring {
      0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
      50%       { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
    }
    .order-timeline__label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      color: rgba(255,255,255,0.3);
      line-height: 1.3;
      max-width: 72px;
    }
    .order-timeline__step.is-done .order-timeline__label,
    .order-timeline__step.is-active .order-timeline__label {
      color: rgba(255,255,255,0.75);
    }
    .order-timeline__step.is-active .order-timeline__label {
      color: #d4af37;
      font-weight: 600;
    }
    .order-timeline__date {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.25);
      margin-top: 4px;
      font-family: 'Inter', sans-serif;
    }
    .order-timeline__step.is-done .order-timeline__date { color: rgba(255,255,255,0.4); }
    .order-timeline__step.is-active .order-timeline__date { color: rgba(212,175,55,0.7); }

    /* Mobile: vertical timeline */
    @media (max-width: 600px) {
      .order-timeline { flex-direction: column; gap: 0; }
      .order-timeline__track {
        top: calc(50px / 2);
        bottom: calc(50px / 2);
        left: 19px; right: auto;
        width: 2px; height: auto;
      }
      .order-timeline__progress {
        width: 100% !important;
        height: var(--progress-height, 0%);
        transition: height 0.8s ease;
      }
      .order-timeline__step {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 0 0 24px 0;
      }
      .order-timeline__step:last-child { padding-bottom: 0; }
      .order-timeline__dot { margin-bottom: 0; flex-shrink: 0; }
      .order-timeline__label { max-width: none; font-size: 0.82rem; }
    }

    /* ─── SHIPPING INFO ─── */
    .order-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }
    @media (max-width: 600px) { .order-info-grid { grid-template-columns: 1fr; } }

    .order-info-card {
      background: #141414;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 22px 24px;
    }
    .order-info-card__header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .order-info-card__icon {
      width: 34px; height: 34px;
      background: rgba(212,175,55,0.08);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: #d4af37;
      flex-shrink: 0;
    }
    .order-info-card__title {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.4);
    }
    .order-info-card__body {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
    }
    .order-info-card__body strong {
      color: #fff;
      font-weight: 600;
    }
    .tracking-number {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(154,205,50,0.08);
      border: 1px solid rgba(154,205,50,0.2);
      border-radius: 8px;
      padding: 6px 12px;
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: #9acd32;
      margin-top: 6px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .tracking-number:hover { background: rgba(154,205,50,0.14); }
    .tracking-number__copy { color: rgba(154,205,50,0.6); }
    .estimated-delivery {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
    }
    .estimated-delivery__date {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #d4af37;
    }

    /* ─── ORDER ITEMS ─── */
    .order-items-card {
      background: #141414;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 20px;
    }
    .order-items-card__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .order-items-card__title {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.4);
    }
    .order-items-card__count {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
    }
    .order-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .order-item:last-child { border-bottom: none; padding-bottom: 0; }
    .order-item__img-wrap {
      width: 64px; height: 80px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
      background: #1e1e1e;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .order-item__img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .order-item__details { flex: 1; min-width: 0; }
    .order-item__name {
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .order-item__variant {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
      margin-bottom: 6px;
    }
    .order-item__qty {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
    }
    .order-item__price {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      text-align: right;
      flex-shrink: 0;
    }

    /* ─── ORDER SUMMARY ─── */
    .order-summary {
      border-top: 1px solid rgba(255,255,255,0.07);
      margin-top: 14px;
      padding-top: 14px;
    }
    .order-summary__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 7px 0;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
    }
    .order-summary__row--total {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 4px;
      padding-top: 14px;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .order-summary__row--total span:last-child { color: #d4af37; }
    .order-summary__free { color: #48c78e; font-size: 0.8rem; }

    /* ─── HELP CTA ─── */
    .track-help {
      background: linear-gradient(135deg, #141414, #1a1410);
      border: 1px solid rgba(212,175,55,0.15);
      border-radius: 16px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .track-help__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
    }
    .track-help__sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
    }
    .track-help__actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn--whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #25D366;
      border: none;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.15s;
    }
    .btn--whatsapp:hover { opacity: 0.9; transform: translateY(-1px); }

    /* ─── ERROR STATE ─── */
    .track-error {
      text-align: center;
      padding: 40px 20px;
      animation: fadeSlideUp 0.3s ease;
    }
    .track-error__icon {
      width: 60px; height: 60px;
      background: rgba(231,76,60,0.1);
      border: 1px solid rgba(231,76,60,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      color: #e74c3c;
    }
    .track-error__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 8px;
    }
    .track-error__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .track-error__retry {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7);
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      padding: 10px 22px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .track-error__retry:hover {
      border-color: rgba(255,255,255,0.3);
      color: #fff;
    }

    /* ─── TIPS ─── */
    .track-tips {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }
    @media (max-width: 700px) { .track-tips { grid-template-columns: 1fr; } }
    .track-tip {
      background: #141414;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px;
      padding: 20px 22px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .track-tip__icon {
      width: 36px; height: 36px;
      border-radius: 9px;
      background: rgba(212,175,55,0.08);
      display: flex; align-items: center; justify-content: center;
      color: #d4af37;
      flex-shrink: 0;
    }
    .track-tip__title {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      margin-bottom: 4px;
    }
    .track-tip__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.76rem;
      color: rgba(255,255,255,0.35);
      line-height: 1.5;
    }

    /* ─── GENERAL BUTTONS ─── */
    .btn--gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: #d4af37; color: #0a0a0a;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem; font-weight: 600;
      padding: 10px 22px;
      border-radius: 8px;
      border: none; cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .btn--gold:hover { opacity: 0.9; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 600px) {
      .track-card { padding: 24px 20px; }
      .order-header { padding: 20px; }
      .order-items-card { padding: 20px; }
      .order-timeline-wrap { padding: 22px 20px; }
      .track-help { padding: 20px; }
    }