/*--------------------------------------------------
 *              Promo Feature button
 * ----------------------------------------------------*/
li:has(a.feature-promo) {
  background-color: transparent !important;
}

nav a.feature-promo {
  background: var(--promo-event-btn-bg-color, #00d9f4);
  border-radius: 10px;
  max-height: 36px;
  color: var(--promo-event-btn-txt-color, black) !important;
  font-weight: 600 !important;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  color: white !important;
  text-shadow: 1px 1px 3px #000000c7;
}

nav a.feature-promo::before {
  content: var(--anime-image-right);
  position: absolute;
  z-index: 1;
  top: 0;
  scale: 0.5;
  z-index: 1;
  transition: all 0.2s;
  right: 0;
  translate: 36% -13%;
  overflow: hidden;
}

nav a.feature-promo::after {
  content: var(--anime-image-left);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  translate: -27% -31%;
  scale: 0.5;
  z-index: 1;
  transition: all 0.2s;
}

nav a.feature-promo:hover {
  scale: 1.05;
  color: var(--promo-event-btn-txt-color-hover, white) !important;
}

nav a.feature-promo:hover::before {
  scale: 0.6;
  clip-path: content-box;
}

nav.product-menu[data-product="PDR"][data-locale="en_US"] .cta a.buy-now {
  display: none !important;
}

nav.product-menu.expanded.mobile-menu li:has(a.feature-promo) {
  display: none !important ;
}