/* FAQ на странице товара */
.pdp-faq { padding: 32px 0; }
.pdp-faq h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  color: #01696F;
  margin: 0 0 24px;
  font-weight: 600;
  font-style: italic;
}
.pdp-faq-list { max-width: 900px; display: grid; gap: 8px; }
.pdp-faq-item {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(1,105,111,0.14);
  border-radius: 14px;
  padding: 4px 20px;
  transition: all .25s ease;
}
.pdp-faq-item[open] {
  background: rgba(255,255,255,0.9);
  border-color: rgba(1,105,111,0.3);
  box-shadow: 0 4px 12px -4px rgba(1,105,111,0.15);
}
.pdp-faq-q {
  font-family: "Manrope", -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1f1e;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.pdp-faq-q::-webkit-details-marker { display: none; }
.pdp-faq-q::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #01696F;
  transition: transform .3s;
  font-weight: 400;
}
.pdp-faq-item[open] .pdp-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.pdp-faq-a {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #4a4a48;
  padding: 0 0 16px;
}
