/* ============================================================
 * progress-bar.css — 加载进度条样式（解锁漏斗）
 * ============================================================ */
.cb-section {
  max-width: 720px;
  margin: 32px auto;
  padding: 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #2c2c4e;
}
.cb-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(56, 75, 124, 0.08);
  padding: 28px 28px 24px;
  border: 1px solid #f0e6e0;
}
.cb-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c4e;
  margin: 0 0 14px;
  letter-spacing: 0.5px;
}
.cb-bar-wrap {
  background: #f3eee9;
  border-radius: 999px;
  height: 14px;
  overflow: hidden;
  margin-bottom: 6px;
  position: relative;
}
.cb-bar-fill {
  background: linear-gradient(90deg, #B85C8C 0%, #C97FAF 50%, #E8B4D0 100%);
  height: 100%;
  width: 60%;
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 8px rgba(184, 92, 140, 0.3);
}
.cb-bar-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: cb-shimmer 2.5s ease-in-out infinite;
}
@keyframes cb-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}
.cb-pct {
  text-align: right;
  font-size: 13px;
  color: #B85C8C;
  font-weight: 600;
  margin-bottom: 20px;
}
.cb-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px dashed #f0e6e0;
  padding-top: 14px;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  padding: 7px 0;
  color: #2c2c4e;
  line-height: 1.5;
}
.cb-item.cb-locked {
  color: #a8a8b8;
}
.cb-item.cb-locked .cb-item-name {
  text-decoration: line-through;
  text-decoration-color: #d4d0d8;
}
.cb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 14px;
  flex-shrink: 0;
}
.cb-item.cb-done .cb-icon {
  color: #4a9b6e;
}
.cb-item.cb-locked .cb-icon {
  color: #b9b3c4;
  font-size: 13px;
}
.cb-item-name {
  flex: 1;
}
.cb-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f3eee9;
  color: #8a8090;
}
.cb-tag-cb {
  background: #fce8f1;
  color: #B85C8C;
}
.cb-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.cb-btn-primary {
  display: block;
  background: linear-gradient(135deg, #B85C8C 0%, #9B4376 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(184, 92, 140, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.cb-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 92, 140, 0.35);
}
.cb-btn-secondary {
  display: block;
  background: transparent;
  color: #6a6478;
  border: none;
  font-size: 13.5px;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: #d4d0d8;
}
.cb-btn-secondary:hover {
  color: #2c2c4e;
}
.cb-hint {
  font-size: 12px;
  color: #a8a8b8;
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 540px) {
  .cb-card { padding: 22px 18px 18px; }
  .cb-title { font-size: 15px; }
  .cb-item { font-size: 13.5px; }
  .cb-btn-primary { font-size: 15px; padding: 13px 14px; }
}
