/** Shopify CDN: Minification failed

Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:25 Expected ":"
Line 19:51 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 20:57 Expected ":"
Line 99:0 Unexpected "{"
Line 99:1 Expected identifier but found "%"
... and 2 more hidden warnings

**/

/* ── Botanicals Carousel ── */
.botanicals-carousel-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.botanicals-section {
  max-width: 1280px;
  margin: 40px auto 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  /* padding:0px 0px 60px 0px; */
}

/* ── Header ── */
.botanicals-header {
  margin-bottom: 15px;
}

.botanicals-title {
    font-size: 20px;
    font-weight: 400;
    color: #003C21;
    letter-spacing: 3px;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
}

/* ── Carousel wrapper — clips overflow ── */
.botanicals-carousel-wrapper {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar IE and Edge */
}

.botanicals-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome, Safari and Opera */
}

/* ── Sliding track ── */
.botanicals-track {
  display: flex;
}

.botanical-card__body {
    background-color: #D8E3D6;
}

/* ── Card ── */
.botanical-card {
  flex: 0 0 calc(30% - 12px);
  min-width: 0;
  /* background: #F0F4ED; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}


/* ── Image area ── */
.botanical-card__image-wrap {
  width: 100%;
  overflow: hidden;
  /* background: #F0F4ED; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.botanical-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

{% comment %} .botanical-card:hover .botanical-card__image {
  transform: scale(1.03);
} {% endcomment %}

.botanical-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f5f3;
}

.botanical-card__image-placeholder .placeholder-svg {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* ── Card Body ── */
.botanical-card__body {
  padding:15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.botanical-card:nth-child(2n) .botanical-card__body {
    background-color: #003c21;
}

.botanical-card:nth-child(2n) .botanical-card__body .botanical-card__heading {
    color: #fff;
}

.botanical-card:nth-child(2n) .botanical-card__body .botanical-card__subtext {
    color: #ffffffc9;
    font-family: 'Inter Tight Custom';
}

.botanical-card__heading {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color:  #003C21;
  margin: 0 0 2px;
  line-height: 1.3;
}

 .botanical-card__Subheading{
    font-size:14px;
    color:  #003C21;
    margin:0px;

  }

.botanical-card__subtext {
  font-size: 16px;
  color: #53655b;
  line-height: 120%;
  margin: 10px 0 20px;
  flex: 1;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.botanical-card__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color:  #003C21;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
  margin-top:16px;
}

.botanical-card__link:hover {
  opacity: 0.6;
}

/* ────────────────────────────────────────────────
   GRADIENT FADE OVERLAY  (right-edge white fade)
   Sits on top of the last visible card, exactly
   like the design reference.
   ──────────────────────────────────────────────── */
.botanicals-fade-overlay {
  position: absolute;
  top: 0;
  right: 0;
  /* Covers roughly the last card width */
  width: calc(25% + 24px);
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
  /* starts visible */
  opacity: 1;
  display:block;
}

/* ── Arrow button — sits above the fade overlay ── */
.botanicals-arrow {
  position: absolute;
  right: 0;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.07px solid #284133;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #284133;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.botanicals-arrow:hover {
  background: #f5f5f5;
  border-color: #999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* ────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────── */

/* Large Desktop (1200px - 1440px) */

/* Desktop (1024px - 1199px) */
@media screen and (max-width: 1199px) {
  .botanical-card {
    flex: 0 0 calc(25% - 12px);
  }

  .botanicals-fade-overlay {
    width: calc(25% + 20px);
  }
  .botanical-card {
  flex: 0 0 calc(38% - 12px);
  }
}

/* Tablet landscape (768px - 1023px) — show 2 cards + peek */
@media screen and (max-width: 1023px) {
  .botanical-card {
    /* 2 full cards visible + hint of 3rd triggers scroll desire */
    flex: 0 0 calc(50% - 8px);
  }

  .botanicals-fade-overlay {
    /* covers roughly half a card */
    width: calc(50% + 20px);
  }

  .botanicals-arrow {
    top: 35%;
    right: 4px;
  }
}

/* Tablet portrait (600px - 767px) */
@media screen and (max-width: 767px) {
  .botanicals-section {
    padding: 44px 20px;
  }

  .botanicals-title {
    font-size: 16px !important;
    letter-spacing: 2px !important;
  }
  .botanicals-header {
    margin-bottom: 13px !important;
  }
  .botanicals-header {
    margin-bottom: 28px;
  }

  .botanical-card {
    flex: 0 0 calc(50% - 8px);
  }

  .botanicals-fade-overlay {
    width: calc(50% + 16px);
    display:none;
  }

  .botanical-card__body {
    padding: 8px;
  }

  .botanical-card__heading {
    font-size: 17px;
  }

  .botanical-card__subtext {
    font-size: 12px;
  }
}

/* Mobile (up to 599px) — 1 full card + peek of next */
@media screen and (max-width: 599px) {
  .botanicals-section {
    padding: 40px 16px;
    margin:auto;
  }

  .botanicals-header {
    margin-bottom: 24px;
  }

  .botanical-card {
    /* 85% so user can see next card peeking */
    flex: 0 0 95%;
  }

  /* On mobile we use native scroll instead of JS */
  .botanicals-carousel-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .botanicals-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .botanicals-track {
    transition: none;
    overflow: visible;
    padding-right: 16px; /* so last card doesn't clip */
  }

  /* Gradient still visible on mobile — covers ~15% peek area */
  .botanicals-fade-overlay {
    width: 20%;
    /* softer on mobile so peek card is still inviting */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 100%);
  }

  /* Hide JS arrow on mobile — native scroll takes over */
  .botanicals-arrow {
    display: none;
  }

  .botanical-card__body {
    padding: 18px 16px 22px;
  }

  .botanical-card__heading {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .botanical-card__subtext {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .botanical-card__link {
    font-size: 14px;
    margin-top:6px;
  }
}

/* Small mobile (375px - 479px) */
@media screen and (max-width: 479px) {
  .botanicals-section {
    padding: 32px 14px;
  }

  .botanical-card {
    flex: 0 0 95%;
  }

  .botanicals-fade-overlay {
    width: 22%;
  }
}

/* Extra small mobile (320px - 374px) */
@media screen and (max-width: 374px) {
  .botanicals-section {
    padding: 28px 12px;
  }

  .botanical-card {
    flex: 0 0 88%;
  }

  .botanicals-fade-overlay {
    width: 18%;
  }
}

/* Very large screens (1600px+) */
@media screen and (min-width: 1600px) {
  .botanicals-section {
    padding: 0px 0px 42px 0px 
  }

  .botanicals-track {
    gap: 20px;
  }

  .botanical-card {
    flex: 0 0 calc(25% - 15px);
  }

  .botanicals-fade-overlay {
    width: calc(25% + 32px);
  }

  .botanical-card__body {
    padding: 28px 26px 32px;
  }

  .botanical-card__heading {
    font-size: 17px;
    margin-bottom: 2px;
  }
  .botanical-card__Subheading{
    font-size:14px;
    margin-bottom:10px;
  }

  .botanical-card__subtext {
    font-size: 12px;
  }

  .botanical-card__link {
    font-size: 14px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .botanicals-track {
    transition: none;
  }

  .botanical-card__image {
    transition: none;
  }

  .botanicals-arrow {
    transition: none;
  }
}


/* ── Inline Image (left of text in card body) ── */
.botanical-card__body-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.botanical-card__body-inner--with-inline {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.botanical-card__inline-image-wrap {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  /* border-radius: 50%; */
  overflow: hidden;
}

.botanical-card__inline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text column next to inline image */
.botanical-card__text {
  flex: 1;
  min-width: 0;
  display:flex;
  flex-direction:column;
  justify-content: space-between;
    height: 100%;
}

/* When inline image is present, remove bottom margin from subtext
   since the link sits outside the inner block */
.botanical-card__body-inner--with-inline .botanical-card__subtext {
  margin-bottom: 0;
}





@media screen and (max-width: 599px) {
  .botanical-card__inline-image-wrap {
    width: 90px;
    height: 90px;
  }

  .botanical-card__body-inner--with-inline {
    gap: 8px;
  }
}

/* =============================================
   VIEW ALL INGREDIENTS FOOTER LINK
   ============================================= */
.botanicals-section__footer {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .botanicals-section__footer {
    margin-top: 24px;
  }
  .botanicals-ingredients-trigger{
    font-size: 14px;
  }
}

.botanicals-ingredients-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-transform: uppercase;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    color: #fff;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
    background-color: #003C21;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 10px;
    border-radius: 10px;
}


/* =============================================
   POPUP OVERLAY
   ============================================= */
.botanicals-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.botanicals-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   POPUP DRAWER (slides up from bottom)
   ============================================= */
.botanicals-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  max-height: 85vh;
  overflow: visible; /* Let close button hover outside on desktop */
  transform: translateY(150%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;

  /* Constrain on mobile */
  max-width: 450px;
  margin: 0 auto;
}

.botanicals-popup__scroll-container {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
}

.botanicals-popup.is-open {
  transform: translateY(0);
}

/* Close button (Pill style) */
.botanicals-popup__close {
  position: absolute;
  top:  -4rem;
  right: 1rem;
  padding: 8px 16px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color:  #003C21;
  transition: background 0.2s ease, transform 0.2s ease;
}

.botanicals-popup__close2 {
  position: absolute;
  top:  -4rem;
  right: 1rem;
  padding: 8px 16px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color:  #003C21;
  transition: background 0.2s ease, transform 0.2s ease;
}

.botanicals-popup__close:hover {
  background: #f7f7f7;
  transform: translateY(10px);
}

.botanicals-popup__close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  display: block;
}

/* Popup hero image */
.botanicals-popup__hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}

.botanicals-popup__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero text overlay */
.botanicals-popup__hero-text {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  margin: 0;
}

/* Popup body */
.botanicals-popup__body {
  padding: 1.75rem 1.5rem 2.5rem;
}

.botanicals-popup__body p,
.botanicals-popup__body li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color:  #003C21;
  margin: 0 0 1rem;
}

.botanicals-popup__body strong,
.botanicals-popup__body b {
  font-weight: 600;
  color: #1a1a1a;
}

.botanicals-popup__body h3,
.botanicals-popup__body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 1.25rem 0 0.4rem;
}

.botanicals-popup__body p:last-child { margin-bottom: 0; }

.botanicals-popup__header-no-image {
  padding: 3rem 1.5rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.botanicals-popup__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color:  #003C21;
  margin: 0;
}

button.botanical-card__link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

/* Centre popup horizontally and slide from right on desktop */
@media screen and (min-width: 750px) {
  .botanicals-popup {
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 45%;
    max-width: 45%;
    height: 100vh;
    max-height: 100vh;
    transform: translateX(120%);
    margin: 0;
    border-radius: 0;
  }

  .botanicals-popup.is-open {
    transform: translateX(0);
  }

  .botanicals-popup__close {
    right: auto;
    left: -100px; /* Floating on the left hand side of the drawer */
    top:10px;
  }
  .botanicals-popup__close2 {
    right: auto;
    left: -100px; /* Floating on the left hand side of the drawer */
    top:10px;
  }
}

/* =============================================
   FULL-SCREEN POPUP (PDF & Image Only)
   ============================================= */
.botanicals-popup.botanicals-popup--full-screen {
  max-width: 450px !important;
  width: 100% !important;
  height: 80vh !important;
  max-height: 80vh !important;
  border-radius: 24px 24px 0 0 !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  transform: translateY(100%) !important;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

.botanicals-popup.botanicals-popup--full-screen.is-open {
  transform: translateY(0) !important;
}

/* Adjust close button for full-screen popup */
.botanicals-popup--full-screen .botanicals-popup__close,
.botanicals-popup--full-screen .botanicals-popup__close2 {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  left: auto !important;
  z-index: 10000 !important;
}

@media screen and (min-width: 750px) {
  .botanicals-popup.botanicals-popup--full-screen {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 80vw !important;
    max-width: 1200px !important;
    height: 80vh !important;
    max-height: 80vh !important;
    border-radius: 16px !important;
    transform: translate(-50%, -30%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease !important;
    margin: 0 !important;
  }

  .botanicals-popup.botanicals-popup--full-screen.is-open {
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* PDF Container Styles */
.botanicals-popup__pdf-container {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #f4f4f4;
}

.botanicals-popup__pdf-container object,
.botanicals-popup__pdf-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.botanicals-popup__pdf-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  font-family: 'Inter', sans-serif;
  color: #003C21;
}

.botanicals-popup__pdf-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #003C21;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.botanicals-popup__pdf-btn:hover {
  background-color: #162F20;
}

/* Image-Only Container Styles */
.botanicals-popup__image-container {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* Dark background to highlight the image */
  position: relative;
  overflow: hidden;
}

.botanicals-popup__image-only {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botanicals-popup__image-only img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.botanical-card:nth-child(2n) .botanical-card__body .botanical-card__link {
    color: #fff !important;
}