/* ============================================================
   ONE · Tra cứu chính hãng — imei-lookup.css
   CSS thuần, dùng chung cho web + mobile (responsive)
   Prefix .il- để tránh xung đột với CSS sẵn có của bạn
   ============================================================ */

.il-root {
  /* ---- Design tokens ---- */
  --il-bg:        #F4F1E9;
  --il-surface:   #ffffff;
  --il-field:     #FBF9F3;
  --il-ink:       #232823;
  --il-ink-2:     #3A403A;
  --il-muted:     #5B615A;
  --il-muted-2:   #6B7169;
  --il-muted-3:   #8A9086;
  --il-muted-4:   #9AA096;
  --il-line:      rgba(35,40,35,.10);
  --il-line-soft: rgba(35,40,35,.09);

  --il-brand:      #de602c;
  --il-brand-dark: #C24E20;
  --il-brand-tint: #FBEDE5;
  --il-brand-tone: #B5623E;
  --il-brand-scan: #F0844F;

  /* Xanh "hợp lệ / đã xác thực" — dùng cho banner sản phẩm chính hãng */
  --il-ok:       #1E8E5A;
  --il-ok-dark:  #167048;
  --il-ok-tint:  #E7F4EC;
  --il-ok-tone:  #3C7A5A;
  --il-ok-line:  rgba(30,142,90,.25);

  --il-warn:      #B7791F;
  --il-warn-dark: #9A6512;
  --il-warn-bg:   #FBEFD6;
  --il-warn-line: #E6C778;
  --il-warn-ink:  #8A5A10;
  --il-warn-ink2: #8A6A2E;
  --il-warn-soft: #FCF6E8;

  --il-bad:      #9E3B30;
  --il-bad-bg:   #F7E7E3;
  --il-bad-line: #E0B3AA;
  --il-bad-ink:  #8A3B31;

  --il-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --il-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--il-bg);
  color: var(--il-ink);
  font-family: var(--il-sans);
  -webkit-font-smoothing: antialiased;
}
.il-root *, .il-root *::before, .il-root *::after { box-sizing: border-box; }
.il-root a { color: var(--il-brand-dark); text-decoration: none; }
.il-root a:hover { color: var(--il-brand); }

/* ---- Animations ---- */
@keyframes il-spin  { to { transform: rotate(360deg); } }
@keyframes il-scan  { 0%{top:6%} 50%{top:90%} 100%{top:6%} }
@keyframes il-pulse { 0%,100%{opacity:.35} 50%{opacity:.9} }
@keyframes il-fade  { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

/* ============================================================
   Header
   ============================================================ */
.il-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--il-line-soft);
}
.il-brand { display: flex; align-items: center; gap: 12px; }
.il-brand__logo { height: 40px; width: auto; display: block; }
.il-brand__mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--il-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--il-serif); font-size: 20px; font-weight: 600;
}
.il-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.il-brand__name { font-family: var(--il-serif); font-size: 18px; font-weight: 600; letter-spacing: .02em; }
.il-brand__tag  { font-size: 10px; letter-spacing: .22em; color: var(--il-muted-3); font-weight: 600; }
.il-status { font-size: 13px; color: var(--il-muted-2); font-weight: 500; display: flex; align-items: center; gap: 7px; }
.il-status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--il-brand); display: inline-block; }

/* ============================================================
   Main + screens
   ============================================================ */
.il-main {
  flex: 1; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 40px);
}
.il-screen { display: none; width: 100%; }
.il-screen.is-active { display: block; animation: il-fade .4s ease both; }
.il-screen--center.is-active { display: flex; flex-direction: column; align-items: center; }

/* ============================================================
   HOME
   ============================================================ */
