/**
 * Frontend FAQ accordion styles
 */
.woo-ai-helper-faq-accordion {
  margin: 20px 0;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.faq-question {
  padding: 10px;
  background-color: #f7f7f7;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1em !important;
}

.faq-toggle {
  position: relative;
  width: 12px;
  height: 12px;
}

.faq-toggle:before,
.faq-toggle:after {
  content: "";
  position: absolute;
  background-color: #333e48;
  transition: transform 0.3s ease;
}

.faq-toggle:before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 2px;
}

.faq-toggle:after {
  top: 0;
  left: 5px;
  width: 2px;
  height: 12px;
}

.faq-question.active .faq-toggle:after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 15px;
}
