/* ===== WAU-CHECK STYLES (PetHearts) ===== */

/* Auto-Empfehlungen Box */
.wau-auto-recommendations {
  background: linear-gradient(135deg, #fff9f0 0%, #fffbf5 100%);
  border: 2px solid #F89420;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.wau-auto-recommendations__title {
  font-size: 14px;
  font-weight: 800;
  color: #F89420;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wau-auto-recommendations__title::before {
  content: '💡';
  font-size: 18px;
}

.wau-auto-recommendations__list {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.wau-auto-recommendations__list ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}

.wau-auto-recommendations__list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.wau-auto-recommendations__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7AC4B5;
  font-weight: 900;
  font-size: 16px;
}

/* WAU-Check Container */
#wauCheckContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Kategorie */
.wau-category {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s;
}

.wau-category:hover {
  border-color: #7AC4B5;
  box-shadow: 0 4px 12px rgba(122, 196, 181, 0.15);
}

.wau-category__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(122, 196, 181, 0.2);
}

.wau-category__icon {
  font-size: 24px;
  line-height: 1;
}

.wau-category__name {
  font-size: 15px;
  font-weight: 800;
  color: #2f8f97;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.wau-category__products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Produkt */
.wau-product {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 2px solid #f3f4f6;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.wau-product:hover {
  border-color: #7AC4B5;
  background: rgba(122, 196, 181, 0.05);
  transform: translateX(4px);
}

.wau-product__checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  accent-color: #7AC4B5;
  margin-top: 2px;
}

.wau-product__content {
  flex: 1;
}

.wau-product__name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.3;
}

.wau-product__description {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 8px;
}

.wau-product__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.wau-benefit {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #7AC4B5 0%, #8cd4c5 100%);
  color: white;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(122, 196, 181, 0.3);
}

/* Checked State */
.wau-product:has(input:checked) {
  border-color: #7AC4B5;
  background: rgba(122, 196, 181, 0.1);
  box-shadow: 0 4px 8px rgba(122, 196, 181, 0.2);
}

.wau-product:has(input:checked) .wau-product__name {
  color: #2f8f97;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
  .wau-category {
    padding: 12px;
  }
  
  .wau-category__icon {
    font-size: 20px;
  }
  
  .wau-category__name {
    font-size: 13px;
  }
  
  .wau-product {
    padding: 10px;
    gap: 10px;
  }
  
  .wau-product__name {
    font-size: 13px;
  }
  
  .wau-product__description {
    font-size: 11px;
  }
  
  .wau-benefit {
    font-size: 9px;
    padding: 3px 8px;
  }
}

/* Print Styles */
@media print {
  .wau-category,
  .wau-product {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  
  .wau-product__checkbox {
    display: none;
  }
}