/* Futkar Checklists ecosystem chrome */
:root {
  --fk-orange: #F27A21;
  --fk-orange-deep: #E06A12;
  --fk-orange-text: #B94708;
  --fk-cream: #FBF7F2;
  --fk-line: #E8E2DA;
  --fk-font-display: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  --fk-font-sans: Inter, system-ui, sans-serif;
}

.checklists-eco-body {
  font-family: var(--fk-font-sans);
  color: #334155;
  background: #fff;
}
.checklists-eco-body .font-display {
  font-family: var(--fk-font-display);
}

.checklists-eco-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  height: 4rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 226, 218, 0.8);
}
.checklists-eco-header.is-scrolled {
  box-shadow: 0 8px 24px -16px rgba(40, 28, 18, 0.25);
}

.btn-primary-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #F27A21, #E06A12);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  box-shadow: 0 10px 24px -12px rgba(242, 122, 33, 0.55);
}
.btn-primary-check:hover { color: #fff; filter: brightness(1.05); }

.btn-ghost-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fk-line);
  background: #fff;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
}
.btn-ghost-check:hover {
  border-color: #F27A21;
  background: #FFF5EB;
  color: #B94708;
}

.checklists-chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.checklists-chip-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
}
.checklists-chip-nav a:hover,
.checklists-chip-nav a.is-active {
  color: #B94708;
  background: #FFF5EB;
  border-color: #FBD1A5;
}

.checklists-related-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .checklists-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.checklists-eco-footer {
  background: #0f172a;
  color: #94a3b8;
  margin-top: 2rem;
}
.checklists-eco-footer a { color: #cbd5e1; text-decoration: none; }
.checklists-eco-footer a:hover { color: #F27A21; }

#sticky-progress { top: 4rem; }
