/* Elementor Checklist Widget — CSS */
.ecw-wrap { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #111; }
.ecw-header { text-align: center; margin-bottom: 2rem; }
.ecw-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #0F6E56; background: #E1F5EE; border-radius: 20px; padding: 4px 14px; margin-bottom: 12px; }
.ecw-title { font-size: 26px; font-weight: 600; color: #111; margin: 0 0 8px; line-height: 1.3; }
.ecw-sub { font-size: 15px; color: #666; margin: 0; line-height: 1.6; }

/* Progress */
.ecw-progress-wrap { max-width: 480px; margin: 1.5rem auto 0; }
.ecw-progress-info { display: flex; justify-content: space-between; font-size: 12px; color: #888; margin-bottom: 7px; }
.ecw-progress-track { height: 5px; background: #e5e7eb; border-radius: 99px; overflow: hidden; }
.ecw-progress-fill { height: 100%; background: #1D9E75; border-radius: 99px; transition: width .4s ease; }

/* Grid */
.ecw-grid { display: grid; gap: 16px; margin-top: 2rem; }
.ecw-grid-1col { grid-template-columns: 1fr; }
.ecw-grid-2col { grid-template-columns: 1fr 1fr; }
.ecw-grid-3col { grid-template-columns: 1fr 1fr 1fr; }

/* Category card */
.ecw-cat { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; transition: border-color .3s; }
.ecw-cat.done { border-color: #1D9E75; }

.ecw-cat-head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid #f3f4f6; }
.ecw-cat-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ecw-cat-info { flex: 1; min-width: 0; }
.ecw-cat-name { font-size: 13px; font-weight: 600; color: #111; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ecw-cat-count { font-size: 11px; color: #9ca3af; margin: 0; }
.ecw-cat-badge { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 20px; white-space: nowrap; opacity: 0; transition: opacity .3s; flex-shrink: 0; }
.ecw-cat.done .ecw-cat-badge { opacity: 1; }

/* Items */
.ecw-items { padding: 4px 0; }
.ecw-divider { height: 1px; background: #f9fafb; margin: 0 16px; }
.ecw-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 16px; cursor: pointer; transition: background .1s; border: none; background: transparent; width: 100%; text-align: left; }
.ecw-item:hover { background: #fafafa; }
.ecw-item:focus-visible { outline: 2px solid #1D9E75; outline-offset: -2px; }

.ecw-box { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid #d1d5db; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; transition: all .18s; background: #fff; }
.ecw-item.checked .ecw-box { background: #1D9E75; border-color: #1D9E75; }
.ecw-check-svg { opacity: 0; transition: opacity .15s; }
.ecw-item.checked .ecw-check-svg { opacity: 1; }
.ecw-item-text { font-size: 13px; color: #111; line-height: 1.5; transition: color .15s; }
.ecw-item.checked .ecw-item-text { color: #aaa; text-decoration: line-through; text-decoration-color: #d1d5db; }
.ecw-key-badge { display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; vertical-align: middle; text-transform: uppercase; letter-spacing: .05em; }

/* CTA */
.ecw-cta-wrap { margin-top: 2rem; text-align: center; padding: 1.5rem 2rem; background: #f9fafb; border-radius: 12px; border: 1px solid #e5e7eb; }
.ecw-score-row { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 10px; }
.ecw-score-num { font-size: 28px; font-weight: 700; color: #1D9E75; line-height: 1; }
.ecw-score-label { font-size: 13px; color: #666; }
.ecw-cta-msg { font-size: 14px; color: #555; margin: 0 0 16px; line-height: 1.6; }
.ecw-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: #111; color: #fff; border-radius: 8px; padding: 11px 24px; font-size: 14px; font-weight: 600; text-decoration: none; transition: opacity .15s; }
.ecw-cta-btn:hover { opacity: .86; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .ecw-grid-2col,
    .ecw-grid-3col { grid-template-columns: 1fr; }
    .ecw-title { font-size: 20px; }
}
