/* Pixelwand — Wall app. Visual source of truth: HSG Pixel-Wall.dc.html (Claude Design). */
:root {
  --navy: #0b1c31; --navy2: #0e2340; --red: #c8102e; --red-d: #a60d26; --green: #1c7a4a;
  --amber: #8a6200; --amber-bg: #fff6e5; --amber-bd: #f0d9a8; --rose-bg: #fdecef; --rose-bd: #f3c6ce;
  --g1: #f4f5f7; --g2: #eef0f3; --g3: #dfe3e9; --bd1: #e6e8ec; --bd2: #d5dae3; --bd3: #b9c0cc; --bd4: #cdd3dc;
  --t2: #6b7688; --t3: #44506b; --t4: #2b3a54; --t5: #8a94a6;
  --w2: #c3cddc; --w3: #9fb3cc; --w4: #8fa0b8; --w5: #dfe5ee; --sky: #8fb4e6; --pink: #ff8fa2; --pink2: #ffd4dc;
  --osw: Oswald, sans-serif; --bar: Barlow, system-ui, sans-serif;
}
html, body { margin: 0; height: 100%; background: var(--navy); -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }
a { color: var(--red); text-decoration: none; }
input, button { font-family: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
@keyframes pulseDot { 0%,100% { opacity: 1 } 50% { opacity: .3 } }
@keyframes spin { to { transform: rotate(360deg) } }

.shell { font-family: var(--bar); color: var(--navy2); background: var(--g1); height: 100vh; height: 100dvh; display: flex; flex-direction: column; overflow: hidden; }
.shell.narrow { height: auto; min-height: 100vh; overflow: visible; }

/* ---------- header ---------- */
.hdr { flex: 0 0 auto; background: var(--navy); color: #fff; border-bottom: 1px solid rgba(255,255,255,.12); }
.hdr-in { display: flex; align-items: center; gap: 18px; padding: 10px 16px; flex-wrap: wrap; }
.hdr-brand { min-width: 0; color: #fff; flex-shrink: 0; }
.hdr-club { font-family: var(--osw); font-weight: 700; font-size: 21px; letter-spacing: .03em; text-transform: uppercase; line-height: 1; }
.hdr-sub { font-family: var(--osw); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--w4); margin-top: 3px; }
.hdr-right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.live { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); padding: 8px 14px; flex-wrap: wrap; }
.live-count { display: flex; align-items: baseline; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: block; animation: pulseDot 1.8s infinite; background: currentColor; }
.dot-green { background: var(--green); }
.live-sold { font-family: var(--osw); font-weight: 700; font-size: 24px; line-height: 1; }
.live-total { font-size: 12px; color: var(--w3); }
.live-bar { width: 120px; height: 8px; background: rgba(255,255,255,.16); position: relative; overflow: hidden; }
.live-bar-fill { position: absolute; inset: 0 auto 0 0; background: var(--red); width: 0; }
.live-kpis { display: flex; gap: 14px; flex-wrap: wrap; }
.kpi { font-family: var(--osw); font-size: 16px; line-height: 1; color: #fff; }
.kpi-pink { color: var(--pink); }
.kpi-l { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--w4); }
.demo-badge { font-family: var(--osw); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; background: var(--amber-bg); color: var(--amber); border: 1px solid var(--amber-bd); padding: 6px 9px; }
.btn-outline-w { font-family: var(--osw); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.4); padding: 11px 14px; background: none; }
.btn-outline-w:hover { background: #fff; color: var(--navy); }
.btn-red { font-family: var(--osw); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; background: var(--red); color: #fff; padding: 12px 16px; border: 0; }
.btn-red:hover { background: var(--red-d); }

/* ---------- row ---------- */
.row { flex: 1 1 0%; min-height: 0; display: flex; flex-wrap: wrap; align-items: stretch; overflow: hidden; }
.narrow .row { flex: 0 0 auto; overflow: visible; }
.wallpanel { flex: 1 1 560px; min-width: 0; min-height: 0; height: 100%; display: flex; flex-direction: column; background: var(--g3); border-right: 1px solid var(--bd4); }
.narrow .wallpanel { height: var(--panel-h, 60vh); }
.toolbar { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; padding: 8px 10px; background: var(--g2); border-bottom: 1px solid var(--bd4); flex-wrap: wrap; }
.tb-btn { width: 34px; height: 34px; font-size: 19px; background: #fff; border: 1px solid var(--bd3); color: var(--navy2); }
.tb-zoom { height: 34px; min-width: 54px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--bd3); font-family: var(--osw); font-size: 13px; }
.tb-fit { height: 34px; padding: 0 12px; background: #fff; border: 1px solid var(--bd3); font-family: var(--osw); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy2); }
.search { position: relative; flex: 1; min-width: 180px; max-width: 320px; }
.search input { width: 100%; height: 34px; padding: 0 11px; border: 1px solid var(--bd3); background: #fff; font-size: 14px; outline: none; }
.search-dd { position: absolute; top: 100%; left: 0; right: 0; margin-top: 4px; z-index: 30; background: #fff; border: 1px solid var(--bd3); box-shadow: 0 16px 36px rgba(5,15,30,.28); max-height: 240px; overflow: auto; }
.search-dd button { display: flex; width: 100%; gap: 10px; align-items: center; padding: 9px 10px; background: none; border: 0; border-bottom: 1px solid #eef0f4; text-align: left; font-size: 14px; }
.search-dd button:hover { background: var(--g1); }
.search-dd .chip { width: 18px; height: 18px; flex-shrink: 0; border: 1px solid rgba(0,0,0,.25); }
.search-dd .n { font-weight: 600; }
.search-dd .px { margin-left: auto; font-size: 12px; color: var(--t2); }
.tb-hint { margin-left: auto; font-family: var(--osw); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--t2); }
.tb-cursor { font-family: var(--osw); font-size: 12px; background: #fff; border: 1px solid var(--bd3); padding: 6px 9px; }
.vp-wrap { flex: 1 1 0%; min-height: 0; position: relative; }
.vp { position: absolute; inset: 0; overflow: hidden; cursor: grab; touch-action: none; user-select: none; }
.cv { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
#selcv { pointer-events: none; z-index: 5; }
.stage { position: absolute; left: 0; top: 0; width: 2500px; height: 1600px; transform-origin: 0 0; will-change: transform; pointer-events: none; z-index: 6; }
.crest { position: absolute; background: var(--navy); border: 3px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 12px; }
.crest img { width: 62%; height: auto; background: #fff; padding: 6px; display: block; }
.crest-name { font-family: var(--osw); font-weight: 700; font-size: 19px; letter-spacing: .04em; text-transform: uppercase; color: #fff; line-height: 1.05; }
.crest-sub { font-family: var(--osw); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--w4); }
.foreign { position: absolute; border: 2px solid var(--amber); background: repeating-linear-gradient(45deg, rgba(244,163,0,.22) 0 6px, rgba(244,163,0,.06) 6px 12px); display: flex; align-items: center; justify-content: center; }
.foreign span, .hold-label { transform-origin: center; white-space: nowrap; background: var(--amber); color: #fff; font-family: var(--osw); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; padding: 4px 7px; }
.hold { position: absolute; border: 2px solid var(--amber); display: flex; align-items: flex-start; justify-content: center; z-index: 8; }
.hold-label { transform-origin: top center; }
.bar { position: absolute; left: 0; top: 0; z-index: 40; display: flex; gap: 4px; padding: 5px; background: #fff; border: 2px solid var(--navy); box-shadow: 0 8px 24px rgba(5,15,30,.45); touch-action: none; }
.bar-tool { min-width: 66px; height: 58px; padding: 0 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 2px solid var(--bd3); background: #fff; color: var(--navy2); font-family: var(--osw); }
.bar-tool.on { border-color: var(--navy2); background: var(--navy2); color: #fff; }
.bar-ic { font-size: 19px; line-height: 1; }
.bar-l { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; line-height: 1; }
.bar-buy { height: 56px; padding: 0 22px; border: 0; background: var(--red); color: #fff; font-family: var(--osw); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.edges { position: absolute; left: 0; top: 0; width: 0; height: 0; z-index: 39; }
.edges span { position: absolute; left: 0; top: 0; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; border: 2px solid #fff; font-family: var(--osw); font-size: 15px; touch-action: none; pointer-events: auto; }
.edges [data-edge=t], .edges [data-edge=b] { width: 52px; height: 30px; cursor: ns-resize; }
.edges [data-edge=l], .edges [data-edge=r] { width: 30px; height: 52px; cursor: ew-resize; }
.tip { position: absolute; left: 0; top: 0; pointer-events: none; background: var(--navy); color: #fff; border: 1px solid rgba(255,255,255,.25); padding: 8px 10px; max-width: 230px; z-index: 8; box-shadow: 0 10px 26px rgba(5,15,30,.45); }
.tip-head { display: flex; align-items: center; gap: 8px; }
.tip-mark { flex-shrink: 0; display: block; width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.35); }
.tip-t { min-width: 0; }
.tip-name { font-family: var(--osw); font-size: 15px; line-height: 1.15; }
.tip-kind { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--w4); }
.tip-meta { font-family: var(--osw); font-size: 14px; margin-top: 7px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 6px; }
.tip-claim { font-size: 12px; color: var(--w5); margin-top: 5px; font-style: italic; }
.tip-claim:empty { display: none; }

/* ---------- quick panel (narrow) ---------- */
.quick { flex: 1 1 100%; width: 100%; min-width: 0; background: var(--navy); color: #fff; padding: 20px 18px 22px; }
.q-kicker { font-family: var(--osw); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--w4); }
.q-title { font-family: var(--osw); font-weight: 700; font-size: 26px; line-height: 1.02; text-transform: uppercase; margin-top: 5px; }
.q-row { display: flex; gap: 16px; align-items: flex-start; margin-top: 16px; flex-wrap: wrap; }
.q-qr { background: #fff; padding: 10px; flex-shrink: 0; }
.q-qr canvas { width: 132px; height: 132px; display: block; }
.q-text { flex: 1 1 170px; min-width: 0; font-size: 14px; color: var(--w2); line-height: 1.45; }
.caveat { font-family: Caveat, cursive; font-size: 22px; color: var(--sky); margin-top: 8px; }
.q-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 9px; margin-top: 16px; }
.q-tier { text-align: left; padding: 13px 12px; min-width: 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); color: #fff; }
.q-tier.hl { background: var(--red); border-color: var(--red); }
.q-tier .e { display: block; font-family: var(--osw); font-weight: 700; font-size: 24px; line-height: 1; }
.q-tier .p { display: block; font-family: var(--osw); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; margin-top: 3px; }
.q-tier .s { display: block; font-size: 11px; color: var(--w4); margin-top: 2px; }
.q-tier.hl .s { color: var(--pink2); }
.q-note { font-size: 11px; color: var(--w4); margin-top: 10px; }

/* ---------- aside ---------- */
.aside { flex: 0 0 360px; max-width: 100%; min-height: 0; height: 100%; background: #fff; overflow-y: auto; display: flex; flex-direction: column; }
.narrow .aside { height: auto; flex-basis: 100%; }
.panel { padding: 16px; border-bottom: 1px solid var(--bd1); }
.panel-head { display: flex; align-items: center; gap: 8px; }
.kicker { font-family: var(--osw); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--t2); }
.kicker-w { font-family: var(--osw); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--w4); }
.tool-hint { margin-left: auto; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--osw); color: var(--navy2); }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.path { text-align: left; padding: 12px 11px; background: #fff; color: var(--navy2); border: 1px solid var(--bd2); }
.path.on { background: var(--navy2); color: #fff; border-color: var(--navy2); }
.path.off { background: #f1f2f4; color: #a4abb8; border-color: var(--bd1); cursor: not-allowed; }
.path .ic { display: block; font-family: var(--osw); font-size: 19px; line-height: 1; }
.path .l { display: block; font-family: var(--osw); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; line-height: 1.1; margin-top: 6px; }
.path .s { display: block; font-size: 11px; line-height: 1.25; margin-top: 3px; color: var(--t2); }
.path.on .s { color: var(--w3); } .path.off .s { color: #b6bcc7; }
.pxnote { font-size: 12px; color: var(--t3); margin-top: 12px; background: #fff; border: 1px solid var(--bd1); padding: 8px 10px; }
.readout { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.ro-px { font-family: var(--osw); font-weight: 700; font-size: 30px; line-height: 1; }
.ro-l { font-size: 13px; color: var(--t2); }
.ro-eur { margin-left: auto; font-family: var(--osw); font-size: 24px; line-height: 1; color: var(--red); }
.conn { font-size: 13px; color: var(--t2); margin-top: 6px; }
.path-sec { margin-top: 12px; }
.lbl { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--t2); font-family: var(--osw); }
.mt14 { margin-top: 14px; } .mt10 { margin-top: 10px; } .mt16 { margin-top: 16px; }
.rect-row { display: flex; align-items: center; gap: 7px; margin-top: 7px; }
.rect-row input { width: 70px; padding: 10px; border: 1px solid var(--bd2); font-size: 15px; text-align: right; outline: none; }
.rect-row .x { font-family: var(--osw); font-size: 15px; color: var(--t2); } .rect-row .unit { font-size: 12px; color: var(--t2); }
.btn-navy-s { margin-left: auto; padding: 10px 12px; border: 0; background: var(--navy2); color: #fff; font-family: var(--osw); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.sub { font-size: 12px; color: var(--t2); margin-top: 6px; }
.sub-i { font-size: 11px; color: var(--t5); }
.chips { display: flex; gap: 6px; margin-top: 7px; flex-wrap: wrap; }
.chip-b { flex: 1; min-width: 58px; padding: 8px 4px; font-family: var(--osw); font-size: 12px; background: #fff; color: var(--navy2); border: 1px solid var(--bd2); letter-spacing: .04em; }
.chip-b.on { background: var(--navy2); color: #fff; border-color: var(--navy2); }
.chip-b.stamp { min-width: 66px; padding: 9px 6px; letter-spacing: .06em; text-transform: uppercase; }
.chip-b.stamp:hover { border-color: var(--navy2); }
.info { display: flex; align-items: flex-start; gap: 9px; background: #eef1f6; border: 1px solid #dbe1ea; padding: 10px 11px; margin-bottom: 9px; font-size: 12px; color: var(--t4); line-height: 1.4; }
.info-i { width: 20px; height: 20px; flex-shrink: 0; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--osw); font-size: 12px; }
.upload { display: flex; align-items: center; gap: 10px; border: 1px dashed #c6ccd8; background: #fff; padding: 11px 12px; cursor: pointer; }
.upload:hover { border-color: var(--red); }
.upload-plus { width: 30px; height: 30px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--navy2); color: #fff; font-family: var(--osw); font-size: 17px; }
.upload-l { display: block; font-family: var(--osw); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; line-height: 1.1; }
.upload-s { display: block; font-size: 12px; color: var(--t2); }
.note { margin-top: 8px; font-size: 12px; padding: 9px 10px; border: 1px solid; }
.note-grey { color: var(--t2); background: var(--g1); border-color: var(--bd1); }
.note-warn { color: var(--amber); background: var(--amber-bg); border-color: var(--amber-bd); }
.note-err { color: var(--red); background: var(--rose-bg); border-color: var(--rose-bd); }
.logobox { margin-top: 8px; border: 1px solid var(--bd1); background: #fff; padding: 11px 12px; }
.logobox-row { display: flex; align-items: baseline; gap: 8px; }
.lb-px { font-family: var(--osw); font-size: 17px; line-height: 1; } .lb-dim { font-size: 12px; color: var(--t2); } .lb-eur { margin-left: auto; font-family: var(--osw); font-size: 17px; line-height: 1; color: var(--red); }
.btn-row { display: flex; gap: 8px; margin-top: 9px; }
.btn-outline { padding: 9px 12px; font-family: var(--osw); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; background: none; border: 1px solid var(--bd2); color: var(--navy2); }
.btn-outline-navy { padding: 13px 14px; border: 1px solid var(--navy); background: #fff; color: var(--navy); font-family: var(--osw); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.flex1 { flex: 1; text-align: center; } .w100 { display: block; width: 100%; margin-top: 12px; padding: 15px; font-size: 15px; }
.spot-card { border: 1px solid var(--bd1); background: #fff; padding: 12px; }
.spot-head { display: flex; align-items: baseline; gap: 8px; }
.spot-eur { margin-left: auto; font-family: var(--osw); font-size: 17px; line-height: 1; color: var(--red); }
.spot-dim { font-family: var(--osw); font-size: 19px; line-height: 1.05; margin-top: 4px; }
.btn-buy { display: block; width: 100%; margin-top: 12px; padding: 20px 16px; border: 0; font-family: var(--osw); font-weight: 700; font-size: 19px; letter-spacing: .05em; text-transform: uppercase; line-height: 1.1; background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(200,16,46,.35); }
.btn-buy:hover { background: var(--red-d); }
.btn-buy span { display: block; font-weight: 400; font-size: 13px; letter-spacing: .04em; margin-top: 4px; color: var(--pink2); }
.spotlist { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.spot { display: flex; align-items: center; gap: 11px; padding: 9px 10px; text-align: left; background: #fff; border: 1px solid #e0e3e9; color: var(--navy2); }
.spot.on { background: var(--navy2); color: #fff; border-color: var(--navy2); }
.spot-pv { flex-shrink: 0; width: 40px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--g1); border: 1px solid #e0e3e9; }
.spot-pv i { display: block; }
.spot .n { display: block; font-family: var(--osw); font-size: 15px; line-height: 1.05; }
.spot .s { display: block; font-size: 11px; color: var(--t2); } .spot.on .s { color: var(--w3); }
.spot .r { margin-left: auto; text-align: right; flex-shrink: 0; }
.spot .e { display: block; font-family: var(--osw); font-size: 15px; line-height: 1.05; color: var(--red); }
.spot .st { display: block; font-size: 11px; }
.hr { height: 1px; background: var(--bd1); margin: 14px 0 12px; }
.txt { width: 100%; padding: 11px 12px; border: 1px solid var(--bd2); font-size: 15px; outline: none; }
.sw-row { display: flex; align-items: center; gap: 7px; margin-top: 9px; flex-wrap: wrap; }
.sw { display: flex; gap: 7px; }
.sw button { width: 26px; height: 26px; border: 2px solid rgba(0,0,0,.25); padding: 0; }
.sw-big button { width: 30px; height: 30px; border-color: rgba(0,0,0,.15); }
.sw button.on { border-color: var(--navy2); }
.panel-sel { min-height: 248px; }
.p { font-size: 15px; line-height: 1.45; color: var(--t3); margin: 10px 0 0; }
.sel-head { display: flex; gap: 12px; align-items: flex-start; margin-top: 10px; }
.sel-chip { width: 54px; height: 54px; flex-shrink: 0; border: 1px solid rgba(0,0,0,.25); display: flex; align-items: center; justify-content: center; font-family: var(--osw); font-size: 11px; text-align: center; line-height: 1; padding: 3px; overflow: hidden; background-size: contain; background-repeat: no-repeat; background-position: center; }
.sel-name { font-family: var(--osw); font-weight: 700; font-size: 20px; line-height: 1.05; }
.sel-sub { font-size: 13px; color: var(--t2); }
.sel-kpis, .paid-kpis { display: flex; gap: 16px; margin-top: 14px; }
.paid-kpis { gap: 18px; margin-top: 12px; }
.kpi-n { font-family: var(--osw); font-size: 20px; line-height: 1; } .paid-kpis .kpi-n { font-size: 24px; }
.kpi-n.red { color: var(--red); }
.sel-kpis .kpi-l, .paid-kpis .kpi-l { font-size: 11px; letter-spacing: .1em; color: var(--t2); }
.sel-claim { font-size: 15px; line-height: 1.45; color: var(--t4); margin: 12px 0 0; }
.sel-claim:empty { display: none; }
.sel-site { display: inline-block; margin-top: 8px; font-size: 13px; color: var(--red); }
.sharebox { margin-top: 14px; border: 1px solid var(--bd1); background: var(--g1); padding: 12px; }
.share-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.share-url { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: ui-monospace, Menlo, monospace; font-size: 12px; background: #fff; border: 1px solid var(--bd2); padding: 9px 10px; }
.share-row .btn-navy-s { margin-left: 0; flex-shrink: 0; padding: 9px 12px; letter-spacing: .08em; }
.sel-foot { display: flex; align-items: center; gap: 10px; margin-top: 12px; } .sel-foot .btn-outline { margin-left: auto; padding: 8px 12px; letter-spacing: .08em; }
.panel-cta { margin-top: auto; background: var(--navy); color: #fff; border: 0; }
.cta-t { font-family: var(--osw); font-weight: 700; font-size: 20px; text-transform: uppercase; line-height: 1.05; }
.cta-s { font-size: 14px; color: var(--w2); margin-top: 6px; }

/* ---------- footer ---------- */
.ftr { flex: 0 0 auto; background: var(--navy); color: #fff; border-top: 1px solid rgba(255,255,255,.14); padding: 12px 16px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ftr-l { flex-shrink: 0; }
.ftr-t { font-family: var(--osw); font-size: 15px; text-transform: uppercase; line-height: 1.1; }
.ftr-strip { flex: 1; min-width: 240px; display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px; }
.ftr-strip button { flex: 0 0 auto; display: flex; gap: 9px; align-items: center; padding: 9px 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); text-align: left; color: #fff; }
.ftr-strip button:hover { background: rgba(255,255,255,.16); }
.ftr-strip .chip { width: 18px; height: 18px; flex-shrink: 0; border: 1px solid rgba(0,0,0,.35); background-size: contain; background-position: center; background-repeat: no-repeat; }
.ftr-strip .n { display: block; font-weight: 600; font-size: 14px; white-space: nowrap; }
.ftr-strip .pl { display: block; font-size: 11px; color: var(--w3); white-space: nowrap; }
.ftr-strip .px { font-family: var(--osw); font-size: 13px; white-space: nowrap; }
.ftr-empty { font-size: 13px; color: var(--w4); align-self: center; }

/* ---------- sheet ---------- */
.sheet-bg { position: fixed; inset: 0; z-index: 95; background: rgba(6,14,26,.55); display: flex; align-items: flex-end; justify-content: center; }
.sheet { width: min(460px, 100%); max-height: 92vh; overflow-y: auto; background: #fff; box-shadow: 0 -20px 60px rgba(5,15,30,.5); border-top: 4px solid var(--red); }
.sh-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--bd1); }
.sh-title { font-family: var(--osw); font-weight: 700; font-size: 22px; line-height: 1.05; }
.sh-x { margin-left: auto; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--t5); }
.res { display: flex; align-items: center; gap: 8px; padding: 10px 18px; font-size: 13px; background: var(--amber-bg); color: var(--amber); }
.res .dot { width: 8px; height: 8px; animation-duration: 1.6s; }
.res-clock { margin-left: auto; font-family: var(--osw); font-size: 17px; }
.res.warn { background: var(--rose-bg); color: var(--red); } .res.ok { background: #eaf5ee; color: var(--green); }
.sh-sec { padding: 18px; }
.sh-sec.center { text-align: center; padding: 34px 18px; }
.sh-h { font-family: var(--osw); font-weight: 700; font-size: 24px; text-transform: uppercase; line-height: 1.05; }
#co-form .sh-h { font-size: 21px; }
.choice { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.choice button { text-align: left; padding: 18px; border: 0; }
.choice-navy { background: var(--navy); color: #fff; } .choice-navy:hover { background: #12294a; }
.choice-out { background: #fff; border: 1px solid var(--navy) !important; color: var(--navy); } .choice-out:hover { background: var(--g1); }
.choice-t { display: block; font-family: var(--osw); font-weight: 700; font-size: 20px; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.choice-s { display: block; font-size: 14px; margin-top: 5px; color: var(--w2); } .choice-out .choice-s { color: var(--t3); }
.p-s { font-size: 14px; color: var(--t3); margin: 5px 0 0; line-height: 1.45; }
.fields { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.fields label { display: block; }
.fields label span { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--t2); font-family: var(--osw); margin-bottom: 5px; }
.fields input { width: 100%; padding: 13px 14px; border: 1px solid var(--bd2); font-size: 16px; outline: none; }
.checks { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.chk { display: flex; align-items: center; gap: 9px; background: none; border: 0; padding: 0; color: var(--t4); font-size: 14px; }
.chk-box { width: 20px; height: 20px; flex-shrink: 0; border: 1px solid var(--bd3); background: #fff; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.chk-box.on { background: var(--navy2); }
.motif { display: flex; align-items: center; gap: 11px; border: 1px solid var(--bd1); background: var(--g1); padding: 10px 12px; margin-top: 14px; }
.motif-pv { position: relative; width: 54px; height: 38px; flex-shrink: 0; border: 1px solid var(--bd2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.motif-pv img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.motif-pv span { font-family: var(--bar); font-weight: 700; font-size: 11px; line-height: 1; text-align: center; padding: 0 2px; }
.motif-l { display: block; font-size: 13px; color: var(--t4); }
.sum { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--bd1); }
.sum-l { font-size: 14px; color: var(--t3); } .sum-eur { font-family: var(--osw); font-weight: 700; font-size: 26px; color: var(--red); }
.pay { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.pay button { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 16px; font-family: var(--osw); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; background: #fff; color: var(--navy2); border: 1px solid var(--bd2); }
.pay button.first { background: var(--navy2); color: #fff; border-color: var(--navy2); }
.pay button i { width: 9px; height: 9px; display: block; flex-shrink: 0; }
.pay button:disabled { opacity: .6; cursor: wait; }
.methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 10px; }
.methods span { font-family: var(--osw); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--t3); border: 1px solid var(--bd2); padding: 5px 8px; }
.link-btn { width: 100%; margin-top: 8px; background: none; border: 0; font-size: 13px; color: var(--t3); padding: 8px; }
.link-btn.small { font-size: 12px; color: var(--t5); padding: 6px; margin-top: 6px; }
.center { text-align: center; }
.err { margin-top: 8px; font-size: 13px; color: var(--red); background: var(--rose-bg); border: 1px solid var(--rose-bd); padding: 9px 10px; }
.spinner { width: 44px; height: 44px; margin: 0 auto; border: 4px solid #e0e3e9; border-top-color: var(--red); border-radius: 50%; animation: spin 1s linear infinite; }
.pend-t { font-family: var(--osw); font-size: 20px; text-transform: uppercase; margin-top: 16px; }
#co-pending .btn-outline { margin-top: 16px; padding: 11px 16px; letter-spacing: .08em; }
.paid-t { font-family: var(--osw); font-weight: 700; font-size: 26px; line-height: 1.05; text-transform: uppercase; }
#co-paid .p { color: var(--t4); font-size: 16px; margin-top: 12px; }
.chips-status { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.chip-ok, .chip-warn { font-family: var(--osw); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 7px 10px; border: 1px solid; }
.chip-ok { background: #eaf5ee; color: var(--green); border-color: #cfe6d8; } .chip-warn { background: var(--amber-bg); color: var(--amber); border-color: var(--amber-bd); }
.preview { position: relative; margin-top: 14px; border: 1px solid var(--bd2); aspect-ratio: 16/9; overflow: hidden; background: #eceef2; }
.preview canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pv-area { position: absolute; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pv-area img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.pv-area span { font-family: var(--bar); font-weight: 700; line-height: 1; text-align: center; padding: 0 2px; }
.here { font-family: var(--osw); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy2); margin-top: 8px; }
.docs { display: flex; flex-direction: column; gap: 7px; margin-top: 8px; }
.docs a { display: flex; align-items: center; gap: 11px; padding: 12px; text-align: left; background: #fff; border: 1px solid var(--bd2); color: var(--navy2); }
.docs a:hover { border-color: var(--navy); }
.docs .pdf { width: 30px; height: 30px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-family: var(--osw); font-size: 10px; letter-spacing: .04em; }
.docs .dl { display: block; font-family: var(--osw); font-size: 14px; letter-spacing: .03em; text-transform: uppercase; line-height: 1.1; }
.docs .dn { display: block; font-size: 12px; color: var(--t2); }
.docs .ar { margin-left: auto; font-size: 18px; color: var(--red); }
.mail-row { display: flex; gap: 8px; margin-top: 12px; }
.mail-row input { flex: 1; min-width: 0; padding: 13px 14px; border: 1px solid var(--bd2); font-size: 15px; outline: none; }
.btn-navy { padding: 15px; font-family: var(--osw); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; background: var(--navy2); border: 0; color: #fff; }
#co-paid .btn-red, #co-problem .btn-red { padding: 15px; font-size: 14px; letter-spacing: .06em; }
#co-problem .btn-outline { padding: 15px 16px; font-size: 14px; }
.prob-t { font-family: var(--osw); font-weight: 700; font-size: 22px; text-transform: uppercase; line-height: 1.1; color: var(--red); }

/* ---------- narrow / mobile ---------- */
@media (max-width: 979px) {
  .tb-hint { display: none; }
  .sheet-bg { align-items: flex-end; }
}
