/** Shopify CDN: Minification failed

Line 234:18 Expected identifier but found whitespace
Line 234:20 Unexpected "{"
Line 234:29 Expected ":"
Line 234:63 Expected ":"
Line 235:18 Expected identifier but found whitespace
Line 235:20 Unexpected "{"
Line 235:29 Expected ":"
Line 235:63 Expected ":"

**/


/* CSS from section stylesheet tags */
.site-nav {
  position: relative;
}

.nav-wrapper {
  display: flex;
  gap: 2rem;
  padding: 1rem;
}

.nav-column {
  flex: 1;
}

.nav-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: inherit;
}

.nav-link--highlighted {
  color: var(--highlight-color);
  font-weight: bold;
}

.new-badge {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8em;
  margin-left: 0.5rem;
}

.nav-promo-card img {
  max-height: 146px;
}

.nav-promo-card picture {
  display: block;
  max-height: 146px;
}

.nav-promo-card {
  position: relative;
  overflow: hidden;
  max-height: 146px;
}

.nav-promo-content h4 {
  margin: 0 0 0.5rem;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background: #000;
  color: #fff;
  border-radius: 4px;
  margin-top: 1rem;
}

/* Mobile menu styles */
@media (max-width: 1023px) {
  /* Define max z-index variable */
  :root {
    --z-index-max: 2147483647; /* Maximum possible z-index value */
  }

  .mobile-blocks-container > .block--nav-link:first-child {
    margin-top: 16px;
  }

  .mobile-blocks-container > .block--nav-link {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  
  .js-main-menu {
    display: none;
    transition: all 0.3s ease;
  }
  
  .js-main-menu.is-active {
    display: block;
    opacity: 1;
    z-index: var(--z-index-max);
  }
  
  .mobile-menu-view-wrapper {
    display: block;
    height: calc(100% - 60px); /* Account for search bar */
    overflow: hidden;
    position: relative;
    background-color: #f6f6f6;
  }
  
  .mobile-menu-view-wrapper > ul {
    transition: transform 0.3s ease;
    position: relative;
    left: 0;
  }

  .mobile-menu-view-wrapper > ul > .block--promo-card {
    background-color: #ffffff;
  }

  .mobile-menu-view-wrapper > ul > .block--nav-category + .block--promo-card {
    padding-top: 20px;
  }
  
  /* Mobile search bar styling */
  .mobile-search-bar {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 5;
  }
  
  .mobile-search-bar input {
    height: 40px;
    font-size: 10px;
    background-color: #fafafb;
  }
  
  /* Icon button styling */
  .mobile-search-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #373A36;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  }
  
  .mobile-search-bar a:active {
    opacity: 0.7;
  }
  
  /* Mobile toggle buttons */
  [data-mobile-toggle] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    position: relative;
  }
  
  .mobile-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile submenu styling - CONSOLIDATED SELECTORS */
  [data-mobile-submenu] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    z-index: var(--z-index-max);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    transform: translateX(100%); /* Start off-screen to the right */
  }
  
  [data-mobile-submenu].active {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transform: translateX(0); /* Slide in from the right */
  }
  
  .mobile-submenu-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #ebebeb;
    font-weight: 600;
    position: sticky;
    top: 0;
    background: white;
    z-index: var(--z-index-max);
    color: #000;
  }
  
  .mobile-submenu-content {
    background: white;
    color: #000;
  }
  
  /* Prevent body scrolling when mobile menu is active */
  body.mobile-menu-is-active {
    overflow: hidden;
  }
}

