/* =============================================================================
   Family: FAQ accordion
   Loaded on /faq and /delivery-areas.
   ============================================================================= */

.lx-faq {
  border: 1px solid #E5E7E1;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.lx-faq > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  color: #13241C;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.lx-faq > summary::-webkit-details-marker {
  display: none;
}
.lx-faqa {
  padding: 0 22px 20px;
  color: #4B5A52;
  line-height: 1.65;
  font-size: .97rem;
}
.lx-faqp {
  transition: transform .2s;
}
.lx-faq[open] .lx-faqp {
  transform: rotate(45deg);
}
.lx-faq[open] > summary {
  color: #0E5C3F;
}
