.checklist { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  transition: border-color .2s;
}

.check-item.done { opacity: .5; }
.check-item.done .check-box { background: var(--hijau-muda); border-color: var(--hijau-muda); }
.check-item.done .check-box::after { opacity: 1; }

.check-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  position: relative;
  transition: all .2s;
}
.check-item:hover { border-color: var(--accent); }

.check-box::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: 700;
  opacity: 0;
  transition: opacity .2s;
}

.check-label { font-size: 13px; font-weight: 500; }
.check-note { font-size: 11px; color: var(--muted); margin-top: 1px; }

.toko-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.toko-list { display: flex; flex-direction: column; gap: 6px; }

.toko-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toko-name { font-weight: 600; font-size: 13px; }
.toko-dist { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

.toko-btn {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: none;
  cursor: pointer;
}

.toko-btn:hover { color: var(--card); background: var(--accent); border: 1px solid var(--bg); ;transform: scale(1.2); }