/* AI Photographer embed: shared styles. Tokens match the design mockups. */
:root {
  --accent: #2456D6;
  --accent-dark: #1A43AD;
  --accent-soft: #EAF0FC;
  --ground: #F6F7F9;
  --ink: #14171C;
  --muted: #5B6472;
  --rule: #D9DDE3;
  --rule-soft: #EEF1F5;
  --radio: #C5CAD3;
  --good: #1E7F4F;
  --warn: #B45309;
  --warn-soft: #FDF1E4;
  --bad: #B42318;
  --bad-soft: #FDECEA;
  --white: #fff;
  --font-body: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-head: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --tap: 44px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ground);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }
button { font: inherit; color: inherit; }
img, video, canvas { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Focus is always visible */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.cam :focus-visible { outline-color: #fff; }

.h { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; margin: 0; }
.mono { font-family: ui-monospace, Menlo, monospace; }
.muted { color: var(--muted); }
.good { color: var(--good); }
.warn { color: var(--warn); }
.bad { color: var(--bad); }

/* App shell */
#app { min-height: 100vh; display: flex; flex-direction: column; }
.view { display: flex; flex-direction: column; min-height: 100vh; width: 100%; max-width: 520px; margin: 0 auto; background: var(--ground); position: relative; }
.view.wide { max-width: none; }

/* Header row with back arrow */
.top { display: flex; align-items: center; gap: 10px; padding: 18px 20px 8px; }
.top .h { font-size: 16px; }
.iconbtn { display: inline-flex; align-items: center; justify-content: center; width: var(--tap); height: var(--tap); border: 0; background: transparent; border-radius: 10px; cursor: pointer; margin-left: -11px; }
.iconbtn:hover { background: var(--accent-soft); }

/* Sections */
.sec { padding: 12px 20px 0; display: flex; flex-direction: column; gap: 10px; }
.sec.tight { gap: 6px; }
h1.h { font-size: 30px; text-wrap: balance; }
.price-line { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-line .big { font-size: 26px; }
.price-line .muted { font-size: 15px; }

/* Buttons */
.btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 52px; height: 52px; border-radius: 10px; border: 0; background: var(--accent); color: var(--white); font-weight: 600; font-size: 17px; cursor: pointer; padding: 0 16px; text-decoration: none; }
.btn:hover { background: var(--accent-dark); }
.btn:disabled { background: #A9B7DD; cursor: not-allowed; }
.btn.tall { height: 56px; font-size: 18px; }
.btn2 { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 48px; height: 48px; border-radius: 10px; border: 0; background: var(--accent-soft); color: var(--ink); font-weight: 600; font-size: 16px; cursor: pointer; padding: 0 16px; text-decoration: none; }
.btn2:hover { background: #DCE6FA; }
.btn2.ghost { background: transparent; border: 1.5px solid var(--rule); }
.btn2.ghost:hover { background: var(--white); }
.btn2.small { height: 44px; min-height: 44px; font-size: 15px; }
.btn.small { height: 44px; min-height: 44px; font-size: 14px; padding: 0 16px; width: auto; }
.btn-row { display: flex; gap: 10px; }
.btn-row > * { flex: 1; }
.inline-btn { width: auto; }

/* Cards */
.card { border: 1.5px solid var(--rule); border-radius: 12px; padding: 14px; background: var(--white); display: flex; gap: 12px; align-items: center; }
.card.on { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.panel { background: var(--white); border: 1.5px solid var(--rule); border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.panel .h { font-size: 15px; }
.note { display: flex; gap: 12px; align-items: center; background: var(--accent-soft); border-radius: 12px; padding: 12px 14px; font-size: 14px; line-height: 1.35; }
.note svg { flex: 0 0 auto; }
.tick { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.tick svg { flex: 0 0 18px; margin-top: 2px; }
.center { text-align: center; }
.small { font-size: 13px; }
.tiny { font-size: 12.5px; }

/* Radio cards (real radio inputs, visually a dot) */
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--radio); flex: 0 0 22px; }
.choice input:checked ~ .dot { border: 7px solid var(--accent); }
.choice:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.choice:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: 2px; }
.choice .body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.choice .title { font-weight: 600; font-size: 16px; }
.choice .desc { font-size: 13.5px; color: var(--muted); }
.choice .price { font-family: var(--font-head); font-weight: 700; font-size: 17px; }

/* Checkbox rows */
.check-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; background: var(--white); border: 1.5px solid var(--rule); border-radius: 12px; cursor: pointer; font-size: 15px; line-height: 1.35; }
.check-row input { width: 22px; height: 22px; margin: 0; flex: 0 0 22px; accent-color: var(--accent); }

/* Chips (toggle buttons) */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1.5px solid var(--rule); background: var(--white); border-radius: 999px; padding: 0 16px; min-height: var(--tap); font-size: 14px; font-weight: 600; cursor: pointer; }
.chip[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-soft); }
.chip:disabled { opacity: 0.6; cursor: default; }

/* Inputs */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 14px; }
.input { height: var(--tap); border: 1.5px solid var(--rule); border-radius: 8px; padding: 0 12px; font: inherit; font-size: 16px; background: var(--white); color: var(--ink); width: 100%; }
.input:focus { border-color: var(--accent); }
.row { display: flex; gap: 8px; align-items: center; }
.row .input { flex: 1; }

