/* FAQ Section Styling */
.product-faqs {
  background: #f9fbfd;
  padding: 20px;
  border-radius: 8px;
}

.faq-heading {
  font-weight: 700;
  color: #1b237e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-card {
  border: none;
  border-left: 4px solid #007bff; /* Bootstrap primary */
  transition: all 0.3s ease-in-out;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.faq-header {
  background: #ffffff;
  padding: 0;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #324efd;
  text-decoration: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: #0056b3;
}

.faq-answer {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
}

/* Right-aligned chevron + smooth rotate */
.faq-question {
  display: flex;               /* keeps layout intact, just aligns icon */
  align-items: center;
  gap: .5rem;
  width: 100%;
}

.faq-toggle-icon {
  margin-left: auto;           /* push icon to the right */
  display: inline-flex;
  transition: transform .2s ease;
  opacity: .85;
}

.faq-toggle-icon.rotated {
  transform: rotate(180deg);   /* up */
}

.faq-question .icon-chevron {
  display: block;
}
