/* Staff screens: flat, dense, POS-style. */
body { background: #f5f5f5; }

/* Top bar */
.bar { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid var(--line); }
.bar-inner { display: flex; align-items: center; gap: .25rem; padding: 0 1rem; max-width: 1440px; margin: 0 auto; min-height: 52px; flex-wrap: wrap; }
.bar .title { font-weight: 700; margin-right: auto; display: flex; align-items: center; gap: .55rem; font-size: .98rem; }
.bar .venue { font-weight: 400; color: var(--muted); }
.bar .venue::before { content: '·'; margin-right: .5rem; }
.bar a, .bar button { color: var(--muted); text-decoration: none; background: none; border: 0; border-radius: 6px; padding: .45rem .7rem;
  font-size: .88rem; font-weight: 500; display: inline-flex; align-items: center; gap: .35rem; }
.bar a:hover, .bar button:hover { background: var(--fill); color: var(--text); }
.bar a.active { color: var(--text); font-weight: 600; background: var(--fill); }
.bar .conn { width: 8px; height: 8px; border-radius: 50%; background: #2e9e5b; }
.bar .conn.off { background: #d98a00; }
@media (max-width: 640px) { .bar .venue, .bar a span, .bar button span { display: none; } }
.wrap { max-width: 1440px; margin: 0 auto; padding: 1rem; }

/* Columns & panels */
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); align-items: start; }
.col h2 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 0 0 .5rem;
  display: flex; align-items: center; gap: .4rem; }
