/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 10 2026 | 16:52:28 */
/* Bark-A-Bout FAQ accordion
   Markup lives in page content as:
   <div class="bab-faq-accordion">
     <div class="bab-faq-item">
       <h3 class="bab-faq-question">Question?</h3>
       <div class="bab-faq-answer">Answer</div>
     </div>
   </div>
   bab-faq.js upgrades it into a keyboard-accessible accordion.
   Without JS every question/answer stays visible. */

.bab-faq-accordion {
  margin: 0 auto;
}

.bab-faq-accordion .bab-faq-item {
  border: 1px solid rgba(64, 30, 18, 0.2);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #401E12;
}

.bab-faq-accordion .bab-faq-question {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  padding: 18px 20px;
}

/* Once JS has run, the question text becomes a full-width toggle button. */
.bab-faq-accordion.is-enhanced .bab-faq-question {
  padding: 0;
}

.bab-faq-accordion .bab-faq-toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.bab-faq-accordion .bab-faq-toggle:hover,
.bab-faq-accordion .bab-faq-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.bab-faq-accordion .bab-faq-toggle:focus-visible {
  outline: 2px solid #f26532;
  outline-offset: -2px;
}

.bab-faq-accordion .bab-faq-toggle .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #401E12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.bab-faq-accordion .bab-faq-toggle[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}

.bab-faq-accordion .bab-faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.bab-faq-accordion .bab-faq-answer > :first-child {
  margin-top: 0;
}

.bab-faq-accordion .bab-faq-answer > :last-child {
  margin-bottom: 0;
}

.bab-faq-accordion .bab-faq-answer a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.bab-faq-accordion .bab-faq-answer[hidden] {
  display: none;
}
