/** Shopify CDN: Minification failed

Line 38:8 Expected identifier but found whitespace
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"
Line 73:8 Expected identifier but found whitespace
Line 73:10 Unexpected "{"
Line 73:19 Expected ":"
Line 148:8 Expected identifier but found whitespace
Line 148:10 Unexpected "{"
Line 148:19 Expected ":"
Line 180:8 Expected identifier but found whitespace
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:header (INDEX:20) */
.header-nav ul li a {
  font-weight: 400;
  position: relative;
}

.header-nav ul li a::after {
  content: attr(title);
  font-weight: 600;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  display: block;
}

.header-nav ul li a:hover {
  color: {{ section.settings.nav_font_hover_color }};
  font-weight: 600;
}

.header-nav {
  position: relative;
  z-index: 20;
}

.header-nav .submenu {
  display: none;
  position: absolute;
  padding: 0.5rem 1rem;
  margin-top: 0;
  list-style: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  transition-delay: 0.25s;
}

.header-nav .submenu li {
  margin: 0.5rem 0;
}

.header-nav .submenu li a {
  display: block;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}

.header-nav .submenu li a:hover {
  color: {{ section.settings.submenu_font_hover_color }};
}

.header-nav .nav-item {
  position: relative;
}

/* Mega submenu: nested items in a content-width panel */
.custom-header {
  position: relative;
  z-index: 20;
}

.header-nav .nav-item--has-mega {
  position: relative;
}

/* Invisible bridge so hover is not lost between nav link and panel */
.header-nav .nav-item--has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -0.75rem;
  right: -0.75rem;
  height: 14px;
  z-index: 31;
}

.header-nav .submenu--mega {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: min(46rem, calc(100vw - 4rem));
  box-sizing: border-box;
  padding: 1.25rem 2rem;
  margin: 0;
  grid-template-columns: repeat(3, minmax(9.5rem, max-content));
  column-gap: 2.5rem;
  row-gap: 1.35rem;
  border-radius: 0 0 6px 6px;
}

.header-nav .submenu--mega::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.header-nav .submenu--mega .submenu__item {
  margin: 0;
  list-style: none;
  padding: 0;
  max-width: 13rem;
  break-inside: avoid;
}

.header-nav .submenu--mega .submenu__link {
  display: block;
  padding: 0;
  white-space: normal;
  line-height: 1.35;
}

.header-nav .submenu--mega .submenu__link--parent {
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-nav .submenu--mega .submenu__link--parent:hover {
  color: {{ section.settings.submenu_font_hover_color }};
}

.header-nav .submenu__grandchildren {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0;
  columns: 2;
  column-gap: 1.35rem;
}

.header-nav .submenu__grandchildren li {
  margin: 0;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.header-nav .submenu__grandchildren a {
  display: block;
  padding: 0.2rem 0;
  white-space: normal;
  line-height: 1.4;
  text-decoration: none;
}

/* Use 3 columns for grandchildren when a group has many links */
.header-nav .submenu__item--has-children:has(.submenu__grandchildren li:nth-child(6)) .submenu__grandchildren {
  columns: 3;
}

.header-nav .submenu__grandchildren a:hover {
  color: {{ section.settings.submenu_font_hover_color }};
}

/* Keep submenu open on hover (with open delay + slower close) */
.header-nav .nav-item:hover > .submenu,
.header-nav .nav-item:focus-within > .submenu,
.header-nav .submenu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: {{ section.settings.submenu_open_delay }}ms;
}

.header-nav .nav-item--has-mega:hover > .submenu--mega,
.header-nav .nav-item--has-mega:focus-within > .submenu--mega,
.header-nav .submenu--mega:hover {
  display: grid;
}

/* Mobile hamburger + off-canvas menu */
.header-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #006465;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.header-mobile-toggle__icon--close {
  display: none;
}

.header-mobile-toggle[aria-expanded='true'] .header-mobile-toggle__icon--open {
  display: none;
}

.header-mobile-toggle[aria-expanded='true'] .header-mobile-toggle__icon--close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(20rem, 88vw);
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.mobile-menu__title {
  font-size: 1.125rem;
  font-weight: 600;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #006465;
  cursor: pointer;
}

.mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
}

.mobile-menu__list,
.mobile-menu__sublist,
.mobile-menu__grandlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__link,
.mobile-menu__summary {
  display: block;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  line-height: 1.35;
}

.mobile-menu__summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

.mobile-menu__summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  opacity: 0.6;
}

.mobile-menu__details[open] > .mobile-menu__summary::after {
  content: '−';
}

.mobile-menu__sublist {
  padding: 0 0 0.25rem 0.75rem;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
  margin-left: 1.25rem;
}

.mobile-menu__grandlist {
  padding: 0.25rem 0 0.5rem 0.75rem;
}

.mobile-menu__grandlist .mobile-menu__link {
  padding: 0.5rem 1rem;
  font-weight: 400;
}

.mobile-menu__link:hover,
.mobile-menu__summary:hover {
  color: {{ section.settings.nav_font_hover_color }} !important;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  .header-mobile-toggle,
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
  }

  .shopify-section-group-header-group {
    z-index: 0 !important;
  }

  .header-mobile-toggle {
    display: flex;
    order: 1;
  }

  .header-logo {
    order: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
  }

  .header-logo a {
    display: block;
  }

  .header-logo img {
    max-height: 48px;
    width: auto;
    margin: 0 auto;
  }

  .header-nav {
    display: none !important;
  }

  .header-icons {
    order: 3;
    margin-top: 0;
    flex-shrink: 0;
  }
}
/* END_SECTION:header */

/* START_SECTION:middle-announcement (INDEX:43) */
.middle-announcement-bar {
  width: 100%;
  overflow: hidden;
  padding: 6px 0; /* thin bar */
  box-sizing: border-box;
  display: flex;
  align-items: center; /* center marquee vertically */
}

.middle-announcement-bar .announcement-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.middle-announcement-bar .marquee {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.middle-announcement-bar .marquee__inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee var(--marquee-duration, 20s) linear infinite;
}

.middle-announcement-bar .announcement-pair {
  display: inline-flex;
  align-items: center; /* perfect vertical center for icon + text */
  line-height: 1;
  white-space: nowrap;
}

.middle-announcement-bar .brand-icon-inline {
  display: block;
  flex-shrink: 0;
  height: var(--icon-size, 32px);
  width: auto;
  margin: 0; /* will be dynamically adjusted by JS */
}

.middle-announcement-bar .phrase-wrapper {
  display: inline-flex;
  align-items: baseline; /* fine vs bold text aligned */
  gap: var(--phrase-gap, 4px);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-width, 1000px))); }
}

@media screen and (max-width: 768px) {
  .middle-announcement-bar .announcement-pair {
    font-size: 14px;
  }
}
/* END_SECTION:middle-announcement */