/** Shopify CDN: Minification failed

Line 772:0 All "@import" rules must come first
Line 1512:0 All "@import" rules must come first
Line 2357:0 All "@import" rules must come first
Line 2566:0 All "@import" rules must come first
Line 2668:0 All "@import" rules must come first
Line 3385:0 All "@import" rules must come first

**/
/* START_SECTION:cart-drawer-v2 (INDEX:10) */
/* ===== CART DRAWER ROOT ===== */
#cart-drawer-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  font-family: 'Figtree', sans-serif;
  transition: visibility 0s 0.4s;
}

#cart-drawer-v2,
#cart-drawer-v2 *,
#cart-drawer-v2 *::before,
#cart-drawer-v2 *::after {
  font-family: 'Figtree', sans-serif !important;
}

#cart-drawer-v2.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s 0s;
}

/* Overlay */
#cart-drawer-v2 .cart_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #b2b7abc9;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

#cart-drawer-v2.open .cart_overlay {
  opacity: 1;
}

/* Cart section panel */
#cart-drawer-v2 .cart_section {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

#cart-drawer-v2.open .cart_section {
  transform: translateX(0);
}

/* Header */
#cart-drawer-v2 .cart_header {
  padding: 22px 19px;
  border-bottom: 1px solid #18321C;
  flex-shrink: 0;
}

#cart-drawer-v2 .cart_header_alarm {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

#cart-drawer-v2 .cart_close_button {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px;
}

.cart_close_button svg{
  width: 15px;
  
}

#cart-drawer-v2 .cart_label {
  color: #18321C;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

/* Scroll container */
#cart-drawer-v2 .cart_scroll_container {
  padding: 17px 19px 14px;
  flex: 1;
  overflow-y: auto;
}

/* ===== REVIEW WIDGET ===== */
#cart-drawer-v2 .cart-review-widget {
  display: flex;
  min-height: 63px;
  padding: 12px 18px;
  margin-bottom: 19px;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #F5F3EF;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#cart-drawer-v2 .cart-review-widget:hover {
  border-color: #E8E6E0;
  background-color: #F8F7F3;
}

#cart-drawer-v2 .cart-review-widget__content {
  color: #18321C;
  font-family: 'Figtree', sans-serif;
  line-height: 100%;
}

#cart-drawer-v2 .cart-review-widget__rating-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#cart-drawer-v2 .cart-review-widget__score-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

#cart-drawer-v2 .cart-review-widget__score {
  font-size: 22px;
  font-weight: 600;
}

#cart-drawer-v2 .cart-review-widget__review-count {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

#cart-drawer-v2 .cart-review-widget__stars {
  display: flex;
}

#cart-drawer-v2 .cart-review-widget__star svg {
  width: 22px;
  height: 18px;
}

#cart-drawer-v2 .cart-review-widget__arrow {
  transition: transform 0.3s ease;
}

#cart-drawer-v2 .cart-review-widget:hover .cart-review-widget__arrow {
  transform: translateX(3px);
}

#cart-drawer-v2 .cart-review-widget__arrow svg {
  height: 18px;
  width: 15px;
}

/* ===== CART ITEMS ===== */
#cart-drawer-v2 .cart_added_product {
  display: flex;
  gap: 16px;
  padding: 0;
  margin-bottom: 19px;
}

#cart-drawer-v2 .cart_added_product_image_box {
  width: 140px;
  min-width: 134px;
  height: 134px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F3EF;
}

#cart-drawer-v2 .cart_added_product_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#cart-drawer-v2 .cart_added_product_info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

#cart-drawer-v2 .cart_added_product_detail {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#cart-drawer-v2 .cart_added_product_name {
  color: #18321C;
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  margin-bottom: 3px;
}

#cart-drawer-v2 .cart_added_variant_servings {
  color: #18321C;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-top: 3px;
}

#cart-drawer-v2 .lineitem_info_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 10px;
  margin-bottom: 1px;
}

#cart-drawer-v2 .cart_added_product_delete_total_price {
  display: none;
}

/* Quantity controls */
#cart-drawer-v2 .cart_qty_remove_wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

#cart-drawer-v2 .cart_added_counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  border-radius: 6px;
  height: 36px;
  width: 94px;
  padding: 8px 10px;
  box-sizing: border-box;
}

#cart-drawer-v2 .cart_qty_button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#cart-drawer-v2 .cart_qty_button:hover {
  opacity: 0.6;
}

#cart-drawer-v2 .cart_added_product_amount {
  width: 24px;
  height: 100%;
  border: none;
  text-align: center;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #18321C;
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
}

#cart-drawer-v2 .cart_added_product_amount::-webkit-outer-spin-button,
#cart-drawer-v2 .cart_added_product_amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#cart-drawer-v2 .line_remove_button {
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

#cart-drawer-v2 .line_remove_button svg {
  width: 24px;
  height: 24px;
}

#cart-drawer-v2 .line_remove_button:hover {
  opacity: 1;
}

/* Prices */
#cart-drawer-v2 .line_price_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#cart-drawer-v2 .compare_price {
  color: #18321C;
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
  line-height: 13.75px;
  text-align: right;
  opacity: 0.66;
  margin-bottom: -2px;
  display: block;
}

#cart-drawer-v2 .sale_price {
  color: #18321C;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* Empty cart state */
#cart-drawer-v2 .empty_cart .cart_scroll_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

#cart-drawer-v2 .cart_state {
  color: #18321C;
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

#cart-drawer-v2 .empty_cart_footer {
  text-align: center;
}

#cart-drawer-v2 .shop_all_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 40px;
  border-radius: 6px;
  background: #18321C;
  color: #FCFCF9;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s;
}

#cart-drawer-v2 .shop_all_button:hover {
  opacity: 0.8;
}

/* ===== CART FOOTER ===== */
#cart-drawer-v2 .cart_footer {
  padding: 16px 15px 20px;
  border-top: 1px solid #E7E5D9;
  flex-shrink: 0;
}

#cart-drawer-v2 .cart_subtotal_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: #0C2016;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

#cart-drawer-v2 .total_price span {
  display: block;
  color: #0C2016;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

#cart-drawer-v2 .total_price {
  display: flex;
  align-items: center;
}

#cart-drawer-v2 .cart_compare_price {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-decoration: line-through;
  color: #18321C;
  opacity: 0.66;
  margin-right: 6px;
}

#cart-drawer-v2 .button_checkout {
  border-radius: 6px;
  background: #18321C;
  margin: 8px 0 15px;
  height: 57px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.45px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}

#cart-drawer-v2 .button_checkout:hover {
  opacity: 0.8;
}

/* USP badges */
#cart-drawer-v2 .cart_footer_usp {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 13px;
}

#cart-drawer-v2 .cart_footer_usp_item {
  display: flex;
  padding: 4px 9px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 3px;
  background: #E9F1EA;
  color: #18321C;
  text-align: center;
  font-family: 'Figtree', sans-serif;
  font-size: clamp(9px, 1.2vw, 10px);
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

#cart-drawer-v2 .cart_footer_usp_item svg {
  height: 15px;
  width: 15px;
  flex-shrink: 0;
}

/* Payment icons */
#cart-drawer-v2 .list-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

#cart-drawer-v2 .list-payment__item {
  display: flex;
  align-items: center;
}

#cart-drawer-v2 .list-payment__item svg {
  width: 38px;
  height: 24px;
}

/* Stock limit message */
#cart-drawer-v2 .cart_stock_msg {
  display: none;
  background: #FFF3F3;
  border: 1px solid #E8BCBC;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  color: #8B2020;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

#cart-drawer-v2 .cart_stock_msg.show {
  display: block;
}

/* Loading bar */
#cart-drawer-v2 .cart_loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 20;
}

#cart-drawer-v2 .cart_loading.hide {
  display: none;
}

#cart-drawer-v2 .cart_loading_bar {
  height: 100%;
  background: #18321C;
  animation: cart-loading 1.2s ease-in-out infinite;
}

