.kanteen-header-tools {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-inline: 8px 12px;
  padding-left: 22px;
  position: relative;
}

.kanteen-header-tools::before {
  background: currentColor;
  content: '';
  height: 26px;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  color: var(--kanteen-tools-color, #1f1e1c);
}

.main-navigation .kanteen-header-tools__btn {
  align-items: center;
  border-radius: 50%;
  color: var(--kanteen-tools-color, #1f1e1c);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: relative;
  transition: background-color 0.15s;
  width: 44px;
}

.main-navigation .kanteen-header-tools__btn:is(:hover, :focus-visible) {
  background: rgba(127, 127, 127, 0.18);
  color: var(--kanteen-tools-color, #1f1e1c);
}

.kanteen-header-tools__ico {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}

.kanteen-header-tools__badge {
  align-items: center;
  background: #ff8a65;
  border-radius: 999px;
  color: #1f1e1c;
  display: grid;
  font-size: 11px;
  font-weight: 800;
  height: 19px;
  line-height: 1;
  min-width: 19px;
  padding: 0 5px;
  place-items: center;
  position: absolute;
  right: 1px;
  top: 3px;
  transition: transform 0.25s;
}

.kanteen-header-tools__badge[data-count='0'] {
  display: none;
}

.kanteen-header-tools__badge.is-bump {
  transform: scale(1.35);
}

/* Mobile: icons sit left of the burger, no separator. */
#mobile-menu-control-wrapper .kanteen-header-tools {
  margin: 0;
  padding-left: 0;
}

#mobile-menu-control-wrapper .kanteen-header-tools::before {
  display: none;
}
