/** Shopify CDN: Minification failed

Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 21:8 Expected identifier but found whitespace
Line 21:10 Unexpected "{"
Line 21:19 Expected ":"
Line 39:8 Expected identifier but found whitespace
Line 39:10 Unexpected "{"
Line 39:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:2) */
.announcement-bar {
  background-color: {{ section.settings.color_bg }};
  color: {{ section.settings.color_text }};
  text-align: center;
  padding: 10px 16px;
  position: relative;
  z-index: 101;
}
.announcement-bar__content {
  max-width: 1200px;
  margin: 0 auto;
}
.announcement-bar__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
.announcement-bar__link {
  font-size: 14px;
  line-height: 1.4;
  color: {{ section.settings.color_text }};
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-bar__link:hover {
  opacity: 0.85;
}
/* END_SECTION:announcement-bar */

/* START_SECTION:dynacart--go_cart (INDEX:5) */
.sa-hidden { display: none !important; }

/* ── Overlay ────────────────────────────────────────────── */
.sa-cart-drawer__overlay {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 300ms ease;
}
.sa-cart-drawer__overlay--open { opacity: 1; pointer-events: auto; }

/* ── Drawer ─────────────────────────────────────────────── */
.sa-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: 50;
  width: 420px; max-width: 100vw;
  background: #fff;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.sa-cart-drawer--open { transform: translateX(0); }
body.sa-cart-body--open { overflow: hidden; }

/* ── Inner ──────────────────────────────────────────────── */
.sa-cart-drawer__inner {
  display: flex; flex-direction: column;
  height: 100%; overflow: hidden;
}

/* ── Header ─────────────────────────────────────────────── */
.sa-cart-drawer__header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: #f0ffe2;
  border-bottom: 1px solid #bdd1aa;
  flex-shrink: 0;
}
.sa-cart-drawer__title {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 600; margin: 0;
  flex: 1;
}
.sa-cart-drawer__title-icon { height: 28px; width: auto; }
.sa-cart-drawer__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: #51af62; color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 10px;
}
.sa-cart-drawer__count:empty { display: none; }
.sa-cart-drawer__close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: transparent; border: none; cursor: pointer;
  color: inherit; flex-shrink: 0;
  transition: background 150ms;
}
.sa-cart-drawer__close:hover { background: rgba(0,0,0,0.07); }

