/** Shopify CDN: Minification failed

Line 250:0 Unexpected "}"

**/
/* ================================
   Hauttyp-Quiz – Finaler Style
   ================================ */

/* Basislayout */
body, main {
  background-color: #fdfcf8;
  font-family: var(--font-base, Arial, sans-serif);
  color: #244f3a;
}

/* Quiz-Wrapper */
#hauttyp-quiz-section,
#hq-quiz-root,
#hq-result-root {
  background-color: #fdfcf8;
  padding: 2rem 1.5rem;
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Headline */
.hq-head-inner h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: #244f3a;
}
.hq-sub {
  font-size: 1.125rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}

/* Frage */
.hq-question {
  text-align: center;
  margin-bottom: 2rem;
}
.hq-question h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Antwort-Buttons */
.hq-answers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hq-answer {
  background: #f0f8eb;
  border: 1px solid #d9e7d6;
  color: #244f3a;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  margin: 0.3rem;
}
.hq-answer:hover {
  background: #e3eedf;
  transform: translateY(-2px);
}

/* Ergebnisbereich */
.hq-result-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.hq-logo {
  max-width: 200px;
  margin: 1.5rem auto;
  display: block;
}

.hq-result-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.recipe-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* Rezeptkarten */
.recipe-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.recipe-card {
  background: #f0f8eb;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 320px;
  flex: 1 1 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

/* Quiz-Neustart */
.hq-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hq-restart-btn {
  background: #f0f8eb;
  border: 2px solid #244f3a;
  color: #244f3a;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.hq-restart-btn:hover {
  background: #244f3a;
  color: #fff;
}

/* Animation */
.fade-in {
  animation: fadeIn 0.4s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .hq-answers {
    flex-direction: column;
    align-items: center;
  }
  .recipe-group,
  .hq-result-images {
    flex-direction: column;
    align-items: center;
  }
  .recipe-card,
  .recipe-image {
    max-width: 100%;
  }
  .hq-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/* ================================
   Hauttyp-Quiz – Finaler Style
   ================================ */

/* Basislayout */
body, main {
  background-color: #fdfcf8;
  font-family: var(--font-base, Arial, sans-serif);
  color: #244f3a;
}

/* Quiz-Wrapper */
#hauttyp-quiz-section,
#hq-quiz-root,
#hq-result-root {
  background-color: #fdfcf8;
  padding: 2rem 1.5rem;
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Headline */
.hq-head-inner h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: #244f3a;
}
.hq-sub {
  font-size: 1.125rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}

/* Frage */
.hq-question {
  text-align: center;
  margin-bottom: 2rem;
}
.hq-question h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Antwort-Buttons */
.hq-answers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hq-answer {
  background: #f0f8eb;
  border: 2px solid #c2d6be; /* Deutlichere Linie */
  color: #244f3a;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  margin: 0.4rem;
}

}
.hq-answer:hover {
  background: #e3eedf;
  transform: translateY(-2px);
}

/* Ergebnisbereich */
.hq-result-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.hq-logo {
  max-width: 200px;
  margin: 1.5rem auto;
  display: block;
}

.hq-result-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.recipe-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* Rezeptkarten */
.recipe-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.recipe-card {
  background: #f0f8eb;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 320px;
  flex: 1 1 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

/* Quiz-Neustart */
.hq-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hq-restart-btn {
  background: #f0f8eb;
  border: 2px solid #244f3a;
  color: #244f3a;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.hq-restart-btn:hover {
  background: #244f3a;
  color: #fff;
}

/* Animation */
.fade-in {
  animation: fadeIn 0.4s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .hq-answers {
    flex-direction: column;
    align-items: center;
  }
  .recipe-group,
  .hq-result-images {
    flex-direction: column;
    align-items: center;
  }
  .recipe-card,
  .recipe-image {
    max-width: 100%;
  }
  .hq-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}
