/* Perfely global product FAQ 2026-08-28 */
.pfaq {
  --pfaq-ink: #14211e;
  --pfaq-muted: #66716d;
  --pfaq-line: #dce2df;
  --pfaq-soft: #f7f6f2;
  color: var(--pfaq-ink);
  background: #fff;
}

.pfaq *,
.pfaq *::before,
.pfaq *::after {
  box-sizing: border-box;
}

.pfaq__inner {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 48px 0 12px;
}

.pfaq__eyebrow {
  margin: 0 0 7px;
  color: #a77742;
  font: 700 11px/1.2 var(--sort-body-font), Arial, Helvetica, sans-serif;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.pfaq h2 {
  margin: 0 0 28px;
  color: var(--pfaq-ink);
  font: 700 clamp(24px, 3vw, 34px)/1.18 var(--sort-body-font), Arial, Helvetica, sans-serif;
  letter-spacing: -.02em;
  text-align: center;
}

.pfaq__list {
  display: grid;
  gap: 9px;
}

.pfaq__item {
  overflow: hidden;
  border: 1px solid var(--pfaq-line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s ease, background-color .2s ease;
}

.pfaq__item[open] {
  border-color: #c9d2ce;
  background: var(--pfaq-soft);
}

.pfaq__item summary {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 56px 16px 18px;
  color: var(--pfaq-ink);
  cursor: pointer;
  font: 650 14px/1.45 var(--sort-body-font), Arial, Helvetica, sans-serif;
  list-style: none;
}

.pfaq__item summary::-webkit-details-marker {
  display: none;
}

.pfaq__item summary i {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
}

.pfaq__item summary i::before,
.pfaq__item summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 13px;
  height: 1.5px;
  border-radius: 2px;
  background: #a77742;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.pfaq__item summary i::after {
  transform: rotate(90deg);
}

.pfaq__item[open] summary i::after {
  opacity: 0;
  transform: rotate(0);
}

.pfaq__answer {
  padding: 0 56px 18px 18px;
}

.pfaq__answer p {
  margin: 0;
  color: var(--pfaq-muted);
  font: 400 13px/1.65 var(--sort-body-font), Arial, Helvetica, sans-serif;
}

@media (max-width: 640px) {
  .pfaq__inner {
    width: min(100% - 24px, 920px);
    padding: 36px 0 10px;
  }

  .pfaq h2 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .pfaq__item summary {
    min-height: 54px;
    padding: 14px 46px 14px 14px;
    font-size: 13px;
  }

  .pfaq__item summary i {
    right: 15px;
  }

  .pfaq__answer {
    padding: 0 46px 15px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pfaq__item,
  .pfaq__item summary i::before,
  .pfaq__item summary i::after {
    transition: none;
  }
}