/* ══════════════════════════════════════════════════════
   Arsenal PC AI Widget — CSS v2.0
   ══════════════════════════════════════════════════════ */

/* ── Font fallback ────────────────────────────────────── */
#apc-btn, #apc-win, #apc-promo-bubble, #apc-exit-modal,
#apc-btn *, #apc-win *, #apc-promo-bubble *, #apc-exit-modal * {
  font-family: 'Rajdhani', 'Arial Narrow', sans-serif !important;
  box-sizing: border-box;
}

:root {
  --r:  #DE3431;  --r2: #ff4744;
  --dk: #000000;  --pn: #111111;  --bd: #2a2a2a;
  --tx: #ffffff;  --mu: #555555;
  --ub: #1a1a1a;  --bb: #0d0d0d;
  --ac: #222222;
  --gw: rgba(222,52,49,.28);
}

/* ── Launcher ─────────────────────────────────────────── */
#apc-btn {
  position: fixed !important; bottom: 26px !important; right: 26px !important;
  width: 60px !important; height: 60px !important; border-radius: 14px !important;
  background: var(--r) !important; border: none !important; cursor: pointer !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  box-shadow: 0 8px 28px var(--gw), 0 2px 6px rgba(0,0,0,.5) !important;
  transition: transform .2s, box-shadow .2s;
  z-index: 10000 !important;
  padding: 0 !important; margin: 0 !important;
  box-sizing: border-box !important;
}
#apc-btn:hover { transform: scale(1.09) !important; box-shadow: 0 12px 36px var(--gw) !important; }
#apc-btn svg  { width: 26px !important; height: 26px !important; transition: opacity .2s, transform .2s; }
#apc-btn .ico-chat  { position:absolute !important; }
#apc-btn .ico-close { position:absolute !important; opacity:0; transform:rotate(-45deg) scale(.7); }
#apc-btn.open .ico-chat  { opacity:0 !important; transform:rotate(45deg) scale(.7) !important; }
#apc-btn.open .ico-close { opacity:1 !important; transform:rotate(0) scale(1) !important; }

/* pulse */
#apc-btn::after {
  content:'' !important; position:absolute !important; inset:0 !important; border-radius:14px !important;
  background: var(--r) !important; animation: apc-pulse 2.4s ease-out infinite !important;
  pointer-events: none !important;
}
@keyframes apc-pulse {
  0%   { transform:scale(1); opacity:.5; }
  60%  { transform:scale(1.7); opacity:0; }
  100% { transform:scale(1.7); opacity:0; }
}

/* ── Window ───────────────────────────────────────────── */
#apc-win {
  position: fixed !important;
  bottom: 100px !important; right: 26px !important;
  width: 400px !important; max-width: 400px !important; min-width: 0 !important;
  max-height: 620px !important; min-height: 0 !important;
  border-radius: 4px !important;
  background: var(--pn) !important;
  border: 1px solid var(--bd) !important;
  box-shadow: 0 28px 72px rgba(0,0,0,.85), 0 0 0 1px rgba(232,50,26,.07) !important;
  display: flex !important; flex-direction: column !important; overflow: hidden !important;
  transform: translateY(20px) scale(.97); opacity: 0; pointer-events: none;
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), opacity .22s ease;
  z-index: 10000 !important;
  margin: 0 !important; padding: 0 !important;
  box-sizing: border-box !important;
  left: auto !important; top: auto !important;
}
#apc-win.open { transform: translateY(0) scale(1) !important; opacity:1 !important; pointer-events:all !important; }

/* ── Header ───────────────────────────────────────────── */
.apc-hd {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 16px;
  background: linear-gradient(130deg, rgba(222,52,49,.12) 0%, var(--dk) 100%);
  border-bottom: 1px solid var(--bd);
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.apc-hd::after {
  content: 'ARSENAL'; position:absolute; right:12px; top:50%;
  transform: translateY(-50%);
  font-family: 'Rajdhani'; font-size: 40px; font-weight: 900;
  color: rgba(255,255,255,.03); pointer-events:none; letter-spacing: -.02em;
}
.apc-hd-av {
  width: 40px; height: 40px; border-radius: 4px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--r) 0%, #9a1a08 100%);
  display: flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 14px var(--gw);
}
.apc-hd-av svg { width: 20px; height: 20px; }
.apc-hd-name {
  font-family: 'Rajdhani'; font-size: 16px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: #fff; line-height:1.1;
}
.apc-hd-sub {
  font-size: 11px; color: var(--mu);
  display: flex; align-items: center; gap: 5px; margin-top: 1px;
}

