/** Shopify CDN: Minification failed

Line 11:10 Unexpected "{"
Line 11:19 Expected ":"
Line 11:26 Unexpected "{"
Line 235:12 Unexpected "{"
Line 235:21 Expected ":"
Line 235:28 Unexpected "{"

**/
.section-{{ section.id }} {
  padding: 60px 0;
  background: #f3f3f3;
}

.toc-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}

.toc-column {
  position: sticky;
  top: 30px; /* adjust for your header height */
  align-self: flex-start;
  background: #fff;
  border: 1px #EAEAEA solid;
  border-radius: 10px;

}

.toc-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.toc-list {
  /*list-style: decimal;*/
  list-style: none;
  padding: 0;
  margin-left: 0px;
  margin-top:10px;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
}

.toc-list a:hover,
.toc-list a.active {
  opacity: 1;
  font-weight: 600;
}

.about-collection {
  padding-bottom: 30px;
}

.about-collection-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-collection-wrapper br {
  display: none;
}

.about-collection.summary  .metafield-rich_text_field {
  display: flex;
  flex-direction: column;
}

.about-collection h2 {
  font-size: 2rem;
}

.about-collection h3 {
  font-size: 1.8rem;
}

@media (max-width: 990px) {
  .toc-grid {
    grid-template-columns: 100%;
  }

  .toc-column {
    position: relative;
    top: auto;
  }
}


/*Author Section*/

.toc-column .author-meta.detail-wrapper {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 15px;
    border-bottom: 1px #EAEAEA solid;
    padding: 20px;
}


.toc-column .toc-wrapper {
    padding: 20px;
}

.toc-column .author-name-title p {
  margin: 0;
}

.toc-column .author-job-title {
    margin-top: 0;
}

.toc-column .author-socials {
  display: flex;
}

.toc-column .author-bio {
  margin-top: 15px;
}

.toc-column .social-wrapper {
  margin-left: 10px;
}

.toc-column .social-wrapper svg {
  margin-bottom: -5px;
}


/*Popular Products*/
.popular-product.all-items {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}


.popular-prods ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px
}

.popular-prods .pop-prod-item {
  padding: 10px 20px;
  border: 1px solid #E1E1E1;
  border-radius: 30px;
  transition: ease .3s;
}

.popular-prods .pop-prod-item:hover {
  background: #FF6400;
  color: #fff;
}

.popular-prods .prod-tooltip-text {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
}

.popular-prods .pop-prod-item:hover .prod-tooltip-text {
  visibility: visible;
}


/*Icon List*/
.benefits-keys-items, 
.icon-list__wrapper {
    display: flex; 
}

.benefits-keys-items {
  flex-direction: column;
  gap: 20px;
}

.icon-list__heading {
  text-align: center;
  margin-bottom: 40px;
}

.icon-list-text.rte {
    margin: 20px 0 30px;
}


.icon-list__item {
  text-align: center;
}

.icon-list__icon img {
  max-width: 30px;
}

.icon-list__heading-text {
    margin-left: 20px;
}

.icon-list__title {
  margin-top: -3px;
}

.icon-list__heading-text p {
  margin: 0;
}

.icon-list__title {
  font-weight: 600;
  margin-bottom: 8px;
}

.icon-list__text {
  margin: 0;
}


@media (max-width: 749px) {
  .section-{{ section.id }} {
    padding: 40px 0;
  }
}

/*Customer Review*/
.customer-name-star {
  display: inline-flex;
  align-items: center;
  gap: 20px;

}

.customer-review-wrapper .name-stars {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

/*FAQ Col*/
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.accordion-trigger {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  gap: 20px;
  font-weight: 400;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 0 10px 30px;
}

.accordion-item.is-open .accordion-content {
  max-height: 500px;
}

.faq-btn-wrapper {
  margin-top: 35px;
}

.faq-col .faq-btn-wrapper .btn {
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 20px 40px;
  /*transition: .3s ease;*/
  
}

.faq-col .faq-btn-wrapper .btn::before {
  position: absolute;
  content: "";
  width: 0;
  inset-block: -.1rem;
  inset-inline-start: -.1rem;
  background-color: #FF6400;
  transition: width var(--animation-button);
  z-index: 0;
  border-radius: inherit;
}

.faq-col .faq-btn-wrapper .btn:hover {
  background: #FF6400;
  border: 1px solid #FF6400;
  color: #FFF;
}

.faq-text.rte {
    margin: 20px 0 30px;
}

