/* ── Item Profile content container ───────────────────────────────
     The page body (breadcrumb + workspace) is centred to the SAME width as
     the shared shell header/footer, so all four edges line up. The header
     and footer containers now live globally in mct.css (--mct-shell-max /
     --mct-shell-pad) — this page only owns its own body column. ── */
body.ip-page { --ip-max:var(--mct-shell-max); --ip-pad:var(--mct-shell-pad); }
.ip { width:100%; max-width:var(--ip-max); margin:0 auto; box-sizing:border-box;
      padding:18px var(--ip-pad) 80px; }
.ip-bc { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--mct-text-3); margin-bottom:14px; flex-wrap:wrap; }
.ip-bc a { color:var(--mct-text-3); text-decoration:none; } .ip-bc a:hover { color:var(--mct-accent); } .ip-bc .sep{opacity:.4;}

/* ── Two columns: left item sidebar (~28%) + right market workspace (~72%).
     Proportions held constant; columns expand/contract together. ── */
/* One spacing system: --gap-card between stacked cards, --pad-x/--pad-y inside
   every card, applied uniformly across all modules. */
.ip { --gap-card:14px; --gap-col:18px; --pad-x:16px; --pad-y:14px; }
.ip-cols { display:grid; grid-template-columns:minmax(320px,28%) minmax(0,1fr); gap:var(--gap-col); align-items:start; }
.ip-side, .ip-work { display:flex; flex-direction:column; gap:var(--gap-card); min-width:0; }

/* cards — Market Hub glass surface language */
.card { background:linear-gradient(180deg, rgba(148,163,184,.055), rgba(148,163,184,.012) 40%, rgba(148,163,184,0) 70%), var(--mct-card);
  border:1px solid var(--mct-card-border); border-radius:var(--r-md); overflow:hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 1px 2px rgba(0,0,0,.24), 0 6px 18px rgba(0,0,0,.14); }
.card-h { padding:12px var(--pad-x); border-bottom:1px solid var(--surface-hairline); display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.card-h h2 { font-size:13px; font-weight:700; color:var(--mct-text-1); margin:0; letter-spacing:.01em; }
.card-h i { font-size:15px; color:var(--mct-accent); } .card-h .aux { margin-left:auto; }
.card-b { padding:var(--pad-y) var(--pad-x); }
/* compact grey secondary action (used in the Marketplace Offers header) */
.btn-sec { display:inline-flex; align-items:center; gap:6px; padding:5px 10px; border-radius:8px; font-size:12px; font-weight:600; text-decoration:none; border:1px solid var(--mct-card-border); color:var(--mct-text-2); background:var(--mct-bg-2); font-family:inherit; transition:color .13s,border-color .13s; }
.btn-sec:hover { color:var(--mct-text-1); border-color:var(--mct-text-3); }
.btn-sec i { font-size:14px; }

/* Tooltip — a single body-level element (never clipped by card overflow),
   positioned in JS with edge flip + horizontal clamp so it stays fully
   visible. Reuses the Market Hub glass-popover language (.fam-pop): same
   surface, border, radius, shadow and fade/scale animation. */
.ip-tip { position:fixed; z-index:200; pointer-events:none; opacity:0;
  transform:translateY(-4px) scale(.96); transform-origin:center top;
  background:var(--mct-bg-1); border:1px solid var(--mct-card-border); border-radius:var(--r-md);
  box-shadow:0 12px 32px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.3);
  padding:5px 10px; font-size:var(--fs-sm); font-weight:500; line-height:1.3; color:var(--mct-text-1);
  white-space:nowrap; max-width:280px;
  transition:opacity var(--t-quick), transform var(--t-quick); }
.ip-tip.on { opacity:1; transform:none; }
.ip-tip[data-pos="above"] { transform-origin:center bottom; transform:translateY(4px) scale(.96); }
.ip-tip[data-pos="above"].on { transform:none; }

/* ── Market Hub "M" watermark material — shared by the Hero render and the
   Related Item cards so both match the product cards exactly. ── */
