/** Shopify CDN: Minification failed

Line 6:0 Unexpected "}"

**/
}
img.country-list--flag {
  display: none !important;
}
.header-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #B6B6B9; /* Katana Steel */
  opacity: 0.3;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}
img[src*="/flags/au.svg"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
}
/* Kill ALL flag icons in currency selector */
.currency-selector img,
.country-selector img,
.header__currency img,
img[src*="/flags/"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
}
/* Target all top-level nav links */
nav summary {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* Create the animated underline */
nav summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* adjust this if it's too low */
  width: 0;
  height: 2px;
  background-color: #ffffff; /* or your brand color */
  transition: width 0.3s ease;
}

/* Animate underline on hover */
nav summary:hover::after {
  width: 100%;
}
nav a.menu__link--lvl1 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

nav a.menu__link--lvl1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

nav a.menu__link--lvl1:hover::after {
  width: 100%;
}

