:root {
  --vrh-ink: #111827;
  --vrh-soft: #202938;
  --vrh-muted: #4b5563;
  --vrh-border: rgba(17,24,39,.075);
  --vrh-teal: #13c6bf;
  --vrh-teal-dark: #0f8f8a;
}

.vrh-site-header,
.vrh-site-header * {
  box-sizing: border-box;
}

.vrh-site-header {
  font-family: inherit;
  background: #fff;
  color: var(--vrh-ink);
}

.vrh-logo,
.vrh-mobile-logo,
.vrh-drawer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--vrh-ink);
}

.vrh-logo-img {
  display: block;
  width: auto;
  max-width: 255px;
  height: auto;
}

.vrh-logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.vrh-nav {
  min-width: 0;
  justify-self: center;
}

.vrh-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.45vw, 28px);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.vrh-nav li {
  position: relative;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.vrh-nav a {
  display: inline-flex;
  align-items: center;
  height: 76px;
  color: var(--vrh-ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 430;
  line-height: 1;
  letter-spacing: .005em;
  white-space: nowrap;
}

.vrh-nav a:hover {
  color: var(--vrh-teal-dark);
}

.vrh-has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.25px solid currentColor;
  border-bottom: 1.25px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.vrh-dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  z-index: 20;
  display: grid !important;
  gap: 0 !important;
  width: 272px;
  min-width: 260px;
  padding: 10px !important;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17,24,39,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.vrh-has-dropdown:hover .vrh-dropdown,
.vrh-has-dropdown:focus-within .vrh-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vrh-dropdown a {
  height: auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--vrh-ink);
  font-size: 14.5px;
  line-height: 1.35;
  white-space: normal;
}

.vrh-dropdown a:hover {
  background: rgba(19,198,191,.08);
  color: var(--vrh-teal-dark);
}

.vrh-actions,
.vrh-mobile-actions,
.vrh-drawer-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.vrh-action,
.vrh-mobile-menu,
.vrh-drawer-close {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--vrh-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.vrh-action:hover,
.vrh-mobile-menu:hover,
.vrh-drawer-close:hover {
  background: rgba(17,24,39,.04);
}

.vrh-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.vrh-desktop .vrh-action .vrh-icon {
  width: 21px;
  height: 21px;
}

/* Mobile */
@media (max-width: 1024px) {
  .vrh-site-header {
    position: relative;
    z-index: 9999;
  }

  .vrh-mobile-logo {
    justify-self: center;
    min-width: 0;
  }

  .vrh-mobile-logo .vrh-logo-img {
    max-width: 160px;
  }

  .vrh-mobile-actions {
    justify-self: end;
    gap: 8px;
  }

  .vrh-mobile-menu {
    justify-self: start;
  }

  .vrh-mobile-menu .vrh-icon {
    width: 28px;
    height: 28px;
  }

  .vrh-mobile-actions .vrh-icon {
    width: 25px;
    height: 25px;
  }
}

.vrh-drawer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  background: #fff;
  color: var(--vrh-ink);
}

body.vrh-drawer-open {
  overflow: hidden;
}

.vrh-drawer.is-open {
  display: block;
}

.vrh-drawer-shell {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.vrh-drawer-top {
  height: 76px;
  min-height: 76px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 104px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(17,24,39,.075);
}

.vrh-drawer-close {
  justify-self: start;
}

.vrh-drawer-close .vrh-icon {
  width: 28px;
  height: 28px;
}

.vrh-drawer-logo {
  justify-self: center;
}

.vrh-drawer-logo .vrh-logo-img {
  max-width: 160px;
}

.vrh-drawer-actions {
  justify-self: end;
  gap: 8px;
}

.vrh-drawer-actions .vrh-icon {
  width: 25px;
  height: 25px;
}

.vrh-drawer-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vrh-drawer-nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-top: 14px;
}

.vrh-drawer-nav ul,
.vrh-subpanel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vrh-drawer-nav li,
.vrh-subpanel li {
  margin: 0;
  padding: 0;
}

.vrh-drawer-nav a,
.vrh-drawer-sub-open,
.vrh-subpanel a,
.vrh-sub-back {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border: 0;
  background: #fff;
  color: var(--vrh-ink);
  text-align: left;
  text-decoration: none;
  font-size: clamp(20px, 5.2vw, 23px);
  font-weight: 360;
  line-height: 1.15;
  letter-spacing: .01em;
  font-family: inherit;
}

.vrh-drawer-nav li:first-child a {
  background: #f6f6f6;
}

.vrh-drawer-sub-open .vrh-icon,
.vrh-sub-back .vrh-icon {
  width: 22px;
  height: 22px;
}

.vrh-drawer-footer {
  flex: 0 0 auto;
  padding: 12px 28px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(17,24,39,.06);
  background: #fff;
}

.vrh-login {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--vrh-ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 360;
  margin-bottom: 10px;
}

.vrh-login .vrh-icon {
  width: 26px;
  height: 26px;
}

.vrh-socials {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 30px;
}

.vrh-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--vrh-ink);
  text-decoration: none;
}