/* Dynamic nav spacing */
@media (min-width: 1024px) {
  .nav-dynamic-spacing {
    --min-spacing: {{ section.settings.min_spacing_desktop }}px;
    --max-spacing: {{ section.settings.max_spacing_desktop }}px;
    --spacing-scale: calc((100vw - 1024px) / (1440 - 1024));
    --current-spacing: calc(var(--min-spacing) + (var(--max-spacing) - var(--min-spacing)) * var(--spacing-scale));
    --clamped-spacing: clamp(var(--min-spacing), var(--current-spacing), var(--max-spacing));
  }

  .nav-dynamic-spacing > li {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-dynamic-spacing > li:not(:first-child) {
    margin-left: calc(var(--clamped-spacing) * 1px);
  }
}

/* Desktop dropdown styling */
@media (min-width: 1024px) {
  .desktop-dropdown {
    min-height: fit-content;
    height: auto;
  }
  
  .desktop-blocks-container {
    align-items: stretch;
  }
  
  .nav-promo-card {
    max-height: 146px;
  }
  
  .nav-promo-card img {
    width: auto;
    max-height: 146px;
  }
  
  .nav-promo-card picture {
    display: block;
    max-height: 146px;
  }
}

/* CSS from block stylesheet tags */
/* Desktop styling */
@media (min-width: 1024px) {
  .flex > .shopify-block:not([id*="promo_card"]) + .shopify-block[id*="promo_card"] {
    margin-left: 140px;
  }
}

/* Focus handling for keyboard navigation */
[data-nav-category] > div > button:focus {
  outline: 2px solid #0c2340;
  outline-offset: 4px;
  z-index: 10;
}

[data-nav-dropdown] a:focus,
[data-nav-dropdown] button:focus {
  outline: 2px solid #0c2340;
  outline-offset: 2px;
  text-decoration: underline;
  z-index: 10;
}

/* Mobile menu styling */
@media (max-width: 1023px) {
  /* Define max z-index variable if not already defined */
  :root {
    --z-index-max: 2147483647; /* Maximum possible z-index value */
  }

  [data-nav-category] {
    display: block;
    width: 100%;
  }
  
  [data-nav-category] > div > button {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
    justify-content: start;
  }
  
  .mobile-toggle-icon {
    transition: transform 0.3s ease;
    pointer-events: none;
    padding-left: 4px;
  }
  
  /* Mobile submenu styling */
  .mobile-submenu {
    position: absolute;
    top: 0;
    left: 0; /* Changed from 100% to 0 */
    width: 100%;
    height: 100%;
    background: white;
    transform: translateX(100%); /* Start offscreen to the right */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    z-index: var(--z-index-max);
    will-change: opacity, visibility, transform;
    display: block; /* Force display */
  }
  
  .mobile-submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Slide in to view */
    display: block; /* Force display when active */
  }
  
  .mobile-submenu-header {
    display: flex;
    align-items: center;
    padding: 16px 8px;
    border-bottom: 1px solid #ebebeb;
    font-weight: 600;
    position: sticky;
    top: 0;
    background: white;
    z-index: var(--z-index-max);
    color: #000;
  }
  
  .mobile-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    min-width: 24px;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    color: #000;
  }
  
  .mobile-submenu-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: #000;
  }
  
  .mobile-submenu-content {
    padding: 0;
    background: white;
    display: block;
    color: #000;
    min-height: 100px; /* Ensure minimum height */
  }
  
  .decoration-text {
    display: none;
  }
  
  .desktop-dropdown {
    display: none;
  }
  
  /* Make sure the button is clickable */
  [data-mobile-toggle] {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
  }
  
  /* Force mobile submenu to fill container */
  .mobile-blocks-container {
    min-height: 100px;
    padding-bottom: 50px;
    background: white;
    display: block;
  }

  /* Add specific styling for nav columns in mobile view */
  .mobile-blocks-container .nav-column {
    border-bottom: 1px solid #f5f5f5;
    padding: 0;
    width: 100%;
    display: block;
  }

  .mobile-blocks-container .nav-column-heading {
    font-size: 18px;
    padding: 16px 20px 8px 32px;
    display: flex;
    background: white;
  }

  .mobile-blocks-container .nav-column-links {
    padding: 0 20px 15px 20px;
    background: white;
  }

  .mobile-blocks-container .nav-link-item {
    display: block;
    padding: 2px 0;
    padding-left: 32px;
    background: white;
  }

  /* Important fix for mobile: ensure links show when column heading is active */
  .mobile-blocks-container .nav-column-heading.active + .nav-column-links {
    display: block !important;
  }

  /* Mobile menu specific fix for Shopify's auto-generated wrappers */
  .shopify-block {
    display: block;
  }

  /* Fix specific Shopify block wrapper issues */
  .mobile-submenu-content .shopify-block {
    display: block;
    background: white;
    width: 100%;
  }
  
  /* Bump up the mobile submenu to position: fixed for emergencies - UPDATED */
  body.mobile-menu-is-active .mobile-submenu.active {
    position: fixed;
    top: 111px;
    left: 0;
    width: 100%;
    height: calc(100vh - 111px);
    transform: none; /* Ensure no transform is applied */
    z-index: var(--z-index-max);
  }

  /* Fix for column toggles after viewport changes */
  body.mobile-menu-is-active .mobile-submenu.active .nav-column-heading.active + .nav-column-links,
  body.mobile-menu-is-active .mobile-submenu.active [data-mobile-column-toggle][aria-expanded="true"] + .nav-column-links {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Ensure that dynamically created mobile elements have proper behavior */
  body.mobile-menu-is-active .mobile-blocks-container .nav-column-heading + .nav-column-links {
    transition: none !important; /* Remove transitions that might interfere with display */
  }
}