/* ── New Chat button ──────────────────────────────────── */
#apc-new-chat {
  margin-left: auto; flex-shrink: 0;
  background: none; border: 1px solid var(--bd);
  border-radius: 3px; padding: 4px 9px;
  font-family: 'Rajdhani'; font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--mu); cursor: pointer;
  transition: border-color .15s, color .15s;
  display: flex; align-items: center; gap: 4px;
}
#apc-new-chat:hover { border-color: var(--r); color: var(--r); }
#apc-new-chat svg { width: 10px; height: 10px; }

#apc-hd-close {
  flex-shrink: 0; background: none;
  border: 1px solid var(--bd); border-radius: 3px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mu); cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  padding: 0;
}
#apc-hd-close:hover { border-color: var(--r); color: #fff; background: var(--r); }

/* ── Session memory notice ────────────────────────────── */
.apc-memory-notice {
  text-align: center; font-size: 10px; color: var(--mu);
  padding: 6px 14px 2px; letter-spacing: .04em;
  border-bottom: 1px solid var(--bd);
  background: rgba(222,52,49,.04);
  flex-shrink: 0;
}
.apc-memory-notice span { color: var(--r); font-weight: 600; }

.apc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22d46a; box-shadow: 0 0 7px #22d46a;
  animation: apc-blink 2s ease infinite;
}
@keyframes apc-blink { 0%,100%{opacity:1}50%{opacity:.3} }

/* ── Messages ─────────────────────────────────────────── */
#apc-msgs {
  flex: 1; overflow-y: auto; padding: 16px 14px;
  display: flex; flex-direction:column; gap: 12px;
  scroll-behavior: smooth;
}
#apc-msgs::-webkit-scrollbar { width: 3px; }
#apc-msgs::-webkit-scrollbar-thumb { background: var(--bd); border-radius:3px; }

.apc-row { display:flex; gap:8px; animation: apc-in .28s ease; }
@keyframes apc-in { from{transform:translateY(8px);opacity:0} to{transform:none;opacity:1} }
.apc-row.user { flex-direction: row-reverse; }

