/** Shopify CDN: Minification failed

Line 47:14 Expected identifier but found whitespace
Line 47:16 Unexpected "{"
Line 47:26 Expected ":"
Line 47:54 Unexpected ","
Line 47:57 Unexpected "{"
Line 47:67 Expected ":"
Line 51:14 Expected identifier but found whitespace
Line 51:16 Unexpected "{"
Line 51:26 Expected ":"
Line 51:51 Unexpected ","
... and 8 more hidden warnings

**/
/* Custom Accordion FAQ Section Stylesheet */
.custom-faq {
  width: 100%;
  box-sizing: border-box;
}

.custom-faq__container {
  max-width: var(--container-max-width, 840px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.custom-faq__heading-wrapper {
  text-align: var(--heading-align, center);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-faq__heading {
  margin: 0;
  font-size: var(--heading-size-desktop, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading-color, #1a1a1a);
  letter-spacing: -0.02em;
}

.custom-faq__heading.is-heading-font {
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
}

.custom-faq__heading.is-body-font {
  font-family: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
}

.custom-faq__heading h1,
.custom-faq__heading h2,
.custom-faq__heading h3,
.custom-faq__heading h4,
.custom-faq__heading p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
}

.custom-faq__subheading {
  margin: 0;
  font-size: var(--subheading-size-desktop, 16px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--subheading-color, #666666);
}

.custom-faq__subheading p {
  margin: 0;
}

/* Card Outer Box */
.custom-faq__card-wrapper {
  background-color: var(--card-bg-color, #ffffff);
  border-radius: var(--card-radius, 20px);
  box-shadow: var(--card-shadow, 0 10px 30px rgba(0, 0, 0, 0.04));
  padding: var(--card-padding-desktop, 40px 48px);
  box-sizing: border-box;
}

/* FAQ Item Row */
.custom-faq__item {
  border-bottom: 1px solid var(--border-color, #eeeeee);
  padding-top: 24px;
  padding-bottom: 24px;
}

.custom-faq__item.no-divider {
  border-bottom: none !important;
}

.custom-faq__item:first-child {
  padding-top: 0;
}

.custom-faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Trigger Button */
.custom-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  flex-direction: var(--trigger-direction, row);
}

.custom-faq__question-text {
  margin: 0;
  font-size: var(--question-size-desktop, 18px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--question-color, #1a1a1a);
  letter-spacing: -0.01em;
  flex: 1;
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
  transition: color 0.2s ease;
}

/* Question Hover State */
.custom-faq__trigger:hover .custom-faq__question-text {
  color: var(--question-hover-color, #0284c7);
}

/* Question Active / Opened State */
.custom-faq__trigger[aria-expanded="true"] .custom-faq__question-text {
  color: var(--question-active-color, var(--question-hover-color, #0284c7));
}

/* Accordion Icon Box */
.custom-faq__icon-box {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, #0284c7);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.custom-faq__trigger:hover .custom-faq__icon-box {
  color: var(--icon-hover-color, var(--icon-color, #0284c7));
}

.custom-faq__trigger[aria-expanded="true"] .custom-faq__icon-box {
  color: var(--icon-active-color, var(--icon-color, #0284c7));
}

.custom-faq__icon-box svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke-width: 2.2;
}

/* Plus/Cross Icon Animation */
.custom-faq__icon-box.is-plus-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-faq__trigger[aria-expanded="true"] .custom-faq__icon-box.is-plus-icon {
  transform: rotate(45deg);
}

/* Chevron Icon Animation */
.custom-faq__icon-box.is-chevron-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-faq__trigger[aria-expanded="true"] .custom-faq__icon-box.is-chevron-icon {
  transform: rotate(180deg);
}

/* Answer Container */
.custom-faq__answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-faq__trigger[aria-expanded="true"] + .custom-faq__answer-wrapper {
  grid-template-rows: 1fr;
}

.custom-faq__answer-inner {
  overflow: hidden;
}

.custom-faq__answer-text {
  margin: 14px 0 0 0;
  font-size: var(--answer-size-desktop, 15px);
  line-height: 1.6;
  font-weight: 400;
  color: var(--answer-color, #555555);
}

.custom-faq__answer-text p {
  margin: 0 0 12px 0;
}

.custom-faq__answer-text p:last-child {
  margin-bottom: 0;
}

.custom-faq__answer-text a {
  color: var(--question-hover-color, #0284c7);
  text-decoration: underline;
  font-weight: 600;
}

.custom-faq__answer-text strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .custom-faq__heading-wrapper {
    margin-bottom: 32px;
  }

  .custom-faq__heading {
    font-size: var(--heading-size-tablet, 28px);
  }

  .custom-faq__subheading {
    font-size: var(--subheading-size-tablet, 15px);
  }

  .custom-faq__card-wrapper {
    padding: var(--card-padding-tablet, 32px 36px);
  }

  .custom-faq__question-text {
    font-size: var(--question-size-tablet, 17px);
  }

  .custom-faq__answer-text {
    font-size: var(--answer-size-tablet, 14.5px);
  }
}

/* Mobile (< 768px) */
@media screen and (max-width: 767px) {
  .custom-faq__container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .custom-faq__heading-wrapper {
    margin-bottom: 24px;
  }

  .custom-faq__heading {
    font-size: var(--heading-size-mobile, 24px);
  }

  .custom-faq__subheading {
    font-size: var(--subheading-size-mobile, 14px);
  }

  .custom-faq__card-wrapper {
    padding: var(--card-padding-mobile, 24px 20px);
  }

  .custom-faq__item {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .custom-faq__question-text {
    font-size: var(--question-size-mobile, 15.5px);
  }

  .custom-faq__answer-text {
    font-size: var(--answer-size-mobile, 13.5px);
  }
}