.vrh-social-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.vrh-social-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vrh-social-x {
  width: 20px;
  height: 20px;
}

.vrh-subpanels {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.vrh-drawer.is-sub-open .vrh-drawer-nav,
.vrh-drawer.is-sub-open .vrh-drawer-footer {
  display: none;
}

.vrh-drawer.is-sub-open .vrh-subpanels {
  display: block;
}

.vrh-subpanel {
  display: none;
}

.vrh-subpanel.is-active {
  display: block;
}

.vrh-sub-back {
  justify-content: flex-start;
  gap: 12px;
  background: #f6f6f6;
  border-bottom: 1px solid rgba(17,24,39,.06);
}

@media (max-height: 760px) and (max-width: 1024px) {
  .vrh-drawer-top {
    height: 70px;
    min-height: 70px;
  }

  .vrh-drawer-nav {
    padding-top: 10px;
  }

  .vrh-drawer-nav a,
  .vrh-drawer-sub-open,
  .vrh-subpanel a,
  .vrh-sub-back {
    min-height: 50px;
    font-size: 20px;
  }

  .vrh-drawer-footer {
    padding-top: 9px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .vrh-login {
    margin-bottom: 7px;
  }

  .vrh-socials {
    gap: 18px;
  }
}


/* -------------------------------------------------------------
   VoltReady Shopify Header v1.1.4
   Desktop dropdown stability patch.
   Keeps the working v1.1.4 header layout intact.
------------------------------------------------------------- */

@media (min-width: 1025px) {
  .vrh-has-dropdown {
    position: relative;
  }

  /* Invisible hover bridge between Shop and dropdown.
     This prevents the dropdown collapsing while moving the mouse down. */
  .vrh-has-dropdown::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 18px;
    background: transparent;
    pointer-events: auto;
  }

  .vrh-dropdown {
    top: calc(100% - 1px) !important;
    transform: translateX(-50%) translateY(0) !important;
    margin-top: 0 !important;
    z-index: 99999 !important;
  }

  .vrh-has-dropdown:hover .vrh-dropdown,
  .vrh-has-dropdown:focus-within .vrh-dropdown,
  .vrh-dropdown:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .vrh-dropdown li,
  .vrh-dropdown a {
    pointer-events: auto !important;
  }

  .vrh-dropdown a {
    cursor: pointer;
  }
}


/* -------------------------------------------------------------
   VoltReady Shopify Header v1.1.4
   Proper desktop dropdown stability.
   This stops relying on a hover gap bridge and makes Shop click-stable.
------------------------------------------------------------- */

@media (min-width: 1025px) {
  .vrh-has-dropdown::after {
    display: none !important;
    content: none !important;
    pointer-events: none !important;
  }

  .vrh-has-dropdown {
    position: relative !important;
  }

  .vrh-has-dropdown > .vrh-dropdown-trigger {
    cursor: default;
    user-select: none;
  }

  .vrh-dropdown {
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(0) !important;
    margin-top: 0 !important;
    z-index: 999999 !important;
    display: grid !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 80ms ease-out, visibility 80ms ease-out !important;
  }

  /* Hover still works */
  .vrh-has-dropdown:hover > .vrh-dropdown,
  .vrh-has-dropdown:focus-within > .vrh-dropdown,
  .vrh-has-dropdown.vrh-dropdown-open > .vrh-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .vrh-has-dropdown.vrh-dropdown-open > .vrh-dropdown-trigger,
  .vrh-has-dropdown:hover > .vrh-dropdown-trigger {
    color: var(--vrh-teal-dark) !important;
  }

  .vrh-dropdown,
  .vrh-dropdown *,
  .vrh-dropdown li,
  .vrh-dropdown a {
    pointer-events: auto !important;
  }

  .vrh-dropdown a {
    cursor: pointer !important;
    position: relative !important;
    z-index: 2 !important;
  }

  /* Extra safe clickable padding at the very top of dropdown without blocking links */
  .vrh-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
    background: transparent;
    pointer-events: none;
  }
}

