/* ============================================================
   Review harness — floating variation control.
   Deliberately styled as tooling (dark, floating, badged) so it
   never reads as part of the page. Delete with review.js.
   ============================================================ */
.vset { position: relative; }
.vset__item[hidden] { display: none; }
.vset__item.is-entering { animation: vsetIn .45s cubic-bezier(.22,.61,.36,1) both; }
@keyframes vsetIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.vbar {
  position: fixed; z-index: 90;
  left: 50%; bottom: 20px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  padding: 7px 7px 7px 9px;
  border-radius: 999px;
  max-width: calc(100vw - 24px);
  font-family: 'Bornomala', system-ui, sans-serif;
  font-size: 13px; color: rgba(255,255,255,.92);
  background: rgba(12,27,23,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 54px -20px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.2);
}

.vbar__badge {
  font-size: 10px; font-weight: 700; letter-spacing: .6px;
  padding: 4px 9px; border-radius: 999px;
  background: #1A9384; color: #fff; flex-shrink: 0;
}
.vbar__tag {
  font-size: 12px; color: rgba(255,255,255,.55);
  padding-right: 4px; border-right: 1px solid rgba(255,255,255,.14);
  margin-right: 2px; white-space: nowrap;
}

.vbar__arrow {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: inherit;
  border: 0; background: none; cursor: pointer;
  transition: background .2s;
}
.vbar__arrow:hover { background: rgba(255,255,255,.14); }
.vbar__arrow svg { width: 15px; height: 15px; }

.vbar__label { display: flex; align-items: baseline; gap: 8px; padding-inline: 4px; white-space: nowrap; }
.vbar__name { font-weight: 700; font-size: 14px; }
.vbar__meta { font-style: normal; font-size: 11.5px; color: rgba(255,255,255,.5); }

.vbar__dots { display: flex; gap: 5px; margin-inline: 6px 2px; }
.vbar__dot {
  width: 7px; height: 7px; border-radius: 50%; padding: 0;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,.28); transition: all .25s;
}
.vbar__dot[aria-current="true"] { background: #1A9384; width: 20px; border-radius: 999px; }

.vbar__lock {
  padding: 8px 15px; border-radius: 999px; flex-shrink: 0;
  font-family: inherit; font-size: 12.5px; font-weight: 700; white-space: nowrap;
  border: 0; cursor: pointer;
  background: #fff; color: #0C1B17;
}

@media (max-width: 720px) {
  .vbar { gap: 4px; padding-left: 7px; bottom: 14px; }
  .vbar__tag, .vbar__meta, .vbar__badge { display: none; }
  .vbar__lock { padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .vset__item.is-entering { animation: none; }
}