/* Drop zone */
.drop { border: 2px dashed var(--accent); border-radius: 14px; background: var(--white); padding: 26px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.drop.over { background: var(--accent-soft); }
.drop .h { font-size: 17px; }

/* Sample grid */
.samples { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.samples button { aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 1px solid var(--rule); background: var(--white); padding: 0; cursor: pointer; }
.samples button svg { width: 100%; height: 100%; display: block; }

/* Preview block with watermark and dimension overlay */
.preview-row { display: flex; gap: 14px; align-items: center; }
.preview-box { position: relative; border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; flex: 0 0 132px; width: 132px; height: 132px; background: var(--white); }
.preview-box.portrait { height: 165px; }
.preview-box img { width: 100%; height: 100%; object-fit: cover; }
.preview-box .wm { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.preview-box .wm span { transform: rotate(-30deg); font-size: 22px; font-weight: 700; color: rgba(20, 23, 28, 0.22); letter-spacing: 0.12em; }
.preview-box svg.dims { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.checks { display: flex; flex-direction: column; gap: 7px; flex: 1; min-width: 0; }
.checks .summary { font-size: 12.5px; color: var(--muted); }
.checks .summary button { background: none; border: 0; padding: 0; color: var(--accent); text-decoration: underline; cursor: pointer; font-size: inherit; min-height: 24px; }
.before-after { display: flex; gap: 12px; align-items: stretch; }
.before-after > div { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.before-after .label { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.before-after .frame { aspect-ratio: 1; border-radius: 6px; overflow: hidden; border: 1px solid var(--rule); position: relative; background: var(--white); }
.before-after .frame.after { border: 1.5px solid var(--accent); }
.before-after .frame img { width: 100%; height: 100%; object-fit: contain; }

/* Full check list */
.check-list { display: flex; flex-direction: column; gap: 0; background: var(--white); border: 1.5px solid var(--rule); border-radius: 12px; overflow: hidden; }
.check-list .item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border-top: 1px solid var(--rule-soft); font-size: 14px; }
.check-list .item:first-child { border-top: 0; }
.check-list .item svg { flex: 0 0 18px; margin-top: 2px; }
.check-list .fix { color: var(--muted); font-size: 13px; }
.fail-card { background: var(--bad-soft); border: 1.5px solid #F2B8B2; border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.fail-card .h { font-size: 15px; color: var(--bad); }
.warn-card { background: var(--warn-soft); border: 1.5px solid #F3D3AE; border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.warn-card .h { font-size: 15px; color: var(--warn); }

/* Delivery sub-panels (attach under the selected card) */
.subpanel { margin: -6px 0 0; border: 1.5px solid var(--accent); border-top: 0; border-radius: 0 0 12px 12px; background: var(--white); overflow: hidden; display: flex; flex-direction: column; }
.subpanel .head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--rule); font-size: 15px; }
.subpanel .head .input { height: 40px; }
.map { height: 170px; background: var(--rule-soft); }
.stores { display: flex; flex-direction: column; }
.store { display: flex; gap: 10px; align-items: center; padding: 11px 12px; border-top: 1px solid var(--rule-soft); cursor: pointer; position: relative; min-height: var(--tap); }
.store:first-child { border-top: 0; }
.store input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.store .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--radio); flex: 0 0 22px; }
.store input:checked ~ .dot { border: 7px solid var(--accent); }
.store:has(input:checked) { background: var(--accent-soft); }
.store:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: -3px; }
.store .body { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.store .name { font-weight: 600; font-size: 15px; }
.store .meta { font-size: 13px; color: var(--muted); }
.store .ready { font-size: 13px; white-space: nowrap; color: var(--muted); }
.store:has(input:checked) .ready { font-weight: 600; color: var(--good); }
.subpanel .pad { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.prints { display: flex; gap: 8px; }
.prints .choice { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border: 1.5px solid var(--rule); border-radius: 8px; padding: 8px; text-align: center; font-size: 14px; background: var(--white); min-height: var(--tap); }
.prints .choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); box-shadow: none; }
.prints .choice .dot { display: none; }
.prints .choice .sub { font-size: 12.5px; color: var(--muted); }

/* Sticky pay bar */
.spacer { flex: 1; }
.paybar { position: sticky; bottom: 0; background: var(--ground); padding: 12px 20px 26px; border-top: 1px solid var(--rule); display: flex; flex-direction: column; gap: 8px; z-index: 5; }
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 10px; font-size: 12px; color: var(--muted); }

/* Processing */
.processing { align-items: center; gap: 22px; padding: 40px 24px; }
.processing .h { font-size: 24px; }
.thumb { width: 200px; height: 200px; border-radius: 12px; overflow: hidden; border: 1px solid var(--rule); position: relative; background: var(--white); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .sweep { position: absolute; left: 0; right: 0; top: 0; height: 40%; background: linear-gradient(180deg, rgba(36, 86, 214, 0.35), rgba(36, 86, 214, 0)); animation: sweep 2.4s ease-in-out infinite; }
@keyframes sweep { 0% { top: 0; } 50% { top: 60%; } 100% { top: 0; } }
.steps { width: 100%; display: flex; flex-direction: column; }
.step { display: flex; gap: 14px; align-items: center; padding: 12px 0; font-size: 17px; color: var(--muted); }
.step .ring { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--radio); flex: 0 0 28px; display: flex; align-items: center; justify-content: center; }
.step.done .ring { background: var(--good); border-color: var(--good); }
.step.active { color: var(--ink); font-weight: 600; }
.step.active .ring { border: 3px solid var(--accent); border-top-color: transparent; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Camera view */
.cam { position: fixed; inset: 0; background: #0E1013; color: #fff; display: flex; flex-direction: column; z-index: 20; max-width: none; min-height: 0; }
.cam video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cam video.mirror { transform: scaleX(-1); }
.cam canvas.overlay { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.cam .bar { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 12px 12px 0; z-index: 2; }
.cam .bar .title { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
.cam .bar .title b { font-weight: 600; font-size: 15px; }
.cam .bar .title span { color: rgba(255, 255, 255, 0.75); font-size: 12px; }
.cam .bar .title span.guide { font-size: 12.5px; line-height: 1.3; max-width: 260px; }
.cam .iconbtn { color: #fff; margin: 0; }
.cam .iconbtn:hover { background: rgba(255, 255, 255, 0.15); }
.cam .hints { position: absolute; left: 0; right: 0; bottom: 150px; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 24px; z-index: 2; }
.cam .pill { background: rgba(255, 255, 255, 0.94); color: var(--ink); border-radius: 24px; padding: 10px 18px; font-weight: 600; font-size: 16px; display: flex; gap: 8px; align-items: center; min-height: var(--tap); max-width: 100%; line-height: 1.3; }
.cam .pill #pillText { text-align: center; }
.cam .pill .led { width: 10px; height: 10px; border-radius: 50%; background: var(--warn); display: inline-block; flex: 0 0 10px; }
.cam .pill.ok .led { background: var(--good); }
.cam .chiprow { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cam .cchip { border-radius: 999px; padding: 5px 12px; font-size: 13px; font-weight: 600; color: #fff; background: rgba(255, 255, 255, 0.18); }
.cam .cchip.ok { background: rgba(30, 127, 79, 0.9); }
.cam .cchip:not(.ok):not(.no) { background: rgba(255, 255, 255, 0.28); border: 1px dashed rgba(255,255,255,0.7); }   /* a reminder, not a pass */
.cam .cchip.no { background: rgba(180, 83, 9, 0.9); }
.cam .controls { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; align-items: center; padding: 22px 28px 34px; z-index: 2; }
.cam .ctl { display: flex; flex-direction: column; align-items: center; gap: 4px; background: none; border: 0; color: #fff; font-size: 11px; cursor: pointer; padding: 0; min-width: var(--tap); }
.cam .ctl .box { width: var(--tap); height: var(--tap); border-radius: 10px; background: rgba(255, 255, 255, 0.18); display: flex; align-items: center; justify-content: center; }
.cam .ctl .box.round { border-radius: 50%; }
.cam .ctl .box.on { background: var(--accent); }
.cam .shutter { width: 78px; height: 78px; border-radius: 50%; border: 5px solid #fff; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.cam .shutter span { width: 60px; height: 60px; border-radius: 50%; background: #fff; opacity: 0.55; display: block; }
.cam .shutter:hover span, .cam .shutter:focus-visible span { opacity: 0.9; }
.cam .countdown { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 120px; font-weight: 700; color: #fff; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); pointer-events: none; z-index: 3; }
.cam .flash { position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none; z-index: 4; }
.cam .flash.go { animation: flash 0.35s ease-out; }
@keyframes flash { 0% { opacity: 0.9; } 100% { opacity: 0; } }
.cam .loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; z-index: 1; }

/* Review view */
.review-img { width: 100%; max-height: 60vh; object-fit: contain; background: #0E1013; border-radius: 12px; }

/* Desktop layout */
.desk-head { border-bottom: 1px solid var(--rule); background: var(--white); }
.desk-head .in { display: flex; justify-content: space-between; align-items: center; padding: 22px 64px; max-width: 1240px; margin: 0 auto; }
.desk-head .brand { font-size: 20px; }
.desk-head nav { display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
.desk-head nav a { text-decoration: none; color: var(--muted); }
.desk-head nav a[aria-current="page"] { color: var(--ink); }
.desk-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; padding: 56px 64px 40px; align-items: start; max-width: 1240px; margin: 0 auto; width: 100%; }
.desk-grid h1.h { font-size: 44px; }
.desk-grid .price-line .big { font-size: 30px; }
.desk-grid .price-line .muted { font-size: 16px; }
.desk-cards { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.qr-card { background: var(--white); border: 1.5px solid var(--accent); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.qr-card .h { font-size: 18px; }
.qr-card .qr { padding: 8px; border: 1px solid var(--rule); border-radius: 10px; width: 194px; height: 194px; }
.qr-card .qr img { width: 176px; height: 176px; }
.qr-card .waiting { font-size: 12.5px; color: var(--accent); font-weight: 600; }
.qr-card .or { width: 100%; display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.qr-card .or div { flex: 1; height: 1px; background: var(--rule); }
.qr-card .sms { width: 100%; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.upload-card { background: var(--white); border: 2px dashed var(--radio); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.upload-card.over { border-color: var(--accent); background: var(--accent-soft); }
.upload-card .h { font-size: 18px; }
.desk-steps { padding: 8px 64px 48px; max-width: 1240px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.desk-steps .panel h3 { font-size: 15px; margin: 0 0 6px; }
.desk-steps .panel p { margin: 0; font-size: 14px; color: var(--muted); }
.desk-result { max-width: 520px; margin: 0 auto; width: 100%; }
@media (max-width: 960px) {
  .desk-grid { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .desk-head .in { padding: 16px 24px; }
  .desk-head nav { display: none; }
  .desk-steps { grid-template-columns: 1fr; padding: 8px 24px 40px; }
}
@media (max-width: 640px) { .desk-cards { grid-template-columns: 1fr; } }

/* Status and error text */
.status { font-size: 14px; color: var(--muted); min-height: 1.2em; }
.status.error { color: var(--bad); }
.error-view { padding: 40px 24px; gap: 14px; align-items: flex-start; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .thumb .sweep, .step.active .ring, .cam .flash.go { animation: none; }
  .step.active .ring { border-top-color: var(--accent); }
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* Fallback for browsers without :has(): the script mirrors the checked state onto the label */
.choice.on { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.choice.on .dot { border: 7px solid var(--accent); }
.prints .choice.on { border-color: var(--accent); background: var(--accent-soft); box-shadow: none; }
.store.on { background: var(--accent-soft); }
.store.on .dot { border: 7px solid var(--accent); }
.store.on .ready { font-weight: 600; color: var(--good); }

/* Product listing set: marketplace chips, the set card, shot tiles, batch upload review */
.set-card .h { font-size: 16px; }
.shotlist { margin: 0; padding: 0 0 0 20px; display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.shotlist li::marker { color: var(--muted); }
.tiles { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 6px; scrollbar-width: thin; }
.tile { flex: 0 0 72px; width: 72px; display: flex; flex-direction: column; align-items: center; gap: 4px; background: none; border: 0; padding: 0; cursor: pointer; text-align: center; }
.tile .box { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; background: var(--white); border: 2px dashed var(--radio); display: flex; align-items: center; justify-content: center; color: var(--muted); font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.tile.done .box { border: 2px solid var(--good); }
.tile.current .box { box-shadow: 0 0 0 2px var(--accent-soft), 0 0 0 3.5px var(--accent); }
.tile .box img { width: 100%; height: 100%; object-fit: cover; }
.tile .lbl { font-size: 11px; line-height: 1.2; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 26px; }
.tile.done .lbl { color: var(--ink); font-weight: 600; }
.tile.todo { cursor: default; }
.batch { display: flex; flex-direction: column; background: var(--white); border: 1.5px solid var(--rule); border-radius: 12px; overflow: hidden; }
.batch .item { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-top: 1px solid var(--rule-soft); font-size: 14px; }
.batch .item:first-child { border-top: 0; }
.batch .item img { width: 56px; height: 56px; border-radius: 6px; object-fit: cover; border: 1px solid var(--rule); flex: 0 0 56px; }
.batch .item .muted { font-size: 12.5px; }
.btn2[aria-pressed="true"] { border: 2px solid var(--accent); background: var(--accent-soft); }