.apc-av {
  width: 26px; height: 26px; border-radius:7px; flex-shrink:0; margin-top: 2px;
  display: flex; align-items:center; justify-content:center;
  font-family: 'Rajdhani'; font-size: 11px; font-weight: 800; color: #fff;
}
.apc-row.bot .apc-av  { background: linear-gradient(135deg,var(--r) 0%,#9a1a08 100%); }
.apc-row.user .apc-av { background: var(--ac); color: var(--mu); }

.apc-bubble {
  max-width: 84%; padding: 9px 13px; border-radius: 4px;
  font-size: 13px; line-height: 1.55; color: var(--tx);
}
.apc-row.bot  .apc-bubble { background:var(--bb); border:1px solid var(--bd); border-bottom-left-radius:3px; }
.apc-row.user .apc-bubble { background:var(--r); color:#fff; border-bottom-right-radius:3px; }
.apc-bubble a { color: var(--r2); font-weight:600; text-decoration:none; }
.apc-bubble a:hover { text-decoration:underline; }
.apc-bubble strong { color:#fff; font-weight:600; }
.apc-bubble ul { padding-left:16px; margin-top:5px; }
.apc-bubble li { margin-bottom:3px; }
.apc-bubble p  { margin: 0 0 8px; }
.apc-bubble p:last-child { margin-bottom: 0; }

/* ── Typing ───────────────────────────────────────────── */
.apc-typing { display:flex; align-items:center; gap:4px; padding: 3px 1px; }
.apc-typing span {
  width: 7px; height: 7px; border-radius:50%; background: var(--mu);
  animation: apc-tdot .85s ease infinite;
}
.apc-typing span:nth-child(2){animation-delay:.14s}
.apc-typing span:nth-child(3){animation-delay:.28s}
@keyframes apc-tdot {
  0%,80%,100%{transform:scale(1);opacity:.35}
  40%{transform:scale(1.4);opacity:1}
}

/* ── PRODUCT CARD ─────────────────────────────────────── */
.apc-card {
  background: var(--dk);
  border: 1px solid var(--bd);
  border-radius: 3px; overflow:hidden;
  margin-top: 6px;
  transition: border-color .2s, box-shadow .2s;
  animation: apc-in .32s ease;
}
.apc-card:hover {
  border-color: rgba(232,50,26,.5);
  box-shadow: 0 4px 24px rgba(232,50,26,.12);
}
.apc-card-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px; margin-bottom: 5px;
}
.apc-card-badge.new   { background:rgba(34,212,106,.15); color:#22d46a; }
.apc-card-badge.deal  { background:rgba(232,50,26,.15);  color:var(--r2); }
.apc-card-body { padding: 11px 13px 0; }
.apc-card-name {
  font-family: 'Rajdhani'; font-size: 14px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 7px;
}
.apc-card-specs {
  display: flex; flex-wrap:wrap; gap: 4px; margin-bottom: 8px;
}
.apc-spec-chip {
  font-size: 10px; font-weight: 600; padding: 2px 7px;
  border-radius: 4px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); color: var(--tx);
  white-space: nowrap;
}
.apc-spec-chip.gpu   { background: rgba(118,60,220,.15); border-color:rgba(118,60,220,.3); color:#a78bfa; }
.apc-spec-chip.cpu   { background: rgba(232,120,26,.12); border-color:rgba(232,120,26,.25); color:#fb923c; }
.apc-spec-chip.ram   { background: rgba(34,212,106,.1);  border-color:rgba(34,212,106,.2); color:#4ade80; }
.apc-spec-chip.ssd   { background: rgba(56,189,248,.1);  border-color:rgba(56,189,248,.2); color:#67e8f9; }
.apc-card-footer {
  display: flex; align-items:center; justify-content:space-between;
  padding: 8px 13px 11px;
  border-top: 1px solid var(--bd); margin-top: 8px;
}
.apc-card-price {
  font-family: 'Rajdhani'; font-size: 20px; font-weight: 900;
  color: #fff; letter-spacing: -.01em; line-height:1;
}
.apc-card-price span { font-size: 12px; font-weight:400; color:var(--mu); text-decoration:line-through; }
.apc-card-btn {
  display: inline-flex; align-items:center; gap: 5px;
  background: var(--r); color: #fff;
  font-family: 'Rajdhani'; font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform:uppercase;
  padding: 7px 14px; border-radius: 3px; border:none; cursor:pointer;
  text-decoration:none;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.apc-card-btn:hover { background: var(--r2); transform: scale(1.03); }
.apc-card-btn svg { width:12px; height:12px; }

/* multi-card wrapper */
.apc-cards-row {
  display: flex; flex-direction:column; gap: 8px;
  margin-top: 6px; animation: apc-in .3s ease;
}

/* ── Chips ────────────────────────────────────────────── */
#apc-chips {
  display: flex; flex-wrap:wrap; gap: 6px;
  padding: 0 14px 10px; flex-shrink:0;
}
.apc-chip {
  font-family: 'Rajdhani'; font-size: 11.5px; font-weight: 600;
  padding: 5px 12px; border-radius: 3px;
  border: 1px solid var(--bd); background: rgba(255,255,255,.04);
  color: var(--tx); cursor:pointer; white-space:nowrap;
  transition: background .14s, border-color .14s, color .14s;
}
.apc-chip:hover { background: var(--r); border-color: var(--r); color:#fff; }

/* ── Human CTA bar ────────────────────────────────────── */
.apc-human-bar {
  display: flex; align-items:center; justify-content:center;
  gap: 7px; padding: 7px 14px;
  background: rgba(255,255,255,.025);
  border-top: 1px solid var(--bd);
  flex-shrink:0;
}
.apc-human-bar a {
  display: flex; align-items:center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--mu);
  text-decoration: none; letter-spacing: .02em;
  transition: color .15s;
}
.apc-human-bar a:hover { color: var(--r2); }
.apc-human-bar a svg { width:13px; height:13px; }
.apc-human-sep { color: var(--bd); font-size:14px; line-height:1; }

/* ── Input ────────────────────────────────────────────── */
.apc-inp-bar {
  padding: 10px 12px; display:flex; gap:8px; align-items:flex-end;
  background: var(--dk); border-top: 1px solid var(--bd); flex-shrink:0;
}
#apc-input {
  flex:1; background: var(--ub); border: 1px solid var(--bd); border-radius: 3px;
  padding: 9px 13px; font-family:'Rajdhani'; font-size:13px; color: var(--tx);
  resize:none; max-height:90px; outline:none; line-height:1.45;
  transition: border-color .18s;
}
#apc-input::placeholder { color: var(--mu); }
#apc-input:focus { border-color: var(--r); }
#apc-send {
  width:38px; height:38px; border-radius:3px; background:var(--r);
  border:none; cursor:pointer; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  transition: background .14s, transform .14s;
}
#apc-send:hover  { background:var(--r2); transform:scale(1.07); }
#apc-send:disabled { background:var(--bd); cursor:default; transform:none; }
#apc-send svg { width:16px; height:16px; }

/* ── Brand footer ─────────────────────────────────────── */
.apc-ft {
  text-align:center; font-size:10px; color: var(--mu);
  padding: 5px 0 7px; background:var(--dk);
  letter-spacing:.04em; flex-shrink:0;
}

/* ── BUILD COMPARISON TABLE ───────────────────────────── */
.apc-compare {
  background: var(--dk);
  border: 1px solid var(--bd);
  border-radius: 3px; overflow: hidden;
  margin-top: 6px; animation: apc-in .32s ease;
  width: 100%;
}
.apc-compare-header {
  display: grid; grid-template-columns: 90px 1fr 1fr;
  background: var(--ac);
  border-bottom: 2px solid var(--r);
}
.apc-compare-header div {
  padding: 9px 10px;
  font-family: 'Rajdhani'; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--mu);
}
.apc-compare-header .ch-name {
  font-size: 12px; color: #fff; line-height: 1.2;
}
.apc-compare-row {
  display: grid; grid-template-columns: 90px 1fr 1fr;
  border-bottom: 1px solid var(--bd);
}
.apc-compare-row:last-child { border-bottom: none; }
.apc-compare-row div {
  padding: 8px 10px;
  font-family: 'Rajdhani'; font-size: 12px; color: var(--tx);
  line-height: 1.3;
}
.apc-compare-row .cr-label {
  color: var(--mu); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  background: rgba(255,255,255,.02);
}
.apc-compare-row .cr-winner {
  color: #fff; font-weight: 700;
  background: rgba(222,52,49,.07);
  border-left: 2px solid var(--r);
}
.apc-compare-row .cr-price { font-size: 15px; font-weight: 900; }
.apc-compare-footer {
  display: grid; grid-template-columns: 90px 1fr 1fr;
  border-top: 1px solid var(--bd);
  background: var(--ac);
}
.apc-compare-footer div { padding: 10px; }
.apc-compare-footer a {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--r); color: #fff;
  font-family: 'Rajdhani'; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 3px;
  text-decoration: none; transition: background .15s;
}
.apc-compare-footer a:hover { background: var(--r2); }

/* ── FINANCING CALCULATOR ─────────────────────────────── */
.apc-fin-toggle {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 1px solid var(--bd);
  border-radius: 3px; padding: 5px 10px; margin-top: 8px;
  font-family: 'Rajdhani'; font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--mu); cursor: pointer; width: 100%;
  justify-content: center;
  transition: border-color .15s, color .15s;
}
.apc-fin-toggle:hover { border-color: var(--r); color: var(--r); }
.apc-fin-toggle svg { width: 11px; height: 11px; }

.apc-fin-panel {
  display: none; margin-top: 8px; padding: 12px;
  background: var(--ac); border-radius: 3px;
  border: 1px solid var(--bd);
}
.apc-fin-panel.open { display: block; }
.apc-fin-title {
  font-family: 'Rajdhani'; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--mu); margin-bottom: 10px;
}
.apc-fin-terms {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px;
  margin-bottom: 10px;
}
.apc-fin-term {
  background: var(--bd); border: 1px solid var(--bd);
  border-radius: 3px; padding: 6px 4px;
  font-family: 'Rajdhani'; font-size: 12px; font-weight: 700;
  color: var(--mu); cursor: pointer; text-align: center;
  transition: all .15s;
}
.apc-fin-term:hover { border-color: var(--r); color: #fff; }
.apc-fin-term.active { background: var(--r); border-color: var(--r); color: #fff; }
.apc-fin-term span { display: block; font-size: 9px; font-weight: 500; letter-spacing:.04em; opacity:.7; }
.apc-fin-result {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px; background: var(--dk); border-radius: 3px;
  margin-bottom: 8px;
}
.apc-fin-amount {
  font-family: 'Rajdhani'; font-size: 26px; font-weight: 900; color: #fff;
}
.apc-fin-label {
  font-family: 'Rajdhani'; font-size: 11px; color: var(--mu);
  text-transform: uppercase; letter-spacing: .06em; line-height: 1.3;
}
.apc-fin-note {
  font-size: 10px; color: var(--mu); line-height: 1.5;
}
.apc-fin-note a { color: var(--r); text-decoration: none; }
.apc-fin-note a:hover { text-decoration: underline; }

/* ── FINANCING PICKER ─────────────────────────────────── */
.apc-fin-picker {
  background: var(--dk); border: 1px solid var(--bd);
  border-radius: 3px; overflow: hidden;
  margin-top: 6px; animation: apc-in .32s ease;
}
.apc-fin-picker-header {
  padding: 11px 13px 0;
  font-family: 'Rajdhani'; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: #fff;
  margin-bottom: 8px;
}
.apc-fin-picker-sub {
  font-family: 'Rajdhani'; font-size: 11px; color: var(--mu);
  padding: 0 13px 10px; letter-spacing:.03em;
}
.apc-fin-list {
  margin: 0 13px 12px;
  max-height: 180px; overflow-y: auto;
  border: 1px solid var(--bd); border-radius: 3px;
  background: var(--ub);
}
.apc-fin-list::-webkit-scrollbar { width: 3px; }
.apc-fin-list::-webkit-scrollbar-thumb { background: var(--bd); border-radius: 3px; }
.apc-fin-list-group-label {
  padding: 5px 10px 3px;
  font-family: 'Rajdhani'; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--r); background: rgba(222,52,49,.08);
  border-bottom: 1px solid var(--bd);
  position: sticky; top: 0; z-index: 1;
}
.apc-fin-list-item {
  display: block; width: 100%; text-align: left;
  padding: 7px 10px;
  font-family: 'Rajdhani'; font-size: 12px; font-weight: 500;
  color: var(--tx); background: none; border: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  cursor: pointer; transition: background .12s, color .12s;
}
.apc-fin-list-item:last-child { border-bottom: none; }
.apc-fin-list-item:hover { background: rgba(222,52,49,.12); color: #fff; }
.apc-fin-list-item.selected { background: rgba(222,52,49,.18); color: #fff; font-weight: 700; }
.apc-fin-list-item .item-price {
  float: right; color: var(--r); font-weight: 700; font-size: 11px;
}

/* ── RATING / VOTE PROMPT ─────────────────────────────── */
.apc-rate-card {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%);
  border: 1px solid var(--r);
  border-radius: 3px; overflow: hidden;
  margin-top: 6px; animation: apc-in .4s ease;
  box-shadow: 0 4px 24px rgba(222,52,49,.15);
}
.apc-rate-header {
  background: var(--r);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
}
.apc-rate-header-icon { font-size: 16px; line-height: 1; }
.apc-rate-header-text {
  font-family: 'Rajdhani'; font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
}
.apc-rate-body { padding: 14px; }
.apc-rate-body p {
  font-size: 12px; color: #888; line-height: 1.55; margin: 0 0 12px;
}
.apc-rate-stars { display: flex; gap: 5px; margin-bottom: 14px; }
.apc-rate-star {
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--bd); line-height: 1;
  transition: color .12s, transform .12s;
  padding: 0;
}
.apc-rate-star:hover,
.apc-rate-star.active { color: #f59e0b; transform: scale(1.2); }
.apc-rate-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.apc-rate-cta {
  flex: 1; min-width: 120px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--r); color: #fff;
  font-family: 'Rajdhani'; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 3px; border: none;
  cursor: pointer; text-decoration: none !important;
  transition: background .15s;
}
.apc-rate-cta:hover { background: var(--r2) !important; }
.apc-rate-cta.outline {
  background: transparent; border: 1px solid var(--bd); color: var(--mu);
}
.apc-rate-cta.outline:hover { border-color: var(--r); color: #fff; background: rgba(222,52,49,.1) !important; }
.apc-rate-dismiss {
  display: block; text-align: center; margin-top: 10px;
  font-size: 10px; color: var(--mu); cursor: pointer;
  letter-spacing: .04em; background: none; border: none; width: 100%;
  transition: color .15s;
}
.apc-rate-dismiss:hover { color: var(--tx); }
.apc-rate-thanks {
  font-family: 'Rajdhani'; font-size: 12px; font-weight: 600;
  color: #4ade80; text-align: center; padding: 6px 0 2px;
  letter-spacing: .04em;
}

/* ── Theme isolation — prevents WordPress CSS bleed ───── */
#apc-wrap, #apc-wrap * {
  box-sizing: border-box;
  font-family: 'Rajdhani', sans-serif;
  line-height: normal;
}
#apc-wrap img { max-width: none; }
#apc-wrap a   { box-shadow: none !important; text-decoration: none !important; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 460px) {
  #apc-win { width: calc(100vw - 20px) !important; right:10px !important; bottom:84px !important; }
  #apc-btn { right:10px !important; bottom:10px !important; }
  .apc-compare-header, .apc-compare-row, .apc-compare-footer {
    grid-template-columns: 70px 1fr 1fr;
  }
}