/* ── Shipping bar ───────────────────────────────────────── */
.sa-cart-drawer__shipping-bar {
  padding: 12px 20px 10px;
  background: #f6f6f6;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.sa-cart-drawer__shipping-bar__track {
  height: 6px; border-radius: 3px;
  background: #ddd; overflow: hidden;
  margin-bottom: 6px;
}
.sa-cart-drawer__shipping-bar__fill {
  height: 100%; border-radius: 3px;
  background: #51af62;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}
.sa-cart-drawer__shipping-bar__fill--done {
  background: linear-gradient(90deg, #51af62, #a5dc69);
}
.sa-cart-drawer__shipping-bar__message {
  font-size: 12px; margin: 0; color: #555;
  text-align: center;
}
.sa-cart-drawer__shipping-bar__message strong { color: #327a3e; }

/* ── Body ───────────────────────────────────────────────── */
.sa-cart-drawer__body {
  flex: 1; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px;
  background: #f9f9f9;
}

/* ── Empty state ────────────────────────────────────────── */
.sa-cart-drawer__empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  padding: 48px 20px;
  text-align: center; color: #888;
}
.sa-cart-drawer__empty p { margin: 0; font-size: 15px; }

/* ── Line item ──────────────────────────────────────────── */
.sa-cart-item {
  display: flex; gap: 12px;
  background: #fff; border-radius: 10px;
  padding: 12px; margin-bottom: 10px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sa-cart-item:last-child { margin-bottom: 0; }
.sa-cart-item__img-wrap {
  flex-shrink: 0; width: 72px; height: 72px;
  border-radius: 8px; overflow: hidden;
  background: #f0f0f0;
  display: block;
}
.sa-cart-item__img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.sa-cart-item__info { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sa-cart-item__title {
  font-size: 13px; font-weight: 600; color: #111;
  text-decoration: none; line-height: 1.3;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  display: block;
}
.sa-cart-item__title:hover { color: #51af62; }
.sa-cart-item__variant { font-size: 11px; color: #888; margin: 0; }
.sa-cart-item__discount { font-size: 11px; color: #51af62; margin: 0; }
.sa-cart-item__footer {
  display: flex; align-items: center; gap: 8px; margin-top: auto;
}
.sa-cart-item__qty {
  display: flex; align-items: center;
  background: #f0ffe2; border-radius: 6px;
  border: 1px solid #bdd1aa;
  overflow: hidden;
}
.sa-cart-item__qty-btn {
  width: 28px; height: 28px;
  background: transparent; border: none; cursor: pointer;
  font-size: 16px; color: #327a3e;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms;
}
.sa-cart-item__qty-btn:hover { background: rgba(81,175,98,0.15); }
.sa-cart-item__qty-num {
  font-size: 13px; font-weight: 600; color: #111;
  min-width: 24px; text-align: center;
}
.sa-cart-item__price { margin-left: auto; text-align: right; }
.sa-cart-item__price--original {
  font-size: 11px; color: #aaa; text-decoration: line-through; display: block;
}
.sa-cart-item__price--final { font-size: 13px; font-weight: 700; color: #111; }
.sa-cart-item__remove {
  background: transparent; border: none; cursor: pointer;
  color: #ccc; padding: 2px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; flex-shrink: 0;
  transition: color 150ms, background 150ms;
}
.sa-cart-item__remove:hover { color: #e53; background: #fff0ee; }

/* ── Footer ─────────────────────────────────────────────── */
.sa-cart-drawer__footer {
  flex-shrink: 0; padding: 16px 20px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  display: flex; flex-direction: column; gap: 10px;
}
.sa-cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: center;
}
.sa-cart-drawer__subtotal__label { font-size: 14px; color: #555; }
.sa-cart-drawer__subtotal__price { font-size: 18px; font-weight: 700; color: #111; }
.sa-cart-drawer__tax-note { font-size: 11px; color: #999; margin: 0; text-align: center; }
.sa-cart-drawer__checkout {
  display: block; width: 100%; text-align: center;
  padding: 13px; font-size: 14px;
}
.sa-cart-drawer__view-cart {
  display: block; text-align: center; font-size: 12px;
  color: #888; text-decoration: underline;
}
.sa-cart-drawer__view-cart:hover { color: #51af62; }
/* END_SECTION:dynacart--go_cart */

/* START_SECTION:header (INDEX:7) */
/* Push slide-out drawers below the navbar */
.nav_menu_stage { top: 64px !important; }

.sa-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 16px;
}

/* Three columns */
.sa-navbar__col { display: flex; align-items: center; }
.sa-navbar__col--left  { flex: 1; }
.sa-navbar__col--centre { flex: 2; justify-content: center; }
.sa-navbar__col--right  { flex: 1; justify-content: flex-end; gap: 2px; }

/* Logo */
.sa-navbar__logo { display: flex; align-items: center; text-decoration: none; color: inherit; }
.sa-navbar__logo__img { height: 48px; width: auto; max-width: 200px; display: block; object-fit: contain; }
.sa-navbar__logo__text { font-size: 18px; font-weight: 600; }
body.home-page .sa-navbar__logo__img { height: 48px !important; width: auto !important; max-width: 200px !important; }

/* Centre nav */
.sa-navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sa-navbar__item {
  position: relative;
}
.sa-navbar__link {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s;
}
/* Use the live theme's menu palette: dark green text on a pale green tint
   for hover/active states. Default stays inherited (dark) — never the
   theme/Bootstrap blue. Specificity beats the global `a:hover` rule. */
.sa-navbar__link:link,
.sa-navbar__link:visited { color: inherit; }
.sa-navbar__link:hover,
.sa-navbar__link:focus,
.sa-navbar__link--active {
  color: #327a3e;
  background: #ecfff0;
}
.sa-navbar__item--has-dropdown > .sa-navbar__link {
  padding-right: 26px;
  position: relative;
}
.sa-navbar__item--has-dropdown > .sa-navbar__link::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: .65;
}
.sa-navbar__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 120;
  min-width: 190px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.sa-navbar__dropdown--nested {
  top: -8px;
  left: calc(100% + 8px);
}
.sa-navbar__item:hover > .sa-navbar__dropdown,
.sa-navbar__item:focus-within > .sa-navbar__dropdown,
.sa-navbar__item--dropdown-open > .sa-navbar__dropdown,
.sa-navbar__dropdown li:hover > .sa-navbar__dropdown,
.sa-navbar__dropdown li:focus-within > .sa-navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sa-navbar__dropdown li {
  position: relative;
}
.sa-navbar__dropdown-link {
  display: block;
  padding: 9px 10px;
  color: inherit;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}
.sa-navbar__dropdown-link:link,
.sa-navbar__dropdown-link:visited { color: inherit; }
.sa-navbar__dropdown-link:hover,
.sa-navbar__dropdown-link:focus,
.sa-navbar__dropdown-link--active {
  color: #327a3e;
  background: #ecfff0;
}

/* Icon buttons */
.sa-navbar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.sa-navbar__icon:hover { background: rgba(0,0,0,0.06); }
.sa-navbar__icon svg { display: block; pointer-events: none; }

/* Cart badge */
.sa-navbar__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 8px;
  background: #51af62;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}
.sa-navbar__badge:empty { display: none; }

/* Rewards icon */
.sa-navbar__rewards-icon { width: 22px; height: 22px; object-fit: contain; display: block; }

/* Navbar item icons */
.sa-navbar__col--right .navbar__item > a {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
}
.navbar__item__icon {
  position: absolute;
  top: 0; left: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  pointer-events: none;
}
/* The "--reversed" icons are white (built for a dark header). This header is
   white, so the old hover swap faded the dark icon out and a white one in —
   making the icons vanish on hover. Keep the dark icon visible and add a
   subtle rounded highlight on hover instead, matching the nav links. */
.navbar__item__icon--hover { display: none; }
.sa-navbar__col--right .navbar__item > a {
  border-radius: 8px;
  transition: background 0.15s;
}
.sa-navbar__col--right .navbar__item:hover > a { background: #ecfff0; }
.sa-navbar__col--right .navbar_item__label { display: none !important; }

/* Mobile: hide nav links, show hamburger */
@media (min-width: 768px) {
  .sa-navbar__icon--menu { display: none; }
}
@media (max-width: 767px) {
  .sa-navbar__col--centre { display: none; }
  /* Mobile bar = Logo + Hamburger only. Search lives inside the drawer
     (embedded form + utility row), so the standalone icon is redundant.
     Cart, rewards and account also live in the drawer. */
  #navbar_item--search,
  #navbar_item--cart,
  #navbar_item--rewards,
  #navbar_item--user { display: none; }
}

/* ===== Mobile drawer additions (embedded search + utility icon row) ===== */
/* Force footer to stack the utility row above the social row (override any inherited flex) */
.nav_global__footer {
  display: block !important;
  padding: 0 !important;
}
.nav_global__footer > ul {
  width: 100% !important;
}

.nav_global__search {
  padding: 0 16px 12px;
}
.nav_global__search__form {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 8px 12px;
  gap: 8px;
}
.nav_global__search__form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  padding: 4px 0;
}
.nav_global__search__form button {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav_global__search__form button img {
  width: 22px;
  height: 22px;
}

.nav_global__utility {
  list-style: none;
  margin: 0 0 16px;
  padding: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav_global__utility li { margin: 0; }
.nav_global__utility a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
}
.nav_global__utility a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav_global__utility .nav_global__utility__count {
  position: absolute;
  top: -2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #51af62;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
}
.nav_global__utility .nav_global__utility__count:empty { display: none; }

/* Social row: horizontal, sits below utility row */
.nav_global__social {
  list-style: none !important;
  margin: 0 !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-around !important;
  align-items: center !important;
  gap: 12px;
}
.nav_global__social li { margin: 0 !important; flex: 0 0 auto; }

/* ===== Mobile menu — dropdown items inside an expanded section =====
   The collapser body (`.nav_global__menus__section_links`) had `padding: 12px 0`
   with no horizontal padding, so child links hugged the left edge. The links
   also inherited the theme/Bootstrap blue. Fix both: indent past the parent's
   32px padding for a nested feel, ensure a proper tap target, and force
   `color: inherit` with higher specificity than the global `a:hover` rule. */
#nav_global .nav_global__product__type__link {
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav_global .nav_global__product__type__link > a {
  display: block;
  padding: 12px 24px 12px 48px;
  margin: 2px 12px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.15s;
}
#nav_global .nav_global__product__type__link > a,
#nav_global .nav_global__product__type__link > a:link,
#nav_global .nav_global__product__type__link > a:visited { color: inherit; }
#nav_global .nav_global__product__type__link > a:hover,
#nav_global .nav_global__product__type__link > a:focus {
  color: #327a3e;
  background-color: #ecfff0;
}

/* Nested (grandchild) submenu inside an expanded item */
#nav_global .nav_global__menus__section_links--nested {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
}
#nav_global .nav_global__menus__section_links--nested li { margin: 0; }
#nav_global .nav_global__menus__section_links--nested li > a {
  display: block;
  padding: 10px 24px 10px 64px;
  margin: 2px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.15s;
}
#nav_global .nav_global__menus__section_links--nested li > a,
#nav_global .nav_global__menus__section_links--nested li > a:link,
#nav_global .nav_global__menus__section_links--nested li > a:visited { color: inherit; }
#nav_global .nav_global__menus__section_links--nested li > a:hover,
#nav_global .nav_global__menus__section_links--nested li > a:focus {
  color: #327a3e;
  background-color: #ecfff0;
}
/* END_SECTION:header */

/* START_SECTION:product--product_recommendations (INDEX:37) */
.product__related {
  max-width: 1400px;
  margin: 48px auto;
  padding: 0 16px;
}
.product__related__title {
  text-align: center;
  margin-bottom: 24px;
}
.product__related__title h2 {
  margin: 0;
  font-size: 22px;
}
@media (min-width: 768px) {
  .product__related { margin: 64px auto; padding: 0 32px; }
  .product__related__title h2 { font-size: 28px; }
}

/* Target both wrappers — the section's inline JS replaces
   `.product__related__products`'s innerHTML with the unwrapped <ul> after
   fetching recommendations, so the `.product-recommendations` div is gone
   post-JS. Selectors below cover both pre-fetch and post-fetch structure. */
.product__related__products ul,
.product-recommendations ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product__related__products ul li,
.product-recommendations ul li { margin: 0; min-width: 0; }
.product__related__products ul li img,
.product-recommendations ul li img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 600px) {
  .product__related__products ul,
  .product-recommendations ul { gap: 20px; }
}
@media (min-width: 1024px) {
  .product__related__products ul,
  .product-recommendations ul { gap: 32px; }
}
/* END_SECTION:product--product_recommendations */

/* START_SECTION:section--footer (INDEX:39) */
#shopify-section-section--footer {
    z-index:10;
}

.section-footer {
}

.footer {
   box-shadow: 0 1px 2px rgba(0,0,0,0.05) inset;
}

.footer-social img {
   width: 45px;
   height: 45px;
   filter: saturate(.3) brightness(1.7) hue-rotate(112deg);
}

.footer .footer-nav-title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer .nav-list a {
    color: #000;
    font-size: 16px;
    text-decoration:none;
}

.footer .nav-list a:hover {
   color: #528f30;
}

@media (max-width:767px) {
  .footer {padding:30px 0 !important;}
  .footer .footer-nav-title {font-size: 25px;}
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #888;
}

.footer-bottom__copy {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  list-style: none;
}

.footer-bottom__legal li {
  margin: 0;
}

.footer-bottom__legal a {
  color: #888;
  text-decoration: underline;
  font-size: 13px;
}

.footer-bottom__legal a:hover {
  color: #528f30;
}
/* END_SECTION:section--footer */