/* ============================================================
   NIEDERHOF – custom.css
   Alle Design-Anpassungen zentral hier verwalten.
   Panel → Benutzerdefiniertes CSS nur für flüchtige Tweaks.
   ============================================================ */


/* ============================================================
   1. BADGE
   ============================================================ */

.uk-navbar-item a.uk-position-relative .uk-badge {
  left: -4px;
}


/* ============================================================
   2. NAVBAR – Heritage: Tiefenverlauf + Carbon + Stripe + gelbe Unterkante
   ============================================================ */

.uk-navbar-container,
.uk-navbar-container.uk-navbar-transparent,
.uk-sticky .uk-navbar-container {
  background:
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,0) 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 6px, rgba(0,0,0,0) 6px 12px),
    linear-gradient(to bottom, #134A37 0%, #0F3A2B 60%, #0B2E22 100%);
  color: #fff;
  position: relative;
  z-index: 1000;
  border-bottom: 2px solid #FFD200;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* Linke Heritage-Schräge */
.uk-navbar-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -14px;
  width: 82px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,0) 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 6px, rgba(0,0,0,0) 6px 12px),
    linear-gradient(135deg, #2FA14A 0%, #1E7F39 100%);
  transform: skewX(-12deg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.08);
  pointer-events: none;
}

/* Mobile: Stripe ausblenden */
@media (max-width: 959px) {
  .uk-navbar-container::before { display: none; }
}

/* Nav-Links */
.uk-navbar-nav > li > a {
  color: #fff !important;
  padding: .55rem .85rem;
  border-radius: 0;
  background: transparent !important;
  text-shadow: none;
}
.uk-navbar-nav > li > a:hover {
  background: #1E7F39 !important;
  color: #fff !important;
}
.uk-navbar-nav > li.uk-active > a {
  background: transparent !important;
  color: #fff !important;
}


/* ============================================================
   3. NAVBAR – Layout-Anpassungen (Logo, Suche, Tasche)
   ============================================================ */

.nh-logo {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-left: 0 !important;
}

/* Desktop: Logo leicht nach links (Ausrichtung zu START) */
@media (min-width: 960px) {
  #navbar .nh-logo {
    margin-left: -12px;
  }
}

.nh-search {
  display: flex;
}

.nh-search-input {
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 4px 0 0 4px;
}

.nh-search-button {
  border-radius: 0 4px 4px 0 !important;
  background: #029846;
  color: #fff;
  border: none;
}

.nh-bag-item {
  margin-left: 15px;
}

.nh-bag-link [uk-icon] {
  font-size: 20px;
}

.nh-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Suchfeld Placeholder + Input (Desktop) */
.nh-search .nh-search-input {
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 4px 0 0 4px;
}

.nh-search .nh-search-input::placeholder {
  color: #666666 !important;
  opacity: 1;
}

/* Suchfeld Placeholder + Input (Mobile) */
.nh-search-bar-mobile .nh-search-input {
  flex: 1;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 4px 0 0 4px;
}

.nh-search-bar-mobile .nh-search-input::placeholder {
  color: #666666 !important;
  opacity: 1;
}


/* ============================================================
   4. MOBILE (max 959px)
   ============================================================ */

@media (max-width: 959px) {

  #navbar .uk-navbar-container {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nh-nav-row { display: none; }
  .nh-search  { display: none; }

  /* Logo auf Mobile */
  .nh-logo-img {
    height: 80px !important;
    width: auto !important;
  }

  /* Tasche etwas größer */
  .nh-bag-link [uk-icon] svg {
    width: 26px !important;
    height: 26px !important;
  }

  /* Mobile Suchfeld unter Header */
  .nh-search-bar-mobile {
    display: block;
    padding: 10px 15px;
    background: #0B2E22;
  }

  .nh-search-bar-mobile form { display: flex; }

  .nh-search-bar-mobile .nh-search-input {
    flex: 1;
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: 4px 0 0 4px;
  }

  .nh-search-bar-mobile .nh-search-button {
    border-radius: 0 4px 4px 0 !important;
    background: #029846;
    color: #fff;
    border: none;
  }

  /* Logo auf Mobile nicht verschieben */
  .nh-logo {
    margin-left: 0 !important;
  }
}


/* ============================================================
   5. SCROLL-SHRINK NAVBAR (Desktop only, ab 960px)
   ============================================================ */

/* Desktop-Hamburger: standardmäßig hidden (mobile-first) */
.nh-desktop-toggle {
  display: none !important;
}

@media (min-width: 960px) {

  /* Desktop-Hamburger: mit max-width einblenden */
  .nh-desktop-toggle {
    display: flex !important;
    align-items: center;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-width 0.35s ease, opacity 0.3s ease;
  }

  #navbar.nh-scrolled .nh-desktop-toggle {
    max-width: 40px;
    opacity: 1;
    pointer-events: auto;
  }

  /* Nav-Zeile smooth ausblenden */
  #navbar .nh-nav-row {
    overflow: hidden;
    max-height: 80px;
    opacity: 1;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  }

  #navbar.nh-scrolled .nh-nav-row {
    max-height: 0 !important;
    opacity: 0;
    pointer-events: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Logo sanft verkleinern */
  .nh-logo-img {
    transition: height 0.35s ease;
  }
}

/* Desktop: wenn Hamburger-Kreis sichtbar, Logo rechts neben Kreis */
@media (min-width: 960px) {
  #navbar.nh-scrolled .nh-logo {
    margin-left: 56px; /* 48px Kreis + ca. 8px Abstand */
  }
}


/* ============================================================
   6. DROPDOWNS
   ============================================================ */

.uk-navbar-dropdown {
  background-color: #0F3A2B !important;
  color: #ffffff !important;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.uk-navbar-dropdown::before {
  background-color: #0F3A2B !important;
}
.uk-navbar-dropdown .uk-nav > li > a {
  color: #ffffff !important;
  padding: .5rem .85rem;
}
.uk-navbar-dropdown .uk-nav > li > a:hover,
.uk-navbar-dropdown .uk-nav > li > a:focus,
.uk-navbar-dropdown .uk-nav > li.uk-active > a {
  background-color: #2FA14A !important;
  color: #ffffff !important;
  border: 0;
  border-radius: 8px;
}
.uk-navbar-dropdown .uk-nav .uk-nav-divider {
  border-top-color: rgba(255,255,255,.12) !important;
}


/* ============================================================
   7. SUCHE (UIkit)
   ============================================================ */

.uk-search-input {
  max-width: 320px;
  background: #fff;
  border: 1.5px solid #2FA14A;
  border-radius: 6px;
  box-shadow: none;
}


/* ============================================================
   8. KARTEN (UIkit)
   ============================================================ */

.uk-card,
.uk-card-default {
  background: #fff;
  border: 1px solid rgba(15,58,43,.15);
  border-radius: 8px;
}


/* ============================================================
   9. OFFCANVAS – Heritage, lesbar + markant
   ============================================================ */

#offcanvas .uk-offcanvas-bar,
.uk-offcanvas .uk-offcanvas-bar {
  color: #fff !important;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,0) 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 6px, rgba(0,0,0,0) 6px 12px),
    #1F2427 !important;
  border-left: 3px solid #FFD200;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  padding: 24px 26px;
}

/* Checkered-Micro-Stripe oben */
#offcanvas .uk-offcanvas-bar::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, #fff 0 8px, #000 8px 16px);
  opacity: .5;
  pointer-events: none;
}

.uk-offcanvas-close {
  color: #fff !important;
  opacity: .9;
  top: 12px;
  right: 12px;
}
.uk-offcanvas-close:hover { opacity: 1; }

#offcanvas .uk-offcanvas-bar h3,
#offcanvas .uk-offcanvas-bar .uk-logo,
#offcanvas .uk-offcanvas-bar .site-title {
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 10px;
}

/* Primäre Nav-Links */
#offcanvas .uk-nav-primary > li > a {
  color: #fff !important;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  padding: 10px 18px 10px 26px;
}

#offcanvas .uk-nav-primary > li > a:hover {
  color: #fff !important;
  background: #1E7F39;
  border-radius: 8px;
}

#offcanvas .uk-nav-primary > li.uk-active > a {
  color: #fff !important;
  background: rgba(47,161,74,.18);
}

/* Unterpunkte */
#offcanvas .uk-nav-sub > li > a {
  color: rgba(255,255,255,.86) !important;
  font-size: 1rem;
  padding: 6px 0 6px 14px;
}
#offcanvas .uk-nav-sub > li > a:hover {
  color: #2FA14A !important;
}

#offcanvas .uk-nav-divider {
  border-top-color: rgba(255,255,255,.12) !important;
}

#offcanvas .uk-text-meta,
#offcanvas .uk-text-small {
  color: rgba(255,255,255,.75) !important;
}

.uk-offcanvas-overlay .uk-offcanvas-page {
  filter: blur(2px);
}
.uk-offcanvas .uk-offcanvas-bar {
  backdrop-filter: none;
}


/* ============================================================
   10. BUTTONS
   ============================================================ */

.uk-button-primary:not(.uk-button-small) {
  position: relative;
  overflow: hidden;
  border: 1px solid #0F3A2B;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 2px 0 rgba(0,0,0,.10);
}

.uk-button-primary:not(.uk-button-small)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(45deg,  rgba(255,255,255,.025) 15%, rgba(255,255,255,0) 15%) 0 0/6px 6px,
    linear-gradient(-45deg, rgba(255,255,255,.025) 15%, rgba(255,255,255,0) 15%) 0 0/6px 6px,
    linear-gradient(45deg,  rgba(0,0,0,.04)        55%, rgba(0,0,0,0)        55%) 0 0/6px 6px,
    linear-gradient(-45deg, rgba(0,0,0,.04)        55%, rgba(0,0,0,0)        55%) 0 0/6px 6px;
}

.uk-button-primary:not(.uk-button-small)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,0) 48%);
}

.uk-button-primary:hover::before,
.uk-button-primary:focus::before {
  background:
    linear-gradient(45deg,  rgba(255,255,255,.05)  15%, rgba(255,255,255,0) 15%) 0 0/6px 6px,
    linear-gradient(-45deg, rgba(255,255,255,.05)  15%, rgba(255,255,255,0) 15%) 0 0/6px 6px,
    linear-gradient(45deg,  rgba(0,0,0,.055)       55%, rgba(0,0,0,0)       55%) 0 0/6px 6px,
    linear-gradient(-45deg, rgba(0,0,0,.055)       55%, rgba(0,0,0,0)       55%) 0 0/6px 6px;
}

.uk-button-primary:active::after {
  background: linear-gradient(to bottom, rgba(0,0,0,.06), rgba(0,0,0,0) 48%);
}

.uk-button-primary:focus-visible {
  outline: 2px solid #FFD200;
  outline-offset: 2px;
}

.uk-button-secondary { box-shadow: none; }

.nh-mission footer {
  background-color: rgba(0, 0, 0, 0);
  color: rgba(15,58,43);
}


/* ============================================================
   11. HERO-SECTION (Optik)
   ============================================================ */

.nh-hero { position: relative; overflow: hidden; }
.nh-hero > .uk-container { position: relative; z-index: 2; }

.nh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,18,17,.58) 0%, rgba(0,18,17,.40) 35%, rgba(0,18,17,.10) 60%, rgba(0,18,17,0) 75%),
    repeating-linear-gradient(45deg,  rgba(255,255,255,.012) 0 10px, transparent 10px 20px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.02)        0 10px, transparent 10px 20px);
}

.nh-hero h1,
.nh-hero .uk-heading-hero {
  max-width: 18ch;
  line-height: 1.06;
  letter-spacing: .2px;
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}

.nh-hero p { text-shadow: 0 1px 0 rgba(0,0,0,.2); }

@media (max-width: 959px) {
  .nh-hero::before {
    background:
      linear-gradient(180deg, rgba(0,18,17,.62) 0%, rgba(0,18,17,.42) 40%, rgba(0,18,17,0) 80%),
      repeating-linear-gradient(45deg,  rgba(255,255,255,.01) 0 12px, transparent 12px 24px),
      repeating-linear-gradient(-45deg, rgba(0,0,0,.02)       0 12px, transparent 12px 24px);
  }
}

.nh-hero .uk-button-primary {
  box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 8px 18px rgba(0,0,0,.18);
}

/* Produkt-Slider Mobile - kosmetische Anpassung */
.home-products-slider .uk-slider-items > * {
  box-sizing: border-box;
}

/* ============================================================
   POLYCARBONAT / KUNSTSTOFFSCHEIBEN-HINTERGRUND
   (Carbon-Feeling, leicht aufgehellt)
   ============================================================ */

.nh-poly-bg {
  position: relative;
  overflow: hidden;
}

.nh-poly-bg .uk-container {
  position: relative;
  z-index: 2;
}

/* Desktop */
.nh-poly-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    /* leicht schräge „Glare“-Bänder wie Licht auf Scheibe */
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.0) 22%,
      rgba(255, 255, 255, 0.06) 40%,
      rgba(255, 255, 255, 0.0) 60%,
      rgba(255, 255, 255, 0.08) 78%,
      rgba(255, 255, 255, 0.0) 100%
    ),

    /* feine horizontale Hairlines – leichte Oberflächenstruktur */
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 9px
    ),

    /* Grundtönung: transparentes, dunkles Grün mit deiner Farbe */
    radial-gradient(
      circle at 15% 0%,
      rgba(47, 161, 74, 0.40) 0%,
      rgba(0, 40, 32, 0.85) 45%,
      rgba(0, 32, 26, 0.95) 100%
    );
}