@keyframes cart-loading {
  0% { width: 0; margin-left: 0; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 0; margin-left: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 380px) {
  #cart-drawer-v2 .cart_footer_usp {
    flex-wrap: nowrap;
    gap: 8px;
  }
  #cart-drawer-v2 .cart_footer_usp_item {
    padding: 4px 6px;
  }
}

@media (max-width: 352px) {
  #cart-drawer-v2 .cart_footer_usp {
    gap: 4px;
  }
  #cart-drawer-v2 .cart_footer_usp_item {
    padding: 4px 4px;
  }
}

/* ===== UPGRADE & SAVE WIDGET (DE only) ===== */
#cart-drawer-v2 .subscription_upgrade_box {
  background: #F5F3EF;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  font-family: 'Figtree', sans-serif;
  color: #18321C;
}

#cart-drawer-v2 .subs_upgrade_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#cart-drawer-v2 .subs_upgrade_title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#cart-drawer-v2 .subs_upgrade_pct {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: #A65409;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  font-family: 'Sometype Mono', monospace;
}

#cart-drawer-v2 .subs_switch {
  width: 40px;
  height: 22px;
  border-radius: 12px;
  background: #18321C;
  border: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

#cart-drawer-v2 .subs_switch:not(.on) {
  background: #BDBDB5;
}

#cart-drawer-v2 .subs_switch_thumb {
  position: absolute;
  top: 2px;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

#cart-drawer-v2 .subs_switch:not(.on) .subs_switch_thumb {
  transform: translateX(-18px);
}

#cart-drawer-v2 .subs_upgrade_body {
  margin-top: 14px;
  overflow: hidden;
  max-height: 600px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease;
}

#cart-drawer-v2 .subscription_upgrade_box.collapsed .subs_upgrade_body {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

#cart-drawer-v2 .s_subs_option {
  background: #fff;
  border: 1px solid #E7E5D9;
  border-radius: 6px;
  padding: 14px 14px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.1s ease;
}

#cart-drawer-v2 .s_subs_option:hover {
  border-color: #18321C;
}

#cart-drawer-v2 .s_subs_option:active {
  transform: scale(0.998);
}

#cart-drawer-v2 .subs_option_title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

#cart-drawer-v2 .subs_desc {
  margin-top: 4px;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: #18321C;
}

#cart-drawer-v2 .save_and_price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}

#cart-drawer-v2 .subs_save {
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  background: #A65409;
  color: #fff;
  font-family: 'Sometype Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

#cart-drawer-v2 .subs_prices {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

#cart-drawer-v2 .subs_compare_price {
  font-size: 12px;
  color: #18321C;
  text-decoration: line-through;
  font-weight: 400;
}

#cart-drawer-v2 .subs_actual_price {
  font-size: 16px;
  font-weight: 700;
  color: #18321C;
}

#cart-drawer-v2 .subs_usp_holder {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#cart-drawer-v2 .s_subs_usp {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: #18321C;
}

