/* ============================================
   CHECKLIST PAGE (checklist.css)
   ============================================ */

.checklist-page { padding: 0 0 80px; }

/* Progress bar */
.progress-bar-wrap { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; position: sticky; top: 64px; z-index: 90; }
.progress-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.progress-info span { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.reset-btn { background: none; border: 1px solid var(--border); border-radius: 8px; padding: 4px 12px; font-size: 0.78rem; font-family: var(--font-jp); color: var(--text-light); cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: all 0.2s; }
.reset-btn:hover { border-color: var(--green); color: var(--green); }
.reset-btn [data-lucide] { width: 12px; height: 12px; }
.progress-track { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 999px; transition: width 0.4s ease; width: 0%; }

/* Groups */
.cl-group { margin-top: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cl-group-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; }
.cl-group-header [data-lucide] { width: 22px; height: 22px; flex-shrink: 0; }
.cl-group-header h2 { font-family: var(--font-en); font-size: 1.2rem; margin-bottom: 2px; }
.cl-group-header p { font-size: 0.82rem; opacity: 0.75; margin: 0; }

/* Items */
.cl-items { display: flex; flex-direction: column; }
.cl-item { display: flex; align-items: center; gap: 16px; padding: 16px 24px; border-top: 1px solid var(--border); cursor: pointer; transition: background 0.15s; }
.cl-item:hover { background: var(--bg); }
.cl-item input[type="checkbox"] { display: none; }
.cl-check { width: 24px; height: 24px; border-radius: 999px; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; background: var(--white); }
.cl-check [data-lucide] { width: 13px; height: 13px; color: white; opacity: 0; transition: opacity 0.2s; }
.cl-item.done .cl-check { background: var(--green); border-color: var(--green); }
.cl-item.done .cl-check [data-lucide] { opacity: 1; }
.cl-item.done .cl-text strong { text-decoration: line-through; color: var(--text-light); }
.cl-item.done .cl-text span { color: var(--border); }
.cl-text { flex: 1; }
.cl-text strong { display: block; font-size: 0.92rem; color: var(--dark); margin-bottom: 3px; font-weight: 500; }
.cl-text span { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.cl-link { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-light); flex-shrink: 0; transition: all 0.2s; }
.cl-link:hover { background: var(--green); border-color: var(--green); color: white; }
.cl-link [data-lucide] { width: 14px; height: 14px; }

/* Responsive */
@media (max-width: 600px) {
  .cl-item { padding: 14px 16px; gap: 12px; }
  .cl-group-header { padding: 16px; }
}