.faq-section {
  --content-section-padding: 18px 18px 26px;
  --content-section-title-gap: 14px;
  margin-top: 26px;
}

.faq-intro {
  max-width: 760px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-question {
  width: 100%;
  padding: 18px 16px 14px;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-shadow: 0 0 12px rgba(32, 183, 255, 0.22);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  transition: max-height 180ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 0;
  color: #eff5ff;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
}

.faq-answer strong {
  color: var(--lime-bright);
  text-shadow: 0 0 10px rgba(207, 255, 24, 0.2);
}

.faq-answer .faq-subtitle {
  color: #ffffff;
  text-shadow: none;
}

.faq-item.is-open .faq-answer p {
  padding: 0 16px 18px;
}

.faq-item.is-open .ingredient-list {
  padding: 0 16px 18px 34px;
}

.ingredient-list {
  margin: 0;
  color: #eff5ff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-answer {
    transition: none;
  }
}
