/* --- POPUP STYLES (Wie vorher) --- */
#mmmake-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); z-index: 99999;
    display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
}
.mmmake-modal {
    background: #fff; padding: 40px; border-radius: 8px; text-align: center;
}
.mmmake-btn {
    padding: 15px 30px; margin: 5px; border: none; cursor: pointer;
    color: #fff; font-weight: bold; font-size: 16px;
}

.mmmake-btn[data-brand="Schwarz"] { background: #0a1a4f; }
.mmmake-btn[data-brand="Lidl"] { background: #0050aa; }
.mmmake-btn[data-brand="Kaufland"] { background: #e2001a; }


/* --- NEU: HEADER SWITCHER STYLES --- */
ul.mmmake-switcher {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: row;

}

ul.mmmake-switcher li {
    margin: 0;
}

ul.mmmake-switcher a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

ul.mmmake-switcher a:hover {
    color: #000;
}

/* Der aktive Link bekommt eine Unterstreichung in der Markenfarbe */
ul.mmmake-switcher li.is-active a[data-brand="Schwarz"] {
    color: #0a1a4f; border-bottom-color: #0a1a4f;
}
ul.mmmake-switcher li.is-active a[data-brand="Lidl"] {
    color: #0050aa; border-bottom-color: #0050aa;
}
ul.mmmake-switcher li.is-active a[data-brand="Kaufland"] {
    color: #e2001a; border-bottom-color: #e2001a;
}