/* ARMS Pumps shared foundation styles */
:root { color-scheme: light; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
a { text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(30, 116, 74, .35); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* MOBILE NAV DEFAULT (hidden) */
.mobile-nav {
  position: fixed;
  top: 70px;
  right: 0;
  width: 260px;
  height: calc(100vh - 70px);
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateX(100%);
  transition: 0.3s ease;
  z-index: 9999;
}

.mobile-nav a {
  color: #fff;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ACTIVE STATE */
.mobile-nav.active {
  transform: translateX(0);
}

/* HAMBURGER ACTIVE ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #000;
  margin: 5px 0;
  transition: 0.3s;
}