/* Priručnik — zajednički stilovi (javni frontend + backoffice) */

.pri-sadrzaj {
  font-size: 15px;
  line-height: 1.65;
}

.pri-sekcija {
  padding: 28px;
}

.pri-sekcija summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--heading);
}

.pri-sekcija summary::-webkit-details-marker {
  display: none;
}

.pri-sekcija-chevron {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--text-secondary);
}

.pri-sekcija-chevron .lucide {
  width: 16px;
  height: 16px;
  transition: transform 200ms var(--motion-ease, ease);
}

.pri-sekcija[open] summary .pri-sekcija-chevron .lucide {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .pri-sekcija-chevron .lucide {
    transition: none;
  }
}

.pri-tijelo {
  margin-top: 16px;
  max-width: 68ch;
}

.pri-tijelo > p,
.pri-tijelo .step-body p {
  margin: 0 0 12px;
}

.pri-tijelo > p:last-child,
.pri-tijelo .step-body p:last-child {
  margin-bottom: 0;
}

.pri-tijelo ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
  max-width: 68ch;
  list-style-type: disc;
  list-style-position: outside;
}

.pri-tijelo ul li {
  padding-left: 12px;
}

.pri-tijelo ul li + li {
  margin-top: 8px;
}

.pri-tijelo ul:last-child {
  margin-bottom: 0;
}

.pri-napomena {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 68ch;
}

.pri-koraci {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 68ch;
  counter-reset: korak;
}

.step {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 14px;
  align-items: start;
}

.step + .step {
  margin-top: 14px;
}

.step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

.step-num::before {
  content: counter(korak);
  counter-increment: korak;
}

.step-body {
  min-width: 0;
}

.pri-faq-stavka + .pri-faq-stavka {
  margin-top: 12px;
}

.pri-faq-stavka > p:first-child {
  margin: 0 0 4px;
}

.pri-faq-stavka > p:last-child {
  margin: 0;
}

/* Inline statusne pilule u tekućem tekstu priručnika (ne koristiti .badge u rečenicama).
   Boje teksta/pozadine dolaze iz .st-* tokena aktivne teme (Aurora: tamni tekst na soft bg). */
.pill-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  white-space: nowrap;
  padding: 1px 10px;
  border-radius: 999px;
  font-size: 0.82em;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  top: -1px;
  border: 1px solid transparent;
}

/* Classic: puni statusni tokeni — bijeli tekst na zasićenoj pozadini */
[data-theme="classic"] .pill-inline {
  color: #fff;
}

.pri-tijelo-tablica {
  max-width: none;
  overflow-x: auto;
}

@media (max-width: 480px) {
  .pri-sekcija {
    padding: 20px;
  }

  .step {
    grid-template-columns: 24px 1fr;
    column-gap: 12px;
  }

  .step-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 12px;
  }
}
