/** Shopify CDN: Minification failed

Line 200:0 All "@import" rules must come first
Line 398:0 All "@import" rules must come first
Line 418:8 Expected identifier but found whitespace
Line 418:10 Unexpected "{"
Line 418:19 Expected ":"
Line 504:0 All "@import" rules must come first
Line 509:13 Expected identifier but found whitespace
Line 509:15 Unexpected "{"
Line 509:24 Expected ":"
Line 542:0 All "@import" rules must come first
... and 14 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:left-image-text-overlap (INDEX:34) */
/* remove default heading appearance */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.image-text-overlap {
  font-family: 'Poppins', sans-serif;
  padding: 60px 10% 0px;
}

.image-text-overlap__wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* image base */
.image-text-overlap__image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* textbox base */
.image-text-overlap__textbox {
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* typography spacing */
.image-text-overlap__heading {
  margin-bottom: 16px;
}

.image-text-overlap__text p {
  margin-bottom: 12px;
}

.image-text-overlap__text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.image-text-overlap__text ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 16px;
}

.image-text-overlap__text li {
  margin-bottom: 6px;
}


/* ≥1500px — overlap */
@media (min-width: 1500px) {

  .image-text-overlap__wrapper {
    display: block;
  }

  .image-text-overlap__image img {
    width: 55%;
  }

  .image-text-overlap__textbox {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
  }

}


/* 1200–1499px — image left, text right */
@media (min-width: 1200px) and (max-width: 1499px) {

  .image-text-overlap__wrapper {
    display: flex;
    flex-direction: row;   /* force horizontal */
    align-items: stretch;
    gap: 0;
  }

  /* image LEFT */
  .image-text-overlap__image {
    width: 50%;
    order: 1;
  }

  .image-text-overlap__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
  }

  /* text RIGHT */
  .image-text-overlap__textbox {
    width: 50%;
    order: 2;

    padding: 40px;
    border-radius: 0 !important;
    box-shadow: none;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    transform: none;
  }

}

/* <1200px — stacked  */
@media (min-width: 901px) and (max-width: 1199px) {

  .image-text-overlap__wrapper {
    display: flex;
    flex-direction: column;
  }

  .image-text-overlap__textbox {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  .image-text-overlap__image {
    order: 2;
  }

  .image-text-overlap__heading {
    font-size: 32px !important;
    text-align: center;
  }

  .image-text-overlap__text {
    font-size: 24px !important;
    text-align: justify;
  }

}

@media (max-width: 900px) {

  .image-text-overlap__wrapper {
    display: flex;
    flex-direction: column;
  }

  .image-text-overlap__textbox {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  .image-text-overlap__image {
    order: 2;
  }

  .image-text-overlap__heading {
    font-size: 24px !important;
    text-align: center;
  }

  .image-text-overlap__text {
    font-size: 16px !important;
    text-align: justify;
  }

}
/* END_SECTION:left-image-text-overlap */

/* START_SECTION:left-text-overlap-image (INDEX:35) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.image-text-overlap-left {
  font-family: 'Poppins', sans-serif;
  padding: 0px 10% 60px;
}

.image-text-overlap-left__wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* base image */
.image-text-overlap-left__image img {
  width: 50%;
  border-radius: 6px;
  display: block;
  margin-left: auto;
}

/* base textbox */
.image-text-overlap-left__textbox {
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* spacing */
.image-text-overlap-left__heading {
  margin-bottom: 16px;
}

.image-text-overlap-left__text p {
  margin-bottom: 12px;
}

.image-text-overlap-left__text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.image-text-overlap-left__text ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 16px;
}

.image-text-overlap-left__text li {
  margin-bottom: 6px;
}


/* ≥1500px — overlap */
@media (min-width: 1500px) {

  .image-text-overlap-left__wrapper {
    display: block;
  }

  .image-text-overlap-left__image img {
    width: 55%;
    margin-left: auto;
  }

  .image-text-overlap-left__textbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
  }

}


/* 1200–1499px — side by side */
@media (min-width: 1200px) and (max-width: 1499px) {

  .image-text-overlap-left__wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  /* textbox LEFT */
  .image-text-overlap-left__textbox {
    width: 50%;
    order: 1;

    padding: 40px;

    border-radius: 0 !important;
    box-shadow: none;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    transform: none;
  }

  /* image RIGHT */
  .image-text-overlap-left__image {
    width: 50%;
    order: 2;
  }

  .image-text-overlap-left__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 0 !important;
    margin-left: 0;
  }

}