/* Mobile – Licht eher von oben, etwas stärkerer Verlauf */
@media (max-width: 959px) {
  .nh-poly-bg::before {
    background:
      linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.10) 0%,
        rgba(255, 255, 255, 0.0) 30%,
        rgba(255, 255, 255, 0.05) 55%,
        rgba(255, 255, 255, 0.0) 90%
      ),
      repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 10px
      ),
      radial-gradient(
        circle at 50% 0%,
        rgba(47, 161, 74, 0.45) 0%,
        rgba(0, 40, 32, 0.92) 40%,
        rgba(0, 32, 26, 0.98) 100%
      );
  }
}

/* Lesbarkeit */
.nh-poly-bg h1,
.nh-poly-bg .uk-heading-hero,
.nh-poly-bg h2,
.nh-poly-bg h3 {
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}

.nh-poly-bg p {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

/* ============================================================
   12. FOOTER
   ============================================================ */

footer {
  color: #fff;
  background:
    linear-gradient(45deg,  rgba(255,255,255,.03) 25%, transparent 25%) 0 0/12px 12px,
    linear-gradient(-45deg, rgba(255,255,255,.03) 25%, transparent 25%) 0 0/12px 12px,
    linear-gradient(45deg,  transparent 75%, rgba(255,255,255,.03) 75%) 0 0/12px 12px,
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.03) 75%) 0 0/12px 12px,
    #1F2427;
}

footer .uk-section,
footer .uk-section-primary,
footer .uk-section-default,
footer .uk-section-muted {
  background: transparent !important;
  color: #fff !important;
}

footer a,
footer .uk-link,
footer .uk-link-text,
footer .uk-link-muted,
footer .uk-link-toggle {
  color: #FFFFFF !important;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.15em;
}

footer a:hover,
footer a:focus,
footer .uk-link:hover,
footer .uk-link-text:hover,
footer .uk-link-toggle:hover {
  color: #2FA14A !important;
  text-decoration-color: #2FA14A;
}

footer a:focus-visible {
  outline: 2px solid #FFD200;
  outline-offset: 2px;
  border-radius: 2px;
}

footer hr,
footer .uk-divider-icon,
footer .uk-divider-small {
  border-color: rgba(255,255,255,.15) !important;
  color: rgba(255,255,255,.15) !important;
}

footer .uk-icon,
footer .uk-icon-link {
  color: #FFFFFF !important;
}

footer .uk-icon-link:hover {
  color: #2FA14A !important;
}


/* ============================================================
   13. PRODUCT TAGS
   ============================================================ */

.nh-product-tags {
  margin-top: 4px;
}

.nh-product-tag {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 3px;
  padding: 2px 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #f2f2f2;
  color: #333;
  border-radius: 999px;
}


/* ============================================================
   14. HAMBURGER – Finale Version
   ============================================================ */

#navbar .nh-desktop-toggle {
  display: none !important;
}

/* ── Mobile Hamburger (unter 960px) ── */
@media (max-width: 959px) {

  #navbar .uk-navbar-toggle.tm-menu-animate {
    display: inline-flex !important;
    align-self: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    background: #0B2E22 !important;
    border-radius: 50% !important;
    border: 2px solid #FFD200 !important;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease !important;
  }

  #navbar .uk-navbar-toggle.tm-menu-animate:hover {
    background: #1E7F39 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 6px rgba(255,210,0,.28) !important;
  }

  #navbar .uk-navbar-toggle.tm-menu-animate:active {
    transform: scale(0.92) !important;
    box-shadow: 0 0 0 3px rgba(255,210,0,.45) !important;
  }

  #navbar .uk-navbar-toggle.tm-menu-animate svg {
    width: 24px !important;
    height: 24px !important;
    color: #FFD200 !important;
    stroke: #FFD200 !important;
    stroke-width: 2.5px !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
}

/* ── Desktop Hamburger (ab 960px) ── */
@media (min-width: 960px) {

  #navbar .nh-desktop-toggle {
    display: inline-flex !important;
    align-self: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    background: #0B2E22 !important;
    border-radius: 50% !important;
    border: 2px solid #FFD200 !important;
    opacity: 0 !important;
    transform: scale(0.3) !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease,
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.2s ease,
                background 0.2s ease;
  }

  #navbar.nh-scrolled .nh-desktop-toggle {
    opacity: 1 !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
  }

  #navbar.nh-scrolled .nh-desktop-toggle:hover {
    background: #1E7F39 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 6px rgba(255,210,0,.28) !important;
  }

  #navbar.nh-scrolled .nh-desktop-toggle:active {
    transform: scale(0.92) !important;
    box-shadow: 0 0 0 3px rgba(255,210,0,.45) !important;
  }

  #navbar .nh-desktop-toggle svg {
    width: 24px !important;
    height: 24px !important;
    color: #FFD200 !important;
    stroke: #FFD200 !important;
    stroke-width: 2.5px !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
}


/* ============================================================
   15. BADGE – Gelber Kreis, nur bei > 0 sichtbar (via PHP)
   ============================================================ */

.uk-badge {
  background: #FFD200 !important;
  color: #0B2E22 !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  min-width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid #0B2E22 !important;
  padding: 0 !important;
}


/* ============================================================
   16. PRODUKTANFRAGE-BANNER (Produktseite)
   ============================================================ */

.nh-request-banner-flat6 {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transform: translateY(-140%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nh-request-banner-flat6.is-visible {
  transform: translateY(0);
}

.nh-request-banner-flat6-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.nh-request-banner-flat6-section-right {
  border-left: 1px solid rgba(0,0,0,0.06);
}

.nh-request-banner-flat6-close {
  position: absolute;
  left: 18px;
  top: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
}

.nh-request-banner-flat6-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
}

.nh-request-banner-flat6-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: #999;
  margin-bottom: 4px;
}

.nh-request-banner-flat6-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.nh-request-banner-flat6-variation {
  font-weight: 400;
  color: #666;
}

.nh-request-banner-flat6-meta {
  display: flex;
  align-items: center;
  margin-top: 6px;
  gap: 12px;
}

.nh-request-banner-flat6-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.nh-request-banner-flat6-price {
  font-size: 0.9rem;
  color: #555;
}

.nh-request-banner-flat6-summary-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #999;
  margin-bottom: 6px;
}

.nh-request-banner-flat6-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #555;
}

.nh-request-banner-flat6-summary-total {
  font-weight: 600;
  margin-top: 4px;
}

.nh-request-banner-flat6-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nh-request-banner-flat6-btn {
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 6px 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.nh-request-banner-flat6-btn-primary {
  background: #0f7b3b;
  color: #fff;
  border-color: #0f7b3b;
}

.nh-request-banner-flat6-btn-primary:hover {
  background: #0c5c2c;
  border-color: #0c5c2c;
}

.nh-request-banner-flat6-btn-secondary {
  background: #f5f5f5;
  color: #444;
  border-color: #ddd;
}

.nh-request-banner-flat6-btn-secondary:hover {
  background: #e9e9e9;
}

/* Mobile Anpassungen Banner */
@media (max-width: 960px) {
  .nh-request-banner-flat6-section-right {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .nh-request-banner-flat6-close {
    top: 8px;
  }
}

/* Badge-Pulse für Warenkorb */
@keyframes nh-cart-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.nh-cart-pulse {
  animation: nh-cart-pulse 0.35s ease-out;
}


/* ============================================================
   17. HERO-SECTION – Abstände / Heading-Position
   ============================================================ */

/* Desktop: Text etwas höher, mehr Luft nach unten */
.nh-hero.uk-section {
  padding-top: 100px;
  padding-bottom: 300px;
}

/* Mobile: Heading klar nach oben ausrichten */
@media (max-width: 959px) {

  .nh-hero.uk-section {
    padding-top: 24px;
    padding-bottom: 140px;
  }

  /* Falls der Inhalt im Grid sitzt: Spalte oben ausrichten */
  .nh-hero .uk-grid {
    align-items: flex-start;
  }
}

/* ============================================================
   18. Automatische Silbentrennung im Fließtext
   ============================================================ */
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main li,
main blockquote,
main figcaption,
main .text,
main .txt,
main .content {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* ============================================================
   19. Shop-Ansicht (Flat6-Stil mit Niederhof-Branding)
   ============================================================ */

/* --- Layout --- */
.shop-layout {
  align-items: flex-start;
  padding-top: 1.5rem;
}

/* --- Sidebar --- */
.shop-sidebar-inner {
  position: sticky;
  top: 2rem;
}

.shop-filter-heading {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.shop-filter-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-filter-list li {
  margin-bottom: .45rem;
}

.shop-filter-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #333;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.3;
  transition: color .15s ease;
}

.shop-filter-link:hover {
  color: #189459;
  text-decoration: none;
}

.shop-filter-link.is-active {
  color: #189459;
  font-weight: 600;
}

.shop-filter-box {
  width: 18px;
  height: 18px;
  border: 1px solid #cfcfcf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
  transition: all .15s ease;
  border-radius: 2px;
}

.shop-filter-link:hover .shop-filter-box {
  border-color: #189459;
}

.shop-filter-link.is-active .shop-filter-box {
  background: #189459;
  border-color: #189459;
  color: #fff;
}

/* --- Breadcrumb --- */
.shop-breadcrumb {
  font-size: 0.85rem;
  color: #888;
}

.shop-breadcrumb a {
  color: #888;
  text-decoration: none;
}

.shop-breadcrumb a:hover {
  color: #189459;
}

.shop-breadcrumb-sep {
  margin: 0 .4rem;
  color: #bbb;
}

/* --- Aktive Filter / Pills --- */
.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.shop-pill {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem .85rem;
  background: #189459;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 3px;
  transition: background .15s ease;
}

.shop-pill:hover {
  color: #fff;
  text-decoration: none;
  background: #146f44;
}

.shop-pill-close {
  font-size: 1.15rem;
  line-height: 1;
}

/* --- Toolbar --- */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
}

.shop-toolbar-left,
.shop-toolbar-right,
.shop-toolbar-count,
.shop-toolbar-view {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.shop-toolbar-label {
  font-weight: 600;
  color: #444;
  font-size: 0.9rem;
}

.shop-toolbar-select {
  min-width: 140px;
  max-width: 160px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 0.88rem;
  padding: .3rem .6rem;
  cursor: pointer;
}

.shop-toolbar-count-link {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  padding: .2rem .35rem;
  transition: color .15s ease;
}

.shop-toolbar-count-link:hover {
  color: #333;
  text-decoration: none;
}

.shop-toolbar-count-link.is-active {
  color: #111;
  font-weight: 700;
}

.shop-view-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: #888;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .15s ease;
  padding: 0;
}

.shop-view-toggle:hover {
  border-color: #999;
  color: #333;
}

.shop-view-toggle.is-active {
  border-color: #189459;
  color: #189459;
}

/* --- Produkt-Karten --- */
.shop-product-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: box-shadow .2s ease, border-color .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.shop-product-image {
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.shop-product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.03);
}

.shop-product-image-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.shop-product-placeholder-icon {
  color: #ccc;
}

.shop-product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: .25rem .55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 2px;
}

.shop-product-badge-featured {
  background: #1e87f0;
}

.shop-product-badge-new {
  background: #32d296;
  top: 8px;
}

.shop-product-badge-sold {
  background: #faa05a;
}

.shop-product-badge-featured + .shop-product-badge-new,
.shop-product-badge-featured + .shop-product-badge-sold {
  top: 34px;
}

.shop-product-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-product-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 .35rem;
  color: #222;
}

.shop-product-short {
  font-size: 0.82rem;
  color: #777;
  margin: 0 0 .35rem;
  line-height: 1.35;
}

.shop-product-meta {
  font-size: 0.78rem;
  color: #999;
  margin: 0 0 .5rem;
}

.shop-product-price {
  margin-top: auto;
  padding-top: .5rem;
}

.shop-product-price-current {
  font-weight: 700;
  color: #189459;
  font-size: 0.95rem;
}

.shop-product-price-old {
  color: #aaa;
  font-size: 0.82rem;
  margin-left: .35rem;
}

/* --- List View --- */
.shop-results.is-list .shop-products-grid {
  display: block !important;
}

.shop-results.is-list .shop-product-item {
  margin-bottom: .75rem;
}

.shop-results.is-list .shop-product-card {
  flex-direction: row;
}

.shop-results.is-list .shop-product-image {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
}

.shop-results.is-list .shop-product-image img {
  height: 100%;
  object-fit: cover;
}

.shop-results.is-list .shop-product-body {
  justify-content: center;
}

/* --- Pagination --- */
.shop-pagination .uk-pagination > li > a {
  color: #666;
  font-size: 0.9rem;
  padding: .4rem .7rem;
}

.shop-pagination .uk-pagination > li.uk-active > a {
  color: #189459;
  font-weight: 700;
}

/* --- Loading State --- */
#shop-app.is-loading {
  opacity: .6;
  pointer-events: none;
  transition: opacity .2s ease;
}

/* --- Mobile Filter --- */
.shop-filter-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .7rem 1rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 1rem;
}

.shop-filter-badge {
  background: #189459;
  color: #fff;
  font-size: 0.72rem;
  padding: .15rem .45rem;
  border-radius: 10px;
  margin-left: auto;
}