#cart-drawer-v2 .s_subs_usp svg {
  flex-shrink: 0;
  margin-top: 2px;
}
/* END_SECTION:cart-drawer-v2 */
/* START_SECTION:comparison-table (INDEX:13) */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

  .cmp-table {
    background-color: #f5f4ef;
    padding: 50px 12px;
    font-family: 'Figtree', 'Inter Tight', sans-serif;
    color: #18321c;
  }

  @media (min-width: 768px) {
    .cmp-table {
      padding: 50px max(calc(50% - 395px), 50px);
    }
  }

  .cmp-table__container {
    max-width: 790px;
    margin: 0 auto;
  }

  .cmp-table__heading {
    margin: 0 0 16px 0;
    padding: 0 12px;
    font-size: 26px;
    font-weight: 700;
    text-align: left;
    line-height: 1;
    color: #18321c;
  }

  @media (min-width: 768px) {
    .cmp-table__heading {
      padding: 0;
      font-size: 44.8px;
      text-align: center;
    }
  }

  .cmp-table__subheading {
    margin: 0 0 40px 0;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    line-height: 1.25;
    color: #18321c;
  }

  @media (min-width: 768px) {
    .cmp-table__subheading {
      padding: 0;
      font-size: 28px;
      text-align: center;
      margin-bottom: 80px;
    }
  }

  .cmp-table__wrapper {
    position: relative;
    margin-bottom: 56px;
  }

  .cmp-table__header {
    display: flex;
    align-items: flex-end;
    text-align: center;
    line-height: 1;
  }

  .cmp-table__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .cmp-table__cell--label {
    width: 38%;
    padding: 4px 10px 4px 8px;
    text-align: left;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  .cmp-table__cell--label small {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 400;
  }

  .cmp-table__cell--brand {
    width: 21.6%;
    background-color: #18321c;
    color: #ffffff;
    flex-direction: column;
    font-size: 13px;
    font-weight: 500;
  }

  .cmp-table__cell--brand small {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 400;
    color: #ffffff;
  }

  .cmp-table__cell--col-a,
  .cmp-table__cell--col-b {
    width: 20.2%;
    flex-direction: column;
    font-size: 13px;
    font-weight: 500;
    color: #18321c;
  }

  .cmp-table__cell--col-a small,
  .cmp-table__cell--col-b small {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 400;
  }

  @media (min-width: 768px) {
    .cmp-table__cell--label {
      width: 47.3%;
      padding: 10px 25px 2px;
      font-size: 22.45px;
    }
    .cmp-table__cell--label small {
      font-size: 14.53px;
    }
    .cmp-table__cell--brand {
      width: 19.3%;
      font-size: 19.81px;
    }
    .cmp-table__cell--brand small {
      font-size: 14.26px;
    }
    .cmp-table__cell--col-a,
    .cmp-table__cell--col-b {
      width: 16.7%;
      font-size: 19.81px;
    }
    .cmp-table__cell--col-a small,
    .cmp-table__cell--col-b small {
      font-size: 14.26px;
    }
  }

  .cmp-table__header .cmp-table__cell--label {
    background: transparent;
    padding: 8px;
  }

  .cmp-table__header .cmp-table__cell--brand {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 8px;
    min-height: 46px;
  }

  .cmp-table__header .cmp-table__cell--col-a,
  .cmp-table__header .cmp-table__cell--col-b {
    padding: 8px;
    font-size: 12px;
    font-weight: 400;
    min-height: 46px;
    color: #18321c;
  }

  @media (min-width: 768px) {
    .cmp-table__header .cmp-table__cell--brand {
      padding: 10px 15px;
      min-height: 78px;
    }
    .cmp-table__header .cmp-table__cell--col-a,
    .cmp-table__header .cmp-table__cell--col-b {
      padding: 15px 25px;
      min-height: 78px;
      font-size: 21px;
    }
  }

  .cmp-table__brand-logo {
    width: 100%;
    max-width: 117px;
    height: auto;
  }

  .cmp-table__body {
    border: 1px solid #18321c;
    border-radius: 12px;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .cmp-table__body {
      border-radius: 11px;
    }
  }

  .cmp-table__row {
    display: flex;
    border-bottom: 1px solid #18321c;
    min-height: 36px;
  }

  .cmp-table__row:last-child {
    border-bottom: 0;
  }

  @media (min-width: 768px) {
    .cmp-table__row {
      min-height: 64px;
    }
  }

  .cmp-table__icon {
    width: 21px;
    height: 21px;
  }

  @media (min-width: 768px) {
    .cmp-table__icon {
      width: 27px;
      height: 27px;
    }
  }

  .cmp-table__footer-strip {
    display: flex;
    line-height: 1;
    margin-top: -1px;
  }

  .cmp-table__footer-strip .cmp-table__cell {
    background: transparent;
    color: inherit;
  }

  .cmp-table__footer-strip .cmp-table__cell--brand {
    background-color: #18321c;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    height: 18px;
  }

  @media (min-width: 768px) {
    .cmp-table__footer-strip {
      margin-top: -2px;
    }
    .cmp-table__footer-strip .cmp-table__cell--brand {
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      height: 33px;
    }
  }

  .cmp-table__footer {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
    color: #18321c;
  }

  @media (min-width: 768px) {
    .cmp-table__footer {
      padding: 0;
      font-size: 24px;
      text-align: center;
    }
  }
/* END_SECTION:comparison-table */
/* START_SECTION:faq-with-videos (INDEX:19) */
.faq-vid {
    font-family: 'Figtree', sans-serif;
    color: #18321c;
    position: relative;
  }

  .faq-vid__layout {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 991px) {
    .faq-vid__layout {
      padding: 100px 40px;
      display: grid;
      grid-template-columns: 350px 1fr;
      column-gap: 30px;
    }
  }

  @media (min-width: 1201px) {
    .faq-vid__layout {
      column-gap: 80px;
    }
  }

  .faq-vid__intro {
    padding: 0 24px;
    margin-bottom: 25px;
    height: auto;
  }

  @media (min-width: 991px) {
    .faq-vid__intro {
      padding: 0;
      margin-bottom: 0;
      position: sticky;
      top: 100px;
      height: fit-content;
    }
  }

  .faq-vid__heading {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    text-transform: lowercase;
    color: #18321c;
  }

  @media (min-width: 991px) {
    .faq-vid__heading {
      font-size: 32px;
    }
  }

  .faq-vid__lead {
    margin: 20px 0 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #18321c;
  }

  @media (min-width: 991px) {
    .faq-vid__lead {
      margin-top: 30px;
    }
  }

  .faq-vid__main {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .faq-vid__cards-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 24px;
    padding-bottom: 15px;
  }

  @media (min-width: 991px) {
    .faq-vid__cards-wrap {
      overflow: visible;
      margin: 0;
      padding-bottom: 0;
    }
  }

  .faq-vid__cards {
    display: flex;
    gap: 22px 10px;
    width: fit-content;
  }

  @media (min-width: 991px) {
    .faq-vid__cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: auto;
    }
  }

  @media (min-width: 1201px) {
    .faq-vid__cards {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }

  .faq-vid__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 165px;
    flex-shrink: 0;
  }

  @media (min-width: 991px) {
    .faq-vid__card {
      width: auto;
    }
  }

  .faq-vid__poster {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 157.5%;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  @media (min-width: 991px) {
    .faq-vid__poster {
      padding-top: 117%;
    }
  }

  .faq-vid__poster-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .faq-vid__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    line-height: 0;
    pointer-events: none;
  }

  .faq-vid__play-svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .faq-vid__question {
    margin: 10px 0 auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #18321c;
  }

  @media (min-width: 991px) {
    .faq-vid__question {
      font-size: 16px;
    }
  }

  .faq-vid__transcript-btn {
    background-color: #f5f4ef;
    padding: 0 30px;
    height: 32px;
    border-radius: 9999px;
    border: 0;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    color: #18321c;
    cursor: pointer;
    margin-top: 10px;
    width: fit-content;
    transition: opacity 0.3s ease;
  }

  @media (min-width: 991px) {
    .faq-vid__transcript-btn {
      font-size: 14px;
    }
  }

  .faq-vid__transcript-btn:hover {
    opacity: 0.6;
  }

  .faq-vid__accordion {
    margin-top: 24px;
  }

  .faq-vid__item {
    border-top: 1px solid #18321c;
    padding: 24px;
  }

  .faq-vid__item:last-child {
    border-bottom: 1px solid #18321c;
  }

  @media (min-width: 991px) {
    .faq-vid__item {
      padding: 0;
    }
  }

  .faq-vid__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #18321c;
    padding: 0;
  }

  @media (min-width: 991px) {
    .faq-vid__summary {
      padding: 24px 0;
    }
  }

  .faq-vid__summary::-webkit-details-marker {
    display: none;
  }

  .faq-vid__summary-text {
    flex: 1;
  }

  .faq-vid__caret {
    width: 14px;
    height: 13px;
    transition: transform 0.3s linear;
    flex-shrink: 0;
    margin-left: 16px;
    display: block;
  }

  .faq-vid__item[open] .faq-vid__caret {
    transform: rotate(180deg);
  }

  .faq-vid__item > .faq-vid__answer {
    display: block;
    overflow: hidden;
    height: 0;
    transition: height 0.35s ease;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.35;
    color: #18321c;
  }

  .faq-vid__answer-inner {
    padding-top: 16px;
  }

  @media (min-width: 991px) {
    .faq-vid__answer-inner {
      padding-bottom: 24px;
    }
  }

  .faq-vid__answer p {
    margin: 0 0 12px 0;
  }

  .faq-vid__answer p:last-child {
    margin-bottom: 0;
  }

  .faq-vid__answer img {
    max-width: 100%;
    height: auto;
    margin-top: 12px;
  }

  .faq-vid__answer a {
    color: #18321c;
    text-decoration: underline;
  }

  .faq-vid__cta {
    margin: 35px 0 0 24px;
    display: flex;
  }

  @media (min-width: 991px) {
    .faq-vid__cta {
      margin-left: 0;
    }
  }

  .faq-vid__modal {
    position: fixed;
    inset: 0;
    z-index: 10000000;
  }

  .faq-vid__modal[hidden] {
    display: none;
  }

  .faq-vid__overlay {
    position: absolute;
    inset: 0;
    background: rgba(178, 183, 171, 0.788);
    z-index: 100;
  }

  .faq-vid__modal-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    z-index: 200;
    padding: 0 16px;
    box-sizing: border-box;
  }

  @media (min-width: 991px) {
    .faq-vid__modal-body {
      width: 80vw;
      max-width: 1000px;
      padding: 0;
    }
  }

  .faq-vid__video-wrap {
    position: relative;
    padding-top: min(177.6%, 90vh);
    overflow: hidden;
  }

  @media (min-width: 991px) {
    .faq-vid__video-wrap {
      padding-top: 56.25%;
    }
  }

  .faq-vid__video-wrap[hidden] {
    display: none;
  }

  .faq-vid__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .faq-vid__video--desktop {
    display: none;
  }

  .faq-vid__video--mobile {
    display: block;
  }

  @media (min-width: 991px) {
    .faq-vid__video--desktop {
      display: block;
    }
    .faq-vid__video--mobile {
      display: none;
    }
  }

  .faq-vid__transcript-wrap {
    position: relative;
    background: #fcfcf9;
    border: 1px solid #18321c;
    padding: 60px 15px;
    max-width: 1000px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
  }

  @media (min-width: 991px) {
    .faq-vid__transcript-wrap {
      padding: 60px 70px;
    }
  }

  .faq-vid__transcript-wrap[hidden] {
    display: none;
  }

  .faq-vid__transcript-q {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #18321c;
  }

  .faq-vid__transcript-body {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.35;
    color: #18321c;
  }

  .faq-vid__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 0;
  }

  body.faq-vid-open {
    overflow: hidden;
  }
