/** Shopify CDN: Minification failed

Line 633:11 Unexpected "{"
Line 633:20 Expected ":"
Line 638:11 Unexpected "{"
Line 638:20 Expected ":"
Line 646:11 Unexpected "{"
Line 646:20 Expected ":"
Line 649:11 Unexpected "{"
Line 649:20 Expected ":"
Line 657:11 Unexpected "{"
Line 657:20 Expected ":"
... and 16 more hidden warnings

**/
/* EMERGENCY FIX - Force hide stuck overlay */
.sidebar-overlay {
  display: none !important;
  pointer-events: none !important;
}

/* Only show overlay when sidebar is actually open */
#global-sidebar-drawer.open ~ .sidebar-overlay {
  display: block !important;
  pointer-events: auto !important;
}


/* ===== HERO LAYOUT STYLES ===== */

.sidebar-hero-wrapper {
  max-width: 1440px;      /* or any value, as you wish */
  margin: 0 auto;         /* center the main content block */
  padding-left: 32px;     /* space on the left */
  padding-right: 32px;    /* space on the right */
  width: 100%;
}

.sidebar-grid {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 20px;
  align-items: stretch;
  min-height: 480px;
  width: 100%;
}

.sidebar-nav {
  background: linear-gradient(180deg, #F4F0EE, #DADADA);
  padding: 20px 10px 10px 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  max-width: 220px;
  max-height: 660px;
  overflow-y: auto;
}

.sidebar-heading {
  font-family: 'Gabarito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #212322;
  padding: 0 12px;
  margin-bottom: 10px;
}

.sidebar-tab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px 16px 16px;
  overflow-y: auto;
  max-height: 60vh;
}

.sidebar-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #6BDACD;
  color: #ffffff;
  border: none;
  font-family: 'Acumin', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sidebar-tab:hover {
  background-color: #5AB8AC;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sidebar-tab[aria-current="page"] {
  background-color: #538F71;
  color: #ffffff;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px #3d6b57;
}


.sidebar-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.main-hero-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-top-banner .hero-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 240px;
  display: block;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

.hero-promo-slider {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.promo-tile {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
}

.promo-tile img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.promo-label {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  margin: 8px 0;
  padding: 0 8px;
}

.horizontal-banner-row {
  display: flex;
  gap: 10px;
  height: 130px;
}

.banner-row-tile.wide {
  flex: 1;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.banner-row-tile.wide img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.right-banner-stack {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Replace space-between with explicit gap */
  height: auto; /* Allow it to shrink to content height */
}
.side-banner {
  flex: 1 1 0;
  display: flex;
  align-items: stretch;
}
.side-banner img {
  width: 100%;
  height: auto;             /* prevent vertical stretching */
  max-height: 200px;        /* optional, limits banner height */
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18),
              0 2px 8px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s;
  background: #fff;
  display: block;
}


/* ===== FLOATING SIDEBAR DRAWER STYLES ===== */

/* Enhanced Bright Sidebar Drawer */
#global-sidebar-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  z-index: 2147483646;
  background: linear-gradient(180deg, #F4F0EE, #DADADA);
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.08);
  border-right: 1px solid #E0E0E0;
  transition: left 0.35s cubic-bezier(.75,0,.25,1);
  overflow-y: auto;
  padding: 24px 0 24px 0;
  box-shadow: 2px 0 20px rgba(0,0,0,0.2);
  border-radius: 0 16px 16px 0;
  display: block;
}

#global-sidebar-drawer.open {
  left: 0;
  box-shadow: 2px 0 25px rgba(0,0,0,0.3);
  border-left: 4px solid #65a30d; /* Darker green accent */
}

/* Brighter Sidebar Heading */
.sidebar-heading {
  font-family: 'Gabarito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #212322;
  padding: 0 12px;
  margin-bottom: 10px;
}


/* Enhanced Category Links */
.sidebar-tab-list {
  gap: 4px;
  padding: 0 16px 16px 16px;
}

.sidebar-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #6BDACD;
  color: #ffffff;
  border: none;
  font-family: 'Acumin', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sidebar-tab:hover {
  background-color: #5AB8AC;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sidebar-tab[aria-current="page"] {
  background-color: #538F71;
  color: #ffffff;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px #3d6b57;
}



.sidebar-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  opacity: 0.85;
}


/* Enhanced Close Button */
.drawer-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 22px;
  font-weight: bold;
  background: #FFE874;
  color: #212322;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  z-index: 2147483647;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}