/* --- Abstand unten (auch ohne Pagination) --- */
.shop-results-spaced {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

/* --- Responsive --- */
@media (max-width: 959px) {
  .shop-filter-panel {
    display: none;
  }

  .shop-filter-panel.is-open {
    display: block;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }

  .shop-toolbar-right {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }

  .shop-results.is-list .shop-product-image {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
}

@media (min-width: 960px) {
  .shop-filter-toggle {
    display: none;
  }

  .shop-filter-panel {
    display: block !important;
  }
}


/* ============================================================
   20. Produktsuche – Suchfeld (breit, prominent)
   ============================================================ */

.nh-search-form {
  max-width: 720px;
}

.nh-search-bar {
  display: flex;
  border: 2px solid #189459;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.nh-search-bar:focus-within {
  border-color: #146f44;
  box-shadow: 0 0 0 3px rgba(24, 148, 89, 0.15);
}

.nh-search-bar-input {
  flex: 1;
  border: none;
  padding: .85rem 1.15rem;
  font-size: 1.05rem;
  color: #222;
  background: transparent;
  outline: none;
  min-width: 0;
}

.nh-search-bar-input::placeholder {
  color: #999;
}

.nh-search-bar-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.4rem;
  background: #189459;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background .15s ease;
}

.nh-search-bar-btn:hover {
  background: #146f44;
}

@media (max-width: 639px) {
  .nh-search-bar-input {
    padding: .7rem .9rem;
    font-size: 0.95rem;
  }

  .nh-search-bar-btn {
    padding: .7rem 1rem;
  }
}


/* ============================================================
   PRODUKT-KARTE: BESTELLNUMMERN-BADGE
   Niederhof-Kunden navigieren seit 20+ Jahren nach Bestellnummer.
   Format: {Fahrzeug}-{Bereich}-{Nummer}, z.B. 01-1-023
   01=911ST, 02=2.7RS, ... / 1=Vorne, 2=Innen, 3=Scheiben, ...
   ============================================================ */
.shop-product-ordernr {
  margin: 0.4rem 0 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.3;
}

.shop-product-ordernr-badge {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: #f0faf4;
  color: #189459;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border: 1px solid #d9f0e2;
  white-space: nowrap;
}

.shop-product-ordernr-meta {
  color: #666;
  font-size: 0.82rem;
  font-weight: 400;
}

/* Kontrast auf Hover der Produktkarte */
.product-card:hover .shop-product-ordernr-badge,
.shop-product:hover .shop-product-ordernr-badge {
  background: #189459;
  color: #fff;
  border-color: #189459;
}

/* ============================================================
   PRODUKTSEITE: VARIATIONEN (Niederhof B2B)
   Bestellnummer prominent. Kunden rufen mit Nummern an –
   nicht mit Produktnamen.
   ============================================================ */

/* Einheitliches Bestellnummer-Badge (wie auf Shop-Karte) */
.nh-ordernr-badge {
  display: inline-block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: #f0faf4;
  color: #189459;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border: 1px solid #d9f0e2;
  white-space: nowrap;
  line-height: 1.4;
}

.nh-ordernr-badge-lg {
  font-size: 1.35rem;
  padding: 6px 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Einzelvariation: kompakte, ruhige Darstellung */
.nh-variation-single {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.nh-variation-single-nr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.nh-variation-single-label {
  color: #666;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.nh-variation-single-name {
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.75rem;
}

.nh-variation-single-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.nh-variation-single-price strong {
  font-size: 1.6rem;
  color: #189459;
}

.nh-variation-single-weight {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.nh-variation-single-cta {
  margin-top: 1rem;
}

/* Mehrere Variationen: Header */
.nh-variations-header {
  margin: 1.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nh-variations-title {
  margin: 0;
  font-size: 1.3rem;
}

.nh-variations-hint {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Filter-Eingabe */
.nh-variations-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.nh-variations-filter-input {
  flex: 1;
  min-width: 0;
  font-family: inherit;
}

.nh-variations-filter-input:focus {
  border-color: #189459;
  box-shadow: 0 0 0 3px rgba(24, 148, 89, 0.15);
  outline: none;
}

.nh-variations-filter-count {
  font-size: 0.85rem;
  color: #666;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.nh-variations-empty {
  color: #666;
  font-style: italic;
  padding: 1rem;
  background: #fafafa;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* Tabelle: Bestellnummer-Spalte optimieren */
.nh-variations-table td:first-child {
  white-space: nowrap;
  width: 1%;
}

/* Filter-Highlight */
.nh-variations-table tr.nh-row-match td,
.nh-variation-card.nh-row-match {
  background: #fffbe6 !important;
  transition: background 0.2s ease;
}

/* Mobile-Karte */
.nh-variation-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Versteckte Zeilen (Filter) */
[data-nh-row][hidden] { display: none !important; }

/* ============================================================
   SHOP: UMSCHALTER KLASSISCH / MODERN
   ============================================================ */
.shop-mode-switch {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 3px;
  gap: 2px;
}

.shop-mode-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 12px;
  border-radius: 4px;
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  line-height: 1;
}

.shop-mode-option:hover {
  color: #189459;
  text-decoration: none;
}

.shop-mode-option.is-active {
  background: #fff;
  color: #189459;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.shop-mode-option-label {
  font-weight: 600;
}

/* ============================================================
   KLASSISCHE ANSICHT
   ============================================================ */
.nh-classic {
  margin-top: 0.5rem;
}

/* --- Kopfleiste mit Suche --- */
.nh-classic-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  position: sticky;
  top: 0;
  z-index: 20;
  flex-wrap: wrap;
}

.nh-classic-filter {
  flex: 1;
  min-width: 260px;
  position: relative;
  display: flex;
  align-items: center;
}

.nh-classic-filter-icon {
  position: absolute;
  left: 12px;
  color: #888;
  pointer-events: none;
}

.nh-classic-filter-input {
  flex: 1;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 40px 10px 40px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.nh-classic-filter-input:focus {
  outline: none;
  border-color: #189459;
  box-shadow: 0 0 0 3px rgba(24, 148, 89, 0.12);
}

.nh-classic-filter-clear {
  position: absolute;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  background: #e5e7eb;
  color: #444;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nh-classic-filter-clear:hover {
  background: #d1d5db;
}

.nh-classic-count {
  color: #555;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.nh-classic-empty {
  padding: 1.5rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  color: #78350f;
  text-align: center;
  margin-bottom: 1rem;
}

.nh-classic-empty a {
  color: #189459;
  text-decoration: underline;
}

/* --- Akkordeon-Gruppen --- */
.nh-classic-groups {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nh-classic-group {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  background: #fff;
  overflow: hidden;
}

.nh-classic-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  background: #f9fafb;
  text-decoration: none !important;
  text-transform: none;
  border: none;
  transition: background 0.15s;
}

.nh-classic-group-title::before {
  content: none !important;
}

.nh-classic-group-title:hover {
  background: #f0faf4;
  color: #189459;
}

.nh-classic-group.uk-open .nh-classic-group-title {
  background: #189459;
  color: #fff;
}

.nh-classic-group.uk-open .nh-classic-group-title .nh-classic-group-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.nh-classic-group-label {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nh-classic-group-count {
  background: #e5e7eb;
  color: #555;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.nh-classic-group-content {
  padding: 0;
  margin: 0;
}

/* --- Tabelle --- */
.nh-classic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.nh-classic-table thead {
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.nh-classic-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #777;
  font-weight: 600;
}

.nh-classic-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.nh-classic-row:hover td {
  background: #fafefc;
}

.nh-classic-row[hidden] {
  display: none !important;
}

/* Spaltenbreiten */
.nh-col-thumb   { width: 60px; }
.nh-col-nr      { width: 110px; white-space: nowrap; }
.nh-col-name    { min-width: 200px; }
.nh-col-price   { width: 150px; white-space: nowrap; text-align: right; }
.nh-col-weight  { width: 80px;  white-space: nowrap; color: #666; text-align: right; }
.nh-col-action  { width: 50px;  text-align: right; }

/* Thumbnail */
.nh-classic-thumb-link {
  display: inline-block;
  line-height: 0;
}

.nh-classic-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  background: #f3f4f6;
  display: block;
}

.nh-classic-thumb-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}

/* Name + Variante */
.nh-classic-name-link {
  color: #222;
  font-weight: 500;
  text-decoration: none;
}

.nh-classic-name-link:hover {
  color: #189459;
  text-decoration: none;
}

.nh-classic-varname {
  display: block;
  color: #666;
  font-size: 0.82rem;
  margin-top: 2px;
}

/* Preis */
.nh-col-price strong {
  color: #222;
  font-size: 0.95rem;
}

.nh-classic-netto {
  display: block;
  color: #888;
  font-size: 0.78rem;
  margin-top: 1px;
}

/* Anfrage-Button als Icon */
.nh-classic-form {
  display: inline-block;
  margin: 0;
}

.nh-classic-add-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #555;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.nh-classic-add-btn:hover {
  background: #189459;
  color: #fff;
  border-color: #189459;
  transform: translateY(-1px);
}

.nh-classic-add-btn:active {
  transform: translateY(0);
}

/* Mobile: Tabelle als Karten-Stapel */
@media (max-width: 640px) {
  .nh-classic-header {
    flex-direction: column;
    align-items: stretch;
  }

  .nh-classic-count {
    text-align: right;
  }

  .nh-classic-table thead {
    display: none;
  }

  .nh-classic-table,
  .nh-classic-table tbody,
  .nh-classic-table tr,
  .nh-classic-table td {
    display: block;
    width: 100%;
  }

  .nh-classic-row {
    display: grid !important;
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "thumb name   action"
      "thumb nr     action"
      "thumb price  action";
    gap: 4px 10px;
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
  }

  .nh-classic-row[hidden] {
    display: none !important;
  }

  .nh-col-thumb   { grid-area: thumb; width: auto; border: none; padding: 0; }
  .nh-col-name    { grid-area: name;  border: none; padding: 0; }
  .nh-col-nr      { grid-area: nr;    border: none; padding: 0; width: auto; }
  .nh-col-price   { grid-area: price; border: none; padding: 0; text-align: left; width: auto; }
  .nh-col-weight  { display: none; }
  .nh-col-action  { grid-area: action; border: none; padding: 0; width: auto; }

  .nh-col-price strong { font-size: 0.95rem; }
  .nh-classic-netto    { display: inline; margin-left: 6px; }
}

/* ============================================================
   FAHRZEUG-BILD-GRID (/produkte Startseite)
   ============================================================ */
.nh-shop-main {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.nh-vgrid-header {
  text-align: center;
  margin-bottom: 3rem;
}

.nh-vgrid-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}

.nh-vgrid-lead {
  color: #555;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.nh-vgrid-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9fa;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  color: #666;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nh-vgrid-meta-stat {
  font-weight: 500;
  color: #333;
}

.nh-vgrid-meta-sep {
  color: #ccc;
}

.nh-vgrid-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #189459;
  font-weight: 500;
  text-decoration: none;
}

.nh-vgrid-meta-link:hover {
  color: #146f44;
  text-decoration: underline;
}

.nh-vgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.nh-vgrid-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  position: relative;
}

.nh-vgrid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #189459;
  text-decoration: none;
  color: inherit;
}

.nh-vgrid-card-image {
  aspect-ratio: 4 / 3;
  background: #f3f4f6;
  overflow: hidden;
  position: relative;
}

.nh-vgrid-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.nh-vgrid-card:hover .nh-vgrid-card-image img {
  transform: scale(1.04);
}

.nh-vgrid-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.nh-vgrid-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.nh-vgrid-card-body {
  padding: 1rem 1.25rem 1.1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.nh-vgrid-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
  flex: 1;
  /* Racing-Font des Themes überschreiben */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.nh-vgrid-card-count {
  font-size: 0.85rem;
  color: #189459;
  font-weight: 600;
  white-space: nowrap;
  background: #f0faf4;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #d9f0e2;
}

/* Footer-Hinweis: „Ihr Fahrzeug ist nicht dabei?“ - CTA-Panel
   Accessibility: Text und Link-Farben müssen WCAG AA erfüllen
   (mind. 4.5:1 Kontrast auf dem hellgrünen Hintergrund) */
.nh-vgrid-footer {
  margin-top: 3.5rem;
  padding: 2.25rem 2rem;
  background: linear-gradient(135deg, #f0faf4 0%, #e6f5ed 100%);
  border: 1px solid #d9f0e2;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(24, 148, 89, 0.06);
}

.nh-vgrid-footer p {
  margin: 0;
  color: #1a1a1a !important;
  font-size: 1rem;
  line-height: 1.6;
}

.nh-vgrid-footer strong {
  color: #0f3e28 !important;
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

/* Link: dunkelgrün mit Unterstreichung, niemals weiss.
   Kontrast #0f5e3a auf #f0faf4 = ~8.5:1 (WCAG AAA). */
.nh-vgrid-footer a,
.nh-vgrid-footer a:link,
.nh-vgrid-footer a:visited {
  color: #0f5e3a !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
  text-decoration-color: #0f5e3a !important;
  transition: color 0.15s, background-color 0.15s;
  padding: 1px 2px;
  border-radius: 3px;
}

.nh-vgrid-footer a:hover,
.nh-vgrid-footer a:focus-visible {
  color: #ffffff !important;
  background-color: #0f5e3a !important;
  text-decoration-color: #ffffff !important;
  outline: none;
}

.nh-vgrid-footer a:focus-visible {
  outline: 2px solid #0f5e3a;
  outline-offset: 2px;
}

/* ============================================================
   KATALOG-SEITE (eine Seite pro Fahrzeug)
   ============================================================ */
.nh-catalog-main {
  padding-bottom: 4rem;
}

.nh-catalog-header {
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

.nh-catalog-breadcrumb {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.nh-catalog-breadcrumb a {
  color: #189459;
  text-decoration: none;
}

.nh-catalog-breadcrumb a:hover {
  text-decoration: underline;
}

.nh-catalog-breadcrumb-sep {
  margin: 0 0.4rem;
  color: #bbb;
}

.nh-catalog-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 0.4rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.nh-catalog-subtitle {
  margin: 0 0 1rem;
  color: #555;
  font-size: 1.05rem;
}

.nh-catalog-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #666;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.nh-catalog-stat strong {
  color: #189459;
  font-size: 1.05rem;
  margin-right: 0.25rem;
}

.nh-catalog-stats-sep {
  color: #ccc;
}

/* --- Layout: Sidebar + Body --- */
.nh-catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* --- Sidebar --- */
.nh-catalog-sidebar {
  position: sticky;
  /* Unterhalb der Sticky-Navbar: 6rem = Navbar-Höhe + Puffer */
  top: 6rem;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.nh-catalog-search {
  position: relative;
  margin-bottom: 1.5rem;
}

.nh-catalog-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.nh-catalog-search-input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  transition: all 0.15s;
}

.nh-catalog-search-input:focus {
  outline: none;
  border-color: #189459;
  box-shadow: 0 0 0 3px rgba(24, 148, 89, 0.1);
}

.nh-catalog-toc {
  margin-bottom: 1.5rem;
}

.nh-catalog-toc-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  font-weight: 600;
  margin-bottom: 0.6rem;
  padding: 0 0.75rem;
}

.nh-catalog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.nh-catalog-toc-list li {
  padding: 0;
}

.nh-catalog-toc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #555;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  line-height: 1.3;
  border-left: 3px solid transparent;
  transition: all 0.15s ease;
}

.nh-catalog-toc-link:hover {
  background: #f0faf4;
  color: #189459;
  text-decoration: none;
}

.nh-catalog-toc-link.is-active {
  background: #f0faf4;
  color: #189459;
  border-left-color: #189459;
  font-weight: 600;
}

.nh-catalog-toc-digit {
  font-family: "SFMono-Regular", Consolas, monospace;
  background: #f3f4f6;
  color: #666;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
}

.nh-catalog-toc-link.is-active .nh-catalog-toc-digit {
  background: #189459;
  color: #fff;
}

.nh-catalog-toc-label {
  flex: 1;
}

.nh-catalog-toc-count {
  color: #999;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.nh-catalog-backlink-wrap {
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.nh-catalog-backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
}

.nh-catalog-backlink:hover {
  color: #189459;
  text-decoration: none;
}

/* --- Main Body --- */
.nh-catalog-body {
  min-width: 0; /* wichtig für grid */
}

.nh-catalog-empty {
  padding: 1.25rem 1.5rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #78350f;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.nh-catalog-empty a {
  color: #189459;
}

/* --- Bereichs-Sektionen --- */
.nh-catalog-area {
  margin-bottom: 3rem;
  /* Offset für Sticky-Navbar bei Anker-Sprung (TOC-Links).
     8rem = ca. Navbar-Höhe + Puffer, damit der grüne Banner
     nicht vom Header verdeckt wird. */
  scroll-margin-top: 8rem;
}

.nh-catalog-area[hidden] {
  display: none;
}

.nh-catalog-area-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: #189459;
  color: #fff;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(24, 148, 89, 0.15);
  /* Theme-Fonts mit Texturen überschreiben: saubere Schrift */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

.nh-catalog-area-banner * {
  font-family: inherit !important;
  text-shadow: none !important;
  -webkit-text-fill-color: inherit !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
}

.nh-catalog-area-digit {
  font-family: "SFMono-Regular", Consolas, monospace !important;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.nh-catalog-area-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  flex: 1;
  color: #fff;
  letter-spacing: 0;
}

.nh-catalog-area-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

/* --- Produkt-Block --- */
.nh-catalog-block {
  display: grid;
  grid-template-columns: 120px 1fr 360px;
  gap: 1.5rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: all 0.15s ease;
}

.nh-catalog-block:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nh-catalog-block[hidden] {
  display: none;
}

.nh-catalog-block-media {
  width: 120px;
}

.nh-catalog-block-image-link {
  display: block;
  line-height: 0;
}

.nh-catalog-block-media img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.nh-catalog-block-image-placeholder {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 6px;
  color: #ccc;
}

.nh-catalog-block-info {
  min-width: 0;
}

.nh-catalog-block-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 600;
  /* Theme-Racing-Font überschreiben: klare Sans-Serif */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.nh-catalog-block-title a {
  color: #1a1a1a;
  text-decoration: none;
  /* Inherit der sauberen Font-Family */
  font-family: inherit !important;
  font-style: inherit !important;
  letter-spacing: inherit !important;
}

.nh-catalog-block-title a:hover {
  color: #189459;
  text-decoration: none;
}

.nh-catalog-block-desc {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
  /* Darf umbrechen, kein Text-Overflow */
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* --- Materialvarianten im selben Block --- */
.nh-catalog-block-variants {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/*
 * Variations-Zeile - vertikal gestapelt:
 *   Zeile 1: Bestellnummer
 *   Zeile 2: Preis Brutto + Netto + Gewicht
 *   Zeile 3: Material/Varianten-Name (z.B. „GFK“ oder „Kohle/Kevlar“)
 * Button rechts, über alle 3 Zeilen zentriert, fixe Breite 38px.
 */
.nh-catalog-variant {
  display: grid;
  grid-template-columns: 1fr 38px;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "ordernr button"
    "meta    button"
    "header  button";
  align-items: center;
  gap: 0.3rem 0.85rem;
  padding: 0.7rem 0.85rem;
  background: #fafafa;
  border: 1px solid #eee;
  border-left: 3px solid #d1d5db;
  border-radius: 5px;
  transition: background 0.15s;
}

.nh-catalog-variant:hover {
  background: #f5f7f6;
}

/* Material-Farbkodierung (linke Kante) */
.nh-catalog-variant.mat-carbon  { border-left-color: #1a1a1a; }
.nh-catalog-variant.mat-kevlar  { border-left-color: #b45309; }
.nh-catalog-variant.mat-gfk     { border-left-color: #3b82f6; }
.nh-catalog-variant.mat-alu     { border-left-color: #6b7280; }
.nh-catalog-variant.mat-default { border-left-color: #189459; }

/* Zeile 1: Bestellnummer */
.nh-catalog-variant-ordernr {
  grid-area: ordernr;
  display: flex;
  align-items: center;
  min-width: 0;
}

/* Zeile 3: Material-Name */
.nh-catalog-variant-header {
  grid-area: header;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex-wrap: wrap;
  /* Leer-Zeile bleibt kompakt */
  min-height: 0;
}

.nh-catalog-variant-name {
  font-size: 0.88rem;
  color: #333;
  font-weight: 500;
  /* Nicht mehr abschneiden - darf umbrechen */
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.3;
}

.nh-catalog-variant-meta {
  grid-area: meta;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.nh-catalog-variant-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
}

.nh-catalog-variant-price strong {
  font-size: 0.98rem;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
}

.nh-catalog-variant-netto {
  color: #888;
  font-size: 0.78rem;
}

.nh-catalog-variant-weight {
  color: #777;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.nh-catalog-variant-form {
  grid-area: button;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

/* Icon-only Button („Zur Anfrage“-Text immer verborgen) */
.nh-catalog-variant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: #fff;
  color: #189459;
  border: 1px solid #189459;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.nh-catalog-variant-btn:hover {
  background: #189459;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(24, 148, 89, 0.25);
}

.nh-catalog-variant-btn:active {
  transform: translateY(0);
}

/* Das inline SVG bekommt currentColor und skaliert mit dem Button */
.nh-catalog-variant-btn .nh-anfrage-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.nh-catalog-variant-btn:hover .nh-anfrage-icon {
  transform: scale(1.08);
}

/* Text-Label im Button nie zeigen (Icon-only immer) */
.nh-catalog-variant-btn-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.nh-catalog-end {
  text-align: center;
  padding: 2rem 0 1rem;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

.nh-catalog-end-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #189459;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid #d9f0e2;
  border-radius: 6px;
  background: #f0faf4;
}

.nh-catalog-end-link:hover {
  background: #189459;
  color: #fff;
  text-decoration: none;
}

/* --- Shop-Toolbar-Backlink (im modernen Shop) --- */
.shop-toolbar-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 14px;
  background: #f3f4f6;
  color: #444;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.shop-toolbar-back-link:hover {
  background: #189459;
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE: Katalog
   ============================================================ */
@media (max-width: 960px) {
  .nh-catalog-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nh-catalog-sidebar {
    position: static;
    max-height: none;
    order: -1;
  }

  .nh-catalog-toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .nh-catalog-toc-link {
    flex: 0 1 auto;
    padding: 0.35rem 0.6rem;
    border: 1px solid #e5e7eb;
    font-size: 0.82rem;
  }

  .nh-catalog-toc-count {
    display: none;
  }
}

@media (max-width: 640px) {
  .nh-catalog-block {
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .nh-catalog-block-media,
  .nh-catalog-block-media img,
  .nh-catalog-block-image-placeholder {
    width: 80px;
    height: 80px;
  }

  .nh-catalog-block-variants {
    grid-column: 1 / -1;
  }

  .nh-catalog-variant {
    grid-template-columns: 1fr 38px;
    grid-template-areas:
      "ordernr button"
      "meta    button"
      "header  button";
    padding: 0.6rem;
    gap: 0.25rem 0.65rem;
  }

  .nh-catalog-variant-meta {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}

/* ============================================================
   PRODUKTSEITE: Meta-Zeile + Footer-CTA (UX-Cleanup)
   Ersetzt die alten Button-artigen Kategorie-/Tag-Links
   und die entfernten Social-Share/Prevnext/Related-Sektionen.
   ============================================================ */

/* Kompakte Meta-Zeile unter Beschreibung */
.nh-product-meta {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #189459;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nh-product-meta-row {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.nh-product-meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 700;
  min-width: 75px;
  /* WCAG AA: #6b7280 auf #f9fafb = 5.2:1 ✓ */
}

.nh-product-meta-value,
.nh-product-meta-tag {
  color: #0f5e3a !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
  /* WCAG AAA: #0f5e3a auf #f9fafb = 8.8:1 */
}

.nh-product-meta-value:hover,
.nh-product-meta-tag:hover {
  color: #146f44 !important;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.nh-product-meta-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
}

/* Dezentes Separator für mehrere Tags */
.nh-product-meta-tag + .nh-product-meta-tag::before {
  content: "·";
  color: #9ca3af;
  margin-right: 0.85rem;
  font-weight: 400;
}

/* ------------------------------------------------------------
   Footer-CTA: "Zurück zum Katalog"
   ------------------------------------------------------------ */
.nh-product-footer-cta {
  margin-top: 3rem;
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
  text-align: center;
}

.nh-product-footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  background: #fff;
  color: #189459 !important;
  border: 1px solid #189459;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.nh-product-footer-cta-link:hover,
.nh-product-footer-cta-link:focus-visible {
  background: #189459;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 148, 89, 0.2);
  text-decoration: none !important;
  outline: none;
}

.nh-product-footer-cta-link:focus-visible {
  outline: 2px solid #189459;
  outline-offset: 3px;
}

.nh-product-footer-cta-link svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nh-product-footer-cta-link:hover svg {
  transform: translateX(-4px);
}

/* Mobile: kleinere Meta-Box, volle Breite CTA */
@media (max-width: 640px) {
  .nh-product-meta {
    padding: 0.85rem 1rem;
  }

  .nh-product-meta-row {
    flex-direction: column;
    gap: 0.2rem;
  }

  .nh-product-meta-label {
    min-width: 0;
  }

  .nh-product-footer-cta-link {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   STARTSEITE v4 — Design-Prinzipien:
   - Rams: 50-Jahre-Zahl als Hero-Argument, nicht dekorativ
   - Vignelli: Strikte Typo-Hierarchie (3 Größen Display/H2/Body)
   - Tschichold: Großzügiges Vertikal-Padding (~150px)
   - Scher: Hero mit typografischem Statement
   - Bierut: Manfred-Sektion als ganzes Porträt, nicht Teaser
   ============================================================ */

/* ------------------------------------------------------------
   SEKTIONS-ATMUNG: Großzügiges Padding
   ------------------------------------------------------------ */
.nh-home-section-grid,
.nh-home-section-manfred,
.nh-home-section-pillars,
.nh-home-section-contact {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

/* Sektion-Übergänge noch weicher durch off-white statt Beige */
.nh-home-section-manfred {
  background: #fbfaf7 !important;  /* off-white statt Beige */
}

.nh-home-section-pillars {
  background: #fff !important;
}

.nh-home-section-grid {
  background: #fff !important;
}

.nh-home-section-contact {
  background: #fbfaf7 !important;
  padding-bottom: 10rem !important;
}

/* ------------------------------------------------------------
   UNIVERSAL: Eyebrow-Label
   ------------------------------------------------------------ */
.nh-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #189459;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: "Inter", sans-serif !important;
  font-style: normal !important;
}

.nh-eyebrow-light {
  color: #FFD700;
}

/* ------------------------------------------------------------
   HERO — Typografisches Statement (Scher-Prinzip)
   ------------------------------------------------------------ */
.nh-hero {
  position: relative;
}

.nh-hero h1 {
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-style: normal !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
  margin-bottom: 1.5rem !important;
}

.nh-hero-kicker-wrap {
  margin: 0 0 1.25rem !important;
}

.nh-hero-kicker {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 215, 0, 0.18);
  color: #FFD700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  border-radius: 3px;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

/* ------------------------------------------------------------
   SEKTION-HEAD (zentriert, mit mehr Raum)
   ------------------------------------------------------------ */
.nh-home-vgrid-intro,
.nh-home-pillars-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4.5rem;
}

.nh-home-vgrid-h2,
.nh-home-pillars-h2 {
  margin: 0 0 1rem !important;
  font-size: clamp(2rem, 3.8vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: #111 !important;
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-style: normal !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  line-height: 1.15 !important;
}

.nh-home-vgrid-sub,
.nh-home-pillars-sub {
  margin: 0;
  color: #555;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------
   FAHRZEUG-GRID (gruppiert)
   ------------------------------------------------------------ */
.nh-vgroup {
  margin-bottom: 4rem;
}

.nh-vgroup:last-of-type {
  margin-bottom: 2rem;
}

.nh-vgroup-title {
  margin: 0 0 1.5rem !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #555 !important;
  font-weight: 700 !important;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Inter", sans-serif !important;
  font-style: normal !important;
  position: relative;
}

.nh-vgroup-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 2px;
  background: #189459;
}

.nh-home-vgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}

.nh-home-vgrid-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  transition: all 0.25s ease;
}

.nh-home-vgrid-card:hover {
  transform: translateY(-4px);
  border-color: #189459;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.nh-home-vgrid-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.nh-home-vgrid-card:hover img {
  transform: scale(1.07);
}

.nh-home-vgrid-label {
  padding: 0.9rem 0.95rem 1rem;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 600;
  color: #111;
  font-family: "Inter", sans-serif !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Label einzeilig; wenn em-Tag legacy drin, neutralisieren */
.nh-home-vgrid-label em {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal !important;
  margin: 0;
}

.nh-home-vgrid-foot {
  text-align: center;
  margin-top: 3rem;
}

.nh-home-vgrid-all {
  display: inline-block;
  color: #189459 !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  padding: 0.75rem 1.5rem;
  border: 1px solid #189459;
  border-radius: 6px;
  transition: all 0.15s;
}

.nh-home-vgrid-all:hover {
  background: #189459;
  color: #fff !important;
}

/* ------------------------------------------------------------
   MANFRED-SEKTION (Bierut-Prinzip: ganzes Porträt)
   ------------------------------------------------------------ */
.nh-manfred-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Linke Spalte: Werkstatt-Bild + Zitat-Badge */
.nh-manfred-image {
  position: relative;
  padding-bottom: 60px;  /* Platz für das Zitat-Badge unten */
}

.nh-manfred-image-wrap {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.nh-manfred-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Zitat-Badge schwebt über dem Bild unten rechts */
.nh-manfred-quote-badge {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: #0f3e28;
  color: #fff;
  padding: 1.5rem 1.75rem 1.5rem 3.25rem;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(15, 62, 40, 0.4);
  border-left: 3px solid #FFD700;
}

.nh-manfred-quote-mark {
  position: absolute;
  left: 14px;
  top: 6px;
  font-size: 4rem;
  line-height: 1;
  color: #FFD700;
  font-family: Georgia, serif;
  font-style: italic;
}

.nh-manfred-quote-badge p {
  margin: 0 0 0.65rem !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  font-style: italic;
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
}

.nh-manfred-quote-badge cite {
  display: block;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-style: normal !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Rechte Spalte: Text + Timeline */
.nh-manfred-text {
  padding-top: 0;
}

.nh-manfred-h2 {
  margin: 0 0 1.5rem !important;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: #111 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-style: normal !important;
  text-transform: none !important;
}

.nh-manfred-lead {
  margin: 0 0 1.75rem !important;
  font-size: 1.12rem !important;
  line-height: 1.6 !important;
  color: #333;
}

.nh-manfred-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.25rem;
}

/* Timeline — wie Tabelle (Vignelli-Prinzip) */
.nh-manfred-timeline {
  margin: 2rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.nh-manfred-milestone {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  padding: 0.6rem 0;
  align-items: baseline;
  border-bottom: 1px dashed rgba(24, 148, 89, 0.15);
}

.nh-manfred-milestone:last-child {
  border-bottom: none;
}

.nh-manfred-year {
  font-weight: 800;
  color: #189459;
  font-family: "Inter", sans-serif !important;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  text-align: right;
}

.nh-manfred-fact {
  color: #333;
  font-size: 0.96rem;
  line-height: 1.45;
}

.nh-manfred-cta {
  display: inline-block;
  margin-top: 1.25rem;
  color: #189459 !important;
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: 2px solid #189459;
  padding-bottom: 2px;
  transition: all 0.15s;
}

.nh-manfred-cta:hover {
  color: #0f3e28 !important;
  border-bottom-color: #0f3e28;
}

/* ------------------------------------------------------------
   DREI SÄULEN (Rams-Prinzip: 50 dominant, andere sekundär)
   ------------------------------------------------------------ */
.nh-home-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nh-home-pillar {
  background: #fff;
  padding: 2.75rem 2rem 2.5rem;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  text-align: left;  /* Tschichold: linksbündig für deutsches Handwerk */
  transition: all 0.25s ease;
}

.nh-home-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #189459;
}

/* Erste Säule dominant (Rams-Prinzip: 50 Jahre ist das Kern-Argument) */
.nh-home-pillar:first-child {
  background: linear-gradient(180deg, #fff 0%, #f0faf4 100%);
  border-color: #189459;
  border-width: 2px;
}

.nh-home-pillar-number {
  font-size: 4rem;
  font-weight: 800;
  color: #189459;
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
  font-family: "Racing Sans One", "Oswald", "Impact", sans-serif !important;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}

/* Erste Säule noch größer */
.nh-home-pillar:first-child .nh-home-pillar-number {
  font-size: 5rem;
}

.nh-home-pillar-unit {
  font-size: 1.15rem;
  font-weight: 700;
  color: #189459;
  letter-spacing: 0;
  opacity: 0.8;
}

.nh-home-pillar:first-child .nh-home-pillar-unit {
  font-size: 1.35rem;
}

.nh-home-pillar-title {
  margin: 0 0 1rem !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  font-family: "Inter", sans-serif !important;
  font-style: normal !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

.nh-home-pillar p {
  margin: 0;
  color: #555;
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   KONTAKT-CTA (dunkelgrün, gelber Akzent)
   ------------------------------------------------------------ */
.nh-home-contact-box {
  background: linear-gradient(135deg, #0c3220 0%, #164f30 100%);
  border-radius: 12px;
  padding: 4.5rem 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 60px rgba(15, 62, 40, 0.28);
  border-top: 4px solid #FFD700;
  max-width: 840px;
  margin: 0 auto;
}

.nh-home-contact-h2 {
  margin: 0 0 1.25rem !important;
  font-size: clamp(1.8rem, 3vw, 2.3rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-style: normal !important;
  text-transform: none !important;
}

.nh-home-contact-lead {
  margin: 0 auto 2.25rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
}

.nh-home-contact-actions {
  display: inline-flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.nh-home-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.85rem;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  min-width: 200px;
  letter-spacing: 0;
}

.nh-home-contact-btn-primary {
  background: #FFD700;
  color: #0c3220 !important;
  border: 2px solid #FFD700;
}

.nh-home-contact-btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.35);
}

.nh-home-contact-btn-secondary {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
}

.nh-home-contact-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.nh-home-contact-hours {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .nh-home-section-grid,
  .nh-home-section-manfred,
  .nh-home-section-pillars,
  .nh-home-section-contact {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .nh-manfred-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nh-manfred-image {
    padding-bottom: 0;
  }

  .nh-manfred-quote-badge {
    position: static;
    margin-top: 1.5rem;
  }

  .nh-home-pillar:first-child .nh-home-pillar-number {
    font-size: 4rem;
  }

  .nh-home-pillar {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .nh-home-section-grid,
  .nh-home-section-manfred,
  .nh-home-section-pillars,
  .nh-home-section-contact {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .nh-home-vgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .nh-home-vgrid-card img {
    height: 105px;
  }

  .nh-home-vgrid-label {
    font-size: 0.82rem;
    padding: 0.55rem 0.65rem 0.7rem;
  }

  .nh-home-vgrid-label em {
    font-size: 0.72rem;
  }

  .nh-vgroup-title {
    font-size: 0.8rem !important;
  }

  .nh-manfred-milestone {
    grid-template-columns: 60px 1fr;
    gap: 0.75rem;
  }

  .nh-home-contact-box {
    padding: 2.5rem 1.5rem;
  }

  .nh-home-contact-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ============================================================
   RACING-FONT für die drei Säulen-Zahlen (50/105/100)
   Sparsame Verwendung = Maximum Impact (Paula-Scher-Prinzip)
   ============================================================ */
.nh-home-pillar-number {
  /* Versuchs-Stack: wenn eine Display-Serif im Theme existiert
     (z.B. im zero-one enthalten), wird sie genommen.
     Sonst Fallback auf eine kondensierte System-Alternative. */
  font-family: "Racing Sans One", "Oswald", "Impact", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase;  /* hilft, wenn "C" oder "%" dazu kommt */
  font-size: 5rem !important;
  line-height: 0.95 !important;
}

/* Erste Säule (50 Jahre) noch dominanter */
.nh-home-pillar:first-child .nh-home-pillar-number {
  font-size: 6.5rem !important;
}

/* Einheit neben der Zahl bleibt normale Sans */
.nh-home-pillar-unit {
  font-family: "Inter", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ============================================================
   KUNSTSTOFFSCHEIBEN-SEKTION (Unique Selling)
   Zwischen Manfred und Säulen. Off-white Hintergrund mit
   subtilem gelben Akzent - wie ein Focus-Moment.
   ============================================================ */
.nh-home-section-scheiben {
  background: #fff !important;
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
  position: relative;
}

/* Gelber Akzent-Streifen oben als Niederhof-Signatur */
.nh-home-section-scheiben::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
}

.nh-scheiben-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nh-scheiben-h2 {
  margin: 0 0 1.5rem !important;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: #111 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-style: normal !important;
  text-transform: none !important;
}

.nh-scheiben-lead {
  margin: 0 0 1.75rem !important;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
  color: #333;
}

.nh-scheiben-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nh-scheiben-benefits li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.55;
  border-bottom: 1px dashed rgba(24, 148, 89, 0.18);
}

.nh-scheiben-benefits li:last-child {
  border-bottom: none;
}

/* Check-Icon als Pseudo-Element vor jedem Benefit */
.nh-scheiben-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: #189459;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8l3 3 5-6'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.nh-scheiben-cta {
  display: inline-block;
  color: #fff !important;
  background: #189459;
  font-weight: 700;
  text-decoration: none !important;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.nh-scheiben-cta:hover {
  background: #0f3e28;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(24, 148, 89, 0.25);
}

/* Bild-Seite mit schwebendem Zahlen-Badge */
.nh-scheiben-image {
  position: relative;
}

.nh-scheiben-image-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.nh-scheiben-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Badge in der Ecke - das "70%" hebt die Zahl hervor */
.nh-scheiben-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #0f3e28;
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(15, 62, 40, 0.35);
  border-left: 3px solid #FFD700;
  min-width: 130px;
}

.nh-scheiben-badge-num {
  display: block;
  font-family: "Racing Sans One", "Oswald", "Impact", sans-serif !important;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  color: #FFD700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.nh-scheiben-badge-lbl {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 960px) {
  .nh-scheiben-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nh-scheiben-image {
    order: -1;  /* Bild oben auf Mobil */
  }

  .nh-scheiben-badge {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .nh-home-pillar:first-child .nh-home-pillar-number {
    font-size: 5rem !important;
  }
}

@media (max-width: 640px) {
  .nh-home-section-scheiben {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .nh-home-pillar-number {
    font-size: 4rem !important;
  }

  .nh-home-pillar:first-child .nh-home-pillar-number {
    font-size: 4.5rem !important;
  }
}


/* === SERVICES-SEITE BLOCK-START === */
/* ============================================================
   SERVICES-SEITE — Schwartz-Flow Layout
   =============================================================
   
   Klassen-Präfix: nh-svc-*
   Sections: Hero (dunkelgrün), Highlights, Support (hellgrau), 
             Trust, CTA (dunkelgrün)
*/

/* -- Shared/Utility -- */
.nh-svc-h2 {
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem) !important;
  font-weight: 400 !important;
  color: #111 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 1rem !important;
  text-transform: none !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

.nh-svc-sub {
  font-family: "Inter", sans-serif !important;
  font-size: 1.05rem !important;
  color: #555 !important;
  line-height: 1.55 !important;
  margin: 0 0 2rem !important;
  max-width: 720px !important;
}

.nh-svc-dark .nh-svc-h2,
.nh-svc-dark .nh-svc-sub { color: #fff !important; }

.nh-svc-cta {
  display: inline-block !important;
  color: #189459 !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(24, 148, 89, 0.3) !important;
  padding-bottom: 2px !important;
  transition: border-color 0.2s ease !important;
}

.nh-svc-cta:hover {
  border-bottom-color: #189459 !important;
  text-decoration: none !important;
}


/* =====================================================
   SEKTION 1: HERO
   ===================================================== */

.nh-svc-section-hero {
  background: linear-gradient(135deg, #0f3e28 0%, #164e33 100%) !important;
  padding: 5rem 0 !important;
}

.nh-svc-hero {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nh-svc-hero-h1 {
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-size: clamp(2rem, 5vw, 3.75rem) !important;
  font-weight: 400 !important;
  color: #fff !important;
  line-height: 1.05 !important;
  letter-spacing: -0.015em !important;
  margin: 0.5rem 0 1.5rem !important;
  text-transform: none !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

.nh-svc-hero-lead {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.6 !important;
  max-width: 720px !important;
  margin: 0 auto 2.5rem !important;
}

.nh-svc-hero-lead strong { color: #FFD700 !important; font-weight: 600 !important; }

.nh-svc-hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.nh-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.85rem 1.75rem !important;
  background: #189459 !important;
  color: #fff !important;
  border: none !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  transition: background 0.2s ease, transform 0.1s ease !important;
  cursor: pointer !important;
}

.nh-btn-primary:hover {
  background: #0f5e3a !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
  color: #fff !important;
}

.nh-btn-yellow {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.85rem 1.75rem !important;
  background: #FFD700 !important;
  color: #0f3e28 !important;
  border: none !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  transition: background 0.2s ease, transform 0.1s ease !important;
}

.nh-btn-yellow:hover {
  background: #ffcc00 !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
  color: #0f3e28 !important;
}

.nh-btn-ghost-light {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.85rem 1.75rem !important;
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
}

.nh-btn-ghost-light:hover {
  border-color: #FFD700 !important;
  color: #FFD700 !important;
  text-decoration: none !important;
}


/* =====================================================
   SEKTION 2: HIGHLIGHT-SERVICES (3 große Cards)
   ===================================================== */

.nh-svc-highlights-intro,
.nh-svc-support-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.nh-svc-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 960px) {
  .nh-svc-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nh-svc-highlight {
  background: #fff !important;
  border: 1px solid #e6eae5 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.nh-svc-highlight:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(15, 62, 40, 0.12) !important;
  border-color: #189459 !important;
}

.nh-svc-highlight-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f6f8f5;
}

.nh-svc-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.nh-svc-highlight:hover .nh-svc-highlight-media img {
  transform: scale(1.04);
}

.nh-svc-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 62, 40, 0.92);
  color: #FFD700;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.nh-svc-highlight-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.nh-svc-kicker {
  font-family: "Inter", sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: #189459 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}

.nh-svc-highlight-title {
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-size: 1.45rem !important;
  font-weight: 400 !important;
  color: #111 !important;
  line-height: 1.2 !important;
  margin: 0 0 1rem !important;
  text-transform: none !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}


/* =====================================================
   SEKTION 3: SUPPORT-SERVICES (7er Grid)
   ===================================================== */

.nh-svc-section-support {
  background: #f6f8f5 !important;
}

.nh-svc-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .nh-svc-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .nh-svc-support-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nh-svc-support-card {
  display: block !important;
  padding: 1.5rem 1.25rem !important;
  background: #fff !important;
  border: 1px solid #e6eae5 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  position: relative !important;
}

.nh-svc-support-card:hover {
  border-color: #189459 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(15, 62, 40, 0.08) !important;
  text-decoration: none !important;
}

.nh-svc-support-title {
  font-family: "Inter", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin: 0 0 0.4rem !important;
  line-height: 1.25 !important;
}

.nh-svc-support-desc {
  font-family: "Inter", sans-serif !important;
  font-size: 0.88rem !important;
  color: #666 !important;
  line-height: 1.45 !important;
  margin: 0 0 1rem !important;
}

.nh-svc-support-price {
  display: inline-block !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #189459 !important;
  padding-top: 0.6rem !important;
  border-top: 1px solid #e6eae5 !important;
  width: 100% !important;
}


/* =====================================================
   SEKTION 4: TRUST-BLOCK (Manfred)
   ===================================================== */

.nh-svc-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .nh-svc-trust {
    grid-template-columns: 2fr 3fr;
    gap: 3.5rem;
  }
}

.nh-svc-trust-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #f6f8f5;
}

.nh-svc-trust-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nh-svc-trust-quote {
  background: #f6f8f5 !important;
  border-left: 3px solid #FFD700 !important;
  padding: 1.25rem 1.5rem !important;
  margin: 1.25rem 0 2rem !important;
  border-radius: 0 4px 4px 0 !important;
}

.nh-svc-trust-quote p {
  font-family: "Inter", sans-serif !important;
  font-style: italic !important;
  font-size: 1.05rem !important;
  color: #0f3e28 !important;
  line-height: 1.55 !important;
  margin: 0 0 0.5rem !important;
}

.nh-svc-trust-quote cite {
  font-family: "Inter", sans-serif !important;
  font-size: 0.82rem !important;
  color: #666 !important;
  font-style: normal !important;
  display: block !important;
}

.nh-svc-trust-points {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.75rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

.nh-svc-trust-points li {
  font-family: "Inter", sans-serif !important;
  font-size: 0.95rem !important;
  color: #333 !important;
  line-height: 1.4 !important;
  padding-left: 1.25rem !important;
  position: relative !important;
}

.nh-svc-trust-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #189459;
  font-weight: 700;
}

.nh-svc-trust-points li strong {
  color: #189459 !important;
  font-weight: 700 !important;
  margin-right: 0.25rem !important;
}


/* =====================================================
   SEKTION 5: CTA-BLOCK
   ===================================================== */

.nh-svc-section-cta {
  background: linear-gradient(135deg, #0f3e28 0%, #164e33 100%) !important;
  text-align: center !important;
}

.nh-svc-cta-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nh-svc-cta-h2 {
  font-family: "Racing Sans One", "Inter", sans-serif !important;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
  color: #fff !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  margin: 0.5rem 0 1.25rem !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

.nh-svc-cta-lead {
  font-family: "Inter", sans-serif !important;
  font-size: 1.05rem !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.55 !important;
  margin: 0 auto 2rem !important;
  max-width: 620px !important;
}

.nh-svc-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.nh-svc-cta-hours {
  font-family: "Inter", sans-serif !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 1.25rem 0 0 !important;
}


/* =====================================================
   EYEBROW — Shared (aus anderen Seiten übernommen/konsistent)
   ===================================================== */

.nh-eyebrow-light {
  color: #FFD700 !important;
}

/* === SERVICES-SEITE BLOCK-END === */


/* =====================================================
   SERVICES: WEISSRAUM / SECTION SPACING v2 (2026-04-22)
   Konsistente Vertikal-Abstände zwischen allen Sektionen.
   ===================================================== */

.nh-svc-section-hero,
.nh-svc-section-highlights,
.nh-svc-section-support,
.nh-svc-section-trust,
.nh-svc-section-cta {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

@media (max-width: 960px) {
  .nh-svc-section-hero,
  .nh-svc-section-highlights,
  .nh-svc-section-support,
  .nh-svc-section-trust,
  .nh-svc-section-cta {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* Hero: bleibt etwas luftiger oben wegen Navbar */
.nh-svc-section-hero {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Support-Eyebrow zu Grid: mehr Luft */
.nh-svc-support-intro {
  margin-bottom: 3rem !important;
}

.nh-svc-highlights-intro {
  margin-bottom: 3rem !important;
}
/* === END SERVICES SPACING v2 === */


/* =====================================================
   SUBPAGE TEMPLATE v2 (10 Service-Unterseiten)
   Hero-Badge, Prozess-Cards, Fact-Grid, Info-List, Trust, Gallery
   Alle Sektionen erben Weißraum-Fix von v2 (custom-niederhof.css)
   ===================================================== */

/* --- Subpage Hero (Variant von Hauptseite-Hero) ------- */
.nh-subpage-hero .nh-svc-hero-h1 {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem) !important;
  max-width: 920px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.nh-subpage-hero .nh-svc-hero-lead {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 1.1rem !important;
  line-height: 1.55 !important;
}

.nh-svc-hero-badge {
  display: inline-block;
  background: #FFD700;
  color: #0f3e28 !important;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  margin: 0 auto 1.75rem;
  /* center block inside flex */
}

.nh-subpage-hero .nh-svc-hero-inner {
  text-align: center;
}


/* --- Section Intro (Eyebrow + H2 + Sub) --------------- */
.nh-subpage-section-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}


/* --- Prozess Cards Grid ------------------------------ */
.nh-subpage-prozess-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 720px) {
  .nh-subpage-prozess-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .nh-subpage-prozess-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .nh-subpage-prozess-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.nh-subpage-prozess-card {
  background: #fff;
  border: 1px solid #e6eae5;
  border-radius: 8px;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  transition: all 0.2s ease;
}

.nh-subpage-prozess-card:hover {
  border-color: #189459;
  box-shadow: 0 10px 24px rgba(15, 62, 40, 0.07);
}

.nh-subpage-card-num {
  display: inline-block;
  font-family: "Racing Sans One", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #189459;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.nh-subpage-prozess-title {
  font-family: "Inter", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin: 0 0 0.7rem !important;
  line-height: 1.25 !important;
}

.nh-subpage-prozess-body {
  font-family: "Inter", sans-serif !important;
  font-size: 0.95rem !important;
  color: #444 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}


/* --- Fact Grid (Zahlen-Block) ------------------------ */
.nh-subpage-fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 720px) {
  .nh-subpage-fact-grid { grid-template-columns: repeat(3, 1fr); }
}

.nh-subpage-fact {
  background: #fff;
  border-radius: 8px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border-top: 3px solid #FFD700;
}

.nh-subpage-fact-num {
  display: block;
  font-family: "Racing Sans One", "Inter", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: #189459;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.nh-subpage-fact-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}


/* --- Info List (tabellarisch, für Services ohne Bilder) */
.nh-subpage-info-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e6eae5;
}

.nh-subpage-info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e6eae5;
}

.nh-subpage-info-row:last-child { border-bottom: none; }

@media (min-width: 640px) {
  .nh-subpage-info-row {
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.nh-subpage-info-label {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #189459;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nh-subpage-info-value {
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  color: #333;
  line-height: 1.5;
}


/* --- Gallery Grid ------------------------------------ */
.nh-subpage-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nh-subpage-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .nh-subpage-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.nh-subpage-gallery-tile {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  background: #e6eae5;
}

.nh-subpage-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.nh-subpage-gallery-tile:hover img { transform: scale(1.04); }


/* --- Trust Block (neue Variante, einspaltig) --------- */
.nh-subpage-trust {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.nh-subpage-trust-body {
  font-family: "Inter", sans-serif !important;
  font-size: 1.05rem !important;
  color: #333 !important;
  line-height: 1.7 !important;
  margin: 1.25rem auto 0 !important;
  max-width: 680px !important;
}


/* --- Subpage section spacing (erbt von Hauptseite v2) - */
.nh-subpage-section-prozess,
.nh-subpage-section-fact,
.nh-subpage-section-info,
.nh-subpage-section-gallery,
.nh-subpage-section-trust {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

@media (max-width: 960px) {
  .nh-subpage-section-prozess,
  .nh-subpage-section-fact,
  .nh-subpage-section-info,
  .nh-subpage-section-gallery,
  .nh-subpage-section-trust {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}


/* --- Fact-Block: no intro underline on light-gray bg -- */
.nh-subpage-section-fact .nh-svc-h2,
.nh-subpage-section-info .nh-svc-h2,
.nh-subpage-section-gallery .nh-svc-h2 {
  margin-bottom: 0 !important;
}

/* === END SUBPAGE TEMPLATE v2 === */


/* =====================================================
   SUBPAGE v3: Shop-CTA Section + Trust (light-gray variant)
   ===================================================== */

.nh-subpage-shop-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nh-subpage-shop-sub {
  font-family: "Inter", sans-serif !important;
  font-size: 1.02rem !important;
  color: #555 !important;
  line-height: 1.6 !important;
  margin: 1rem auto 2rem !important;
  max-width: 620px !important;
}

.nh-subpage-shop-cta .nh-btn-primary {
  font-size: 1rem;
  padding: 0.75rem 1.6rem;
}

.nh-subpage-section-shop {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (max-width: 960px) {
  .nh-subpage-section-shop {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}


/* Trust als Light-Gray Sektion */
.nh-subpage-section-trust.nh-svc-light-bg {
  background: #f6f8f5 !important;
}

/* === END SUBPAGE v3 === */


/* =====================================================
   SUBPAGE v4: Gallery column variants (2-col, 4-col)
   ===================================================== */

.nh-subpage-gallery-grid--2 {
  grid-template-columns: 1fr !important;
  max-width: 900px !important;
}

@media (min-width: 720px) {
  .nh-subpage-gallery-grid--2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.nh-subpage-gallery-grid--4 {
  grid-template-columns: 1fr !important;
}

@media (min-width: 640px) {
  .nh-subpage-gallery-grid--4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 960px) {
  .nh-subpage-gallery-grid--4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Getriebe-Diagramm: keine aspect-ratio, weil es ein Diagramm ist */
.nh-subpage-gallery-grid--2 .nh-subpage-gallery-tile {
  aspect-ratio: auto !important;
  max-height: 400px;
}

.nh-subpage-gallery-grid--2 .nh-subpage-gallery-tile img {
  object-fit: contain !important;
  background: #fff;
}

/* === END SUBPAGE v4 === */


/* =====================================================
   SUBPAGE v5: Gallery — better 3x2 flow for 6 images
   ===================================================== */

/* Default (6+ images): 3-columns on desktop for clean 3x2 grid */
@media (min-width: 960px) {
  .nh-subpage-gallery-grid:not([class*="nh-subpage-gallery-grid--"]) {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* === END SUBPAGE v5 === */


/* =====================================================
   SUBPAGE v6: Fact-Block mit Bild obendrueber (z.B. Motoren-Rennwagen)
   ===================================================== */

.nh-subpage-fact-image {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 8px;
  background: #e6eae5;
}

.nh-subpage-fact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === END SUBPAGE v6 === */


/* =====================================================
   SUBPAGE v7: PDF-Embed (BPM Prospekte)
   ===================================================== */

.nh-subpage-pdf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 720px) {
  .nh-subpage-pdf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nh-subpage-pdf-wrap {
  background: #fff;
  border: 1px solid #e6eae5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nh-subpage-pdf-label {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #189459;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.25rem 0.6rem;
  border-bottom: 1px solid #e6eae5;
}

.nh-subpage-pdf-viewer {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
  background: #f6f8f5;
}

.nh-subpage-pdf-download {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #189459 !important;
  text-decoration: none !important;
  border-top: 1px solid #e6eae5;
  background: #f6f8f5;
  transition: background 0.2s ease;
}

.nh-subpage-pdf-download:hover {
  background: #e6f2ec;
}

@media (max-width: 640px) {
  .nh-subpage-pdf-viewer {
    height: 400px;
  }
}


/* Gallery2 = weiss bg statt grau (fuer Nachher-Block) */
.nh-subpage-section-gallery2 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

/* === END SUBPAGE v7 === */


/* =====================================================
   SUBPAGE v8: PDF-Preview-Card (statt iframe)
   ===================================================== */

.nh-subpage-pdf-card {
  display: flex !important;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6eae5;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(15, 62, 40, 0.04);
}

.nh-subpage-pdf-card:hover {
  border-color: #189459;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 62, 40, 0.1);
  text-decoration: none !important;
}

.nh-subpage-pdf-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 210 / 297; /* A4 ratio */
  object-fit: cover;
  object-position: top;
}

.nh-subpage-pdf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-top: 1px solid #e6eae5;
  background: #fff;
  gap: 1rem;
}

.nh-subpage-pdf-title {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
}

.nh-subpage-pdf-open {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: #189459;
  font-weight: 600;
  white-space: nowrap;
}

/* === END SUBPAGE v8 === */


/* =====================================================
   KUNSTSTOFFSCHEIBEN v2: Problem, FAQ, Compare
   ===================================================== */

/* --- Problem/Compare Cards ------------------------------ */
.nh-kunststoff-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 720px) {
  .nh-kunststoff-compare { grid-template-columns: repeat(2, 1fr); }
}

.nh-kunststoff-compare-card {
  background: #fff;
  border: 1px solid #e6eae5;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  text-align: center;
}

.nh-kunststoff-compare-card--highlight {
  background: #0f3e28;
  color: #fff;
  border-color: #189459;
}

.nh-kunststoff-compare-label {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 0.85rem;
}

.nh-kunststoff-compare-card--highlight .nh-kunststoff-compare-label {
  color: #FFD700;
}

.nh-kunststoff-compare-num {
  font-family: "Racing Sans One", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  color: #189459;
  margin-bottom: 0.85rem;
}

.nh-kunststoff-compare-card--highlight .nh-kunststoff-compare-num {
  color: #fff;
}

.nh-kunststoff-compare-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #444;
}

.nh-kunststoff-compare-card--highlight .nh-kunststoff-compare-desc {
  color: rgba(255,255,255,0.9);
}


/* --- FAQ (Accordion) ------------------------------------- */
.nh-kunststoff-faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nh-kunststoff-faq-item {
  border-bottom: 1px solid #e6eae5;
  background: transparent;
}

.nh-kunststoff-faq-item:first-child { border-top: 1px solid #e6eae5; }

.nh-kunststoff-faq-item summary {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0.25rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  list-style: none;
  transition: color 0.15s ease;
}

.nh-kunststoff-faq-item summary::-webkit-details-marker { display: none; }
.nh-kunststoff-faq-item summary::marker { display: none; }

.nh-kunststoff-faq-item summary:hover { color: #189459; }

.nh-kunststoff-faq-plus {
  display: inline-block;
  color: #189459;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  width: 1.3rem;
  text-align: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nh-kunststoff-faq-item[open] .nh-kunststoff-faq-plus {
  transform: rotate(45deg);
}

.nh-kunststoff-faq-body {
  padding: 0 0.25rem 1.25rem;
  animation: faq-fade 0.25s ease;
}

.nh-kunststoff-faq-body p {
  font-family: "Inter", sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
  color: #444 !important;
  margin: 0 0 0.75rem !important;
}

.nh-kunststoff-faq-body p:last-child { margin-bottom: 0 !important; }

.nh-kunststoff-faq-body a {
  color: #189459 !important;
  text-decoration: underline !important;
}

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* --- Section spacing for FAQ + Problem sections ---------- */
.nh-kunststoff-problem,
.nh-kunststoff-faq-section {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

@media (max-width: 960px) {
  .nh-kunststoff-problem,
  .nh-kunststoff-faq-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}

/* === END KUNSTSTOFFSCHEIBEN v2 === */

/* === KUNSTSTOFFSCHEIBEN v3 — ANWENDUNGEN-GRID === */
.nh-kunststoff-anwendungen-section {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}
@media (max-width: 960px) {
  .nh-kunststoff-anwendungen-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}

.nh-kunststoff-anwendungen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1200px) {
  .nh-kunststoff-anwendungen { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .nh-kunststoff-anwendungen { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 600px) {
  .nh-kunststoff-anwendungen { grid-template-columns: 1fr; }
}

.nh-kunststoff-anwendung {
  background: #ffffff;
  border: 1px solid #e6eae5;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nh-kunststoff-anwendung-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 0 0.25rem 0;
}
.nh-kunststoff-anwendung > .nh-kunststoff-anwendung-label {
  margin: 0 1.5rem;
}
.nh-kunststoff-anwendung > p {
  margin: 0 1.5rem 1.5rem !important;
}
.nh-kunststoff-anwendung:hover {
  border-color: #189459;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 62, 40, 0.08);
}

.nh-kunststoff-anwendung-label {
  display: inline-block;
  align-self: flex-start;
  background: #0f3e28;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  line-height: 1.25;
}

.nh-kunststoff-anwendung p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2b332d;
  margin: 0 !important;
}

/* === END KUNSTSTOFFSCHEIBEN v3 === */

/* =============================================================
   ÜBER-UNS SEITE v3
   ============================================================= */

/* Hero */
.nh-ueber-section-hero {
  background: linear-gradient(135deg, #0f3e28 0%, #164e33 100%) !important;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
  color: #ffffff !important;
}
.nh-ueber-section-hero .uk-container { position: relative; z-index: 2; }
.nh-ueber-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .nh-ueber-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .nh-ueber-section-hero { padding-top: 4rem !important; padding-bottom: 4rem !important; }
}
.nh-ueber-hero-h1 {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  margin: 0.8rem 0 1.5rem !important;
  color: #ffffff;
}
.nh-ueber-hero-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 2rem !important;
  max-width: 36rem;
}
.nh-ueber-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.nh-ueber-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
}

/* Claim */
.nh-ueber-section-claim {
  background: #0f3e28 !important;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ffffff !important;
}
.nh-ueber-claim { text-align: center; max-width: 52rem; margin: 0 auto; }
.nh-eyebrow-light { color: rgba(255,255,255,0.65) !important; }
.nh-ueber-claim-quote {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: #ffffff;
  margin: 1rem 0 1.2rem !important;
  font-style: normal;
  border: none !important;
  padding: 0 !important;
}
.nh-ueber-claim-attr {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin: 0 !important;
}

/* Pillars */
.nh-ueber-section-pillars { background: #ffffff !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-ueber-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 860px) {
  .nh-ueber-pillars { grid-template-columns: 1fr; gap: 2rem; }
}
.nh-ueber-pillar {
  background: #ffffff;
  border: 1px solid #e6eae5;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nh-ueber-pillar-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.nh-ueber-pillar > .nh-eyebrow { padding: 1.75rem 1.75rem 0; }
.nh-ueber-pillar h3 {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0.5rem 1.75rem 0.9rem !important;
  color: #0f3e28;
}
.nh-ueber-pillar p {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #2b332d;
  margin: 0 1.75rem 1.5rem !important;
  flex-grow: 1;
}
.nh-ueber-pillar-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #189459;
  padding: 0 1.75rem 1.75rem;
  text-decoration: none;
  transition: color .15s ease;
}
.nh-ueber-pillar-link:hover { color: #0f3e28; }

/* Videos */
.nh-ueber-section-videos { background: #ffffff !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-ueber-videos {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 960px) {
  .nh-ueber-videos { grid-template-columns: 1fr; gap: 2.5rem; }
}
.nh-ueber-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: #000;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.nh-ueber-video-caption {
  font-family: 'Inter', sans-serif;
  padding: 0.9rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nh-ueber-video-caption strong {
  font-size: 1rem;
  color: #0f3e28;
  font-weight: 600;
}
.nh-ueber-video-caption span {
  font-size: 0.85rem;
  color: #6b7167;
  line-height: 1.45;
}

/* Timeline */
.nh-ueber-section-timeline { background: #f6f8f5 !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-ueber-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}
.nh-ueber-timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e6eae5;
  align-items: baseline;
}
.nh-ueber-timeline-item:last-child { border-bottom: 1px solid #e6eae5; }
@media (max-width: 600px) {
  .nh-ueber-timeline-item { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.25rem 0; }
}
.nh-ueber-timeline-year {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: 1.3rem;
  color: #189459;
  letter-spacing: 0.02em;
}
.nh-ueber-timeline-current .nh-ueber-timeline-year { color: #b8860b; }
.nh-ueber-timeline-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #2b332d;
  margin: 0 !important;
}
.nh-ueber-timeline-item strong { color: #0f3e28; font-weight: 600; }

/* Rennhistorie / Accordion */
.nh-ueber-section-rennhistorie { background: #ffffff !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-ueber-rennhistorie { max-width: 60rem; margin: 2.5rem auto 0; }
.nh-ueber-race-group {
  border-bottom: 1px solid #e6eae5;
  background: transparent;
  padding: 0;
}
.nh-ueber-race-group:first-child { border-top: 1px solid #e6eae5; }
.nh-ueber-race-group > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.4rem 0.25rem;
  font-family: 'Inter', sans-serif;
  color: #0f3e28;
  transition: color .15s ease;
}
.nh-ueber-race-group > summary::-webkit-details-marker,
.nh-ueber-race-group > summary::marker { display: none; }
.nh-ueber-race-group > summary:hover { color: #189459; }
.nh-ueber-race-summary-label {
  font-size: 1.05rem;
  font-weight: 600;
  flex-grow: 1;
}
.nh-ueber-race-summary-count {
  font-size: 0.85rem;
  color: #6b7167;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nh-ueber-race-group .nh-kunststoff-faq-plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f6f8f5;
  color: #0f3e28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
  flex-shrink: 0;
}
.nh-ueber-race-group[open] .nh-kunststoff-faq-plus {
  transform: rotate(45deg);
  background: #189459;
  color: #ffffff;
}
.nh-ueber-race-body { padding: 0 0 1.75rem; }
.nh-ueber-race-table-wrap { overflow-x: auto; margin: 0.5rem 0; }
.nh-ueber-race-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.89rem;
  min-width: 640px;
}
.nh-ueber-race-table th {
  text-align: left;
  padding: 0.7rem 0.9rem;
  background: #f6f8f5;
  color: #0f3e28;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid #e6eae5;
}
.nh-ueber-race-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid #f0f2ef;
  color: #2b332d;
  vertical-align: top;
}
.nh-ueber-race-podium td {
  background: rgba(24,148,89,0.08);
  font-weight: 500;
  color: #0f3e28;
}
.nh-ueber-race-podium td:first-child {
  border-left: 3px solid #189459;
  padding-left: calc(0.9rem - 3px);
}
.nh-ueber-race-podium td:nth-child(5) {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  color: #ffffff;
  background: #189459;
  font-size: 1.05rem;
  text-align: center;
  font-weight: 700;
  border-radius: 3px;
}
.nh-ueber-race-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #6b7167;
  line-height: 1.55;
  margin: 1.5rem 0 0 !important;
  font-style: italic;
}

/* Instagram */
.nh-ueber-section-instagram { background: #f6f8f5 !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-ueber-instagram {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .nh-ueber-instagram { grid-template-columns: 1fr; gap: 2rem; }
}
.nh-ueber-instagram-text h2 { margin: 0.7rem 0 1rem !important; }
.nh-ueber-instagram-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2b332d;
  margin: 0 0 1.5rem !important;
}
.nh-ueber-instagram-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  box-shadow: 0 12px 32px rgba(15,62,40,0.12);
}

/* =============================================================
   KONTAKT SEITE
   ============================================================= */

/* Hero */
.nh-kontakt-section-hero {
  background: linear-gradient(135deg, #0f3e28 0%, #164e33 100%) !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  color: #ffffff !important;
}
.nh-kontakt-hero { max-width: 44rem; }
.nh-kontakt-hero-h1 {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0.8rem 0 1.25rem !important;
  color: #ffffff;
}
.nh-kontakt-hero-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 2rem !important;
}
.nh-kontakt-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Wege */
.nh-kontakt-section-wege { background: #ffffff !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-kontakt-wege {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .nh-kontakt-wege { grid-template-columns: 1fr; }
}
.nh-kontakt-weg {
  background: #ffffff;
  border: 1px solid #e6eae5;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.nh-kontakt-weg:hover {
  border-color: #189459;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,62,40,0.1);
}
.nh-kontakt-weg--primary {
  background: #0f3e28;
  border-color: #0f3e28;
}
.nh-kontakt-weg--primary h3,
.nh-kontakt-weg--primary p,
.nh-kontakt-weg--primary .nh-kontakt-weg-value,
.nh-kontakt-weg--primary .nh-kontakt-weg-hint {
  color: #ffffff !important;
}
.nh-kontakt-weg-label {
  display: inline-block;
  align-self: flex-start;
  background: #0f3e28;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
}
.nh-kontakt-weg--primary .nh-kontakt-weg-label {
  background: #ffcc00;
  color: #0f3e28;
}
.nh-kontakt-weg h3 {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0.25rem 0 0.3rem !important;
  color: #0f3e28;
}
.nh-kontakt-weg p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2b332d;
  margin: 0 0 0.5rem !important;
  flex-grow: 1;
}
.nh-kontakt-weg-value {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: 1.3rem;
  color: #189459;
  text-decoration: none;
  padding-top: 0.5rem;
}
.nh-kontakt-weg-value:hover { color: #0f3e28; text-decoration: none; }
.nh-kontakt-weg--primary .nh-kontakt-weg-value { color: #ffcc00; }
.nh-kontakt-weg--primary .nh-kontakt-weg-value:hover { color: #ffffff; }
.nh-kontakt-weg-hint {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  color: #6b7167 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* Anfahrt */
.nh-kontakt-section-anfahrt { background: #f6f8f5 !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-kontakt-anfahrt {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}
@media (max-width: 960px) {
  .nh-kontakt-anfahrt { grid-template-columns: 1fr; gap: 2rem; }
}
.nh-kontakt-karte {
  background: #ffffff;
  border: 1px solid #e6eae5;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nh-kontakt-karte iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.nh-kontakt-karte-link {
  display: inline-block;
  padding: 0.9rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #189459;
  text-decoration: none;
  border-top: 1px solid #e6eae5;
}
.nh-kontakt-karte-link:hover { color: #0f3e28; background: #f6f8f5; }
.nh-kontakt-infos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nh-kontakt-info-block {
  padding: 0 0 1.4rem;
  border-bottom: 1px solid #e6eae5;
}
.nh-kontakt-info-block:last-child { border-bottom: none; padding-bottom: 0; }
.nh-kontakt-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #189459;
  display: block;
  margin-bottom: 0.5rem;
}
.nh-kontakt-info-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2b332d;
  margin: 0 !important;
}

/* Formular */
.nh-kontakt-section-formular { background: #ffffff !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-kontakt-form {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nh-kontakt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .nh-kontakt-form-row { grid-template-columns: 1fr; }
}
.nh-kontakt-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.nh-kontakt-form-field--full { grid-column: 1 / -1; }
.nh-kontakt-form-field span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f3e28;
  letter-spacing: 0.01em;
}
.nh-kontakt-form-field span em {
  color: #c74545;
  font-style: normal;
  margin-left: 0.15rem;
}
.nh-kontakt-form-field input,
.nh-kontakt-form-field select,
.nh-kontakt-form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d4d9d1;
  border-radius: 4px;
  background: #ffffff;
  color: #2b332d;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  box-sizing: border-box;
}
.nh-kontakt-form-field input:focus,
.nh-kontakt-form-field select:focus,
.nh-kontakt-form-field textarea:focus {
  outline: none;
  border-color: #189459;
  box-shadow: 0 0 0 3px rgba(24,148,89,0.12);
}
.nh-kontakt-form-field textarea { resize: vertical; min-height: 140px; }
.nh-kontakt-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #2b332d;
}
.nh-kontakt-form-check input {
  margin-top: 0.25rem;
  accent-color: #189459;
}
.nh-kontakt-form-check em { color: #c74545; font-style: normal; }
.nh-kontakt-form-check a { color: #189459; }
.nh-kontakt-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.nh-kontakt-form-hint {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  color: #6b7167 !important;
  margin: 0 !important;
}

/* Ablauf */
.nh-kontakt-section-ablauf { background: #f6f8f5 !important; padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.nh-kontakt-ablauf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) {
  .nh-kontakt-ablauf { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nh-kontakt-ablauf { grid-template-columns: 1fr; }
}
.nh-kontakt-ablauf-step {
  background: #ffffff;
  border: 1px solid #e6eae5;
  border-radius: 6px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.nh-kontakt-ablauf-num {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: 2rem;
  color: #189459;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.nh-kontakt-ablauf-step h3 {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 !important;
  color: #0f3e28;
}
.nh-kontakt-ablauf-step p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2b332d;
  margin: 0 !important;
}

/* Trust Footer */
.nh-kontakt-section-trust { padding-top: 4rem !important; padding-bottom: 4rem !important; background: #ffffff !important; border-top: 1px solid #e6eae5; }
.nh-kontakt-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 800px) {
  .nh-kontakt-trust { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.nh-kontakt-trust-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.nh-kontakt-trust-num {
  font-family: 'Racing Sans One', 'Racing Sans', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: #0f3e28;
  letter-spacing: 0.01em;
}
.nh-kontakt-trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #6b7167;
  line-height: 1.4;
  max-width: 16rem;
}

/* =============================================================
   KONTAKT: Full-bleed fix for contact.php template
   Template wraps editor in:
     <section class="uk-section uk-animation-slide-bottom-small">
       <div class="uk-container uk-container-xsmall">
         <div class="uk-margin-medium">...</div>
   Strategy: neutralize the template's padding/margins entirely.
   ============================================================= */

/* 1. Neutralize template's uk-section + uk-container + uk-margin.
   Scope: only sections that contain our .nh-fullbleed-section (Kontakt page). */
section.uk-section:has(.nh-fullbleed-section) {
  padding: 0 !important;
  margin: 0 !important;
}
section.uk-section:has(.nh-fullbleed-section) > .uk-container,
section.uk-section:has(.nh-fullbleed-section) > .uk-container-xsmall {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
section.uk-section:has(.nh-fullbleed-section) .uk-margin-medium {
  margin: 0 !important;
}

/* 2. Fullbleed sections break out if still nested somehow */
.nh-fullbleed-section {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.nh-fullbleed-section > .uk-container {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* =============================================================
   A11Y: Kontrast-Fixes auf dunklen Sektionen
   Die .nh-eyebrow ist standardmäßig dunkelgrün — unsichtbar auf
   dunkelgrünem Hintergrund. Auf allen "dark" Sektionen überschreiben.
   ============================================================= */

.nh-kontakt-section-hero .nh-eyebrow,
.nh-ueber-section-hero .nh-eyebrow,
.nh-ueber-section-claim .nh-eyebrow,
.nh-svc-section-hero .nh-eyebrow,
.nh-svc-section-cta .nh-eyebrow,
.nh-poly-bg .nh-eyebrow,
.nh-subpage-hero .nh-eyebrow,
.nh-svc-dark .nh-eyebrow {
  color: #FFD700 !important;
}

/* Fix CTA copy on dark background (Über-Uns CTA uses these classes,
   but they were never defined → inherited dark green). */
.nh-svc-cta-inner,
.nh-svc-section-cta .nh-svc-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: #ffffff;
}

.nh-svc-cta-sub {
  font-family: "Inter", sans-serif !important;
  font-size: 1.05rem !important;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.55 !important;
  margin: 0 auto 2rem !important;
  max-width: 620px !important;
}

/* nh-svc-cta-hours already defined but ensure .nh-ueber-section + CTA dark contexts inherit */
.nh-ueber-section-cta .nh-svc-cta-hours,
.nh-svc-section-cta .nh-svc-cta-hours {
  color: rgba(255,255,255,0.78) !important;
}

/* Generic: any paragraph directly inside a dark section should be bright enough */
.nh-svc-dark p:not([class]),
.nh-ueber-section-hero p:not([class]),
.nh-ueber-section-claim p:not([class]) {
  color: rgba(255,255,255,0.88) !important;
}

/* CTA buttons container (center them, was missing) */
.nh-svc-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

/* Ghost button variant for dark backgrounds — visible white border */
.nh-btn-ghost-light {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff !important;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color .15s, background .15s;
}
.nh-btn-ghost-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  text-decoration: none;
}

/* === END ÜBER-UNS + KONTAKT === */

/* ============================================================
   "Preis auf Anfrage"-Badge (für Produkte ohne Marktpendant)
   Niederhof-Stil: Inter, dezent grün-umrandet, Ingenieur-sachlich
   Wird gerendert wenn variation price = 0
   ============================================================ */
.nh-price-on-request {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #189459;
  background: #f0faf4;
  border: 1px solid #d9f0e2;
  border-radius: 3px;
  padding: 6px 12px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nh-price-on-request::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #189459;
  flex-shrink: 0;
}

/* Kleine Variante für Tabellenzellen und Listings */
.nh-price-on-request-sm {
  font-size: 0.9rem;
  padding: 3px 8px;
  font-weight: 600;
}

.nh-price-on-request-sm::before {
  width: 6px;
  height: 6px;
}

/* Spezielles Verhalten innerhalb der Shop-Listings:
   Override der Preisfarbe, falls dort eine globale Regel greift */
.shop-product-price-current.nh-price-on-request {
  background: #f0faf4;
  color: #189459;
}

/* In der nh-variation-single-Box den Strong-Stil unterdrücken,
   damit das Badge sauber neben Hinweistext steht */
.nh-variation-single-price .nh-price-on-request {
  margin-right: 0.25rem;
}

/* ============================================================
   HOCKENHEIM HISTORIC 2026 — Hero-Sektion auf Startseite
   Layout: Text + Video side-by-side oben, Galerie darunter
   Dunkler Hintergrund (Niederhof-Grün), passt zu nh-svc-dark
   ============================================================ */
.nh-home-section-hockenheim {
  position: relative;
}

/* Oberer Block: Text + Video nebeneinander */
.nh-home-hockenheim {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.nh-home-hockenheim-text .nh-eyebrow {
  color: #f7d34d; /* Niederhof-Gelb für Aktualität-Hinweis */
  display: inline-block;
  margin-bottom: 1rem;
}

.nh-home-hockenheim-h2 {
  font-family: "Racing Sans One", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.5rem 0;
}

.nh-home-hockenheim-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* Fact-Grid: 3 Zahlen */
.nh-home-hockenheim-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
}

.nh-home-hockenheim-fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nh-home-hockenheim-fact-num {
  font-family: "Racing Sans One", serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #f7d34d;
}

.nh-home-hockenheim-fact-label {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

/* Video-Container */
.nh-home-hockenheim-video {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.nh-home-hockenheim-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

.nh-home-hockenheim-video-caption {
  margin: 1rem 0 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.nh-home-hockenheim-video-caption strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

/* Untere Galerie */
.nh-home-hockenheim-gallery-title {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.nh-home-hockenheim-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.nh-home-hockenheim-gallery-grid figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #000;
  transition: transform 0.3s ease;
}

.nh-home-hockenheim-gallery-grid figure:hover {
  transform: translateY(-3px);
}

.nh-home-hockenheim-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nh-home-hockenheim-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Responsive: Tablet + Mobile */
@media (max-width: 960px) {
  .nh-home-hockenheim {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nh-home-hockenheim-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nh-home-hockenheim-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nh-home-hockenheim-fact {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }
  .nh-home-hockenheim-fact-num {
    font-size: 1.8rem;
  }
  .nh-home-hockenheim-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOCKENHEIM HISTORIC 2026 — KONTRAST-FIX 2026-05-16
   UIkit rendert backgroundoverlaycolor nur über Bild;
   ohne Bild bleibt der Section-Hintergrund weiß → unsichtbarer Text.
   Erzwinge dunkles Niederhof-Grün als echten Hintergrund.
   ============================================================ */
section.nh-home-section-hockenheim,
.uk-section.nh-home-section-hockenheim,
.nh-home-section-hockenheim {
  background-color: #0f3e28 !important;
  background-image: none !important;
}
.nh-home-section-hockenheim > .uk-overlay-primary,
.nh-home-section-hockenheim .uk-background-cover,
.nh-home-section-hockenheim .uk-background-image,
.nh-home-section-hockenheim [class*="uk-overlay"] {
  background: transparent !important;
}

/* WCAG-AA-konforme Textfarben auf #0f3e28 (ratio ≥ 4.5:1) */
.nh-home-section-hockenheim,
.nh-home-section-hockenheim p,
.nh-home-section-hockenheim h2,
.nh-home-section-hockenheim h3,
.nh-home-section-hockenheim span,
.nh-home-section-hockenheim strong,
.nh-home-section-hockenheim cite {
  color: #ffffff !important;
}
.nh-home-section-hockenheim .nh-home-hockenheim-lead {
  color: #f0f0f0 !important;  /* ratio ~12:1 auf #0f3e28 */
}
.nh-home-section-hockenheim .nh-home-hockenheim-fact-label {
  color: #d8d8d8 !important;  /* ratio ~8:1 */
}
.nh-home-section-hockenheim .nh-home-hockenheim-video-caption {
  color: #e0e0e0 !important;
}
.nh-home-section-hockenheim .nh-home-hockenheim-video-caption strong {
  color: #ffffff !important;
}
.nh-home-section-hockenheim .nh-eyebrow,
.nh-home-section-hockenheim .nh-eyebrow-light {
  color: #f7d34d !important;  /* Niederhof-Gelb auf Grün */
}
.nh-home-section-hockenheim .nh-home-hockenheim-fact-num {
  color: #f7d34d !important;
}
.nh-home-section-hockenheim .nh-home-hockenheim-meta {
  border-top-color: rgba(255,255,255,0.25) !important;
}

/* Galerie-Block ausgeblendet (Visual-Overload-Fix 2026-05-16) */
.nh-home-section-hockenheim .nh-home-hockenheim-gallery,
.nh-home-section-hockenheim .nh-home-hockenheim-gallery-title,
.nh-home-section-hockenheim .nh-home-hockenheim-gallery-grid,
.nh-home-section-hockenheim .nh-home-hockenheim-cta {
  display: none !important;
}

/* Margin-bottom des oberen Blocks zurücksetzen, da Galerie weg */
.nh-home-section-hockenheim .nh-home-hockenheim {
  margin-bottom: 0 !important;
}

/* Hockenheim Section: großzügiges vertikales Padding (Fix 2026-05-16 23:08) */
section.nh-home-section-hockenheim,
.uk-section.nh-home-section-hockenheim,
.nh-home-section-hockenheim {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
@media (max-width: 960px) {
  section.nh-home-section-hockenheim,
  .uk-section.nh-home-section-hockenheim,
  .nh-home-section-hockenheim {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 640px) {
  section.nh-home-section-hockenheim,
  .uk-section.nh-home-section-hockenheim,
  .nh-home-section-hockenheim {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