/* <1200px — stacked  */
@media (min-width: 901px) and (max-width: 1199px) {

  .image-text-overlap-left__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }

  .image-text-overlap-left__textbox {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  .image-text-overlap-left__image {
    order: 2;
  }

  .image-text-overlap-left__image img {
    width: 100%;
    margin-left: 0;
  }

  .image-text-overlap-left__heading {
    font-size: 32px !important;
    text-align: center;
  }

  .image-text-overlap-left__text {
    font-size: 24px !important;
    text-align: justify;
  }

}

@media (max-width: 900px) {

  .image-text-overlap-left__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }

  .image-text-overlap-left__textbox {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  .image-text-overlap-left__image {
    order: 2;
  }

  .image-text-overlap-left__image img {
    width: 100%;
    margin-left: 0;
  }

  .image-text-overlap-left__heading {
    font-size: 24px !important;
    text-align: center;
  }

  .image-text-overlap-left__text {
    font-size: 16px !important;
    text-align: justify;
  }

}
/* END_SECTION:left-text-overlap-image */

/* START_SECTION:our-story-bone-broth-highlight (INDEX:51) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.bone-broth-highlight {
  position: relative;
  font-family: 'Poppins', sans-serif;
  padding: 90px 10%;
  overflow: visible;
}

/* centered content */
.bone-broth-highlight__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* text column width */
.bone-broth-highlight__text {
  max-width: 560px;
  color: {{ section.settings.text_color }};
}

.bone-broth-highlight__text p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.bone-broth-highlight__text ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style: disc !important;
}

.bone-broth-highlight__text li {
  margin-bottom: 8px;
  display: list-item;
}


/* IMAGE BREAKS OUT OF CONTAINER */
.bone-broth-highlight__image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 42vw;
  max-width: 620px;
}

.bone-broth-highlight__image img {
  width: 100%;
  height: auto;
}
/* stack layout at 1200px and below */
@media (min-width:901px) and (max-width: 1200px) {

  .bone-broth-highlight {
    padding: 60px 73px;
  }

  .bone-broth-highlight__image {
    position: relative;     /* remove absolute positioning */
    top: auto;
    right: auto;
    transform: none;

    width: 100%;
    max-width: 520px;
    margin: 40px auto 0;    /* centers image below text */
  }

  .bone-broth-highlight__text {
    max-width: 100%;
    text-align: justify;
    font-size: 24px !important;
  }

}

/* mobile */
@media (max-width: 900px) {

  .bone-broth-highlight {
    padding: 60px 40px;
  }

  .bone-broth-highlight__image {
    position: relative;
    transform: none;
    width: 100%;
    max-width: 420px;
    margin: 40px auto 0;
  }

  .bone-broth-highlight__text {
    max-width: 100%;
    text-align: justify;
    font-size: 16px !important;
  }

}
/* END_SECTION:our-story-bone-broth-highlight */

/* START_SECTION:our-story-center-text-callout (INDEX:52) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.center-text-callout {
  font-family: 'Poppins', sans-serif;
  padding: 60px 10%;
  background: {{ section.settings.background }};
}

.center-text-callout__container {
  margin: 0 auto;
  text-align: center;
  max-width: 1200px;
}

.center-text-callout__title {
  margin-bottom: 15px;
  text-transform: none;
}

.center-text-callout__text {
  line-height: 1.6;
}

/* mobile */
@media (max-width: 900px) {
  .center-text-callout {
      padding: 60px 40px;
  }
  .center-text-callout__title {
    font-size: 24px !important;
  }
  .center-text-callout__text {
    font-size: 16px !important;
}
}
/* END_SECTION:our-story-center-text-callout */