/* Disable desktop dropdown transitions for users who are seeing visual judder. */
@media (min-width: 1025px) {
  .vrh-nav,
  .vrh-nav *,
  .vrh-dropdown,
  .vrh-dropdown * {
    animation: none !important;
  }
}


/* -------------------------------------------------------------
   VoltReady Shopify Header v1.1.4
   First-paint and dropdown-navigation stability patch.
------------------------------------------------------------- */

.vrh-site-header,
.vrh-site-header *,
.vrh-nav,
.vrh-nav *,
.vrh-dropdown,
.vrh-dropdown * {
  animation: none !important;
}

@media (min-width: 1025px) {
  .vrh-dropdown {
    transition: none !important;
  }

  .vrh-has-dropdown.vrh-is-navigating > .vrh-dropdown,
  .vrh-has-dropdown.vrh-dropdown-open > .vrh-dropdown,
  .vrh-has-dropdown:hover > .vrh-dropdown,
  .vrh-has-dropdown:focus-within > .vrh-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .vrh-has-dropdown.vrh-is-navigating > .vrh-dropdown-trigger,
  .vrh-has-dropdown.vrh-dropdown-open > .vrh-dropdown-trigger,
  .vrh-has-dropdown:hover > .vrh-dropdown-trigger {
    color: var(--vrh-teal-dark) !important;
  }

  .vrh-dropdown a {
    -webkit-tap-highlight-color: transparent;
  }
}


/* -------------------------------------------------------------
   VoltReady Shopify Header v1.1.4
   Hard lock logo size and desktop grid across homepage, product pages
   and product category archives.
------------------------------------------------------------- */

@media (min-width: 1025px) {
  html body .vrh-site-header {
    min-height: 76px !important;
    max-height: 76px !important;
    overflow: visible !important;
  }

  html body .vrh-site-header .vrh-desktop,
  html body .vrh-site-header .vrh-desktop .vrh-inner {
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
  }

  html body .vrh-site-header .vrh-desktop .vrh-inner {
    grid-template-columns: 260px minmax(0, 1fr) 132px !important;
    align-items: center !important;
  }

  html body .vrh-site-header .vrh-brand,
  html body .vrh-site-header .vrh-logo {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    flex: 0 0 260px !important;
  }

  html body .vrh-site-header .vrh-logo img,
  html body .vrh-site-header img.vrh-logo-img,
  html body .vrh-site-header .vrh-brand img,
  html body .vrh-site-header .vrh-logo-img {
    width: auto !important;
    max-width: 255px !important;
    height: auto !important;
    max-height: 54px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    transform: none !important;
  }

  html body .vrh-site-header .vrh-nav {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  html body .vrh-site-header .vrh-nav > ul {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }

  html body .vrh-site-header .vrh-actions {
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    flex: 0 0 132px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  html body .vrh-site-header .vrh-desktop .vrh-inner {
    grid-template-columns: 220px minmax(0, 1fr) 124px !important;
    gap: 22px !important;
  }

  html body .vrh-site-header .vrh-brand,
  html body .vrh-site-header .vrh-logo {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    flex-basis: 220px !important;
  }

  html body .vrh-site-header .vrh-logo img,
  html body .vrh-site-header img.vrh-logo-img,
  html body .vrh-site-header .vrh-brand img,
  html body .vrh-site-header .vrh-logo-img {
    max-width: 215px !important;
    max-height: 50px !important;
  }

  html body .vrh-site-header .vrh-nav > ul {
    gap: 14px !important;
  }

  html body .vrh-site-header .vrh-nav a {
    font-size: 14px !important;
  }

  html body .vrh-site-header .vrh-actions {
    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;
    flex-basis: 124px !important;
  }
}