.il-home { width: 100%; max-width: 560px; margin: 0 auto; }
.il-home__head { text-align: center; margin-bottom: 26px; }
.il-eyebrow { font-size: 11px; letter-spacing: .24em; color: var(--il-brand); font-weight: 700; }
.il-home__title {
  font-family: var(--il-serif); font-weight: 500;
  font-size: clamp(30px, 6vw, 44px); line-height: 1.08;
  margin: 12px 0 10px; letter-spacing: -.01em;
}
.il-home__sub { font-size: 15px; line-height: 1.55; color: var(--il-muted-2); margin: 0 auto; max-width: 400px; }

.il-card {
  background: var(--il-surface); border: 1px solid var(--il-line);
  border-radius: 22px; padding: clamp(20px, 4vw, 28px);
  box-shadow: 0 1px 2px rgba(35,40,35,.04), 0 22px 44px -30px rgba(35,40,35,.28);
}
.il-label { display: block; font-size: 12px; font-weight: 600; color: var(--il-muted); margin-bottom: 8px; letter-spacing: .02em; }
.il-inputrow { display: flex; gap: 10px; flex-wrap: wrap; }
.il-input {
  flex: 1 1 200px; min-width: 0; padding: 15px 16px;
  border: 1.5px solid rgba(35,40,35,.14); border-radius: 13px;
  font: 500 16px var(--il-sans); letter-spacing: .04em;
  background: var(--il-field); color: var(--il-ink); outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.il-input::placeholder { color: var(--il-muted-4); }
.il-input:focus { border-color: var(--il-brand); background: #fff; box-shadow: 0 0 0 4px rgba(222,96,44,.12); }

.il-btn {
  border: none; cursor: pointer; font-family: var(--il-sans);
  border-radius: 13px; transition: background .15s, border-color .15s, color .15s;
}
.il-btn--primary {
  flex: 0 0 auto; background: var(--il-brand); color: #fff;
  padding: 0 26px; height: 52px; font: 600 15px var(--il-sans); letter-spacing: .01em;
}
.il-btn--primary:hover { background: var(--il-brand-dark); }

.il-or { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.il-or::before, .il-or::after { content: ""; flex: 1; height: 1px; background: var(--il-line); }
.il-or span { font-size: 12px; color: var(--il-muted-4); font-weight: 500; }

.il-btn--scan {
  width: 100%; background: #fff; color: var(--il-brand);
  border: 1.5px solid rgba(222,96,44,.30); height: 52px; font: 600 15px var(--il-sans);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.il-btn--scan:hover { background: var(--il-brand-tint); border-color: var(--il-brand); }
.il-scan-ico { display: inline-flex; width: 20px; height: 20px; border: 2.5px solid currentColor; border-radius: 5px; position: relative; }
.il-scan-ico::after { content: ""; position: absolute; left: 2px; right: 2px; top: 50%; height: 2px; background: currentColor; transform: translateY(-50%); }

.il-samples { margin-top: 20px; }
.il-samples__title { font-size: 11px; color: var(--il-muted-4); font-weight: 600; letter-spacing: .06em; }
.il-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.il-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left; background: var(--il-field);
  border: 1px solid var(--il-line-soft); border-radius: 11px; padding: 11px 14px;
  cursor: pointer; font-family: var(--il-sans); transition: border-color .15s, background .15s;
}
.il-chip:hover { border-color: rgba(222,96,44,.4); background: #F5F1E7; }
.il-chip__code { font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--il-ink-2); }
.il-chip__label { font-size: 12px; color: var(--il-muted-3); }

.il-assurance { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.il-assurance span { font-size: 12.5px; color: var(--il-muted-3); display: flex; align-items: center; gap: 7px; }
.il-assurance b { color: var(--il-brand); font-weight: 700; }

/* ============================================================
   LOADING
   ============================================================ */
.il-loading { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.il-spinner { position: relative; width: 84px; height: 84px; }
.il-spinner__ring { position: absolute; inset: 0; border: 4px solid rgba(222,96,44,.15); border-top-color: var(--il-brand); border-radius: 50%; animation: il-spin 1s linear infinite; }
.il-spinner__tick { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--il-brand); font-size: 26px; animation: il-pulse 1.4s ease-in-out infinite; }
.il-loading__title { font-family: var(--il-serif); font-weight: 500; font-size: 24px; margin: 0 0 6px; text-align: center; }
.il-loading__sub { font-size: 14px; color: var(--il-muted-2); margin: 0; letter-spacing: .04em; text-align: center; }
.il-loading__sub b { color: var(--il-ink-2); }

/* ============================================================
   RESULT — shared
   ============================================================ */
.il-result { width: 100%; max-width: 840px; margin: 0 auto; }
.il-back {
  background: none; border: none; color: var(--il-muted-2);
  font: 600 13px var(--il-sans); cursor: pointer; padding: 0; margin-bottom: 16px;
}
.il-back:hover { color: var(--il-brand); }

.il-photo { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(35,40,35,.08); }
.il-photo__fill { position: absolute; inset: 0; }
.il-photo__mono { position: relative; font-family: var(--il-serif); font-weight: 500; color: rgba(35,40,35,.28); }
.il-photo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.il-photo__cap { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: 11px; letter-spacing: .14em; color: rgba(35,40,35,.4); font-weight: 600; }

.il-price { font-family: var(--il-serif); font-weight: 600; color: var(--il-brand); }
.il-category { font-size: 11px; letter-spacing: .16em; color: var(--il-brand); font-weight: 700; }
.il-pname { font-family: var(--il-serif); font-weight: 500; line-height: 1.12; margin: 6px 0 0; }
.il-desc { line-height: 1.6; color: var(--il-muted); }

.il-tag { font-size: 12.5px; font-weight: 600; color: var(--il-ink-2); background: var(--il-field); border: 1px solid var(--il-line); border-radius: 8px; padding: 5px 10px; }
.il-meta__k { font-size: 11px; color: var(--il-muted-4); font-weight: 600; letter-spacing: .04em; }
.il-meta__v { font-size: 15px; font-weight: 600; margin-top: 2px; }
.il-meta__v--brand { color: var(--il-brand); }

/* Verified banner */
.il-banner { display: flex; align-items: center; gap: 12px; border-radius: 14px; padding: 14px 18px; margin-bottom: 16px; }
.il-banner--ok { background: var(--il-ok-tint); border: 1px solid var(--il-ok-line); }
.il-banner__badge { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.il-banner--ok .il-banner__badge { background: var(--il-ok); color: #fff; }
.il-banner__title { font-weight: 700; font-size: 15px; }
.il-banner--ok .il-banner__title { color: var(--il-ok-dark); }
.il-banner__sub { font-size: 13px; }
.il-banner--ok .il-banner__sub { color: var(--il-ok-tone); }

/* ---- Variant: Hồ sơ (profile) ---- */
.il-profile {
  background: var(--il-surface); border: 1px solid var(--il-line); border-radius: 22px;
  padding: clamp(18px, 3vw, 26px); box-shadow: 0 22px 44px -30px rgba(35,40,35,.28);
  display: flex; gap: clamp(18px, 3vw, 30px); flex-wrap: wrap;
}
.il-profile__photo { flex: 1 1 240px; border-radius: 16px; aspect-ratio: 4/5; min-height: 250px; }
.il-profile__photo .il-photo__mono { font-size: 64px; }
.il-profile__body { flex: 2 1 320px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.il-profile__title { font-size: clamp(24px, 4vw, 32px); }
.il-profile__line { font-size: 14px; color: var(--il-muted-3); margin-top: 3px; }
.il-profile__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.il-profile__price { font-size: 30px; }
.il-profile__desc { font-size: 14.5px; margin: 0; }
.il-profile__meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; padding-top: 14px; border-top: 1px solid var(--il-line-soft); }
.il-profile__note { font-size: 12.5px; color: var(--il-brand-tone); background: var(--il-brand-tint); border-radius: 9px; padding: 9px 12px; }

/* ---- Variant: Chứng nhận (certificate) ---- */
.il-cert {
  max-width: 600px; margin: 0 auto; background: var(--il-surface);
  border: 1px solid var(--il-line); border-radius: 22px; padding: clamp(26px, 5vw, 44px);
  box-shadow: 0 22px 44px -30px rgba(35,40,35,.28); text-align: center; position: relative; overflow: hidden;
}
.il-cert__frame { position: absolute; inset: 8px; border: 1px solid rgba(222,96,44,.16); border-radius: 16px; pointer-events: none; }
.il-cert__seal { position: relative; width: 96px; height: 96px; margin: 0 auto 8px; border-radius: 50%; border: 2px solid var(--il-brand); display: flex; align-items: center; justify-content: center; background: var(--il-brand-tint); }
.il-cert__seal::before { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(222,96,44,.4); border-radius: 50%; }
.il-cert__seal span { font-size: 40px; color: var(--il-brand); font-weight: 700; }
.il-cert__eyebrow { font-size: 11px; letter-spacing: .28em; color: var(--il-brand); font-weight: 700; margin-bottom: 22px; }
.il-cert__photo { position: relative; width: 150px; height: 180px; margin: 0 auto 18px; border-radius: 14px; }
.il-cert__photo .il-photo__mono { font-size: 52px; }
.il-cert__catrow { font-size: 11px; letter-spacing: .16em; color: var(--il-muted-3); font-weight: 700; }
.il-cert__title { font-size: clamp(26px, 5vw, 36px); line-height: 1.1; margin: 6px 0 4px; }
.il-cert__sub { font-size: 13.5px; color: var(--il-muted-3); }
.il-cert__price { font-size: 30px; margin: 16px 0; }
.il-cert__desc { font-size: 14.5px; line-height: 1.65; max-width: 420px; margin: 0 auto 22px; }
.il-cert__meta { display: flex; justify-content: center; gap: clamp(18px, 5vw, 40px); flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--il-line); }
.il-cert__meta .il-meta__k { color: var(--il-muted-4); }

/* ---- Variant: Tem xác thực (ticket) ---- */
.il-ticket { max-width: 440px; margin: 0 auto; background: var(--il-surface); border-radius: 20px; box-shadow: 0 22px 44px -30px rgba(35,40,35,.32); overflow: hidden; position: relative; }
.il-ticket__top { background: var(--il-brand); color: #fff; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; }
.il-ticket__stamp { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.il-ticket__stamp span { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.il-ticket__brand { font-family: var(--il-serif); font-size: 15px; letter-spacing: .06em; opacity: .85; }
.il-ticket__perf { position: relative; height: 0; border-top: 2px dashed rgba(35,40,35,.16); }
.il-ticket__perf::before, .il-ticket__perf::after { content: ""; position: absolute; top: -11px; width: 22px; height: 22px; border-radius: 50%; background: var(--il-bg); }
.il-ticket__perf::before { left: -11px; } .il-ticket__perf::after { right: -11px; }
.il-ticket__body { padding: 22px; }
.il-ticket__head { display: flex; gap: 16px; align-items: center; }
.il-ticket__photo { flex: 0 0 auto; width: 74px; height: 92px; border-radius: 11px; }
.il-ticket__photo .il-photo__mono { font-size: 30px; }
.il-ticket__title { font-family: var(--il-serif); font-weight: 500; font-size: 22px; line-height: 1.15; margin: 4px 0 2px; }
.il-ticket__price { font-family: var(--il-serif); font-size: 22px; font-weight: 600; color: var(--il-brand); }
.il-ticket__desc { font-size: 13.5px; line-height: 1.55; color: var(--il-muted); margin: 16px 0 18px; }
.il-ticket__grid { border-top: 1px dashed rgba(35,40,35,.16); padding-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.il-ticket__grid .il-meta__k { font-size: 10.5px; }
.il-ticket__grid .il-meta__v { font-size: 14px; }
.il-ticket__imei { margin-top: 18px; background: var(--il-bg); border-radius: 10px; padding: 12px 14px; text-align: center; }
.il-ticket__imei-k { font-size: 10.5px; color: var(--il-muted-4); font-weight: 600; letter-spacing: .1em; }
.il-ticket__imei-v { font-family: ui-monospace, Menlo, monospace; font-size: 18px; font-weight: 600; letter-spacing: .14em; margin-top: 3px; color: var(--il-ink-2); }

/* ============================================================
   WARNING
   ============================================================ */
.il-warn-wrap { max-width: 600px; margin: 0 auto; }
.il-banner--warn { background: var(--il-warn-bg); border: 1px solid var(--il-warn-line); }
.il-banner--warn .il-banner__badge { background: var(--il-warn); color: #fff; }
.il-banner--warn .il-banner__title { color: var(--il-warn-ink); }
.il-banner--warn .il-banner__sub { color: var(--il-warn-ink2); }
.il-warn-card { background: var(--il-surface); border: 1px solid var(--il-line); border-radius: 20px; padding: 22px; box-shadow: 0 22px 44px -30px rgba(35,40,35,.28); }
.il-warn-card__head { display: flex; gap: 16px; align-items: center; }
.il-warn-card__photo { flex: 0 0 auto; width: 74px; height: 92px; border-radius: 11px; }
.il-warn-card__photo .il-photo__mono { font-size: 30px; }
.il-warn-card__cat { font-size: 11px; letter-spacing: .14em; color: var(--il-muted-3); font-weight: 700; }
.il-warn-card__title { font-family: var(--il-serif); font-weight: 500; font-size: 23px; line-height: 1.15; margin: 4px 0 2px; }
.il-warn-card__sub { font-size: 13px; color: var(--il-muted-3); }
.il-warn-card__note { font-size: 14px; line-height: 1.6; color: var(--il-warn-ink2); background: var(--il-warn-soft); border-radius: 11px; padding: 13px 15px; margin: 18px 0 0; }
.il-warn-card__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.il-btn--warn { flex: 1 1 180px; background: var(--il-warn); color: #fff; height: 48px; font: 600 14px var(--il-sans); }
.il-btn--warn:hover { background: var(--il-warn-dark); }
.il-btn--ghost { flex: 1 1 140px; background: #fff; color: var(--il-muted); border: 1.5px solid rgba(35,40,35,.16); height: 48px; font: 600 14px var(--il-sans); }
.il-btn--ghost:hover { border-color: var(--il-muted-3); }

/* ============================================================
   INVALID
   ============================================================ */
.il-invalid { max-width: 520px; margin: 0 auto; text-align: center; }
.il-invalid__icon { width: 88px; height: 88px; margin: 0 auto 20px; border-radius: 50%; background: var(--il-bad-bg); border: 1px solid var(--il-bad-line); display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--il-bad); font-weight: 700; }
.il-invalid__title { font-family: var(--il-serif); font-weight: 500; font-size: clamp(26px, 5vw, 34px); margin: 0 0 8px; }
.il-invalid__code { font-family: ui-monospace, Menlo, monospace; font-size: 15px; letter-spacing: .1em; color: var(--il-muted-3); margin-bottom: 16px; }
.il-invalid__text { font-size: 15px; line-height: 1.6; color: var(--il-muted-2); max-width: 400px; margin: 0 auto 20px; }
.il-invalid__text b { color: var(--il-bad); }
.il-invalid__hint { background: var(--il-bad-bg); border: 1px solid rgba(158,59,48,.2); border-radius: 12px; padding: 14px 16px; text-align: left; font-size: 13.5px; line-height: 1.55; color: var(--il-bad-ink); margin-bottom: 22px; }
.il-invalid__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.il-btn--retry { flex: 1 1 150px; max-width: 220px; background: var(--il-brand); color: #fff; height: 50px; font: 600 15px var(--il-sans); }
.il-btn--retry:hover { background: var(--il-brand-dark); }
.il-btn--report { flex: 1 1 150px; max-width: 220px; background: #fff; color: var(--il-bad); border: 1.5px solid rgba(158,59,48,.3); height: 50px; font: 600 15px var(--il-sans); }
.il-btn--report:hover { background: #FBEDEA; }

/* ============================================================
   Footer
   ============================================================ */
.il-footer { text-align: center; padding: 20px; font-size: 12px; color: var(--il-muted-4); border-top: 1px solid var(--il-line-soft); }

/* ============================================================
   QR overlay
   ============================================================ */
.il-qr { position: fixed; inset: 0; background: rgba(23,28,24,.7); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 50; }
.il-qr.is-active { display: flex; animation: il-fade .25s ease both; }
.il-qr__panel { width: 100%; max-width: 360px; background: #fff; border-radius: 22px; padding: 26px; text-align: center; }
.il-qr__title { font-family: var(--il-serif); font-weight: 500; font-size: 22px; margin: 0 0 4px; }
.il-qr__sub { font-size: 13.5px; color: var(--il-muted-3); margin: 0 0 20px; }
.il-qr__frame { position: relative; width: 100%; aspect-ratio: 1; max-width: 240px; margin: 0 auto; background: #12160F; border-radius: 16px; overflow: hidden; }
/* Vùng camera do html5-qrcode chèn video vào. Để thư viện tự render;
   chỉ ép video phủ kín & cắt cover, KHÔNG dùng position:absolute (gây màn đen). */
.il-qr__reader { position: absolute; inset: 0; border: 0 !important; line-height: 0; }
.il-qr__reader video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
/* Ẩn ảnh scan-region + dashboard thư viện tự vẽ — ta dùng khung riêng.
   KHÔNG ẩn div con của scan_region vì video có thể nằm trong đó. */
.il-qr__reader #il-qr-reader__scan_region { position: absolute; inset: 0; background: transparent !important; }
.il-qr__reader #il-qr-reader__scan_region img { display: none !important; }
.il-qr__reader #il-qr-reader__dashboard { display: none !important; }
.il-qr__corner, .il-qr__laser { z-index: 2; }
.il-qr__corner { position: absolute; width: 34px; height: 34px; }
.il-qr__corner--tl { left: 14px; top: 14px; border-top: 3px solid var(--il-brand-scan); border-left: 3px solid var(--il-brand-scan); border-radius: 6px 0 0 0; }
.il-qr__corner--tr { right: 14px; top: 14px; border-top: 3px solid var(--il-brand-scan); border-right: 3px solid var(--il-brand-scan); border-radius: 0 6px 0 0; }
.il-qr__corner--bl { left: 14px; bottom: 14px; border-bottom: 3px solid var(--il-brand-scan); border-left: 3px solid var(--il-brand-scan); border-radius: 0 0 0 6px; }
.il-qr__corner--br { right: 14px; bottom: 14px; border-bottom: 3px solid var(--il-brand-scan); border-right: 3px solid var(--il-brand-scan); border-radius: 0 0 6px 0; }
.il-qr__laser { position: absolute; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, transparent, var(--il-brand-scan), transparent); box-shadow: 0 0 12px var(--il-brand-scan); animation: il-scan 2s ease-in-out infinite; }
.il-qr__status { font-size: 12.5px; color: var(--il-muted-3); margin: 18px 0 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.il-qr__status span { width: 8px; height: 8px; border-radius: 50%; background: var(--il-brand-scan); animation: il-pulse 1s infinite; }
.il-btn--cancel { width: 100%; background: var(--il-bg); color: var(--il-muted); height: 46px; font: 600 14px var(--il-sans); }
.il-btn--cancel:hover { background: #EAE6DB; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 560px) {
  .il-profile { flex-direction: column; }
  .il-profile__photo { aspect-ratio: 16/11; min-height: 200px; }
  .il-ticket__grid { grid-template-columns: 1fr; }
}
