/* ═══════════════════════════════════════════════════════════════
   PRODUCT FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */

.product-faq-detail {
  padding: clamp(32px, 6vw, 72px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px !important;
}

.product-faq-detail .pfd-header .website-section-header {
  text-align: start;
  padding: 0;
  margin: 0;
}

.product-faq-detail .pfd-list {
  max-width: 728px;
  margin: 0 auto;
}

.product-faq-detail .pfd-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 0 0;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.product-faq-detail .pfd-question {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0%;
}

.product-faq-detail .pfd-toggle {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-light);
  border-radius: 50%;
  color: var(--text-light);
}

.product-faq-detail .pfd-toggle::before,
.product-faq-detail .pfd-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.product-faq-detail .pfd-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-faq-detail .pfd-item.is-open .pfd-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.product-faq-detail .pfd-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.product-faq-detail .pfd-item.is-open .pfd-panel { max-height: 500px; }

.product-faq-detail .pfd-panel-inner { padding: 0 24px 0 0; }

.product-faq-detail .pfd-answer {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0%;
}

.product-faq-detail .pfd-answer p { margin: 0 0 8px; }
.product-faq-detail .pfd-answer p:last-child { margin-bottom: 0; }