/* AEO Pro — FAQ front-end styles */

.aeo-faq-section {
  margin: 2.5em 0;
  border-top: 2px solid #e5e7eb;
  padding-top: 1.5em;
}

.aeo-faq-heading {
  font-size: 1.4em;
  font-weight: 700;
  margin: 0 0 1em;
  color: inherit;
}

.aeo-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

.aeo-faq-item[open] {
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.aeo-faq-question {
  list-style: none;
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f9fafb;
  user-select: none;
}

.aeo-faq-question::-webkit-details-marker { display: none; }

.aeo-faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3em;
  font-weight: 400;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.aeo-faq-item[open] .aeo-faq-question::after {
  content: '−';
}

.aeo-faq-question:hover {
  background: #f3f4f6;
}

.aeo-faq-answer {
  padding: 14px 18px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  line-height: 1.7;
}

.aeo-faq-answer p:first-child { margin-top: 0; }
.aeo-faq-answer p:last-child  { margin-bottom: 0; }