.drawer-close-btn:hover {
  background: #ffffff;
  color: #dc2626;
  transform: scale(1.1);
}


/* Force three-line button visible on all desktop pages */
.sidebar-mobile-toggle {
  display: block !important;
  position: fixed !important;
  top: 20px !important;
  left: 20px !important;
  z-index: 2147483647 !important;
  background: #FFE874 !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  font-size: 20px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  border: none !important;
  color: #212322 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05) !important;
}

/* Hide ONLY on homepage using a more specific selector */
body[class*="template-index"] .sidebar-mobile-toggle.show-on-mobile-only {
  display: none !important;
}

/* Ensure sidebar drawer is available on desktop */
@media (min-width: 992px) {
  #global-sidebar-drawer {
    display: block !important;
  }
  
  .sidebar-overlay {
    display: none !important;
  }
  
  #global-sidebar-drawer.open ~ .sidebar-overlay {
    display: block !important;
  }
}


/* ===== RESPONSIVE STYLES ===== */

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 991px) {
  .show-on-mobile-only {
    display: block !important;
  }
  
  /* Keep wrappers visible but remove grid structure */
  .sidebar-hero-wrapper {
    display: block !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  .sidebar-grid {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  
  /* Hide only the desktop sidebar and right banners */
  .sidebar-nav.flyover, 
  .right-banner-stack {
    display: none !important;
  }
  
  /* Make hero content stack vertically on mobile */
  .main-hero-group {
    padding: 0 4vw !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    width: 100% !important;
  }
  
  /* Hero banner mobile styles */
  .hero-top-banner {
    display: block !important;
    width: 100% !important;
    margin-bottom: 18px;
  }
  
  .hero-top-banner .hero-img {
    height: 200px !important;
    border-radius: 12px !important;
    width: 100% !important;
    object-fit: cover;
  }
  
  /* Horizontal scrolling promo slider */
  .hero-promo-slider {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    justify-content: flex-start;
  }
  
  /* Horizontal scrolling bottom banner slider */
  .horizontal-banner-row {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    height: auto;
  }
  
  /* Hide scrollbars */
  .hero-promo-slider::-webkit-scrollbar, 
  .horizontal-banner-row::-webkit-scrollbar {
    display: none;
  }
  
  /* Mobile promo tile sizing */
  .promo-tile {
    flex: 0 0 75vw;
    max-width: 75vw;
    scroll-snap-align: start;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-right: 10px;
    white-space: normal;
  }
  
  /* Mobile bottom banner sizing */
  .banner-row-tile.wide {
    flex: 0 0 85vw;
    max-width: 85vw;
    scroll-snap-align: start;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-right: 10px;
    height: 120px;
  }
  
  .promo-tile img,
  .banner-row-tile.wide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  .promo-label {
    white-space: normal;
    padding: 8px;
    text-align: center;
    font-size: 12px;
  }
  
  #global-sidebar-drawer {
    max-height: 100vh;
  }
}

@media (min-width: 992px) {
  /* Show ☰ button on non-homepage desktop pages */
  .sidebar-mobile-toggle:not(.show-on-mobile-only) {
    display: block !important;
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 2147483647 !important;
  }
  
  /* Hide ☰ button ONLY on desktop homepage */
  .sidebar-mobile-toggle.show-on-mobile-only {
    display: none !important;
  }
  
  /* Ensure drawer is available but hidden by default */
  #global-sidebar-drawer {
    display: block;
    left: -280px; /* Start closed */
  }
  
  /* Force overlay hidden on desktop unless drawer is open */
  .sidebar-overlay {
    display: none !important;
  }
  
  #global-sidebar-drawer.open ~ .sidebar-overlay {
    display: block !important;
  }
}



/* ===== ACCESSIBILITY & INTERACTION FIXES ===== */

.sidebar-tab:active,
.sidebar-mobile-toggle:active {
  outline: none;
  box-shadow: none;
}

/* Force any potential header/overlay to stay below the toggle */
.site-header,
.header,
.announcement-bar,
.AnnouncementBar,
.shopify-section-group-header-group {
  z-index: 1000 !important;
}

