/* Buyer desks admin (/admin/buyers) — the collapsible setup & management guide.
   Global sheet: the buyers views carry no page_stylesheet, so this rides the
   :app glob like the generic admin styles they already use. No inline styles. */

.buyer-guide {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.buyer-guide[open] { border-color: var(--border-hover); }

.buyer-guide-summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.buyer-guide-summary::-webkit-details-marker { display: none; }
.buyer-guide-summary::before {
  content: "\25B8"; /* right-pointing triangle */
  color: var(--muted);
  transition: transform 0.15s ease;
}
.buyer-guide[open] .buyer-guide-summary::before { transform: rotate(90deg); }
.buyer-guide-summary:hover { color: var(--accent); }

.buyer-guide-body {
  padding: 4px 18px 18px;
  border-top: 1px solid var(--border-light);
}
.buyer-guide-intro {
  color: var(--muted);
  margin: 12px 0 16px;
  line-height: 1.55;
}
.buyer-guide-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 8px;
}
@media (max-width: 720px) {
  .buyer-guide-cols { grid-template-columns: 1fr; gap: 12px; }
}
.buyer-guide-cols h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 8px 0;
}
.buyer-guide-steps,
.buyer-guide-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.5;
  color: var(--ink);
}
.buyer-guide-steps li,
.buyer-guide-list li { margin-bottom: 8px; }