.hero-img, .rel-fam { --fam-glow:245,158,11; --fam-mark:148,163,184; isolation:isolate; container-type:inline-size; }
/* Watermark behind the render, horizontally centered. Related Items keep the
   Market Hub geometry exactly (centered within the top render band); the Hero
   spans the full height and nudges the glyph slightly above centre. Both tint
   it with the item's rarity color.
   The mark itself is a shared component in mct.css (.fam-mark); the Hero's
   geometry override and this page's hover triggers live here. */
.hero-img .fam-mark { top:0; bottom:0; height:auto; transform:translateY(-7%); }
.hero-img:hover .fam-mark, .rel-fam:hover .fam-mark { color:rgba(var(--fam-mark),.19); }
@supports ((-webkit-background-clip:text) or (background-clip:text)) {
  .hero-img:hover .fam-mark, .rel-fam:hover .fam-mark { color:transparent; opacity:1; }
  .hero-img:hover .fam-mark::after, .rel-fam:hover .fam-mark::after { animation:fam-sweep 1.1s ease-out; }
}

/* ── Hero ── */
.hero-img { position:relative; border:1px solid var(--mct-card-border); border-radius:var(--r-md); min-height:300px; display:flex; align-items:center; justify-content:center; overflow:hidden;
  background:linear-gradient(180deg, rgba(148,163,184,.07), rgba(148,163,184,.015) 36%, rgba(148,163,184,0) 62%), var(--mct-card); }
.hero-img::before { content:""; position:absolute; inset:0; z-index:-1; pointer-events:none; border-radius:inherit;
  background:linear-gradient(180deg, rgba(148,163,184,.06), rgba(148,163,184,0) 46%); opacity:0; transition:opacity var(--t-base) ease-out; }
