/** Shopify CDN: Minification failed

Line 210:1 Expected "}" to go with "{"

**/


html {
  scroll-behavior: smooth;
}


.faqs-header p {
  font-size: 16px;
  line-height: 1.55em;
  color: rgba(18, 18, 18, 0.75);
}


/*----- FAQs Style -----*/

.faq-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1030px;
  margin: 0 auto;
  border-top:1px solid rgba(18, 18, 18, 0.15)!important;
  margin-top:45px !important;
  padding-top:40px !important;
}

.faq-questions #faq-group-1 {
  border-top: 0px !important;
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.faq-group-title {
  font-size:26px !important;
  letter-spacing: -0.52px !important;
  line-height:1.1em !important;
  margin-top:45px !important;
  padding-top:40px !important;
  border-top:1px dashed rgba(18, 18, 18, 0.15)!important;
}

.faq-questions details.faq-item {
  border: 1px solid #e5e5e5;
  padding: 24px;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq-questions details.faq-item summary {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 600;
  font-family: Lora, serif;
  color: #121212;
  list-style: none;
}

.faq-questions details.faq-item .faq-answer p,
.faq-questions details.faq-item .faq-answer ul li{
  font-size: 18px;
  line-height: 1.44em;
}

 .faq-questions details.faq-item[open] summary {
  color: #000;
}


/* Positioning for icon */
.faq-item summary {
  position: relative;
  padding-right: 28px;
  cursor: pointer;
}

.faq-item summary .faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  transition: 0.2s ease;
}

/* Default icon = PLUS */
.faq-item:not([open]) summary .faq-icon::before {
  content: '+';
}

/* When DETAILS is OPEN = MINUS */
.faq-item[open] summary .faq-icon::before {
  content: '–'; /* long hyphen for nice look */
}

.faq-item summary .faq-icon {
  transition: transform 0.25s ease;
}

.faq-item[open] summary .faq-icon {
  transform: translateY(-50%) rotate(180deg);
}


/*---Faqs Sidebar--- */

.faq-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}


.faq-sidebar {
  position: sticky;
  top: 40px; /* adjust based on your header height */
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 10px;
}

.faq-sidebar a {
  font-size: 16px;
  line-height: 1.2em;
  display: block;
  padding: 10px 0;
  font-family: Lora, serif;
  text-decoration: none;
  color: #000;
  border: 1px solid #e5e5e5;
  padding: 18px 25px;
  margin-bottom: 10px;
}

.faq-sidebar a.active {
  color: #fff;
  background-color: #121212;
}


/*----- FAQs CTA -----*/

.final-message .rich-text__wrapper  {
  justify-content: flex-start;
  padding: 0;
}

.final-message .rich-text__blocks  {
  background-color: rgba(18, 18, 18, 0.15);
  padding: 32px;
}

.final-message .rich-text__blocks .rich-text__text {
  margin-top: 10px;
}



@media (max-width: 1024px) {
  .faq-sidebar {
    display: none;
  }

  .faq-layout  {
    grid-template-columns: 1fr;
    padding: 0px 40px;
  }

  .final-message .rich-text__wrapper {
    justify-content: center;
  }


}

@media (max-width: 767px) {

  .faq-layout  {
    padding: 0px 20px;
  }

  .faq-group-title {
    font-size: 22px !important;
    margin-top: 35px !important;
    padding-top: 30px !important;
  }

  .faq-questions details.faq-item,
  .final-message .rich-text__blocks  {
    padding: 18px !important;
  }

  .faq-questions details.faq-item summary {
    font-size: 18px !important;

  .faq-questions details.faq-item .faq-answer p,
  .faq-questions details.faq-item .faq-answer ul li {
    font-size: 16px !important;
  }




}