.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.mobile-nav.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.header-nav {
  display: none;
}

@media (min-width: 1280px) {
  .mobile-nav {
    display: none;
  }

  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
}

.header-nav-link {
  transform: translateY(2.4rem);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  text-decoration: none;
  color: var(--black);
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 0.4rem;
  transition: all 0.3s ease-in-out;
}

.header-nav-link.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

@media (min-width: 1280px) {
  .header-nav-link {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}

.header-nav-link:hover {
  color: var(--green);
}

.header-nav-link:focus-visible {
  color: var(--green);
}

.header-nav-link.active {
  color: var(--green);
}

.header-nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  opacity: 0;
  background-color: var(--green);
}

.header-nav-link.active::after {
  opacity: 1;
}

.header-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}

.header-cta-icon {
  width: 3.6rem;
  height: 3.6rem;
  transition: all 0.3s ease-in-out;
}

.header-cta-icon:hover {
  color: var(--green);
}

.header-cta:focus-visible .header-cta-icon {
  color: var(--green);
}

.header-socials {
  position: absolute;
  bottom: -4.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.header-socials.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  bottom: 2.4rem;
}

.header-social-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.header-social-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--black);
}

.header-social-link:hover .header-social-icon {
  color: var(--green);
}

.header-social-link:focus-visible .header-social-icon {
  color: var(--green);
}
