
/* Стили для FAQ-блока в стиле Wildberries с классом uc-faq-wb */

.uc-faq-wb {
  max-width: 860px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.uc-faq-wb .faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.uc-faq-wb .faq-question {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  transition: background 0.2s ease;
}

.uc-faq-wb .faq-question:hover {
  background: #f9f6ff;
}

.uc-faq-wb .faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 20px;
  color: #a100ff;
  transition: transform 0.3s ease;
}

.uc-faq-wb .faq-item.active .faq-question::after {
  content: '−';
}

.uc-faq-wb .faq-answer {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.uc-faq-wb .faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Анимация появления */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}