.col h2.mt { margin-top: 1.4rem; }
.col h2 .n { background: var(--text); color: #fff; border-radius: 4px; padding: 0 .35rem; font-size: .72rem; line-height: 1.5; }
.col h2 .push { margin-left: auto; text-transform: none; letter-spacing: 0; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem .95rem; margin-bottom: .6rem; }
.panel h3 { margin: 0 0 .7rem; font-size: .98rem; }
.panel.narrow { max-width: 860px; }
.panel.narrow h3 { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.panel.narrow h3:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.panel.alert { border-left: 4px solid var(--red); }
.panel.warn { border-left: 4px solid #d98a00; }
.panel.good { border-left: 4px solid var(--green); }
.panel-head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; margin-bottom: .4rem; }
.panel-foot { display: flex; justify-content: space-between; align-items: center; margin-top: .55rem; padding-top: .55rem; border-top: 1px solid var(--line); }
.tbl { font-size: 1.05rem; font-weight: 700; }
.meta { color: var(--muted); font-size: .8rem; }
.meta .lang { font-weight: 700; color: var(--text); }
.call-what { font-weight: 600; }
.row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .7rem; }
.row .btn { flex: 1; }
.oline { display: flex; justify-content: space-between; gap: .5rem; padding: .15rem 0; font-variant-numeric: tabular-nums; }
.inote { display: block; color: var(--red); font-weight: 600; font-size: .85rem; }
.onote { background: var(--amber-bg); color: var(--amber); border-radius: 6px; padding: .35rem .55rem; margin-top: .45rem; font-size: .88rem; font-weight: 600; }
.nothing { color: var(--faint); font-size: .88rem; padding: .5rem 0 .8rem; }
.sum-row { display: flex; justify-content: space-between; margin: 1rem 0; font-weight: 700; font-size: 1.1rem; font-variant-numeric: tabular-nums; }

.tables { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: .5rem; }
.tcard { border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: .55rem .65rem; text-align: left; min-height: 78px;
  display: flex; flex-direction: column; gap: .05rem; position: relative; color: var(--text); }
.tcard .tkind { font-size: .7rem; color: var(--muted); }
.tcard b { font-size: 1.25rem; line-height: 1.2; }
.tcard.busy { background: var(--blue-bg); border-color: #c7d8f0; }
.tcard.call { background: var(--red-bg); border-color: var(--red); }
.tcard .tcalls { position: absolute; top: .5rem; right: .5rem; color: var(--red); display: flex; gap: .15rem; }

/* Login */
.login { min-height: 100vh; display: grid; place-items: center; padding: 1rem; }
.login .box { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.6rem 1.4rem; width: min(340px, 100%); text-align: center; }
.login-mark { width: 44px; height: 44px; margin: 0 auto; border-radius: 10px; display: grid; place-items: center; background: var(--fill); color: var(--text); }
.pin-dots { display: flex; justify-content: center; gap: .55rem; margin: 1rem 0 1.2rem; }
.pin-dots i { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid #bdbdbd; }
.pin-dots i.on { background: var(--text); border-color: var(--text); }
.pad { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.pad button { height: 54px; border-radius: var(--radius); border: 1px solid var(--line); background: #fafafa; font-size: 1.25rem; font-weight: 500; color: var(--text); }
.pad button:active { background: #eee; }
.pad button[data-k="OK"] { background: var(--text); color: #fff; font-size: .95rem; font-weight: 600; }

/* Kitchen display */
body.kitchen { background: #121212; color: #e6e6e6; }
body.kitchen .bar { background: #1c1c1c; border-bottom-color: #2a2a2a; }
body.kitchen .bar .title { color: #fff; }
body.kitchen .bar a, body.kitchen .bar button { color: #aaa; }
body.kitchen .bar a:hover, body.kitchen .bar button:hover, body.kitchen .bar a.active { background: #2a2a2a; color: #fff; }
.kcols { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; padding: .8rem; min-height: calc(100vh - 52px); }
@media (max-width: 900px) { .kcols { grid-template-columns: 1fr; } }
.kcol { background: #1b1b1b; border-radius: var(--radius); padding: .6rem; }
.kcol h2 { color: #bbb; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin: .2rem .3rem .7rem; display: flex; justify-content: space-between; }
.kcol h2 .n { color: #fff; }
.kempty { color: #666; font-size: .9rem; margin: .3rem; }
.ticket { background: #fff; color: var(--text); border-radius: 6px; margin-bottom: .6rem; overflow: hidden; }
.ticket-head { display: flex; justify-content: space-between; align-items: center; padding: .5rem .75rem; background: #2d5f9a; color: #fff; }
.ticket.s-preparing .ticket-head { background: #9a6700; }
.ticket.s-ready .ticket-head { background: #1e7d45; }
.ticket.late .ticket-head { background: #b3261e; }
.ticket-head .tbl { font-size: 1.25rem; }
.ticket-body { padding: .6rem .75rem .75rem; }
.ticket .items { font-size: 1.08rem; margin: .1rem 0 .3rem; }
.ticket .items div { padding: .3rem 0; border-bottom: 1px solid #eee; }
.ticket .items div:last-child { border-bottom: 0; }
.ticket .q { font-weight: 700; display: inline-block; min-width: 2.2rem; }
.elapsed { font-weight: 700; font-variant-numeric: tabular-nums; font-size: 1rem; }

/* Admin */
.tabsbar { display: flex; gap: 1.2rem; overflow-x: auto; margin: -1rem -1rem 1rem; padding: 0 1rem; background: #fff; border-bottom: 1px solid var(--line); }
.tabsbar button { border: 0; background: transparent; padding: .8rem 0; font-weight: 500; white-space: nowrap; color: var(--muted); border-bottom: 2px solid transparent; }
.tabsbar button.active { color: var(--text); font-weight: 600; border-bottom-color: var(--text); }
.seg { display: inline-flex; border: 1px solid #d6d6d6; border-radius: var(--radius); overflow: hidden; background: #fff; margin-bottom: 1rem; }
.seg button { border: 0; background: transparent; padding: .45rem .9rem; font-size: .88rem; color: var(--muted); border-right: 1px solid #d6d6d6; }
.seg button:last-child { border-right: 0; }
.seg button.active { background: var(--fill); color: var(--text); font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .8rem; margin-bottom: 1rem; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; }
.stat .l { color: var(--muted); font-size: .82rem; }
.stat .v { font-size: 1.5rem; font-weight: 700; margin-top: .15rem; font-variant-numeric: tabular-nums; }
.rank { display: inline-block; min-width: 1.6rem; color: var(--faint); font-variant-numeric: tabular-nums; }
.links { display: flex; flex-wrap: wrap; gap: .4rem; }
.toolbar { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: 1rem; }
.cat-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
.cat-head { display: flex; align-items: center; gap: .4rem; padding: .65rem .9rem; background: #fafafa; border-bottom: 1px solid var(--line); }
.cat-head h3 { margin: 0; flex: 1; font-size: .98rem; }
.list-item { display: flex; align-items: center; gap: .75rem; padding: .6rem .9rem; border-bottom: 1px solid var(--line); }
.list-item:last-child { border-bottom: 0; }
.list-item .grow { flex: 1; min-width: 0; }
.list-item .grow b { display: block; font-weight: 600; }
.list-item.off { opacity: .5; }
.list-item .price { font-weight: 600; font-variant-numeric: tabular-nums; }
.thumb-sm { width: 44px; height: 44px; border-radius: 6px; overflow: hidden; flex: none; display: grid; place-items: center; background: var(--fill); color: #bbb; }
.thumb-sm img { width: 100%; height: 100%; object-fit: cover; }
.langs-mini { display: flex; gap: .2rem; margin-top: .2rem; }
.langs-mini span { font-size: .6rem; font-weight: 700; padding: 0 .2rem; border-radius: 2px; color: #c4c4c4; border: 1px solid #e3e3e3; }
.langs-mini span.ok { color: var(--muted); border-color: #cfcfcf; }
.mini { border: 1px solid #d6d6d6; background: #fff; border-radius: 6px; width: 30px; height: 30px; display: grid; place-items: center; color: var(--text); }
.mini:hover { background: var(--fill); }
.toggle { position: relative; display: inline-block; width: 36px; height: 20px; flex: none; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle span { position: absolute; inset: 0; background: #cfcfcf; border-radius: 999px; transition: .15s; cursor: pointer; }
.toggle span::before { content: ''; position: absolute; width: 16px; height: 16px; left: 2px; top: 2px; background: #fff; border-radius: 50%; transition: .15s; }
.toggle input:checked + span { background: var(--green); }
.toggle input:checked + span::before { transform: translateX(16px); }
.checks { display: flex; flex-wrap: wrap; gap: .35rem; }
.checks label { display: inline-flex; align-items: center; gap: .35rem; border: 1px solid #d6d6d6; border-radius: 6px; padding: .3rem .6rem; font-size: .85rem;
  background: #fff; cursor: pointer; }
.lang-tabs { display: flex; gap: .25rem; flex-wrap: wrap; margin-bottom: .6rem; }
.lang-tabs button { border: 1px solid #d6d6d6; background: #fff; border-radius: 6px; padding: .25rem .5rem; font-size: .78rem; font-weight: 600; color: var(--muted); }
.lang-tabs button.active { background: var(--text); color: #fff; border-color: var(--text); }
.lang-tabs button.missing { border-color: #e6b3ad; color: var(--red); }
.lang-tabs button.missing.active { background: var(--red); color: #fff; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 600px) { .two { grid-template-columns: 1fr; } }
.field .lbl { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .3rem; color: #333; }
.switch { display: flex; align-items: center; gap: .7rem; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: .6rem; }
.switch input { width: 18px; height: 18px; flex: none; }
.qr-img { width: 76px; height: 76px; background: #fff; border-radius: 4px; border: 1px solid var(--line); padding: 2px; }
.note-box { background: var(--amber-bg); color: #6b4200; border-radius: var(--radius); padding: .7rem .9rem; font-size: .88rem; margin: .5rem 0 1rem; }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 120px; }
.bars div { flex: 1; background: #5b7fa8; border-radius: 2px 2px 0 0; min-height: 2px; position: relative; }
.bars div span { position: absolute; bottom: -1.3rem; left: 50%; transform: translateX(-50%); font-size: .62rem; color: var(--muted); white-space: nowrap; }

/* Order history table */
.table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: .88rem; }
table.data th { text-align: left; font-weight: 600; color: var(--muted); font-size: .78rem; padding: .6rem .75rem; border-bottom: 1px solid var(--line); background: #fafafa; white-space: nowrap; }
table.data td { padding: .6rem .75rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data tr:last-child td { border-bottom: 0; }
table.data td.num, table.data th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.data td.items { color: var(--muted); min-width: 220px; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; align-items: flex-end; margin-bottom: 1rem; }
.filters label { font-size: .8rem; color: var(--muted); display: grid; gap: .2rem; }
.filters .input { width: auto; padding: .45rem .6rem; }
.color-row { display: flex; align-items: center; gap: .6rem; }
.color-row input[type=color] { width: 44px; height: 36px; border: 1px solid #d6d6d6; border-radius: 6px; padding: 2px; background: #fff; }
.swatches { display: flex; gap: .35rem; flex-wrap: wrap; }
.swatches button { width: 26px; height: 26px; border-radius: 6px; border: 1px solid rgba(0, 0, 0, .1); }

/* Photo picker */
.photo-drop { position: relative; border: 1px dashed #c9c9c9; border-radius: var(--radius); background: #fafafa; overflow: hidden; height: 110px; width: 110px;
  display: grid; place-items: center; cursor: pointer; margin-bottom: .4rem; }
.photo-drop.wide { width: 100%; height: 180px; }
.photo-drop.has { border-style: solid; border-color: var(--line); }
.photo-drop img { width: 100%; height: 100%; object-fit: cover; }
.photo-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.photo-drop .ph { display: flex; flex-direction: column; align-items: center; gap: .25rem; color: var(--muted); font-size: .85rem; text-align: center; padding: .5rem; }
.photo-drop .ph small { font-size: .74rem; color: var(--faint); }
.photo-drop:hover { border-color: #999; }
.btn.ghost.rm { color: var(--red); }
.switch input, .checks input, .filters input, .toggle input { accent-color: var(--text); }
.filters .input { height: 38px; }
.iopt { display: block; color: #24518a; font-weight: 600; font-size: .85rem; }
.ticket .iopt { font-size: .95rem; }

/* Dish options editor */
.og { border: 1px solid var(--line); border-radius: var(--radius); padding: .6rem; margin-bottom: .6rem; background: #fafafa; }
.og-head, .oc { display: flex; gap: .4rem; align-items: center; }
.og-head .input { font-weight: 600; }
.oc { margin-top: .4rem; padding-left: 1rem; }
.oc .cprice { width: 90px; flex: none; }
.og .input { padding: .45rem .6rem; }
.og-flags { display: flex; gap: 1rem; font-size: .85rem; margin: .45rem 0 .2rem; }
.og-flags label { display: inline-flex; gap: .35rem; align-items: center; }

/* Logo upload + preview */
.logo-row { display: flex; gap: 1.2rem; align-items: flex-start; flex-wrap: wrap; }
.photo-drop.contain img { object-fit: contain; background: #fff; }
.menu-preview { flex: 1; min-width: 220px; }
.pv-label { font-size: .78rem; color: var(--muted); margin-bottom: .35rem; }
.pv { display: flex; gap: .8rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem; background: #fff; }
.pv img { width: 56px; height: 56px; object-fit: contain; border: 1px solid var(--line); border-radius: 10px; }
.pv-empty { width: 56px; height: 56px; border: 1px dashed #cfcfcf; border-radius: 10px; font-size: .6rem; color: var(--faint); display: grid; place-items: center; text-align: center; }
.pv b { display: block; font-size: 1.05rem; }
.pv span { font-size: .8rem; color: var(--muted); }
.list-item .btn.sm { min-height: 30px; padding: .25rem .6rem; }

/* Printing & closing a spot */
.foot-right { display: inline-flex; gap: .8rem; align-items: center; }
.print-link { font-size: .8rem; color: var(--muted); }
.ticket .print-link { color: var(--muted); }
.close-box { border-top: 1px solid var(--line); padding-top: .8rem; margin-top: .4rem; }
.close-box .seg { display: flex; margin-bottom: 0; }
.close-box .seg button { flex: 1; padding: .6rem; }
table.data .input.fiscal { padding: .3rem .5rem; min-width: 160px; font-size: .85rem; }

/* Subscription and first steps */
.plan-banner { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap;
  background: var(--blue-bg); border: 1px solid #c9d7ea; border-radius: var(--radius); padding: .65rem .9rem; margin-bottom: .8rem; font-size: .92rem; }
.plan-banner.warn { background: var(--amber-bg); border-color: #ecd6a6; }
.setup-head { display: flex; align-items: center; justify-content: space-between; }
.setup-head h3 { margin: 0; }
.setup ol { list-style: none; margin: .6rem 0 0; padding: 0; }
.setup li { display: grid; grid-template-columns: 22px 1fr auto; gap: .7rem; align-items: center; padding: .55rem 0; border-top: 1px solid var(--line); }
.setup li p { margin: .1rem 0 0; }
.setup .tick { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #c8c8c8; display: grid; place-items: center; color: #fff; }
.setup li.done .tick { background: var(--green); border-color: var(--green); }
.setup li.done b { color: var(--muted); text-decoration: line-through; }
.kv { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.kv span { color: var(--muted); }
.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .7rem; }
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem; display: flex; flex-direction: column; gap: .3rem; }
.plan-card.current { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.plan-card h4 { margin: 0; font-size: 1rem; }
.plan-card .price { font-size: 1.35rem; font-weight: 700; }
.plan-card .price small { font-size: .8rem; font-weight: 400; color: var(--muted); }
.plan-card p { margin: 0; }
.plan-card ul { margin: .4rem 0 .6rem; padding-left: 1.1rem; font-size: .86rem; flex: 1; }
.copy-row { display: flex; gap: .5rem; max-width: 560px; }
.copy-row .input { flex: 1; }
details.advanced { margin-top: 1.2rem; }
details.advanced summary { cursor: pointer; font-weight: 600; }

/* Appearance tab: theme editor with a live phone preview */
.look { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 1rem; align-items: start; }
@media (max-width: 900px) { .look { grid-template-columns: 1fr; } }
.presets { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .5rem; }
.preset { display: flex; align-items: center; gap: .5rem; border: 1px solid #d6d6d6; border-radius: 8px; padding: .6rem .7rem; font-weight: 600; font-size: .88rem; text-align: left; }
.preset .sw { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.color-field input[type=color] { width: 48px; height: 36px; border: 1px solid #d6d6d6; border-radius: 6px; padding: 2px; background: #fff; }
.font-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .5rem; }
.font-opt { border: 1px solid #d6d6d6; border-radius: 8px; padding: .6rem .7rem; cursor: pointer; display: flex; flex-direction: column; gap: .15rem; }
.font-opt:has(input:checked) { border-color: var(--text); box-shadow: inset 0 0 0 1px var(--text); }
.font-opt input { position: absolute; opacity: 0; pointer-events: none; }
.font-opt span { font-size: 1.15rem; font-weight: 700; }
.font-opt small { color: var(--muted); }
.f-classic, .f-traditional { font-family: Georgia, 'Times New Roman', serif; }
.f-elegant { font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif; }
.f-rounded { font-family: ui-rounded, 'SF Pro Rounded', 'Arial Rounded MT Bold', sans-serif; }
.look-preview { position: sticky; top: 1rem; }
.look-preview .pv-label { font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
.phone-pv { border: 8px solid #1a1a1a; border-radius: 28px; overflow: hidden; background: var(--bg); color: var(--text); font-family: var(--font);
  padding: 0 14px 14px; min-height: 560px; font-size: 14px; position: relative; }
.phone-pv h1, .phone-pv h2 { font-family: var(--font-display); margin: 0; }
.phone-pv h1 { font-size: 1.3rem; }
.phone-pv h2 { color: var(--cat); font-size: 1.1rem; margin: 1rem 0 .2rem; }
.phone-pv p { margin: .15rem 0 0; color: var(--muted); font-size: .82rem; }
.pv-cover { margin: 0 -14px; height: 120px; overflow: hidden; background: var(--fill); }
.pv-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pv-head { display: flex; gap: .7rem; align-items: center; padding-top: 14px; }
.pv-logo { width: 52px; height: 52px; object-fit: contain; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.pv-service { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .8rem; }
.pv-service span { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: .5rem; text-align: center; font-weight: 600; font-size: .82rem; }
.pv-tabs { display: flex; gap: 1rem; border-bottom: 1px solid var(--line); margin-top: .9rem; font-size: .85rem; }
.pv-tabs b, .pv-tabs span { padding: .5rem 0; color: var(--muted); }
.pv-tabs b { color: var(--cat); border-bottom: 2px solid var(--brand); }
.pv-dish { display: flex; justify-content: space-between; gap: .6rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.pv-dish em { font-style: normal; font-weight: 700; display: block; margin-top: .3rem; }
.pv-add { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: var(--radius); display: grid; place-items: center; flex: none; background: var(--surface); }
.pv-cart { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  background: var(--brand); color: var(--brand-ink); border-radius: var(--radius); padding: .7rem .9rem; font-weight: 700; }
.pv-cart span:first-child { background: rgba(255, 255, 255, .22); border-radius: 4px; padding: 0 .4rem; }
.look .panel h3 { margin-top: 1.4rem; }
.look .panel h3:first-child { margin-top: 0; }

/* Menu rules: schedules, offers, zones */
.win .days { display: flex; gap: .3rem; flex-wrap: wrap; }
.win .days label { cursor: pointer; }
.win .days input { position: absolute; opacity: 0; pointer-events: none; }
.win .days span { display: inline-block; min-width: 38px; text-align: center; padding: .35rem .4rem; border: 1px solid #d6d6d6; border-radius: 6px; font-size: .85rem; }
.win .days input:checked + span { background: var(--text); color: #fff; border-color: var(--text); }
.win .times { display: flex; gap: .8rem; margin-top: .5rem; flex-wrap: wrap; }
.win .times label { display: flex; align-items: center; gap: .4rem; font-size: .88rem; }
.win .times .input { width: auto; }
.offers { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.offers > div { display: flex; flex-direction: column; }
.bulk { align-items: center; }
.check-all { display: flex; align-items: center; gap: .4rem; font-size: .9rem; }
.list-item .sel { flex: none; }
.list-item .badge { margin-left: .35rem; }

/* Stations, ETA, zones */
.bar .station-select, .station-select { width: auto; flex: 0 0 auto; max-width: 220px; padding: .3rem .5rem; font-size: .88rem; background: transparent; color: inherit; border-color: color-mix(in srgb, currentColor 35%, transparent); }
.station-select option { color: #1a1a1a; background: #fff; }
.ticket-head .eta { margin-left: auto; margin-right: .6rem; font-weight: 700; font-size: .9rem; opacity: .85; }
.ticket-head .eta.late { color: #fff; background: var(--red); border-radius: 4px; padding: 0 .35rem; opacity: 1; }
.linklike { border: 0; background: none; padding: 0; color: var(--brand); font: inherit; text-decoration: underline; cursor: pointer; }
.zone-toggle { font-size: .85rem; }
.staff-list .member { display: grid; grid-template-columns: 1.4fr 1fr .8fr 2fr auto; gap: .5rem; align-items: start; padding: .5rem 0; border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .staff-list .member { grid-template-columns: 1fr 1fr; } }
.loyal-note { display: flex; align-items: center; justify-content: space-between; gap: .5rem; background: var(--amber-bg); border-radius: 6px; padding: .4rem .6rem; margin-top: .4rem; font-size: .88rem; }
.fb-row { padding: .5rem 0; border-top: 1px solid var(--line); }
.fb-row .st { color: #e0a100; letter-spacing: .05em; }
