/* ── PROGRESS BAR ── */
.kc-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 18px;
  border-bottom: 0.5px solid #222;
  margin-bottom: 20px;
}
.kc-progress-bar {
  flex: 1;
  height: 4px;
  background: #1e1e1e;
  border-radius: 2px;
  overflow: hidden;
}
.kc-progress-fill {
  height: 100%;
  background: #A50064;
  border-radius: 2px;
  transition: width .3s ease;
}
.kc-progress-text {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

/* ── FILTER PILLS ── */
.kc-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.kc-pill {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  border: 0.5px solid #333;
  border-radius: 20px;
  cursor: pointer;
  background: transparent;
  color: #666;
  transition: all .15s;
  font-family: var(--font-sans);
}
.kc-pill:hover { color: #ccc; }
.kc-pill.active {
  background: #A50064;
  border-color: #A50064;
  color: #fff;
}

/* ── SECTION CARD ── */
.kc-wrap {
  background: var(--surface-2, #1a1a1a);
  border: 0.5px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.kc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
  border-bottom: 0.5px solid #2a2a2a;
}
.kc-header h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--momo-white, #fff);
  margin: 0;
  flex: 1;
}
.kc-chevron {
  font-size: 11px;
  color: #666;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.kc-wrap.collapsed .kc-chevron { transform: rotate(-90deg); }
.kc-wrap.collapsed .kc-header { border-bottom: none; }
.kc-wrap.collapsed .kc-body { display: none; }
.kc-body { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }

/* ── CHECKLIST ITEM ── */
.kc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 0.5px solid #222;
  transition: background .1s;
}
.kc-item:nth-child(odd) { border-right: 0.5px solid #222; }
.kc-item:hover { background: #1e1e1e; }
.kc-item input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  accent-color: #A50064;
  cursor: pointer;
}
.kc-item-text { flex: 1; min-width: 0; }
.kc-label {
  font-size: 13px;
  color: var(--momo-white, #fff);
  line-height: 1.4;
}
.kc-sub {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
  line-height: 1.5;
}
.kc-item.is-checked .kc-label {
  text-decoration: line-through;
  text-decoration-color: #444;
  color: #555;
}

/* ── TAGS ── */
.tag-must,
.tag-nice {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 7px;
  vertical-align: middle;
  white-space: nowrap;
}
.tag-must { background: #2d0a0a; color: #f87171; border: 0.5px solid #c62828; }
.tag-nice { background: #2a1a00; color: #ffb74d; border: 0.5px solid #bf6800; }

/* ── SECTION BADGE ── */
.kc-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
  background: #1e1e1e;
  color: #666;
  border: 0.5px solid #333;
  flex-shrink: 0;
}
.kc-badge.complete {
  background: #0d2a10;
  color: #81c784;
  border-color: #2e7d32;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .kc-filter { gap: 6px; }
  .kc-body { grid-template-columns: 1fr; }
  .kc-item:nth-child(odd) { border-right: none; }
}
