.product-fqa {
  background: var(--fqa-background);
  padding: 60px 0;
}

body.dark .product-fqa {
  background: var(--fqa-background-dark);
}

.product-fqa-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
      row-gap: 10px;
    column-gap: 30px;
}

.product-fqa-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  cursor: pointer;
}

.product-fqa-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  gap: 10px;
}

.product-fqa-question .icon {
  font-size: 22px;
  transition: 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.product-fqa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  opacity: 0;
  font-size: 14px;
  line-height: 1.7;
}

.product-fqa-section.active .product-fqa-answer {
  opacity: 1;
}

@media (max-width: 768px) {
  .product-fqa-wrapper {
    grid-template-columns: 1fr;
  }
}