/* ==========================================================================
   Harris Jeweler | Category FAQ Block
   APPEND this to the bottom of /css/harris-brand-intro.css
   (No second link tag needed. Same file, same header call.)

   Uses native <details>/<summary> so it works with no JavaScript
   and stays keyboard accessible by default.
   ========================================================================== */

.hj-cat-faq {
  width: 100%;
  text-align: left;
  margin: 2.5rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.hj-cat-faq__heading {
  margin: 0 0 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2b2b2b;
}

.hj-cat-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.hj-cat-faq__item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, .09);
}

.hj-cat-faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a1a1a;
}

/* Hide the default disclosure triangle */
.hj-cat-faq__q::-webkit-details-marker {
  display: none;
}

.hj-cat-faq__q::marker {
  content: "";
}

/* Custom plus / minus indicator */
.hj-cat-faq__q::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: #7a7a7a;
  transition: transform .18s ease;
}

.hj-cat-faq__item[open] .hj-cat-faq__q::after {
  content: "\2212"; /* minus sign */
}

.hj-cat-faq__q:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.hj-cat-faq__a {
  margin: 0;
  padding: 0 0 1.1rem;
  max-width: 78ch;
  font-size: 1rem;
  line-height: 1.65;
  color: #3a3a3a;
}

@media (max-width: 575.98px) {
  .hj-cat-faq {
    margin-top: 2rem;
    padding-top: 1.4rem;
  }

  .hj-cat-faq__q {
    font-size: .95rem;
  }

  .hj-cat-faq__a {
    font-size: .95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hj-cat-faq__q::after {
    transition: none;
  }
}