/* END_SECTION:faq-with-videos */
/* START_SECTION:gut-benefits (INDEX:25) */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;700&display=swap');

  .section-gut-benefits {
    background-color: #f5f4ef;
  }

  .gut-benefits {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 50px 24px;
    font-family: 'Figtree', sans-serif;
    color: #18321c;
  }

  @media (min-width: 769px) {
    .gut-benefits {
      padding: 205px 40px;
    }
  }

  .gut-benefits__row {
    max-width: 1360px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }

  @media (min-width: 769px) {
    .gut-benefits__row {
      flex-direction: row;
    }
  }

  .gut-benefits__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  @media (min-width: 769px) {
    .gut-benefits__left {
      width: 50%;
      padding-right: 30px;
    }
  }

  @media (min-width: 1025px) {
    .gut-benefits__left {
      padding-right: 65px;
    }
  }

  .gut-benefits__heading {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: #18321c;
  }

  @media (min-width: 769px) {
    .gut-benefits__heading {
      font-size: 32px;
      line-height: 32px;
    }
  }

  .gut-benefits__body {
    max-width: 570px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.5px;
    text-align: left;
    color: #18321c;
  }

  @media (min-width: 769px) {
    .gut-benefits__body {
      font-size: 16px;
      line-height: 20px;
    }
  }

  .gut-benefits__body p {
    margin: 0;
  }

  .gut-benefits__right {
    width: 100%;
    display: flex;
    align-items: center;
  }

  @media (min-width: 769px) {
    .gut-benefits__right {
      width: 50%;
      padding-left: 30px;
    }
  }

  @media (min-width: 1025px) {
    .gut-benefits__right {
      padding-left: 65px;
    }
  }

  .gut-benefits__grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 7px;
    row-gap: 8px;
  }

  @media (min-width: 1025px) {
    .gut-benefits__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .gut-benefits__pill {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 60px;
    padding: 0 25px;
    border-radius: 6px;
    gap: 14px;
  }

  .gut-benefits__pill-icon {
    width: 40px;
    height: auto;
    display: block;
    flex-shrink: 0;
  }

  .gut-benefits__pill span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-transform: uppercase;
    color: #18321c;
  }

  .gut-benefits__cta {
    align-self: flex-start;
  }

  .gut-benefits__cta--mobile {
    display: none;
  }
  .gut-benefits__cta.gut-benefits__cta--mobile {
    display: none;
  }

  @media screen and (max-width: 990px) {
    .gut-benefits__cta.gut-benefits__cta--desktop {
      display: none;
    }

    .gut-benefits__cta.gut-benefits__cta--mobile {
      display: flex;
    }
  }
/* END_SECTION:gut-benefits */
/* START_SECTION:hero-header (INDEX:28) */
.hero-header {
    --hh: 64px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
    background-color: transparent;
    font-family: 'Figtree', sans-serif;
    color: #ffffff;
  }
  .hero-header__cta-wrap{
    margin-left: auto;
  }

  /* Cart icon (product pages) */
  .hero-header__cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
  }
  .hero-header__cart-label {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.45px;
  }
  .hero-header__cart-btn svg {
    width: 18px;
    height: 20px;
  }
  .hero-header__cart-count {
    position: absolute;
    bottom: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    color: black;
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
  }

  @media (min-width: 768px) {
    .hero-header {
      --hh: 98px;
    }
  }

  .hero-header.is-opaque {
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #18321c;
  }

  /* Non-home pages: header stays fixed like on home, but is always in the
     "scrolled" (opaque) state — background, dark logo, dark nav. Flow space
     is reserved by the sibling `.hero-header__spacer`. No transition from
     transparent, since we never want the transparent state on inner pages. */
  .hero-header--static {
    transition: none;
  }

  .hero-header__spacer {
    height: 64px;
  }

  @media (min-width: 768px) {
    .hero-header__spacer {
      height: 98px;
    }
  }

  /* While the drawer is open, the header is opaque but should visually
     "merge" with the panel — kill the shadow. */
  .hero-header.is-drawer-open {
    box-shadow: none;
  }

  .hero-header__inner {
    position: relative;
    padding: 10px 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* @media (max-width: 989px) {
    .hero-header__inner {
      display: grid;
      grid-template-columns: auto 2fr 1fr;
      align-items: center;
    }
  } */

  @media (min-width: 990px) {
    .hero-header__inner {
      padding: 24px 32px;
      height: auto;
    }
  }

  /* Drawer toggle */
  .hero-header__drawer {
    position: static;
  }

  .hero-header__drawer > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 201;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-header__drawer > summary::-webkit-details-marker {
    display: none;
  }

  .hero-header__burger {
    padding: 0;
    background: transparent;
    border: 0;
  }

  .hero-header__drawer > summary,
  .hero-header__drawer > summary:hover,
  .hero-header__drawer > summary:focus,
  .hero-header__drawer > summary:focus-visible,
  .hero-header__drawer > summary:active,
  .hero-header__burger,
  .hero-header__burger:hover,
  .hero-header__burger:focus,
  .hero-header__burger:focus-visible,
  .hero-header__burger:active {
    background: transparent !important;
    opacity: 1 !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .hero-header__burger:hover .hero-header__burger-icon,
  .hero-header__burger:focus .hero-header__burger-icon,
  .hero-header__drawer > summary:hover .hero-header__burger-icon,
  .hero-header__drawer > summary:focus .hero-header__burger-icon {
    opacity: 1;
    transform: none;
  }

  /* Burger ↔ close cross-fade — both icons absolutely stacked inside
     a fixed 44×44 box so they swap in place without any layout shift. */
  .hero-header__burger-icon {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 44px;
    color: inherit;
  }

  .hero-header__burger-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    transition: opacity 0.3s ease;
  }

  /* Don't rely on currentColor for the burger icons — global theme hover
     rules on links/buttons mutate color on hover and bleed into the SVG.
     Pin stroke/fill to explicit values keyed off the header state. */
  .hero-header .hero-header__burger-icon svg line,
  .hero-header .hero-header__burger-icon svg path {
    transition: stroke 0.4s ease, fill 0.4s ease;
  }

  .hero-header .hero-header__burger-icon svg line {
    stroke: #ffffff !important;
  }

  .hero-header .hero-header__burger-icon svg path {
    fill: #ffffff !important;
  }

  .hero-header.is-opaque .hero-header__burger-icon svg line {
    stroke: #18321c !important;
  }

  .hero-header.is-opaque .hero-header__burger-icon svg path {
    fill: #18321c !important;
  }

  .hero-header__burger-close {
    opacity: 0;
  }

  .hero-header__drawer[open] .hero-header__burger-open {
    opacity: 0;
  }

  .hero-header__drawer[open] .hero-header__burger-close {
    opacity: 1;
  }

  .hero-header__menu-label {
    display: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: lowercase;
    color: #ffffff !important;
    transition: color 0.4s ease;
  }

  .hero-header.is-opaque .hero-header__menu-label {
    color: #18321c !important;
  }

  .hero-header__drawer > summary:hover .hero-header__menu-label,
  .hero-header__drawer > summary:focus .hero-header__menu-label,
  .hero-header__burger:hover .hero-header__menu-label,
  .hero-header__burger:focus .hero-header__menu-label {
    color: inherit;
  }

  @media (min-width: 990px) {
    .hero-header__menu-label {
      display: inline;
    }
  }

  .hero-header__drawer[open] .hero-header__menu-label {
    display: none;
  }

  /* Logo — two images cross-faded so the dark/white swap is smooth.
     Desktop: absolutely centered in the header. Mobile: flows inline
     right after the burger, with auto-margin pushing the CTA to the edge. */
  .hero-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  @media (max-width: 749px) {
    .hero-header__logo {
      position: static;
      left: auto;
      top: auto;
      transform: none;
      margin-right: auto;
      margin-left: 8px;
    }
  }

  .hero-header__logo a {
    position: relative;
    display: inline-block;
    line-height: 0;
  }

  .hero-header__logo-img {
    height: 24px;
    width: auto;
    display: block;
    transition: opacity 0.35s ease;
  }

  @media (min-width: 768px) {
    .hero-header__logo-img {
      height: 32px;
    }
  }

  /* Dark logo overlays the white one; opacity toggles on is-opaque. */
  .hero-header__logo-img--dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .hero-header.is-opaque .hero-header__logo-img--dark {
    opacity: 1;
  }

  .hero-header.is-opaque .hero-header__logo-img--white {
    opacity: 0;
  }

  .hero-header__logo-text {
    font-size: 20px;
    font-weight: 700;
    color: inherit;
  }

  /* Default state: CTA sits over the hero as fully transparent — no bg, no border,
     just the white label + caret. On scroll (is-opaque) swap to dark-filled.
     Parent-scoped selector (0,2,0) beats `.dev-btn--outline-light` (0,1,0)
     so the snippet's white border doesn't leak through. */
  .hero-header .hero-header__cta {
    background-color: transparent;
    border-color: transparent;
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  }

  .hero-header.is-opaque .hero-header__cta {
    background-color: #18321c;
    border-color: #18321c;
    color: #ffffff;
  }

  /* Mobile CTA sizing (matches the live site .header_buy_btn mobile rules). */
  @media (max-width: 750px) {
    .hero-header .hero-header__cta {
      width: 130px;
      min-width: 130px;
      height: 37px;
      min-height: 37px;
      padding: 10px 14px;
      gap: 0;
    }

    .hero-header .hero-header__cta .dev-btn__caret {
      width: 7px;
      height: 10px;
    }
  }

  /* ---- Drawer panel ----
     Always in the DOM (display: flex overrides the native <details> UA hide
     rule) so we can slide it in/out with a real transform transition.
     Panel sits just below the header on every breakpoint.
     Intentionally no `visibility` toggle — it's discrete and was breaking
     the close animation. Panel is always rendered, translated off-screen
     when closed, with pointer-events gating interaction. */
  .hero-header__panel {
    position: fixed;
    top: var(--hh);
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    color: #18321c;
    z-index: 200;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 0.4s ease;
  }

  .hero-header.is-drawer-open .hero-header__panel {
    transform: translateX(0);
    pointer-events: auto;
  }

  /* Dim overlay that fills the area below the header when the drawer is open.
     Sits between page content and the panel so the panel stays on top. */
  .hero-header__overlay {
    position: fixed;
    top: var(--hh);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 50, 28, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 150;
  }

  .hero-header.is-drawer-open .hero-header__overlay {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
  }

  @media (min-width: 750px) {
    .hero-header__panel {
      right: auto;
      width: 420px;
    }
  }

  /* Panel-topbar hidden on every breakpoint — the header summary owns the
     burger↔close swap so a second close button inside the drawer is wrong. */
  .hero-header__panel-topbar {
    display: none;
  }

  .hero-header__panel-logo {
    display: block;
    width: 115px;
    line-height: 0;
  }

  .hero-header__panel-logo img {
    width: 100%;
    display: block;
  }

  .hero-header__panel-close {
    background: transparent;
    border: 0;
    padding: 0;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #18321c;
  }

  .hero-header__panel-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 22px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero-header__panel-scroll::-webkit-scrollbar {
    display: none;
  }

  @media (max-width: 749px) {
    .hero-header__panel-scroll {
      padding: 22px 12px;
    }
  }

  /* Featured card */
  .hero-header__feat {
    position: relative;
    display: block;
    min-height: 283px;
    width: 100%;
    padding: 15px;
    text-decoration: none;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f3ef;
    margin-bottom: 8px;
  }

  @media (min-width: 750px) {
    .hero-header__feat {
      min-height: 290px;
      padding: 16px;
      margin-bottom: 15px;
    }
  }

  .hero-header__feat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-header__feat-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: inherit;
  }

  .hero-header__feat-sub {
    color: #18321c;
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 4px;
  }

  .hero-header__feat-heading {
    color: #18321c;
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    text-transform: lowercase;
    margin-bottom: auto;
    max-width: 220px;
  }

  .hero-header__feat-btn {
    margin-top: 16px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    width: fit-content;
    height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background-color: #18321c;
  }

  /* Rating block */
  .hero-header__rating {
    display: block;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #f5f3ef;
    padding: 10px 18px;
    background-repeat: no-repeat;
    background-size: 9px;
    background-position: calc(100% - 18px) center;
    background-image: url(//epetome.com/cdn/shop/t/14/assets/right-caret-black.svg?v=35400886476800758211749113221);
    margin-top: 8px;
  }

  .hero-header__rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }

  .hero-header__rating-score {
    color: #18321c;
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    margin-right: 5px;
  }

  .hero-header__rating-stars {
    display: flex;
    align-items: center;
    margin-top: -3px;
  }

  .hero-header__rating-stars img {
    height: 22px;
    width: auto;
  }

  .hero-header__rating-count {
    color: #18321c;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
  }

  /* Menu links */
  .hero-header__nav {
    margin-top: 18px;
    padding-bottom: 30px;
  }

  @media (min-width: 750px) {
    .hero-header__nav {
      margin-top: 15px;
    }
  }

  .hero-header__nav-item {
    margin-bottom: 12px;
  }

  .hero-header__nav-item:last-child {
    margin-bottom: 0;
  }

  .hero-header__nav-title {
    position: relative;
    color: #18321c;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  @media (min-width: 750px) {
    .hero-header__nav-title {
      font-size: 22px;
    }
  }

  .hero-header__nav-caret {
    transform: rotate(90deg);
    transition: transform 0.2s ease;
  }

  .hero-header__nav-item.is-open .hero-header__nav-caret {
    transform: rotate(-90deg);
  }

  .hero-header__nav-sublinks {
    display: none;
    padding-left: 12px;
  }

  .hero-header__nav-item.is-open .hero-header__nav-sublinks {
    display: block;
  }

  .hero-header__nav-sublink {
    display: block;
    text-decoration: none;
    color: #18321c;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    margin-top: 15px;
  }

  /* Footer */
  .hero-header__panel-footer {
    flex-shrink: 0;
    margin: 0 auto;
    border-top: 1px solid #18321c;
    padding: 18px 0;
    width: calc(100% - 48px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-header__socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }

  .hero-header__socials li {
    display: flex;
  }

  .hero-header__socials a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: #18321c;
  }

  .hero-header__login {
    width: 130px;
    justify-content: center;
  }