@media (min-width: 1024px) {
  /* Hide mobile elements on desktop */
  .mobile-toggle-icon {
    display: none !important;
  }
  
  .mobile-submenu {
    display: none !important;
  }
  
  .mobile-blocks-container {
    display: none !important;
  }
  
  .mobile-back-button,
  .mobile-submenu-header {
    display: none !important;
  }

  /* Desktop dropdown styling */
  [data-nav-category] {
    position: static;
  }

  .nav-dropdown-container,
  .nav-dropdown-wrapper {
    position: static;
  }

  .desktop-dropdown {
    position: fixed;
    top: calc(var(--nav-bottom) - 0px);
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    pointer-events: none;
    z-index: 100;
  }

  [data-nav-category]:hover .desktop-dropdown,
  [data-nav-category]:focus-within .desktop-dropdown {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }

  /* Ensure the dropdown stays visible when hovering the bridge */
  [data-nav-category]:hover .desktop-dropdown,
  .desktop-dropdown:hover {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }
}

/* Mobile-specific fixes */
@media (max-width: 1023px) {
  /* Hide desktop elements on mobile */
  .desktop-dropdown {
    display: none !important;
  }

  .mobile-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    background: white;
    z-index: var(--z-index-max);
    display: block;
  }

  .mobile-submenu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-blocks-container {
    display: block;
    height: 100%;
    overflow-y: auto;
  }
  
  /* Ensure mobile elements are visible */
  .mobile-toggle-icon {
    display: inline-flex !important;
  }
  
  .mobile-submenu-header {
    display: flex !important;
  }
  
  .mobile-back-button {
    display: flex !important;
    align-items: center;
  }
}

/* Add transition handling for viewport changes */
@media screen {
  .viewport-transitioning * {
    transition: none !important;
  }
}

/* Desktop menu main categories hover/active styles */
[data-nav-category] .group:hover button, 
[data-nav-category] .group button:hover,
[data-nav-category] button[aria-expanded="true"] {
  font-weight: var(--hover-font-weight, 700) !important;
}

/* Make sure category stays bold when dropdown is visible */
[data-nav-category] .group:has(.desktop-dropdown.group-hover\:visible) button {
  font-weight: var(--hover-font-weight, 700) !important;
}

/* Another selector for browsers that don't support :has */
.group:hover button[data-mobile-toggle],
.group:focus-within button[data-mobile-toggle] {
  font-weight: var(--hover-font-weight, 700) !important;
}

