.elementor-kit-5{--e-global-color-primary:#BFD064;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#FEE300;--e-global-color-9609737:#E5EACC;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 a{color:#829615;}.elementor-kit-5 button,.elementor-kit-5 input[type="button"],.elementor-kit-5 input[type="submit"],.elementor-kit-5 .elementor-button{font-weight:600;text-transform:uppercase;color:#FFFFFF;background-color:var( --e-global-color-primary );}.elementor-kit-5 button:hover,.elementor-kit-5 button:focus,.elementor-kit-5 input[type="button"]:hover,.elementor-kit-5 input[type="button"]:focus,.elementor-kit-5 input[type="submit"]:hover,.elementor-kit-5 input[type="submit"]:focus,.elementor-kit-5 .elementor-button:hover,.elementor-kit-5 .elementor-button:focus{color:#FFFFFF;background-color:var( --e-global-color-secondary );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Eltern-Kategorien */
.zutaten-parent {
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 10px;
  background: #fff;
}

/* Parent-Label */
.zutaten-parent-label {
  cursor: pointer;
  font-weight: bold;
  background: #f8f8f8;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.zutaten-parent-label:hover {
  background: #f0f0f0;
}

/* Akkordeon-Pfeil */
.toggle-icon {
  font-size: 0.9em;
  transition: transform 0.2s;
}

.zutaten-parent-label.open .toggle-icon {
  transform: rotate(90deg);
}

/* Zutaten-Kinder (Akkordeon mit Transition) */
.zutaten-children {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  padding: 0 15px;
  display: grid;
  gap: 8px 18px;
  grid-template-columns: 1fr;
  background: #fff;
}

.zutaten-parent-label.open + .zutaten-children {
  max-height: 600px; /* groß genug für viele Zutaten */
  opacity: 1;
  padding: 10px 15px;
}

/* Responsive Spalten */
@media (min-width: 600px) {
  .zutaten-children {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .zutaten-children {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Zutaten-Labels */
.zutaten-children label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
}

.zutaten-children label:hover {
  background: #f5f5f5;
}

/* Runde Checkboxen */
.zutaten-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #aaa;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  vertical-align: middle;
  position: relative;
}

.zutaten-checkbox:checked {
  background: #2196F3;
  border-color: #2196F3;
}

.zutaten-checkbox:checked::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

/* Ausgeblendete Zutaten (z.B. dynamisch per JS) */
.zutaten-children label[style*="display: none"] {
  display: none !important;
}

.zutaten-children label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f8fb;
  border-radius: 20px;
  padding: 8px 14px;
  margin: 4px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  font-size: 1em;
  cursor: pointer;
  border: 1px solid #e0e6ed;
  transition: background 0.2s, border 0.2s;
}

.zutaten-children label:hover {
  background: #e3f2fd;
  border-color: #90caf9;
}

.zutaten-name {
  flex: 1;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zutaten-count {
  background: #e0e6ed;
  color: #2196F3;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 0.92em;
  margin-left: 8px;
  min-width: 32px;
  text-align: center;
}

#rezepte-ergebnisse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 600px) {
    #rezepte-ergebnisse {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    #rezepte-ergebnisse {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rezept {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rezept-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.rezept-bild {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto 16px auto;
    object-fit: cover;
    border-radius: 8px;
}


.rezept h3 {
    margin: 16px 16px 8px 16px;
    font-size: 1.15em;
    text-align: center;
}

.rezept .excerpt {
    margin: 0 16px 16px 16px;
    flex-grow: 1;
}/* End custom CSS */