/* END_SECTION:hero-header */
/* START_SECTION:hero-video-banner (INDEX:29) */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

  .hero-video-banner {
    position: relative;
    font-family: 'Figtree', sans-serif;
  }

  .hero-video-banner__holder {
    position: relative;
  }

  .hero-video-banner__video {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    display: block;
    object-fit: cover;
  }

  .hero-video-banner__main {
    position: absolute;
    bottom: 95px;
    left: 190px;
    z-index: 1;
  }

  .hero-video-banner__heading {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 12px;
  }

  .hero-video-banner__subheading {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 4px;
  }

  .hero-video-banner__content {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    margin-bottom: 26px;
    max-width: 350px;
  }

  .hero-video-banner__content p { margin: 0; }

  .hero-video-banner__typewriter::after {
    content: '|';
    animation: hero-video-banner-blink 0.7s infinite;
    margin-left: 1px;
  }

  @keyframes hero-video-banner-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .hero-video-banner__overlay {
    background: linear-gradient(-13deg, rgba(19, 59, 31, 0.1) -51.37%, rgba(6, 20, 10, 0.49) 60.45%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
  }

  .hero-video-banner__mobile-only { display: none; }
  .hero-video-banner__desktop-only { display: block; }

  .hero-video-banner__desktop-only .hero-video-banner__typewriter {
    display: inline-block;
    /* max-width: 414px; */
  }

  @media screen and (max-width: 990px) {
    .hero-video-banner__desktop-only { display: none; }
    .hero-video-banner__mobile-only { display: block; }

    .hero-video-banner__video { height: 548px; }

    .hero-video-banner__main {
      bottom: 35px;
      left: 24px;
    }

    .hero-video-banner__heading { font-size: 26px; }
    .hero-video-banner__subheading { font-size: 16px; }
    .hero-video-banner__content { font-size: 16px; }

    .hero-video-banner__review {
      border-radius: 6px;
      width: 100%;
      max-width: 300px;
      margin-top: 14px;
    }

    .hero-video-banner__review-text {
      color: #f5f4ef;
      font-size: 12px;
      font-weight: 400;
      line-height: 125%;
      margin-bottom: 4px;
      max-width: 240px;
    }

    .hero-video-banner__review-text p { margin: 0; }

    .hero-video-banner__review-score {
      color: #ffffff;
      font-size: 12px;
      font-weight: 400;
      display: flex;
      justify-content: flex-start;
      text-align: center;
    }

    .hero-video-banner__review-score p { margin: 0; }

    .hero-video-banner__review-score svg {
      width: 16px;
      height: 16px;
      margin-right: 5px;
    }

    .hero-video-banner__review-score a {
      color: #ffffff;
      text-decoration: underline;
    }
  }

  @media screen and (max-width: 767px) {
    .hero-video-banner__main {
      bottom: 24px;
      left: 19px;
      right: 19px;
      height: 75.5%;
      display: flex;
      flex-direction: column;
    }

    .hero-video-banner__actions {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      gap: 16px;
    }

    .hero-video-banner__review {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 0;
      max-width: none;
    }

    .hero-video-banner__review-text { margin: 0; }

    .hero-video-banner__review a {
      color: #ffffff;
      text-decoration: none;
    }

    .hero-video-banner__review-score p {
      margin-top: 1.5px;
    }

    .hero-video-banner__review-score svg {
      margin-right: 3px;
    }

    .hero-video-banner__content {
      width: 100%;
      margin: 0;
      font-size: 14px;
      max-width: 270px;
    }

    .hero-video-banner__subheading {
      margin: 0;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .hero-video-banner__heading {
      min-height: 60px;
      font-size: 30px;
      font-weight: 700;
      line-height: 100%;
      text-shadow: 0px 1px 44.1px rgba(0, 0, 0, 0.25);
      margin-bottom: 8px;
    }

    .hero-video-banner__cta.dev-btn {
      width: 100%;
    }
  }
/* END_SECTION:hero-video-banner */
/* START_SECTION:image-banner-cta (INDEX:31) */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

  .img-banner {
    position: relative;
    width: 100%;
    height: 656px;
    overflow: hidden;
    font-family: 'Figtree', sans-serif;
  }

  .img-banner__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .img-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .img-banner__img--desktop {
    display: none;
  }

  .img-banner__img--mobile {
    display: block;
  }

  @media (min-width: 991px) {
    .img-banner__img--desktop {
      display: block;
    }
    .img-banner__img--mobile {
      display: none;
    }
  }

  .img-banner__content {
    position: absolute;
    z-index: 1;
    top: 50px;
    left: 24px;
    right: 24px;
    bottom: auto;
    height: 556px;
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 991px) {
    .img-banner__content {
      top: auto;
      left: 190px;
      right: auto;
      bottom: 90px;
      height: auto;
      max-width: 400px;
    }
  }

  .img-banner__heading {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
  }

  @media (min-width: 991px) {
    .img-banner__heading {
      font-size: 32px;
    }
  }

  .img-banner__body {
    max-width: 340px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 26px;
  }

  .img-banner__body p {
    margin: 0;
  }

  .img-banner__cta {
    margin-top: auto;
  }

  @media (min-width: 991px) {
    .img-banner__cta {
      margin-top: 0;
    }
  }
/* END_SECTION:image-banner-cta */
/* START_SECTION:image-banner-split (INDEX:32) */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

  .img-banner-split {
    position: relative;
    width: 100%;
    height: 656px;
    overflow: hidden;
    font-family: 'Figtree', sans-serif;
  }

  .img-banner-split__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .img-banner-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .img-banner-split__content {
    position: absolute;
    z-index: 1;
    left: 24px;
    top: 50px;
    bottom: auto;
    width: calc(100% - 48px);
    height: 556px;
    display: flex;
    flex-direction: column;
    color: #18321c;
  }

  @media (min-width: 991px) {
    .img-banner-split__content {
      top: auto;
      bottom: 90px;
      left: 190px;
      width: auto;
      max-width: 400px;
      height: auto;
      color: #ffffff;
    }
  }

  .img-banner-split__heading {
    margin: 0 0 12px 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: inherit;
  }

  @media (min-width: 991px) {
    .img-banner-split__heading {
      font-size: 32px;
    }
  }

  .img-banner-split__body {
    max-width: 310px;
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: inherit;
  }

  .img-banner-split__body p {
    margin: 0;
  }

  /* Positions the shared dev-btn at the bottom of the mobile flex column */
  .img-banner-split__cta.dev-btn {
    width: fit-content;
    margin-top: auto;
  }

  .img-banner-split__cta .dev-btn__label {
    white-space: nowrap;
  }

  @media (min-width: 991px) {
    .img-banner-split__cta {
      margin-top: 0;
    }
  }
/* END_SECTION:image-banner-split */
/* START_SECTION:new-footer (INDEX:58) */
.new-footer {
    position: relative;
    background: #FCFCF9;
    padding-top: 50px;
    padding-bottom: 50px;
    font-family: 'Figtree', sans-serif;
    color: #18321c;
  }

  @media (min-width: 991px) {
    .new-footer {
      padding-top: 100px;
      padding-bottom: 100px;
    }
  }

  .new-footer__inner {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  @media (min-width: 991px) {
    .new-footer__inner {
      flex-direction: row;
      padding: 0 40px;
    }
  }

  .new-footer__main {
    max-width: 350px;
    width: 100%;
  }

  @media (min-width: 991px) {
    .new-footer__main {
      min-width: 300px;
      margin-right: 70px;
    }
  }

  @media (min-width: 1401px) {
    .new-footer__main {
      margin-right: 150px;
      min-width: 0;
    }
  }

  .new-footer__logo {
    display: block;
    width: 175px;
    height: 35px;
  }

  .new-footer__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .new-footer__socials {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 40px 0 35px;
    padding: 0;
    list-style: none;
  }

  .new-footer__social-item {
    margin-right: 16px;
    height: 24px;
    display: flex;
    align-items: center;
  }

  .new-footer__social-item:last-child {
    margin-right: 0;
  }

  .new-footer__social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .new-footer__social-link:hover {
    opacity: 0.6;
  }

  .new-footer__heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #18321c;
  }

  .new-footer__description {
    font-size: 15px;
    line-height: 1.2;
    margin: 12px 0 25px;
    color: #18321c;
  }

  .new-footer__description p {
    margin: 0;
  }

  .new-footer__newsletter {
    position: relative;
  }

  .new-footer__newsletter .newsletter-form__field-wrapper {
    position: relative;
    width: 100%;
  }

  .new-footer__newsletter .newsletter-form__field-wrapper .field {
    position: relative;
  }

  .new-footer__newsletter .newsletter-form__field-wrapper .field::before,
  .new-footer__newsletter .newsletter-form__field-wrapper .field::after {
    display: none;
  }

  .new-footer__newsletter .field__input {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: 1px solid #18321c;
    padding: 0 74px 0 24px;
    color: #18321c;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-sizing: border-box;
    background-color: white !important;
  }

  .new-footer__newsletter .field__input::placeholder {
    color: #18321c;
    opacity: 1;
  }

  .new-footer__newsletter .field__input:focus {
    outline: none;
  }

  .new-footer__newsletter .newsletter-form__button {
    position: absolute;
    top: 0.5px;
    right: 1px;
    width: 50px;
    height: 50px;
    border-radius: 0 5px 6px 0;
    background: #18321c;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }

  .new-footer__newsletter .newsletter-form__button:hover {
    opacity: 0.8;
  }

  .new-footer__newsletter .newsletter-form__button svg {
    width: 10px;
    height: 15px;
  }

  .new-footer__form-msg {
    margin: 10px 0 0;
    font-size: 13px;
  }

  .new-footer__form-msg--error {
    color: #b00020;
  }

  .new-footer__menus {
    width: 100%;
    padding-top: 34px;
  }

  @media (min-width: 751px) {
    .new-footer__menus {
      padding-top: 72px;
    }
  }

  @media (min-width: 991px) {
    .new-footer__menus {
      padding-top: 72px;
    }
  }

  .new-footer__columns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  @media (min-width: 751px) {
    .new-footer__columns {
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
    }
  }

  .new-footer__col {
    width: 100%;
    margin-bottom: 15px;
  }

  @media (min-width: 751px) {
    .new-footer__col {
      width: 33%;
      margin-right: 30px;
      margin-bottom: 0;
    }
  }

  @media (min-width: 1401px) {
    .new-footer__col {
      width: 220px;
      margin-right: 50px;
    }
  }

  .new-footer__col:last-child {
    margin-right: 0;
  }

  .new-footer__col-heading {
    color: #18321c;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .new-footer__caret {
    display: none;
    width: 9px;
    height: 15px;
    flex-shrink: 0;
    margin-left: 12px;
    transform: rotate(90deg);
    transition: transform 0.3s linear;
  }

  @media (max-width: 750px) {
    .new-footer__col--collapsible .new-footer__caret {
      display: block;
      cursor: pointer;
    }

    .new-footer__col--collapsible .new-footer__col-heading {
      cursor: pointer;
    }

    .new-footer__col--collapsible.is-open .new-footer__caret {
      transform: rotate(-90deg);
    }

    .new-footer__col--collapsible .new-footer__col-links {
      display: none;
    }

    .new-footer__col--collapsible.is-open .new-footer__col-links {
      display: flex;
    }
  }

  .new-footer__col-links {
    display: flex;
    flex-direction: column;
  }

  .new-footer__col-links a {
    color: #18321c;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    margin-top: 12px;
    display: block;
    transition: opacity 0.3s ease;
  }

  .new-footer__col-links a:hover {
    opacity: 0.6;
  }

  .new-footer__policy {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  @media (min-width: 991px) {
    .new-footer__policy {
      margin-top: 42px;
    }
  }

  .new-footer__policy a {
    color: #18321c;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    margin-left: 23px;
    transition: opacity 0.3s ease;
  }

  .new-footer__policy a:first-child {
    margin-left: 0;
  }

  @media (min-width: 991px) {
    .new-footer__policy a {
      margin-left: 37px;
    }
  }

  .new-footer__policy a:hover {
    opacity: 0.6;
  }
/* END_SECTION:new-footer */
/* START_SECTION:pill-technology (INDEX:66) */
.pill-tech {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fcfcf9;
    font-family: 'Figtree', sans-serif;
    color: #18321c;
  }

  .pill-tech__inner {
    max-width: 630px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px;
    text-align: left;
  }

  @media (min-width: 751px) {
    .pill-tech__inner {
      align-items: center;
      text-align: center;
      padding: 200px 24px;
    }
  }

  .pill-tech__text {
    width: 100%;
  }

  .pill-tech__heading {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
  }

  @media (min-width: 751px) {
    .pill-tech__heading {
      font-size: 32px;
    }
  }

  .pill-tech__body {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
  }

  @media (min-width: 751px) {
    .pill-tech__body {
      margin-top: 30px;
      margin-bottom: 53px;
      font-size: 18px;
    }
  }

  .pill-tech__body p {
    margin: 0;
  }

  .pill-tech__body strong {
    font-weight: 700;
  }

  .pill-tech__visual {
    position: relative;
    width: calc(100% - 48px);
    aspect-ratio: 1 / 1;
    max-width: 565px;
    margin: 0 auto;
    transform: scale(0.9);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    touch-action: manipulation;
  }

  @media (min-width: 751px) {
    .pill-tech__visual {
      width: 565px;
      height: 565px;
      max-width: none;
      aspect-ratio: auto;
      transform: none;
      margin: 0;
    }
  }

  .pill-tech__pill-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .pill-tech__pill {
    width: 60%;
    height: 100%;
    object-fit: contain;
    transform: rotate(-45deg);
    position: relative;
    z-index: 1;
    display: block;
  }

  @media (min-width: 769px) {
    .pill-tech__pill {
      width: 100%;
    }
  }

  .pill-tech__hotspot {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 9px;
    cursor: pointer;
    z-index: 1;
  }

  @media (min-width: 751px) {
    .pill-tech__hotspot {
      width: 60px;
      height: 60px;
      padding: 14px;
    }
  }

  .pill-tech__hotspot--outer {
    top: 83%;
    left: 70%;
    transform: translate(-70%, -83%);
  }

  .pill-tech__hotspot--inner {
    top: 38%;
    left: 42%;
    transform: translate(-42%, -38%);
  }

  .pill-tech__hotspot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 2;
    animation: pill-tech-dot-pulse 1s infinite;
    pointer-events: none;
  }

  .pill-tech__hotspot:hover::before,
  .pill-tech__hotspot.is-active::before {
    animation-play-state: paused;
    width: 60px;
    height: 60px;
  }

  @keyframes pill-tech-dot-pulse {
    from { width: 0; height: 0; }
    to { width: 60px; height: 60px; }
  }

  .pill-tech__dot-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 3;
  }

  @media (min-width: 751px) {
    .pill-tech__dot-inner {
      width: 32px;
      height: 32px;
    }
  }

  .pill-tech__label {
    position: absolute;
    font-size: 60px;
    font-weight: 400;
    line-height: 120%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    color: #18321c;
  }

  @media (min-width: 751px) {
    .pill-tech__label {
      font-size: 96px;
    }
  }

  .pill-tech__label--outer {
    top: 84%;
    left: 30%;
    transform: translate(-30%, -84%);
  }

  .pill-tech__label--inner {
    top: 10%;
    left: 60%;
    transform: translate(-60%, -10%);
  }

  .pill-tech__tooltip {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    transform: translateX(-50%);
    width: 270px;
    padding: 12px;
    background-color: #fcfcf9;
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 11px;
    line-height: 120%;
    text-align: center;
    z-index: 10;
  }

  @media (min-width: 751px) {
    .pill-tech__tooltip {
      top: 60px;
      width: 330px;
      padding: 16px 18px;
      font-size: 13px;
    }
  }

  .pill-tech__tooltip p {
    margin: 0;
  }

  .pill-tech__hotspot:hover .pill-tech__tooltip {
    display: block;
  }

  .pill-tech__hotspot.is-active .pill-tech__tooltip {
    display: block;
  }

  .pill-tech__cta-wrap {
    margin-top: 62px;
    align-self: flex-start;
  }

  @media (min-width: 751px) {
    .pill-tech__cta-wrap {
      align-self: center;
    }
  }
/* END_SECTION:pill-technology */
/* START_SECTION:press-slider (INDEX:69) */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

  .press-slider {
    background-color: #fcfcf9;
    padding: 50px 0;
    overflow: hidden;
    border-bottom: 1px solid rgb(243 244 246);
    font-family: 'Figtree', sans-serif;
  }

  @media (min-width: 768px) {
    .press-slider {
      padding: 70px 0;
    }
  }

  .press-slider__viewport {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0;
  }

  .press-slider__track {
    display: flex;
    width: max-content;
    animation: press-slider-scroll var(--press-slider-speed, 120s) linear infinite;
  }

  @keyframes press-slider-scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .press-slider__set {
    display: flex;
    align-items: center;
  }

  .press-slider__item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 22px;
  }

  @media (min-width: 768px) {
    .press-slider__item {
      margin: 0 45px;
    }
  }

  .press-slider__item--press {
    width: 215px;
  }

  .press-slider__item--product {
    width: 50px;
  }

  .press-slider__logo {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: filter 0.3s ease, opacity 0.3s ease;
  }

  .press-slider__logo img {
    max-height: 100%;
    width: auto;
    display: block;
  }

  .press-slider__quote {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: #18321c;
  }

  .press-slider__product-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  @media (prefers-reduced-motion: reduce) {
    .press-slider__track {
      animation: none;
    }
  }
/* END_SECTION:press-slider */
/* START_SECTION:product-feature-highlights (INDEX:70) */
.pfh {
    background-color: #fcfcf9;
    padding: 0 0 50px;
    font-family: 'Figtree', sans-serif;
    color: #18321c;
  }

  @media (min-width: 991px) {
    .pfh {
      padding: 0 40px 100px;
    }
  }

  .pfh__card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }

  @media (min-width: 991px) {
    .pfh__card {
      flex-direction: row;
      padding: 40px 60px;
    }
  }

  .pfh__branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    order: 2;
    margin-top: 30px;
  }

  @media (min-width: 991px) {
    .pfh__branding {
      align-items: flex-start;
      text-align: left;
      width: 167px;
      margin-right: 33px;
      margin-top: 0;
      order: 0;
      flex-shrink: 0;
    }
  }

  .pfh__heading {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
    color: #18321c;
  }

  @media (min-width: 991px) {
    .pfh__heading {
      font-size: 32px;
    }
  }

  .pfh__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    text-decoration: none;
    color: #18321c;
    transition: opacity 0.3s ease;
  }

  @media (min-width: 991px) {
    .pfh__rating {
      justify-content: flex-start;
    }
  }

  .pfh__rating:hover {
    opacity: 0.6;
  }

  .pfh__star {
    width: 28px;
    height: 28px;
    display: block;
  }

  .pfh__rating span {
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
    text-decoration: underline;
    padding-top: 3px;
  }

  .pfh__branding .dev-btn {
    margin-top: 25px;
    width: 258px;
  }

  @media (min-width: 991px) {
    .pfh__branding .dev-btn {
      margin-top: 20px;
      width: 167px;
    }
  }

  .pfh__image {
    position: relative;
    width: calc(100% - 32px);
    padding-top: min(calc(75% - 24px), 375px);
    max-width: 500px;
    order: 1;
  }

  @media (min-width: 991px) {
    .pfh__image {
      width: calc(100% - 500px);
      max-width: none;
      padding-top: calc(75% - 375px);
      order: 0;
    }
  }

  .pfh__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .pfh__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    text-align: center;
    margin: 30px auto 0;
    order: 3;
  }

  @media (min-width: 991px) {
    .pfh__items {
      width: 290px;
      margin: 0 0 0 10px;
      text-align: left;
      order: 0;
      flex-shrink: 0;
    }
  }

  .pfh__item {
    cursor: pointer;
  }

  .pfh__item-heading {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.96px;
    color: rgba(14, 43, 19, 0.26);
    transition: color 0.3s ease-in-out;
  }

  @media (min-width: 991px) {
    .pfh__item-heading {
      font-size: 32px;
    }
  }

  .pfh__item.is-highlighted .pfh__item-heading {
    color: #0e2b13;
  }

  .pfh__item-content {
    display: none;
    margin-top: 10px;
    font-size: 15px;
    line-height: 125%;
    font-weight: 400;
    color: #000000;
  }

  @media (min-width: 991px) {
    .pfh__item-content {
      font-size: 16px;
    }
  }

  .pfh__item.is-highlighted .pfh__item-content {
    display: block;
  }