/* Always apply bold when dropdown is active (for older browsers) */
[data-nav-dropdown]:not(.invisible) + button[data-mobile-toggle],
button[data-mobile-toggle][aria-expanded="true"] {
  font-weight: var(--hover-font-weight, 700) !important;
}

[data-nav-dropdown] button:focus {
  outline: 2px solid #0c2340;
  outline-offset: 2px;
  text-decoration: underline;
  z-index: 10;
}
/* Add hover font weight transition */
.nav-column h3 {
  transition: font-weight 0.2s, color 0.2s;
}

.nav-column:hover h3 {
  font-weight: var(--hover-font-weight, 700);
}

/* Apply minimum width on desktop */
@media (min-width: 1024px) {
  .nav-column.has-min-width {
    min-width: var(--min-width, auto);
  }
}

/* Mobile styles */
@media (max-width: 1023px) {
  .nav-column {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .nav-column:hover h3 {
    font-weight: var(--mobile-hover-font-weight, 700);
  }
  
  .nav-column:last-child {
    border-bottom: none;
  }
  
  .nav-column-heading {
    display: flex;
    justify-content: start;
    gap: 8px;
    align-items: center;
    padding: 12px 20px;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  }
  
  .nav-column-heading:after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    right: auto;
    top: -1px;
    margin-left: 4px;
    transform-origin: center;
  }
  
  .nav-column-heading.active:after {
    transform: rotate(-135deg);
    top: 1px;
  }
  
  .nav-column-links {
    display: none;
    padding: 0 20px 12px 20px;
  }
  
  /* CRITICAL FIX: Force visibility for active headings */
  .nav-column-heading.active + .nav-column-links,
  [data-mobile-column-toggle][aria-expanded="true"] + .nav-column-links {
    display: block !important;
  }
  
  /* Force larger font size for mobile */
  .nav-column-links a {
    padding: 8px 0;
    display: block;
  }
  
  /* Make promo cards display properly */
  .nav-promo-card {
    margin: 25px 10px;
    max-width: calc(100% - 20px);
  }
  
  /* Ensure mobile-blocks-container always shows its nav-column-links */
  .mobile-submenu-content .mobile-blocks-container .nav-column .nav-column-heading.active + .nav-column-links {
    display: block !important;
  }
  
  /* Redundant selector to increase specificity */
  .nav-column .nav-column-heading.active + .nav-column-links {
    display: block !important;
  }
  
  /* Target by attribute as well for maximum compatibility */
  .nav-column [aria-expanded="true"] + .nav-column-links {
    display: block !important;
  }
}

/* Fix z-index and positioning in mobile submenu */
.mobile-blocks-container .nav-column {
  z-index: 1;
  position: relative;
}

/* Additional specificity fix for mobile view */
@media (max-width: 1023px) {
  /* This ensures links are ALWAYS visible when toggled regardless of other CSS */
  .nav-column-heading.active + .nav-column-links {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Use attribute selector too for maximum compatibility */
  [aria-expanded="true"] + .nav-column-links {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Target inline style override with !important */
  .nav-column-links[style*="display: block"] {
    visibility: visible !important;
    opacity: 1 !important;
  }
}
[data-nav-link] {
  transition: font-weight 0.2s, color 0.2s;
}

[data-nav-link]:hover {
  font-weight: var(--hover-font-weight, 500);
}

[data-nav-link]:focus {
  outline: 2px solid #0c2340;
  outline-offset: 2px;
  text-decoration: underline;
}

[data-nav-link]:focus:not(:focus-visible) {
  outline: none;
  text-decoration: none;
}

[data-nav-link]:focus-visible {
  outline: 2px solid #0c2340;
  outline-offset: 2px;
  text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 1023px) {
  [data-nav-link]:hover {
    font-weight: var(--mobile-hover-font-weight, 500);
  }
  
  .nav-link-wrapper {
    padding: 0px 0;
  }
}