/* ---------- Luxury tracking page ---------- */
:root {
  --bg: #070a14;
  --bg2: #0d1224;
  --gold: #e6c27a;
  --gold2: #b8933f;
  --ink: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.62);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-b: rgba(255, 255, 255, 0.14);
  --ok: #34d399;
  --warn: #fbbf24;
  --bad: #f87171;
}
html, body.lux { height: 100%; }
body.lux {
  margin: 0;
  background: radial-gradient(1200px 700px at 80% -10%, #1b2350 0%, transparent 60%),
              radial-gradient(900px 600px at -10% 110%, #2a1a3f 0%, transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.lux .serif { font-family: 'Playfair Display', Georgia, serif; }

/* 3D canvas + glow blobs behind everything */
#scene { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .45; z-index: 0; pointer-events: none; animation: drift 18s ease-in-out infinite alternate; }
.blob.b1 { width: 520px; height: 520px; background: #3b4bd8; top: -160px; right: -120px; }
.blob.b2 { width: 420px; height: 420px; background: #b8933f; bottom: -140px; left: -120px; animation-delay: -6s; }
.blob.b3 { width: 300px; height: 300px; background: #7c3aed; top: 40%; left: 55%; animation-delay: -12s; opacity: .25; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px,-30px,0) scale(1.12); } }

.lux-wrap { position: relative; z-index: 1; width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
@media (min-width: 1600px) { .lux-wrap { max-width: 1320px; } .hero h1 { font-size: 4.8rem; } .hero p.lead { font-size: 1.15rem; max-width: 720px; } .search-card { max-width: 860px; } .results { max-width: 960px; } .features { max-width: 1000px; } }
@media (min-width: 2200px) { .lux-wrap { max-width: 1600px; } .search-card { max-width: 960px; } .results { max-width: 1100px; } }
* { box-sizing: border-box; }
img, svg, canvas { max-width: 100%; }

/* Nav */
.lux-nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.lux-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); font-weight: 600; letter-spacing: .3px; }
.lux-brand .mark { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #1a1405; box-shadow: 0 8px 24px rgba(230,194,122,.35); }
.lux-btn-ghost { color: var(--ink); text-decoration: none; padding: 9px 16px; border: 1px solid var(--glass-b); border-radius: 999px; background: var(--glass); backdrop-filter: blur(10px); font-size: .9rem; transition: .2s; }
.lux-btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Hero */
.hero { padding: 48px 0 24px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(230,194,122,.35); background: rgba(230,194,122,.08); color: var(--gold); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); line-height: 1.05; margin: 22px 0 14px; font-weight: 600; }
.hero h1 .shine { background: linear-gradient(90deg, #fff 0%, var(--gold) 45%, #fff 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 6s linear infinite; }
@keyframes shine { to { background-position: 200% center; } }
.hero p.lead { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* Search card */
.search-card { margin: 34px auto 0; max-width: 760px; padding: 10px; border-radius: 22px; background: var(--glass); border: 1px solid var(--glass-b); backdrop-filter: blur(18px); box-shadow: 0 30px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12); }
.search-row { display: flex; gap: 8px; align-items: center; }
.search-row .icon { padding: 0 8px 0 14px; color: var(--gold); font-size: 1.2rem; }
.search-row input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; color: var(--ink); font-size: 1.1rem; padding: 16px 6px; }
.search-row input::placeholder { color: rgba(244,241,234,.38); }
.search-row button { border: 0; border-radius: 16px; padding: 14px 26px; font-weight: 600; color: #1a1405; background: linear-gradient(135deg, var(--gold), var(--gold2)); box-shadow: 0 10px 30px rgba(230,194,122,.35); transition: transform .15s, box-shadow .15s; white-space: nowrap; }
.search-row button:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(230,194,122,.5); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.chip { font-size: .8rem; color: var(--muted); border: 1px dashed rgba(255,255,255,.18); border-radius: 999px; padding: 5px 12px; }
.chip b { color: var(--ink); font-weight: 500; }

/* Feature strip */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 46px auto 0; max-width: 900px; }
.feature { padding: 18px 18px; border-radius: 18px; background: var(--glass); border: 1px solid var(--glass-b); backdrop-filter: blur(12px); transition: transform .25s, border-color .25s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(230,194,122,.45); }
.feature .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(230,194,122,.12); color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.feature h6 { margin: 0 0 4px; font-weight: 600; }
.feature p { margin: 0; color: var(--muted); font-size: .86rem; }

/* Results */
.results { max-width: 860px; margin: 40px auto 0; }
.results .meta { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.rcard { border-radius: 22px; overflow: hidden; background: var(--glass); border: 1px solid var(--glass-b); backdrop-filter: blur(18px); box-shadow: 0 30px 80px rgba(0,0,0,.4); margin-bottom: 18px; animation: rise .5s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.rhead { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; padding: 16px 22px; border-bottom: 1px solid var(--glass-b); }
.rhead .oid { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 1.05rem; letter-spacing: .04em; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .9rem; }
.pill.ok { background: rgba(52,211,153,.14); color: var(--ok); border: 1px solid rgba(52,211,153,.35); }
.pill.bad { background: rgba(248,113,113,.14); color: var(--bad); border: 1px solid rgba(248,113,113,.35); }
.pill.warn { background: rgba(251,191,36,.14); color: var(--warn); border: 1px solid rgba(251,191,36,.35); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.rbody { padding: 22px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; }
.rbody h3 { margin: 0; font-weight: 600; font-size: 1.6rem; }
.rbody .sub { color: var(--muted); margin-bottom: 14px; }
.kv { display: grid; grid-template-columns: 130px 1fr; gap: 6px 12px; font-size: .92rem; }
.kv .k { color: var(--muted); }
.validity { border-radius: 18px; padding: 18px; background: rgba(0,0,0,.28); border: 1px solid var(--glass-b); }
.validity .row2 { display: flex; justify-content: space-between; font-size: .92rem; margin-bottom: 6px; }
.validity .row2 .v { font-weight: 600; }
.bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 12px; }
.bar > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold2), var(--gold)); box-shadow: 0 0 16px rgba(230,194,122,.6); }
.bar.low > i { background: linear-gradient(90deg, #b45309, var(--warn)); }
.days { font-family: 'Playfair Display', serif; font-size: 2.2rem; line-height: 1; margin-top: 10px; }
.days small { font-family: 'Inter', sans-serif; font-size: .8rem; color: var(--muted); margin-left: 6px; }
.claims { padding: 0 22px 18px; }
.claims .t { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.claims li { list-style: none; font-size: .9rem; padding: 6px 0; border-top: 1px solid rgba(255,255,255,.06); }
.tag { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: .75rem; margin-right: 8px; background: rgba(255,255,255,.1); }
.rfoot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 22px; background: rgba(0,0,0,.25); border-top: 1px solid var(--glass-b); }
.rfoot .lbl { color: var(--muted); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.rfoot .seller { font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.rfoot .seller .badge-gold { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #1a1405; font-size: .8rem; }
.empty { max-width: 640px; margin: 36px auto 0; text-align: center; padding: 34px; border-radius: 22px; background: var(--glass); border: 1px solid var(--glass-b); backdrop-filter: blur(14px); }
.empty .big { font-size: 2.4rem; }
.lux-foot { text-align: center; color: rgba(244,241,234,.4); font-size: .82rem; padding: 50px 0 28px; }
.flash-lux { max-width: 760px; margin: 0 auto 12px; }

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .feature { padding: 14px; }
  .rbody { grid-template-columns: 1fr 1fr; gap: 16px; }
}
/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .lux-wrap { padding: 0 14px; }
  .lux-nav { padding: 14px 0; gap: 10px; }
  .lux-brand { font-size: .95rem; }
  .lux-brand .mark { width: 32px; height: 32px; border-radius: 10px; }
  .lux-btn-ghost { padding: 7px 12px; font-size: .8rem; white-space: nowrap; }
  .hero { padding: 18px 0 10px; }
  .eyebrow { font-size: .66rem; letter-spacing: .12em; padding: 5px 10px; }
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.8rem); margin: 16px 0 10px; }
  .hero p.lead { font-size: .95rem; }
  .search-card { margin-top: 22px; padding: 8px; border-radius: 18px; }
  .search-row { flex-wrap: wrap; gap: 6px; }
  .search-row .icon { display: none; }
  .search-row input { width: 100%; flex: 1 0 100%; font-size: 1rem; padding: 12px 10px; }
  .search-row button { width: 100%; padding: 13px; border-radius: 14px; }
  .chips { gap: 6px; margin-top: 12px; }
  .chip { font-size: .72rem; padding: 4px 10px; }
  .features { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
  .results { margin-top: 26px; }
  .rcard { border-radius: 18px; }
  .rhead { padding: 12px 14px; }
  .rhead .oid { font-size: .9rem; word-break: break-all; }
  .pill { font-size: .8rem; padding: 6px 10px; }
  .rbody { grid-template-columns: 1fr; gap: 14px; padding: 14px; }
  .rbody h3 { font-size: 1.3rem; }
  .kv { grid-template-columns: 105px 1fr; font-size: .86rem; }
  .validity { padding: 14px; }
  .days { font-size: 1.8rem; }
  .days small { display: block; margin: 4px 0 0; }
  .claims { padding: 0 14px 14px; }
  .rfoot { padding: 12px 14px; }
  .rfoot .seller { font-size: .95rem; }
  .empty { padding: 22px 16px; }
  .lux-foot { padding: 34px 0 20px; }
  .blob { filter: blur(70px); }
  .blob.b1 { width: 300px; height: 300px; }
  .blob.b2 { width: 260px; height: 260px; }
  .blob.b3 { display: none; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 1.85rem; }
  .kv { grid-template-columns: 1fr; gap: 2px 0; }
  .kv .k { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }
}
/* Very short viewports (landscape phones) */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding-top: 10px; }
  .hero h1 { font-size: 1.9rem; margin: 10px 0 6px; }
  .features { display: none; }
}
@media (prefers-reduced-motion: reduce) { .blob, .hero h1 .shine, .rcard { animation: none; } }

/* flash messages (no bootstrap on this layout) */
.lux .alert { padding: 12px 16px; border-radius: 14px; border: 1px solid var(--glass-b); background: var(--glass); backdrop-filter: blur(10px); font-size: .92rem; }
.lux .alert-danger { border-color: rgba(248,113,113,.4); color: #fecaca; }
.lux .alert-success { border-color: rgba(52,211,153,.4); color: #bbf7d0; }
.lux .btn-close { display: none; }

/* order progress stepper */
.steps { display: flex; align-items: center; padding: 18px 22px 0; gap: 6px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 84px; text-align: center; }
.step .dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.18); color: rgba(244,241,234,.45); background: rgba(255,255,255,.04); font-size: .95rem; }
.step .lbl { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.step.done .dot { background: var(--ok); border-color: var(--ok); color: #05261a; }
.step.now .dot { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 4px rgba(230,194,122,.18), 0 0 18px rgba(230,194,122,.5); }
.step.done .lbl, .step.now .lbl { color: var(--ink); }
.line { flex: 1; height: 2px; background: rgba(255,255,255,.14); margin-bottom: 22px; }
.line.done { background: var(--ok); }
@media (max-width: 480px) { .steps { padding: 14px 12px 0; } .step { min-width: 64px; } .step .dot { width: 28px; height: 28px; font-size: .8rem; } .step .lbl { font-size: .62rem; } }

/* verify notice + verified seller badge */
.notice { max-width: 900px; margin: 18px auto 0; padding: 14px 18px; border-radius: 16px; border: 1px solid rgba(251,191,36,.35); background: rgba(251,191,36,.08); color: #fde68a; font-size: .9rem; display: flex; align-items: flex-start; }
.notice strong { color: #fff; }
.vbadge { display: inline-flex; align-items: center; gap: 4px; margin-left: 8px; padding: 3px 9px; border-radius: 999px; font-size: .7rem; font-weight: 600; letter-spacing: .04em; color: var(--ok); background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.35); vertical-align: middle; }
.lux-foot { max-width: 760px; margin: 0 auto; line-height: 1.6; }

.notice.note-soft { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: var(--muted); margin-top: 10px; }
.notice.note-soft strong { color: var(--ink); }

.notice strong { display: inline; }
.notice > div { flex: 1; min-width: 0; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin-top: 40px; font-size: .85rem; }
.foot-links a { color: rgba(244,241,234,.6); }
.foot-links a:hover { color: var(--gold); }
.lux-foot { padding-top: 14px; }
/* static pages */
.page { max-width: 820px; margin: 10px auto 0; }
.page .pcard { border-radius: 22px; background: var(--glass); border: 1px solid var(--glass-b); backdrop-filter: blur(18px); padding: 30px; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.page h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 6px; }
.page .sub { color: var(--muted); margin-bottom: 22px; }
.page h2 { font-size: 1.1rem; margin: 22px 0 8px; color: var(--gold); letter-spacing: .02em; }
.page p, .page li { color: rgba(244,241,234,.85); line-height: 1.65; font-size: .95rem; }
.page ul { padding-left: 20px; }
.page a { color: var(--gold); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fgrid label, .page label.f { display: flex; flex-direction: column; gap: 5px; font-size: .82rem; color: var(--muted); }
.fgrid label.wide, .page label.f.wide { grid-column: 1 / -1; }
.fgrid input, .fgrid select, .fgrid textarea, .page input.f, .page textarea.f { background: rgba(0,0,0,.28); border: 1px solid var(--glass-b); color: var(--ink); border-radius: 12px; padding: 11px 12px; font-size: .95rem; outline: 0; font-family: inherit; }
.fgrid input:focus, .fgrid select:focus, .fgrid textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(230,194,122,.18); }
.fgrid select option { color: #111; }
.gbtn { width: 100%; border: 0; border-radius: 14px; padding: 14px; font-weight: 600; color: #1a1405; background: linear-gradient(135deg, var(--gold), var(--gold2)); box-shadow: 0 10px 30px rgba(230,194,122,.35); margin-top: 14px; }
.dropzone { border: 1px dashed rgba(230,194,122,.5); border-radius: 12px; padding: 14px; text-align: center; color: var(--muted); font-size: .85rem; background: rgba(230,194,122,.05); }
.dropzone input { display: block; margin: 8px auto 0; color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cbox { border-radius: 16px; background: rgba(0,0,0,.25); border: 1px solid var(--glass-b); padding: 16px; }
.cbox .k { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cbox .v { font-size: 1rem; margin-top: 4px; word-break: break-all; }
.faq details { border-top: 1px solid rgba(255,255,255,.08); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink); }
.faq details p { margin: 8px 0 0; }
@media (max-width: 640px) { .fgrid, .contact-grid { grid-template-columns: 1fr; } .page .pcard { padding: 20px 16px; } }

.brand-tag { display: block; font-size: .66rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,241,234,.55); margin-top: 2px; }

.signin-cta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin: 0 22px 18px; padding: 14px 16px; border-radius: 16px; background: linear-gradient(90deg, rgba(230,194,122,.14), rgba(230,194,122,.04)); border: 1px solid rgba(230,194,122,.35); }
.signin-btn { border-radius: 12px; padding: 10px 18px; font-weight: 600; color: #1a1405; background: linear-gradient(135deg, var(--gold), var(--gold2)); box-shadow: 0 8px 24px rgba(230,194,122,.35); text-decoration: none; white-space: nowrap; }
.signin-btn:hover { color: #1a1405; text-decoration: none; transform: translateY(-1px); }
@media (max-width: 768px) { .signin-cta { margin: 0 14px 14px; } .signin-btn { width: 100%; text-align: center; } }
