a[title="Angebote"] span {
    color: red !important;
}
.navigation-flyout-col div.navigation-flyout-link,
.navigation-flyout-col div.navigation-flyout-link:hover {
    font-weight: bold;
    transition: none !important;
    transform: none !important;
    position: static !important;
    left: 0 !important;
    margin: 0 !important;
    padding-left: 16px !important; /* Fester Padding-Wert */
}

/* Backdrop/Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 999; /* Unter Header und Flyout */
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* Wenn ein Flyout aktiv ist (Annahme: .navigation-flyout erhält .is-open) */
body:has(.navigation-flyout.is-open)::before {
  background-color: rgba(0, 0, 0, 0.3); /* Leichter dunkler Hintergrund */
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* Header über dem Overlay halten */
.header-main {
    position: relative; /* Nötig für z-index, sollte durch fixed-top schon da sein, aber zur Sicherheit */
    z-index: 1010; /* Deutlich höher als Overlay */
}
.header-inner {
    position: relative; /* Erzeugt ggf. neuen Kontext, daher auch hier z-index */
    z-index: 1010;
}

/* Flyout selbst hervorheben (noch höher) */
.navigation-flyout {
  position: relative;
  z-index: 1020; /* Höchster Index */
}

/* Spalte im Flyout auch hervorheben */
.navigation-flyout-col {
 position: relative;
 z-index: 1020; /* Höchster Index */
}