/* Toggle-Button oben */
.nm-filter-toggle{
  width: 100%;
  margin: 0 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
}

/* Pfeil-Indicator (optional) */
form.nm-filters--open .nm-filter-toggle::after { content: "▴"; }
form.nm-filters--collapsed .nm-filter-toggle::after { content: "▾"; }

/* Panel (Filtern + Felder) -> NICHT display:none, damit Slider nicht kaputt geht */
.nm-filter-panel{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height .2s ease, opacity .15s ease;
}

/* offen */
form.nm-filters--open .nm-filter-panel{
  max-height: 2000px; /* groß genug für alle Filter */
  opacity: 1;
  pointer-events: auto;
  margin-top: 12px;
}

#nm-sidebar-account-menu .nm-is-active a{
  font-weight:700;                 /* <- "Suche" fett */
}
#nm-sidebar-account-menu .nm-is-active i{
  color:#8b6a35;                    /* <- dunkleres Gold wie Screenshot */
}
#nm-sidebar-account-menu li + li{ margin-top:16px; }
