/* DigitalMe menu fanfare (site-wide): the Products-dropdown "DigitalMe" item (class
   menu-new-pill) renders the two-colour logotype with the label kept as the accessible name
   (font-size 0, not display none), plus the magenta NEW badge. Mirrors the Local
   tecnologia-child v1.1.0 styling; bundled here so production needs no theme edit. */
.menu-new-pill > a {
  position: relative;
  font-size: 0 !important;
  line-height: 20px !important;
  white-space: nowrap;
}
.menu-new-pill > a::before {
  content: "";
  display: inline-block;
  width: 78px;
  height: 20px;
  margin-right: 2px;
  vertical-align: middle;
  background-image: url("../assets/digitalme-logotype-2c.png") !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  background-size: contain !important;
}
.menu-new-pill > a::after {
  content: "NEW";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #FF3D8C;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  vertical-align: middle;
  text-transform: uppercase;
}
