.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  color: black;
  padding-left: 2%;
  padding-right: 2%;
  border-bottom: 1pt solid lightgray;
  position: relative;
  gap: 20px;
}

.cart-badge {
  position: absolute;
  bottom: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: white;
  background: black;
  border-radius: 999px;
  line-height: 1;
}

/*ul.children {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  padding: 10px;
  list-style-type: none;
  display: none;
  border: 1pt solid black;
  border-radius: 10px;
  z-index: 999;
  background-color: white;
}*/

.category-link {
  color: rgb(26, 25, 25);
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
}

.category-link:hover {
  text-decoration: underline;
}

.arrow-icon {
  width: 12px;
  transition: transform 0.2s ease;
}

.arrow-icon.rotated {
  transform: rotate(180deg);
}


.dropdown {
  position: absolute;
  width: 100%;
  padding: 40px;
  padding-left: 5%;
  padding-right: 5%;
  border-bottom: 1pt solid lightgrey;
  background-color: white;
}

.mobile-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  z-index: 1000;
  display: none;
  border-top: 1pt solid lightgrey;
  padding: 5%;
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

.mobile-drawer.open {
  display: block;
}

@media (max-width: 1105px) {
  .header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5%;
    padding-right: 5%;
  }

  .cart-badge {
    top: 3em;
    right: 1em;
  }
}
