/* === Footer im Spaltenschema === */
.nm-ft {
    --ft-grund: #14181D;
    --ft-unten: #0E1116;
    --ft-linie: rgba(255, 255, 255, .10);
    --ft-text:  #B7BEC7;
    --ft-hell:  #FFFFFF;
    --ft-gold:  #E0AC33;
    background: var(--ft-grund);
    color: var(--ft-text);
    font-size: 14px;
    line-height: 1.6;
}
.nm-ft-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(34px, 4vw, 52px) 24px;
    display: grid;
    grid-template-columns: 1.45fr .85fr .85fr 1.05fr 1.5fr;
    gap: clamp(22px, 2.6vw, 44px);
    align-items: start;
}

/* --- Markenspalte --- */
.nm-ft-logo { display: inline-block; }
.nm-ft-logo img { display: block; width: 240px; height: auto; max-width: 100%; }
.nm-ft-claim {
    margin: 16px 0 0;
    max-width: 34ch;
    color: var(--ft-text);
    font-size: 13.5px;
    line-height: 1.6;
}
.nm-ft-kontakt {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 5px;
    font-size: 13.5px;
}
.nm-ft-kontakt a { color: var(--ft-hell) !important; text-decoration: none !important; }
.nm-ft-kontakt a:hover { color: var(--ft-gold) !important; }

/* --- Linkspalten --- */
/* nm-custom-cssjs.php setzt global "h3 {color:black!important;
   font-size:18px!important}". Diese Regel gilt seitenweit und wird
   hier bewusst nur fuer den Footer ausgehebelt - global anzufassen
   wuerde Ueberschriften auf allen Seiten verschieben. */
.nm-ft .nm-ft-spalte h3 {
    margin: 0 0 14px;
    color: var(--ft-hell) !important;
    font-size: 14.5px !important;
    font-weight: 700;
    letter-spacing: .01em;
}
.nm-ft-spalte ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.nm-ft-spalte a {
    color: var(--ft-text) !important;
    font-size: 13.5px;
    text-decoration: none !important;
    transition: color .16s ease;
}
.nm-ft-spalte a:hover { color: var(--ft-gold) !important; }
.nm-ft-spalte a:focus-visible {
    outline: 2px solid var(--ft-gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* --- Zahlungs- und Versandkacheln ---
   Weisse Kachel, weil die Markenlogos ihre eigenen Farben mitbringen und
   auf dunklem Grund sonst nicht mehr erkennbar waeren. */
.nm-ft .nm-ft-zweit { margin-top: 22px !important; }
.nm-ft-spalte ul.nm-ft-kacheln {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.nm-ft-spalte ul.nm-ft-kacheln > li.nm-ft-kachel {
    /* flex-basis auto + width auto ueberschreibt die Theme-Regel, die
       Listenelementen die volle Breite gibt - sonst stapeln die Kacheln */
    flex: 0 0 auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 34px;
    padding: 0 10px;
    margin: 0;
    border-radius: 7px;
    background: #fff;
}
/* Kein max-width: die Kachel waechst mit dem Logo. Sonst schrumpft
   max-width:100% breite Marken (Mastercard, Wero) auf Kachelbreite. */
.nm-ft-kachel > img { display: block; width: auto; max-width: none; }
.nm-ft-kachel-text span {
    color: #16233F;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}

/* --- Untere Leiste --- */
.nm-ft-unten {
    border-top: 1px solid var(--ft-linie);
    background: var(--ft-unten);
}
.nm-ft-unten-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 16px;
}
.nm-ft-copy {
    margin: 0;
    color: #8B929C;
    font-size: 12.5px;
}
.nm-ft-bewertung {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ft-text) !important;
    font-size: 12.5px;
    text-decoration: none !important;
}
.nm-ft-bewertung strong { color: var(--ft-hell); font-size: 14px; }
.nm-ft-bewertung:hover { color: var(--ft-hell) !important; }
.nm-ft-sterne { display: inline-flex; gap: 1px; color: var(--ft-gold); line-height: 0; }
.nm-ft-sterne svg { width: 13px; height: 13px; }

@media (prefers-reduced-motion: reduce) {
    .nm-ft-spalte a { transition: none; }
}

@media (max-width: 1080px) {
    .nm-ft-inner { grid-template-columns: 1fr 1fr 1fr; }
    .nm-ft-marke { grid-column: 1 / -1; }
    .nm-ft-marken { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .nm-ft-inner { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
}
@media (max-width: 460px) {
    .nm-ft-inner { grid-template-columns: 1fr; }
    .nm-ft-unten-inner { flex-direction: column; align-items: flex-start; }
    .nm-ft-claim { max-width: none; }
}