/* Additional clickability fixes */
.sidebar-mobile-toggle {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* Smaller toggle button when sidebar is open */
.sidebar-mobile-toggle.active {
  font-size: 18px !important;
  padding: 6px 10px !important;
  top: 15px !important;
  left: 15px !important;
  background: rgba(240, 249, 180, 0.9) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease !important;
}

/* Smooth transition for size changes */
.sidebar-mobile-toggle {
  transition: all 0.3s ease !important;
}
/* Default toggle appearance (closed) */
.sidebar-mobile-toggle {
  background: #FFE874;          /* solid colour */
  color: #212322;
  transition: all .25s ease;
}

/* Active toggle ─ lighter & de-emphasised */
.sidebar-mobile-toggle.active {
  background: rgba(240,249,180,.35);  /* lighter fill */
  color: #666;                        /* softer icon */
  box-shadow: none;                   /* remove heavy shadow */
  transform: scale(.9);               /* optional size reduction */
}

/* Drawer gets stronger highlight when open */
#global-sidebar-drawer.open {
  box-shadow: 2px 0 22px rgba(0,0,0,.25);      /* deeper shadow */
  border-left: 4px solid #d6f278;              /* coloured accent */
}

.section-spacing {
  margin-top: 24px;   /* or your preferred space */
  margin-bottom: 24px;
}
/* === UNIVERSAL RESPONSIVE BANNER STYLES FOR HERO LAYOUT === */

.hero-top-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}
/* Promo tiles - wide and short */
.promo-tile img {
  width: 100%;
  height: 110px; /* or your promo tile desktop height */
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

/* Side banners - tall rectangles */

.banner-row-tile.wide img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
}

@media (max-width: 991px) {
  .hero-top-banner img { height: 140px; border-radius: 10px; }
  .promo-tile img, .side-banner img { height: 120px; border-radius: 10px; }
  .banner-row-tile.wide img { height: 120px; border-radius: 10px; }
}

.right-banner-stack .side-banner:last-child {
  margin-top: 20px; /* You can tweak this to 18px or 22px if needed for pixel-perfect match */
}

/* === Scoped styles for Sidebar Hero carousel & bottom banner === */
#why-hero-{{ section.id }} .why-carousel{
  position: relative;
  width: 100%;
}

#why-hero-{{ section.id }} .why-carousel__track{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px; /* space for snap */
}
#why-hero-{{ section.id }} .why-carousel__track::-webkit-scrollbar{ display:none; }

/* Each slide occupies full container width so only 1 is visible at a time */
#why-hero-{{ section.id }} .why-slide{
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 16px; /* visual gap between slides */
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
#why-hero-{{ section.id }} .why-slide:last-child{ margin-right: 0; }

#why-hero-{{ section.id }} .why-slide__img{
  display: block;
  width: 100%;
  height: auto;
}

/* Scroll hint pill */
#why-hero-{{ section.id }} .why-carousel__hint{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  user-select: none;
}
#why-hero-{{ section.id }} .why-carousel__hint.is-hidden{ display:none; }

/* Bottom banner: match top banner width */
#why-hero-{{ section.id }} .why-bottom-banner{
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
#why-hero-{{ section.id }} .why-bottom-banner__img{
  display: block;
  width: 100%;
  height: auto;
}

/* Mobile spacing tweaks */
@media (max-width: 749px){
  #why-hero-{{ section.id }} .why-slide{ margin-right: 12px; border-radius: 12px; }
  #why-hero-{{ section.id }} .why-bottom-banner{ border-radius: 12px; }
}

/* Space below the full-width bottom banner before next section */
#why-hero-{{ section.id }} .why-bottom-banner {
  margin-bottom: 40px; /* adjust this value as needed, 40px = standard spacing */
}

/* === ALIGN RIGHT BANNERS WITH MIDDLE CARD === */

/* Desktop only */
@media (min-width: 992px) {
  /* Push the right banner stack down so its top aligns with the promo carousel (Top 1% card) */
  .right-banner-stack {
    align-self: start;
    margin-top: 260px; /* adjust value based on hero banner height */
  }

  /* Optional fine-tuning for visual harmony */
  .right-banner-stack .side-banner img {
    border-radius: 14px;
  }
}
/* Drawer: change background + force pill text to black */
#global-sidebar-drawer {
  background: #F4F0EE !important;   /* alternate neutral bg */
}

/* Force text color on category pills in the drawer */
#global-sidebar-drawer .sidebar-tab,
#global-sidebar-drawer .sidebar-tab:hover,
#global-sidebar-drawer .sidebar-tab[aria-current="page"],
#global-sidebar-drawer .sidebar-tab * {
  color: #212322 !important;          /* WHY black */
  -webkit-text-fill-color: #212322 !important; /* iOS Safari */
}

/* (optional) keep icons visible */
#global-sidebar-drawer .sidebar-tab .sidebar-icon {
  filter: none; opacity: 1;
}