/* START_SECTION:our-story-faq-accordion (INDEX:53) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.faq-section {
  font-family: 'Poppins', sans-serif;
  padding: 70px 10%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
  text-transform: none;
}

.faq-item {
  border-bottom: 1px solid #000;
  padding: 18px 0;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.faq-answer {
  margin-top: 15px;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .faq-title {
        font-size: 24px !important;
  }
  .faq-question {
    font-size: 16px !important;
  }
    .faq-answer {
    font-size: 16px !important;
  }
}
/* END_SECTION:our-story-faq-accordion */

/* START_SECTION:our-story (INDEX:55) */
/* remove default heading appearance */
.custom-text-split__header h1,{% stylesheet %}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.custom-text-split {
  font-family: 'Poppins', sans-serif !important;
  padding: 60px 10%;
}

.custom-text-split__container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-text-split__header {
  margin-bottom: 18px;
  line-height: 1.4;
}

.custom-text-split__subtext {
  line-height: 1.7;
}

/* remove default heading appearance */
.custom-text-split__header h1,
.custom-text-split__header h2,
.custom-text-split__header h3,
.custom-text-split__header h4,
.custom-text-split__header h5,
.custom-text-split__header h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.custom-text-split__subtext p {
  margin-bottom: 16px;
}


/* MOBILE FONT SIZES */
@media (max-width: 900px) {

  .custom-text-split {
    padding: 40px 40px;
  }

  .custom-text-split__header {
    font-size: 24px !important;
    text-align: center;
  }

  .custom-text-split__subtext {
    font-size: 16px !important;
    text-align: justify;
  }

}
}
/* END_SECTION:our-story */

/* START_SECTION:premium-badge (INDEX:58) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.premium-badge-title,
.premium-badge-title p,
.premium-badge-title strong,
.premium-badge-subtitle,
.premium-badge-subtitle p {
  font-family: 'Poppins', sans-serif !important;
}

.premium-badge-section {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 20px 0;
  background: {{ section.settings.bg_color }};
}

.premium-badge-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

/* IMAGE */
.premium-badge-image {
  width: 80%;
  margin: 0 auto 20px auto;
}

.premium-badge-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXT CONTAINERS */
.premium-badge-title,
.premium-badge-subtitle {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.premium-badge-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: {{ section.settings.title_color }};
}

/* SUBTITLE */
.premium-badge-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: {{ section.settings.text_color }};
}

/* IMPORTANT: center richtext <p> */
.premium-badge-title p,
.premium-badge-subtitle p {
  text-align: center;
  margin: 0;
}

/* MOBILE */
@media(max-width: 900px){

  .premium-badge-image {
    width: 90%;
  }

  .premium-badge-title {
    font-size: 24px !important;
  }

  .premium-badge-subtitle {
    font-size: 16px !important;
  }
}
/* END_SECTION:premium-badge */

/* START_SECTION:rich-text-highlight (INDEX:70) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.rich-text-highlight {
  font-family: 'Poppins', sans-serif;
  padding: 60px 10%;
}

.rich-text-highlight__container {
  max-width: 1200px;
  margin: 0 auto;
}

.rich-text-highlight__text p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.rich-text-highlight__highlight {
  font-weight: 700;
  margin-top: 30px;
}

/* mobile */
@media (max-width: 900px) {

    .rich-text-highlight {
    padding: 40px 40px;
    text-align: justify;
    font-size: 16px !important;
  }

  .rich-text-highlight__text p {
    text-align: justify;
    font-size: 16px !important;
}


.rich-text-highlight__highlight {
  font-weight: 700;
  margin-top: 30px;
  font-size: 16px !important;
  text-align: justify
}
}
/* END_SECTION:rich-text-highlight */