/* END_SECTION:product-feature-highlights */
/* START_SNIPPET:product-media-gallery-content-styles (INDEX:238) */
media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: none;
  }

  media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
    /* Needed for safari to stretch to full grid height */
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .media-gallery--two-column .media-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Display grid view as a carousel on mobile, grid on desktop */
    media-gallery:is(.media-gallery--grid) slideshow-component {
      display: none;
    }

    media-gallery:where(.media-gallery--grid) .media-gallery__grid {
      display: grid;
    }
  }

  .product-media-container__zoom-button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--layer-flat);
    cursor: zoom-in;
    background-color: transparent;

    &:hover {
      background-color: transparent;
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }
/* END_SNIPPET:product-media-gallery-content-styles */
/* START_SNIPPET:quick-add-modal-styles (INDEX:242) */
#quick-add-dialog {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal {
      width: var(--quick-add-modal-width);
      height: var(--quick-add-modal-height);
      max-width: none;
    }
  }

  .quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 749px) {
      position: fixed;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
      overflow: clip;
      height: fit-content;
    }
  }

  .quick-add-modal[open] {
    @media screen and (max-width: 750px) {
      border-top-left-radius: var(--style-border-radius-popover);
      border-top-right-radius: var(--style-border-radius-popover);
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
    overflow: visible;
    transform-origin: center;
  }

  .quick-add-modal__close:active {
    transform: scale(0.99) translateY(1px);
  }

  .quick-add-modal__close {
    &:focus-visible {
      outline: none;
    }

    &:focus-visible::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: calc(var(--style-border-radius-popover) - var(--margin-2xs));
      outline: var(--focus-outline-width) solid currentColor;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    flex-grow: 1;

    @media screen and (max-width: 749px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media > *,
        /* Carousel */
      .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 749px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    position: relative;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 749px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      max-height: 100%;
      height: 100%;
    }
  }

  @property --quick-add-modal-mask-start {
    syntax: '<length>';
    initial-value: 0px;
    inherits: false;
  }

  @property --quick-add-modal-mask-end {
    syntax: '<length>';
    initial-value: 0px;
    inherits: true;
  }

  @keyframes detect-scroll {
    from,
    to {
      --can-scroll: ;
    }
  }

  @supports (animation-timeline: scroll(self)) {
    dialog[open] .quick-add-modal__content .product-details {
      mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--quick-add-modal-mask-start), #000 100%);
      animation: 0.3s var(--animation-timing-fade-in) 0.1s both fadeSlideIn, scrollStart 1s linear both,
        scrollEnd 1s linear both, detect-scroll 1ms linear none;
      animation-timeline: auto, scroll(self), scroll(self), scroll(self);
      animation-range: normal, 0px 48px, calc(100% - 48px) 100%, 0% 100%;
    }
  }

  @keyframes scrollStart {
    from {
      --quick-add-modal-mask-start: 0px;
    }
    to {
      --quick-add-modal-mask-start: 48px;
    }
  }

  @keyframes scrollEnd {
    from {
      --quick-add-modal-mask-end: 0px;
    }
    to {
      --quick-add-modal-mask-end: 48px;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    flex-grow: 1;
    width: auto;
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }
  .quick-add-modal__content .product-details :is(.buy-buttons-block) {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding-bottom: var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) {
    position: static;
    padding-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) > product-form-component {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form)::before {
    display: none;
  }

  .quick-add-modal__content .product-details .buy-buttons-block__bar {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-block: var(--gap-md) var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  @supports (animation-timeline: scroll(self)) {
    .quick-add-modal__content .product-details :is(.buy-buttons-block)::before,
    .quick-add-modal__content .product-details .buy-buttons-block__bar::before {
      --mask-if-scroll: var(--can-scroll) var(--quick-add-modal-mask-end);
      --mask-if-no-scroll: 48px;
      --quick-add-modal-mask-end-progressive-enhanced: var(--mask-if-scroll, var(--mask-if-no-scroll));
      height: calc(var(--gap-2xs) + 48px);
    }
  }

  .quick-add-modal__content .product-details .variant-picker {
    flex: 0 0 auto;

    padding-block: min(var(--gap-2xl), var(--gap));
    margin-block-end: calc(var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    margin-block-end: 12px;

    /* Prevent overlap between title and close button */
    padding-inline-end: calc(var(--padding-2xl) + calc(var(--minimum-touch-target) / 2));
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .product-details product-price {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price.text-block--align-center {
    margin-inline: 0;
  }

  .quick-add-modal__content .product-details product-price.text-center {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price > * {
    text-align: left;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: 0;
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding-block: var(--padding-3xl) 0;
  }

  .quick-add-modal__content :where(.product-details > .group-block > .group-block-content > *) {
    padding-inline: var(--padding-3xl);
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      width: var(--quick-add-modal-gallery-width);
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media :is(slideshow-controls, slideshow-controls[thumbnails]) {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal-styles */
/* START_SNIPPET:resource-card (INDEX:246) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }

    .volume-pricing-note {
      display: block;
      margin-top: var(--padding-3xs);
      font-family: var(--font-body--family);
      font-weight: normal;
      font-size: min(0.85em, var(--font-paragraph--size));
      line-height: normal;
      letter-spacing: normal;
      text-transform: none;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */
/* START_SNIPPET:search-modal (INDEX:251) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }

  predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  input.search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

    &:hover {
      color: var(--color-foreground);
    }

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */
/* START_SNIPPET:skip-to-content-link (INDEX:255) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */
