/* =============================================================
   arc therapy — agency review switcher (overlay, not brand UI)
   Deliberately styled OUTSIDE the site's palette (near-black
   panel, neutral UI type) so it always reads as a review tool
   floating over the page, never as part of the client-facing
   design — regardless of which colour theme is active underneath.
   ============================================================= */

.arc-review-panel{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:100000;
  display:flex;
  flex-direction:column-reverse;
  align-items:flex-start;
  gap:8px;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

.arc-review-toggle{
  display:inline-flex;
  align-items:center;
  background:#1b1b1b;
  color:#f5f5f2;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:9px 18px;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.02em;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
  transition:background .15s,box-shadow .15s;
}
.arc-review-toggle:hover{background:#262626}
.arc-review-toggle:focus-visible{outline:2px solid #ffb454;outline-offset:2px}

.arc-review-body{
  background:#1b1b1b;
  color:#f5f5f2;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:14px 16px;
  min-width:208px;
  max-width:260px;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.arc-review-body[hidden]{display:none}

.arc-review-field{display:flex;flex-direction:column;gap:5px}
.arc-review-field label{
  font-size:10.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(245,245,242,.62);
}
.arc-review-field select{
  width:100%;
  background:#2a2a2a;
  color:#f5f5f2;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  padding:8px 10px;
  font-size:13px;
  font-family:inherit;
  cursor:pointer;
}
.arc-review-field select:hover{border-color:rgba(255,255,255,.32)}
.arc-review-field select:focus-visible{outline:2px solid #ffb454;outline-offset:2px}

/* Sits above the fixed mobile action bar (.mbar, site.css breakpoint 820px) */
@media (max-width:820px){
  .arc-review-panel{bottom:82px}
}
