/* ==========================================================================
   Ingredients FAQ — Two-column FAQ with accordion
   ========================================================================== */

.ingredients-faq {
  background: #fff;
  color: #1a1a1a;
  padding: 80px 40px;
}

.ingredients-faq__inner {
  display: flex;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

/* --- Left Column: Headline --- */
.ingredients-faq__headline {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  flex: 0 0 38%;
  max-width: 420px;
}

/* --- Right Column: Accordion --- */
.ingredients-faq__accordion {
  flex: 1;
  min-width: 0;
}

.ingredients-faq__item {
  border-bottom: 1px solid #1a1a1a;
}

.ingredients-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: new-science-mono, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.ingredients-faq__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.ingredients-faq__item.is-open .ingredients-faq__icon {
  transform: rotate(45deg);
}

.ingredients-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.ingredients-faq__item.is-open .ingredients-faq__answer {
  max-height: 400px;
}

.ingredients-faq__answer-text {
  font-family: new-science-mono, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #555;
  margin: 0;
  padding-bottom: 20px;
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .ingredients-faq {
    padding: 50px 20px;
  }

  .ingredients-faq__inner {
    flex-direction: column;
    gap: 32px;
  }

  .ingredients-faq__headline {
    flex: none;
    max-width: 100%;
  }
}