.hero-img:hover::before { opacity:1; }
.hero-img img { position:relative; width:100%; height:100%; max-height:340px; object-fit:contain; padding:22px; box-sizing:border-box; filter:drop-shadow(0 8px 24px rgba(0,0,0,.35)); }
.hero-img .ph { display:flex; flex-direction:column; align-items:center; gap:8px; color:var(--mct-text-3); opacity:.35; } .hero-img .ph i{ font-size:52px; }
.hero-rar { position:absolute; left:0; right:0; bottom:0; height:4px; }
/* image overlay action group — top-right, icon only, absolute, always visible */
.img-actions { position:absolute; top:8px; right:8px; display:flex; gap:6px; z-index:2; }
.img-actions button { width:32px; height:32px; display:flex; align-items:center; justify-content:center; border-radius:8px; border:1px solid var(--mct-card-border); background:rgba(11,18,32,.72); color:var(--mct-text-2); cursor:pointer; font-family:inherit; transition:color .13s,border-color .13s,background .13s; }
.img-actions button:hover { color:var(--mct-text-1); border-color:var(--mct-accent); background:rgba(11,18,32,.9); }
.img-actions button i { font-size:17px; }
.img-actions button.wl-on { color:#f59e0b; border-color:#f59e0b; }
.hero-tags { display:flex; align-items:center; gap:8px; flex-wrap:wrap; font-size:11px; margin-top:12px; }
.hero-game { text-transform:uppercase; letter-spacing:.07em; color:var(--mct-text-3); font-weight:600; }
.hero-type { color:var(--mct-text-3); }
.badge { display:inline-flex; align-items:center; gap:4px; padding:3px 8px; border-radius:5px; font-size:11px; font-weight:600; }
.badge.rar{ background:rgba(148,163,184,.08); border:1px solid var(--mct-card-border); color:var(--mct-text-2); }
.hero-titlewrap { display:flex; align-items:flex-start; gap:8px; }
.hero-title { font-size:20px; font-weight:800; color:var(--mct-text-1); margin:10px 0 0; line-height:1.24; letter-spacing:-.01em; flex:1; min-width:0; }
.title-copy { flex-shrink:0; margin-top:11px; width:26px; height:26px; display:inline-flex; align-items:center; justify-content:center; border-radius:7px; border:1px solid var(--mct-card-border); background:var(--mct-bg-2); color:var(--mct-text-3); cursor:pointer; font-family:inherit; transition:color .13s,border-color .13s; }
.title-copy:hover { color:var(--mct-text-1); border-color:var(--mct-accent); }
.title-copy i { font-size:15px; }

.btn { display:inline-flex; align-items:center; gap:7px; padding:9px 14px; border-radius:9px; font-size:13px; font-weight:600; text-decoration:none; border:1px solid var(--mct-card-border); color:var(--mct-text-2); background:var(--mct-bg-2); cursor:pointer; font-family:inherit; transition:border-color .13s,color .13s,background .13s; }
.btn:hover { border-color:var(--mct-accent); color:var(--mct-accent); }
.btn.primary { background:var(--mct-accent); border-color:var(--mct-accent); color:#fff; } .btn.primary:hover{ background:#2563eb; color:#fff; }

/* hero variant selectors: quality segmented group + always-visible exterior list */
.hero-variants { display:flex; flex-direction:column; gap:9px; margin-top:12px; }
/* Quality selector spans the full Hero width; segments share equal width. */
.vgroup { display:flex; width:100%; gap:3px; background:var(--mct-bg-2); border:1px solid var(--mct-card-border); border-radius:9px; padding:3px; box-sizing:border-box; }
.vseg { flex:1 1 0; text-align:center; font-size:11px; font-weight:600; padding:7px 8px; border-radius:6px; border:none; background:transparent; color:var(--mct-text-3); cursor:pointer; font-family:inherit; white-space:nowrap; transition:background .15s,color .15s,opacity .15s; }
.vseg:hover:not(:disabled):not(.active) { color:var(--mct-text-1); background:rgba(255,255,255,.05); }
.vseg.active { background:var(--mct-accent); color:#fff; cursor:default; }
.vseg:disabled { opacity:.32; cursor:not-allowed; text-decoration:line-through; text-decoration-thickness:1px; }
/* Exterior quality list — always visible, one row per wear, price on the right. */
.vlist { display:flex; flex-direction:column; gap:2px; }
.vrow { display:flex; align-items:center; justify-content:space-between; gap:10px; width:100%; padding:7px 9px; border-radius:8px; border:1px solid transparent; background:transparent; cursor:pointer; font-family:inherit; text-align:left; transition:background .13s,border-color .13s; }
.vrow:hover:not(:disabled):not(.active) { background:rgba(148,163,184,.05); }
.vrow.active { background:rgba(59,130,246,.10); border-color:rgba(59,130,246,.35); }
.vrow:disabled { opacity:.4; cursor:not-allowed; }
.vx-l { display:flex; flex-direction:column; gap:2px; min-width:0; }
.vx-n { font-size:12.5px; font-weight:600; color:var(--mct-text-1); }
.vrow.active .vx-n { color:var(--mct-accent); }
.vx-fr { font-size:10.5px; color:var(--mct-text-3); font-variant-numeric:tabular-nums; }
.vx-p { font-size:12.5px; font-weight:700; color:var(--mct-text-1); font-variant-numeric:tabular-nums; white-space:nowrap; }

/* stat rows (Market Activity price statistics) */
.stats { display:flex; flex-direction:column; gap:2px; }
.stats > div { display:flex; justify-content:space-between; gap:12px; padding:7px 0; border-bottom:1px solid rgba(148,163,184,.06); font-size:13px; }
.stats > div:last-child { border-bottom:none; }
.stats label { color:var(--mct-text-3); } .stats strong { color:var(--mct-text-1); font-weight:600; text-align:right; }
.stats .win small { color:var(--mct-text-3); font-weight:500; }
.stats .up{ color:#22c55e; } .stats .down{ color:#ef4444; }

/* generic key/value rows */
.rows > div { display:flex; justify-content:space-between; gap:12px; padding:7px 0; border-bottom:1px solid rgba(148,163,184,.06); font-size:13px; }
.rows > div:last-child { border-bottom:none; }
.rows label { color:var(--mct-text-3); } .rows strong { color:var(--mct-text-1); font-weight:600; text-align:right; word-break:break-word; }
.rows a { color:var(--mct-accent); text-decoration:none; } .rows a:hover{ text-decoration:underline; }
.copy-meta { opacity:.5; transition:opacity .15s; cursor:pointer; } .copy-meta:hover { opacity:1; }
.ip-desc { margin:0; line-height:1.6; color:var(--mct-text-2); font-size:13.5px; overflow-wrap:break-word; }

/* source / drops cards — left image (fixed width, fills height) + right content */
.src-grid { display:grid; grid-template-columns:1fr; gap:9px; }
/* Drops: >4 sources → fixed height + internal scroll (Mercato hub scrollbar). */
.src-grid.scroll { max-height:342px; overflow-y:auto; padding-right:6px; }
.src-grid.scroll::-webkit-scrollbar { width:8px; }
.src-grid.scroll::-webkit-scrollbar-track { background:transparent; }
.src-grid.scroll::-webkit-scrollbar-thumb { background:rgba(148,163,184,.18); border-radius:var(--r-pill); }
.sd-card { display:flex; align-items:stretch; text-decoration:none; min-height:78px; border:1px solid var(--mct-card-border); border-radius:var(--r-md); overflow:hidden;
  background:linear-gradient(180deg, rgba(148,163,184,.05), rgba(148,163,184,0) 70%), var(--mct-card); transition:border-color .15s, transform .13s; }
.sd-card:hover { border-color:var(--mct-accent); transform:translateY(-1px); }
.sd-img { width:92px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:rgba(148,163,184,.05); border-right:1px solid var(--mct-card-border); }
.sd-img img { max-width:100%; max-height:100%; object-fit:contain; padding:8px; box-sizing:border-box; }
.sd-img i { font-size:26px; color:var(--mct-text-3); opacity:.5; }
.sd-body { display:flex; flex-direction:column; justify-content:center; gap:2px; padding:10px 13px; min-width:0; }
.sd-kind { font-size:10px; text-transform:uppercase; letter-spacing:.07em; color:var(--mct-accent); font-weight:700; }
.sd-name { font-size:14px; font-weight:700; color:var(--mct-text-1); line-height:1.25; overflow:hidden; text-overflow:ellipsis; }
.sd-meta { font-size:11px; color:var(--mct-text-3); } .sd-meta .drop { color:#4ade80; font-weight:600; }

/* liquidity gauge — semicircle + centered value/label, state legend at right */
.gauge { display:flex; align-items:center; gap:14px; padding:2px 0 10px; margin-bottom:10px; border-bottom:1px solid var(--surface-hairline); }
.gauge-main { position:relative; flex:1 1 auto; min-width:0; }
.gauge-main svg { width:100%; height:auto; display:block; }
.gauge-center { position:absolute; left:0; right:0; bottom:0; display:flex; flex-direction:column; align-items:center; gap:1px; }
.gauge-val { font-size:23px; font-weight:800; color:var(--mct-text-1); line-height:1; letter-spacing:-.02em; }
.gauge-lbl { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.gauge-legend { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:5px; flex-shrink:0; }
.gauge-legend li { display:flex; align-items:center; gap:7px; font-size:10.5px; font-weight:600; color:var(--mct-text-3); white-space:nowrap; }
.gauge-legend li.on { color:var(--mct-text-1); }
.gauge-legend .dot { width:8px; height:8px; border-radius:2px; flex-shrink:0; opacity:.45; }
.gauge-legend li.on .dot { opacity:1; box-shadow:0 0 0 3px rgba(255,255,255,.05); }

/* ── Marketplace Offers — compact rows ── */
.mkt-list { display:flex; flex-direction:column; }
/* Subtle, premium hover in the Market Hub philosophy: no hard rectangle — a
   soft left-weighted wash plus the marketplace name brightening to #fff. */
.mkt-row { display:flex; align-items:center; gap:12px; padding:9px 0; border-bottom:1px solid rgba(148,163,184,.06); font-size:13px; transition:background .16s ease-out; }
.mkt-row:last-child { border-bottom:none; }
.mkt-row:hover { background:linear-gradient(90deg, rgba(148,163,184,.07), rgba(148,163,184,0) 82%); }
.mkt-row:hover .mk-name { color:#fff; }
.mk-logo { width:26px; height:26px; flex-shrink:0; display:flex; align-items:center; justify-content:center; border-radius:6px; background:var(--mct-bg-2); color:var(--mct-text-2); }
.mk-logo i { font-size:16px; }
.mk-name { font-weight:700; color:var(--mct-text-1); min-width:110px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; transition:color .16s ease-out; }
.mk-tp { display:inline-flex; gap:1px; align-items:center; color:#f5b301; font-size:11px; min-width:70px; }
.mk-tp .off { color:var(--mct-text-3); opacity:.45; }
.mk-price { margin-left:auto; font-weight:800; color:var(--mct-text-1); font-variant-numeric:tabular-nums; white-space:nowrap; text-align:right; }
.mk-diff { font-size:11px; font-weight:600; color:var(--mct-text-3); margin-left:5px; }
.mk-listings { color:var(--mct-text-3); font-size:12px; min-width:84px; text-align:right; white-space:nowrap; }
.mk-buy { flex-shrink:0; width:76px; justify-content:center; padding:7px 0; font-size:12px; }
.mkt-empty { color:var(--mct-text-3); font-size:13px; padding:6px 0; }

/* ── Price History chart ── */
.chart-wrap { position:relative; width:100%; height:340px; user-select:none; }
.chart-svg { width:100%; height:100%; display:block; overflow:visible; }
.chart-line { fill:none; stroke:var(--mct-accent,#3b82f6); stroke-width:2.25; stroke-linejoin:round; stroke-linecap:round; }
.chart-grid line { stroke:rgba(148,163,184,.10); stroke-width:1; }
.chart-ylabels { position:absolute; inset:0; pointer-events:none; }
.chart-ylabel { position:absolute; left:6px; font-size:10px; line-height:1; color:var(--mct-text-3); transform:translateY(-100%); padding-bottom:2px; }
.chart-xlabels { position:absolute; left:0; right:0; bottom:2px; height:12px; pointer-events:none; }
.chart-xlabel { position:absolute; bottom:0; font-size:10px; line-height:1; color:var(--mct-text-3); white-space:nowrap; transform:translateX(-50%); }
.chart-xlabel.first { transform:none; } .chart-xlabel.last { transform:translateX(-100%); }
.cross-x { position:absolute; top:0; bottom:20px; width:1px; background:rgba(148,163,184,.4); pointer-events:none; opacity:0; }
.cross-dot { position:absolute; width:10px; height:10px; border-radius:50%; background:var(--mct-accent,#3b82f6); box-shadow:0 0 0 3px rgba(59,130,246,.2); transform:translate(-50%,-50%); pointer-events:none; opacity:0; }
.cross-tip { position:absolute; transform:translate(-50%,-140%); background:#0b1220; border:1px solid var(--mct-card-border); border-radius:8px; padding:6px 9px; font-size:11px; color:var(--mct-text-1); white-space:nowrap; pointer-events:none; opacity:0; z-index:5; box-shadow:0 6px 18px rgba(0,0,0,.4); }
.cross-tip b{ font-size:12px; } .cross-tip span{ color:var(--mct-text-3); }
.chart-hover { position:absolute; inset:0; cursor:crosshair; }
.hist-filters { display:flex; gap:5px; }
.hf { font-size:11px; font-weight:600; padding:4px 11px; border-radius:7px; border:1px solid var(--mct-card-border); background:var(--mct-bg-2); color:var(--mct-text-3); cursor:pointer; font-family:inherit; transition:.13s; }
.hf:hover { color:var(--mct-text-1); } .hf.active { border-color:var(--mct-accent); color:var(--mct-accent); background:rgba(59,130,246,.06); }
.chart-empty { display:flex; flex-direction:column; align-items:center; justify-content:center; height:340px; text-align:center; gap:8px; padding:20px; }
.chart-empty .ic { width:56px; height:56px; border-radius:50%; background:rgba(148,163,184,.08); display:flex; align-items:center; justify-content:center; }
.chart-empty .ic i { font-size:26px; color:var(--mct-text-3); }
.chart-empty h3 { font-size:15px; font-weight:700; color:var(--mct-text-1); margin:0; }
.chart-empty p { font-size:13px; color:var(--mct-text-3); margin:0; max-width:360px; line-height:1.5; }

/* related items — reuse the Market Hub product-card visual language */
.rel-blocks { display:flex; flex-direction:column; gap:18px; }
.rel-block .rb-h { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.rel-block .rb-h span{ font-size:12px; font-weight:700; color:var(--mct-text-2); } .rel-block .rb-h a{ font-size:11px; color:var(--mct-accent); text-decoration:none; }
.rel-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:12px; }
.rel-fam { position:relative; display:flex; flex-direction:column; aspect-ratio:320/460;
  background:linear-gradient(180deg, rgba(148,163,184,.07), rgba(148,163,184,.015) 36%, rgba(148,163,184,0) 62%), var(--mct-card);
  border:1px solid var(--mct-card-border); border-top:2px solid var(--rar,var(--surface-3)); border-radius:var(--r-md);
  overflow:hidden; text-decoration:none; color:inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), inset 0 -1px 0 rgba(0,0,0,.16), 0 1px 2px rgba(0,0,0,.28), 0 8px 22px rgba(0,0,0,.18);
  transition: transform var(--t-base) ease-out, box-shadow var(--t-base) ease-out, border-color var(--t-base) ease-out; }
.rel-fam:hover { transform:translateY(-3px); border-color:rgba(148,163,184,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), inset 0 -1px 0 rgba(0,0,0,.16), 0 10px 26px rgba(0,0,0,.34), 0 22px 48px rgba(0,0,0,.26); }
.rel-fam .ft { flex:1 1 auto; min-height:0; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.rel-fam .ft img { max-width:100%; max-height:100%; object-fit:contain; padding:8px; transition:transform .28s ease-out; }
.rel-fam:hover .ft img { transform:scale(1.03); }
.rel-fam .ft i { font-size:34px; color:var(--mct-text-3); opacity:.4; }
.rel-fam .fb { display:flex; flex-direction:column; gap:6px; padding:10px 12px 12px; flex-shrink:0; }
.rel-fam .fn { font-size:15px; font-weight:700; color:var(--mct-text-1); line-height:1.2; letter-spacing:-.02em;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.rel-fam:hover .fn { color:#fff; }
.rel-fam .fp { font-size:14px; font-weight:700; color:var(--mct-text-1); font-variant-numeric:tabular-nums; padding-top:8px; border-top:1px solid var(--surface-hairline); }
.rel-fam .fp small { color:var(--mct-text-3); font-weight:600; font-size:11px; }

/* image-zoom lightbox */
.zoom-ov { position:fixed; inset:0; background:rgba(4,8,16,.86); display:none; align-items:center; justify-content:center; z-index:200; padding:40px; }
.zoom-ov.on { display:flex; }
.zoom-ov img { max-width:90vw; max-height:90vh; object-fit:contain; filter:drop-shadow(0 12px 40px rgba(0,0,0,.6)); }
.zoom-ov .zoom-close { position:absolute; top:18px; right:22px; width:40px; height:40px; border-radius:10px; border:1px solid var(--mct-card-border); background:rgba(11,18,32,.8); color:var(--mct-text-1); cursor:pointer; font-size:20px; display:flex; align-items:center; justify-content:center; }

/* states */
#ipErr,#ipNF,#ipUns,#ipVerify { padding:64px 24px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:12px; }
#ipErr i,#ipNF i,#ipUns i { font-size:44px; color:var(--mct-text-3); opacity:.4; }
#ipVerify i { font-size:44px; color:var(--mct-accent); opacity:.7; }
#ipErr h2,#ipNF h2,#ipUns h2,#ipVerify h2 { font-size:18px; font-weight:700; color:var(--mct-text-1); margin:0; }
#ipErr p,#ipNF p,#ipUns p,#ipVerify p { font-size:14px; color:var(--mct-text-2); margin:0; }
.toast { position:fixed; bottom:20px; left:50%; transform:translateX(-50%); background:#0b1220; border:1px solid var(--mct-card-border); color:var(--mct-text-1); padding:10px 16px; border-radius:9px; font-size:13px; opacity:0; transition:opacity .2s; pointer-events:none; z-index:210; }
.toast.on { opacity:1; }
