.poko-panel-host {
  position: fixed;
  right: 16px;
  top: 78px;
  width: min(430px, calc(100vw - 32px));
  z-index: 99998;
}

.poko-panel-host[hidden] {
  display: none;
}

.poko-panel-host__toggle {
  background: #132b25;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  float: right;
  font: 700 12px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  margin: 0 8px 8px 0;
  padding: 9px 13px;
}

.poko-panel-host.is-collapsed .poko-panel {
  display: none;
}

.poko-panel {
  --poko-ink: #132b25;
  --poko-muted: #63736e;
  --poko-line: #dce5e1;
  --poko-mint: #ccebdd;
  --poko-green: #176b50;
  background: #f8fbf9;
  border: 1px solid var(--poko-line);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(19, 43, 37, 0.08);
  color: var(--poko-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  padding: 22px;
}

.poko-panel__header,
.poko-panel__verdict,
.poko-panel__comparison {
  align-items: center;
  display: flex;
}

.poko-panel__header {
  gap: 12px;
  margin-bottom: 18px;
}

.poko-panel__mark {
  height: 42px;
  width: 42px;
}

.poko-panel__header h2,
.poko-panel__header p {
  margin: 0;
}

.poko-panel__eyebrow,
.poko-panel article span,
.poko-panel__reasons > span,
.poko-panel__verdict span,
.poko-panel__comparison span {
  color: var(--poko-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poko-panel__poc {
  background: #fff1cf;
  border-radius: 999px;
  color: #765100;
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
  padding: 7px 10px;
}

.poko-panel__verdict,
.poko-panel__comparison {
  border-radius: 14px;
  justify-content: space-between;
  margin-top: 9px;
  padding: 13px 15px;
}

.poko-panel__verdict {
  background: #fff1cf;
  color: #604100;
}

.poko-panel__comparison {
  background: #edf3f0;
}

.poko-panel__comparison.agreement {
  background: var(--poko-mint);
  color: var(--poko-green);
}

.poko-panel__comparison.disagreement {
  background: #ffe0dc;
  color: #8f2c22;
}

.poko-panel__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.poko-panel article {
  background: #fff;
  border: 1px solid var(--poko-line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  padding: 14px;
}

.poko-panel article strong {
  font-size: 18px;
  text-transform: capitalize;
}

.poko-panel article small {
  color: var(--poko-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poko-panel__reasons {
  border-top: 1px solid var(--poko-line);
  margin-top: 16px;
  padding-top: 15px;
}

.poko-panel__reasons p,
.poko-panel__reasons ul {
  color: var(--poko-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 0;
}

.poko-panel__reasons ul {
  padding-left: 20px;
}

@media (max-width: 720px) {
  .poko-panel-host {
    left: 16px;
    right: 16px;
    top: 76px;
    width: auto;
  }

  .poko-panel__header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .poko-panel__poc {
    margin-left: 54px;
  }

  .poko-panel__grid {
    grid-template-columns: 1fr;
  }
}
