/* =============================================
   SHOP'N MAX — FAQ CSS
============================================= */

.faq-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}

.faq-search { margin-bottom: 24px; }
.faq-search input {
  width: 100%;
  padding: 16px 22px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: var(--trans);
  background: white;
}
.faq-search input:focus { border-color: var(--orange); }

.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.faq-cat-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-light);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  font-family: 'Montserrat', sans-serif;
}
.faq-cat-btn:hover { border-color: var(--orange); color: var(--orange); }
.faq-cat-btn.active { background: var(--orange); border-color: var(--orange); color: white; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: var(--trans);
}
.faq-item.open { border-left-color: var(--orange); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--brown-dark);
  gap: 16px;
}
.faq-arrow {
  color: var(--orange);
  font-size: 1.1rem;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 22px 18px;
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-no-results {
  text-align: center;
  padding: 40px 0;
  color: var(--text-light);
  font-size: .95rem;
}

.faq-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.faq-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 8px;
}
.faq-cta p { color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 22px; }
.faq-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.faq-cta .btn-outline { color: white; border-color: white; }
.faq-cta .btn-outline:hover { background: white; color: var(--orange); }

@media (max-width: 768px) {
  .faq-body { padding: 32px 16px 40px; }
  .faq-question { font-size: .85rem; padding: 16px 18px; }
  .faq-categories { gap: 6px; }
  .faq-cat-btn { font-size: .75rem; padding: 7px 14px; }
}