/* ==========================================================================
   leonini.de - Interaktive Erstausstattungs-Checkliste CSS
   ========================================================================== */

.leo-checklist-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--leo-border);
  border-radius: var(--leo-radius-lg);
  padding: 32px;
  margin: 36px 0;
  box-shadow: var(--leo-shadow-md);
}

.leo-checklist-header {
  margin-bottom: 24px;
  text-align: center;
}

.leo-checklist-title {
  font-family: var(--leo-font-head);
  font-size: 1.6rem;
  color: var(--leo-dark);
  margin-bottom: 8px;
}

.leo-checklist-desc {
  font-size: 0.95rem;
  color: var(--leo-slate);
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.leo-progress-container {
  background: var(--leo-cream);
  border-radius: 50px;
  height: 14px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 12px auto;
  overflow: hidden;
  border: 1px solid var(--leo-border-light);
}

.leo-progress-bar {
  background: linear-gradient(90deg, var(--leo-sage) 0%, #5A8F78 100%);
  height: 100%;
  width: 0%;
  transition: width 0.4s ease;
  border-radius: 50px;
}

.leo-progress-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--leo-sage);
}

.leo-checklist-category {
  margin-top: 30px;
  border-top: 1px solid var(--leo-border-light);
  padding-top: 20px;
}

.leo-cat-title {
  font-family: var(--leo-font-head);
  font-size: 1.2rem;
  color: var(--leo-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.leo-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leo-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--leo-cream);
  border: 1px solid var(--leo-border-light);
  border-radius: var(--leo-radius-sm);
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.leo-check-item:hover {
  background: #F2ECE1;
  border-color: var(--leo-border);
}

.leo-check-item.checked {
  background: var(--leo-sage-light);
  border-color: rgba(63, 100, 84, 0.3);
}

.leo-check-item.checked .leo-check-label {
  text-decoration: line-through;
  color: var(--leo-muted);
}

.leo-check-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.leo-custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--leo-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.leo-check-item.checked .leo-custom-checkbox {
  background: var(--leo-sage);
  color: #FFFFFF;
}

.leo-check-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--leo-dark);
}

.leo-check-tip {
  font-size: 0.8rem;
  color: var(--leo-muted);
  font-weight: normal;
  display: block;
}

.leo-item-rec-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--leo-terracotta);
  text-decoration: none;
  background: #FFFFFF;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--leo-border-light);
  white-space: nowrap;
}

.leo-item-rec-link:hover {
  background: var(--leo-terracotta);
  color: #FFFFFF;
  border-color: var(--leo-terracotta);
}
