#header .menu {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px 0;
  margin: 0;
  width: 100%;
}

#header .menu ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

#header .menu li {
  flex: 0 0 auto;
}

#header .menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  background: #000033;
  font-size: 0;
  overflow: hidden;
}

#header .menu li a:hover {
  color: #d0b059;
  background-color: #d0b059;
}

#header .menu li a::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

#header .menu li a:hover::before {
  filter: none;
}

/* Menu Icons - Real SVG URLs */
#header .menu li:nth-child(1) a::before {
  background-image: url("https://kingswheels.dk/catalog/view/theme/kingswheels/image/icon-alloy.svg");
}

#header .menu li:nth-child(2) a::before {
  background-image: url("https://kingswheels.dk/catalog/view/theme/kingswheels/image/icon-tpms.svg");
}

#header .menu li:nth-child(3) a::before {
  background-image: url("https://kingswheels.dk/catalog/view/theme/kingswheels/image/icon-mounting.svg");
}

#header .menu li:nth-child(4) a::before {
  background-image: url("https://kingswheels.dk/catalog/view/theme/kingswheels/image/icon-alloy-01.svg");
}

@media (min-width: 768px) {
  #header .menu {
    padding: 10px 0 10px 0;
    margin: 0 0 -20px 0;
  }
  #header .menu ul {
    gap: 30px;
  }
  #header .menu li a {
    width: auto;
    height: 44px;
    line-height: 38px;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    border-bottom: 5px solid transparent;
    font-size: 1rem;
    background: transparent;
  }
  #header .menu li a::before {
    display: none;
  }
  #header .menu li a:hover {
    border-bottom: 5px solid #d0b059;
    background-color: transparent;
  }
}/*# sourceMappingURL=front.css.map */