/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   Corporate Design
   Startseite
   ========================================================= */


/* =========================================================
   1. CORPORATE DESIGN
   ========================================================= */

:root {
  --nm-olive: #34431F;
  --nm-olive-dark: #293518;

  --nm-gold: #C49A4A;
  --nm-gold-light: #D7B66C;

  --nm-brown: #8A5B24;

  --nm-cream: #F6EBD3;
  --nm-offwhite: #FFFDF8;

  --nm-text: #2E2A24;
  --nm-muted: #70685C;

  --nm-border: rgba(138, 91, 36, 0.20);

  --nm-radius: 18px;

  --nm-shadow:
    0 12px 35px rgba(46, 42, 36, 0.10);

  --nm-container: 1320px;
}


/* =========================================================
   2. JOOMLA / HELIX HOME RESET
   ========================================================= */

body:has(.nm-home) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-home) .article-details {
  margin: 0;
}

body:has(.nm-home) .article-details .article-header,
body:has(.nm-home) .page-header {
  display: none;
}


/* =========================================================
   3. BASIS
   ========================================================= */

.nm-home {
  width: 100%;
  overflow: hidden;

  background: var(--nm-offwhite);

  color: var(--nm-text);
}


.nm-home *,
.nm-home *::before,
.nm-home *::after {
  box-sizing: border-box;
}


.nm-container {
  width: min(
    calc(100% - 48px),
    var(--nm-container)
  );

  margin-right: auto;
  margin-left: auto;
}


.nm-section {
  padding: 90px 0;
}


.nm-section-light {
  background: var(--nm-cream);
}


.nm-home h1,
.nm-home h2,
.nm-home h3 {
  margin-top: 0;
}


.nm-home p {
  margin-top: 0;
}


/* =========================================================
   4. TYPOGRAFISCHE ELEMENTE
   ========================================================= */

.nm-kicker {
  margin-bottom: 14px;

  color: var(--nm-gold);

  font-size: 0.85rem;
  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.nm-script {
  margin: 0;

  color: var(--nm-brown);

  font-family:
    "Segoe Script",
    "Bradley Hand",
    "Snell Roundhand",
    "Brush Script MT",
    cursive;

  font-size:
    clamp(
      1.75rem,
      3vw,
      2.8rem
    );

  font-weight: 400;

  line-height: 1.25;
}


.nm-script-heading {
  margin-bottom: 8px;

  color: var(--nm-olive);
}


.nm-lead {
  max-width: 680px;

  margin-bottom: 30px;

  color: var(--nm-text);

  font-size: 1.1rem;

  line-height: 1.75;
}


.nm-section-heading {
  max-width: 860px;

  margin: 0 auto 55px;

  text-align: center;
}


.nm-section-heading h2 {
  margin-bottom: 18px;

  color: var(--nm-olive);

  text-align: center;
}


.nm-section-intro {
  margin-bottom: 0;

  color: var(--nm-muted);

  font-size: 1.08rem;

  line-height: 1.75;

  text-align: center;
}


.nm-center {
  text-align: center;
}


/* =========================================================
   5. HERO
   ========================================================= */

.nm-hero {
  position: relative;

  padding: 80px 0;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(196, 154, 74, 0.11),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--nm-offwhite) 0%,
      #FAF1DF 100%
    );
}


.nm-hero::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;

  width: 38%;
  height: 4px;

  background: var(--nm-gold);
}


.nm-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 70px;

  align-items: center;
}


.nm-hero h1 {
  margin-bottom: 16px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.6rem
    );

  line-height: 1.04;
}


.nm-hero h1 span {
  color: var(--nm-brown);
}


.nm-hero .nm-script {
  margin-bottom: 26px;
}


/* =========================================================
   6. HERO LOGO
   ========================================================= */

.nm-hero-logo {
  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;
}


.nm-hero-logo::before {
  display: none;
}


.nm-hero-logo img {
  display: block;

  width: 100%;
  max-width: 620px;

  height: auto;

  margin: 0 auto;

  aspect-ratio: auto;

  object-fit: contain;

  border-radius: 0;

  box-shadow: none;
}


/* =========================================================
   7. BUTTONS
   ========================================================= */

.nm-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}


.nm-buttons-center {
  justify-content: center;
}


.nm-btn {
  display: inline-flex;

  min-height: 48px;

  padding: 12px 24px;

  align-items: center;
  justify-content: center;

  border: 2px solid transparent;
  border-radius: 999px;

  font-size: 0.96rem;
  font-weight: 700;

  line-height: 1.2;

  text-decoration: none !important;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.nm-btn:hover {
  transform: translateY(-2px);
}


.nm-btn-primary {
  background: var(--nm-olive);

  color: #FFFFFF !important;
}


.nm-btn-primary:hover {
  background: var(--nm-olive-dark);
}


.nm-btn-secondary {
  border-color: var(--nm-brown);

  background: transparent;

  color: var(--nm-brown) !important;
}


.nm-btn-secondary:hover {
  background: var(--nm-brown);

  color: #FFFFFF !important;
}


.nm-btn-gold {
  background: var(--nm-gold);

  color: var(--nm-olive-dark) !important;
}


.nm-btn-gold:hover {
  background: var(--nm-gold-light);
}


.nm-btn-light {
  border-color:
    rgba(
      255,
      255,
      255,
      0.75
    );

  color: #FFFFFF !important;
}


.nm-btn-light:hover {
  background: #FFFFFF;

  color: var(--nm-olive) !important;
}


.nm-text-link {
  color: var(--nm-brown) !important;

  font-weight: 700;

  text-decoration: none !important;
}


.nm-text-link:hover {
  color: var(--nm-gold) !important;
}


.nm-btn:focus-visible,
.nm-text-link:focus-visible,
.nm-card-image:focus-visible {
  outline: 3px solid var(--nm-gold);

  outline-offset: 4px;
}


/* =========================================================
   8. USP
   REGIONAL / HANDGEMACHT / MIT LIEBE
   ========================================================= */

.nm-usp-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 40px;
}


.nm-usp {
  padding: 10px 35px;

  text-align: center;
}


.nm-usp + .nm-usp {
  border-left:
    1px solid
    rgba(
      138,
      91,
      36,
      0.25
    );
}


.nm-usp-icon {
  display: flex;

  width: 64px;
  height: 64px;

  margin:
    0 auto 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: var(--nm-cream);

  font-size: 1.7rem;
}


.nm-usp h2 {
  width: 100%;

  margin-bottom: 10px;

  color: var(--nm-olive);

  font-size: 1.35rem;

  text-align: center;
}


.nm-usp p {
  max-width: 310px;

  margin:
    0 auto;

  color: var(--nm-muted);

  line-height: 1.65;

  text-align: center;
}


/* =========================================================
   9. UNSERE GESCHICHTE
   ========================================================= */

.nm-story {
  background: var(--nm-offwhite);
}


/* Unsere Geschichte größer darstellen */

.nm-story-heading {
  max-width: 950px;

  margin-bottom: 65px;
}


.nm-story-kicker {
  margin-bottom: 16px;

  font-size: 1rem;

  letter-spacing: 0.18em;

  text-align: center;
}


.nm-story-heading h2 {
  margin-bottom: 20px;

  font-size:
    clamp(
      2.25rem,
      4vw,
      3.4rem
    );

  line-height: 1.15;

  text-align: center;
}


.nm-story-heading .nm-section-intro {
  max-width: 780px;

  margin:
    0 auto;

  font-size: 1.12rem;
}


.nm-story-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;

  margin-bottom: 48px;
}


.nm-story-grid::before {
  content: "";

  position: absolute;

  top: 27px;
  left: 16%;
  right: 16%;

  height: 1px;

  background: var(--nm-gold);

  z-index: 0;
}


.nm-story-step {
  position: relative;

  z-index: 1;

  padding: 0 28px;

  text-align: center;
}


.nm-step-number {
  display: flex;

  width: 56px;
  height: 56px;

  margin:
    0 auto 24px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: #FFFFFF;

  font-size: 1.1rem;
  font-weight: 700;

  box-shadow:
    0 0 0 8px
    var(--nm-offwhite);
}


.nm-story-step h3 {
  width: 100%;

  margin-bottom: 14px;

  color: var(--nm-brown);

  font-size: 1.35rem;

  line-height: 1.3;

  text-align: center;
}


.nm-story-step p {
  max-width: 330px;

  margin: 0 auto;

  color: var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


.nm-story-link {
  margin-top: 8px;
}


/* =========================================================
   10. PRODUKTE
   ========================================================= */

.nm-products {
  background: var(--nm-cream);
}


.nm-card-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}


.nm-card {
  overflow: hidden;

  border:
    1px solid
    var(--nm-border);

  border-radius:
    var(--nm-radius);

  background:
    var(--nm-offwhite);

  box-shadow:
    0 8px 26px
    rgba(
      46,
      42,
      36,
      0.07
    );

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.nm-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    var(--nm-shadow);
}


.nm-card-image {
  display: block;

  overflow: hidden;
}


.nm-card-image img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition:
    transform 0.35s ease;
}


.nm-card:hover
.nm-card-image img {
  transform:
    scale(1.035);
}


.nm-card-content {
  padding: 28px;
}


.nm-card-label {
  margin-bottom: 6px;

  color: var(--nm-gold);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.nm-card h3 {
  margin-bottom: 12px;

  color: var(--nm-olive);

  font-size: 1.55rem;
}


.nm-card-content >
p:not(.nm-card-label) {
  min-height: 56px;

  color: var(--nm-muted);

  line-height: 1.65;
}


.nm-products-button {
  margin-top: 44px;
}


/* =========================================================
   11. HOFLADEN
   ========================================================= */

.nm-shop {
  background: var(--nm-offwhite);
}


.nm-shop-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: 70px;

  align-items: center;
}


.nm-shop-image img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius:
    var(--nm-radius);

  box-shadow:
    var(--nm-shadow);
}


.nm-shop-content h2 {
  margin-bottom: 22px;

  color: var(--nm-olive);
}


.nm-shop-content > p {
  color: var(--nm-muted);

  line-height: 1.75;
}


.nm-shop-info {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;

  margin: 30px 0;
}


.nm-shop-info > div {
  padding: 18px 20px;

  border-left:
    3px solid
    var(--nm-gold);

  background:
    var(--nm-cream);
}


.nm-shop-info strong,
.nm-shop-info span {
  display: block;
}


.nm-shop-info strong {
  margin-bottom: 6px;

  color: var(--nm-olive);
}


.nm-shop-info span {
  color: var(--nm-text);

  line-height: 1.55;
}


/* =========================================================
   12. KONTAKT CTA
   ========================================================= */

.nm-contact-cta {
  position: relative;

  display: flex;

  min-height: 500px;

  align-items: center;

  background:
    url("/images/Bilder_Nudelmanufaktur/Nudelherstellung/JWGR5009.JPG")
    center center /
    cover
    no-repeat;
}


.nm-contact-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(41, 53, 24, 0.93),
      rgba(52, 67, 31, 0.78)
    );
}


.nm-contact-content {
  position: relative;

  z-index: 1;

  max-width: 900px;

  padding-top: 80px;
  padding-bottom: 80px;

  color: #FFFFFF;

  text-align: center;
}


.nm-contact-content .nm-script {
  width: 100%;

  margin-bottom: 12px;

  color: var(--nm-gold-light);

  text-align: center;
}


.nm-contact-content h2 {
  width: 100%;

  margin-bottom: 18px;

  color: #FFFFFF;

  text-align: center;
}


.nm-contact-content >
p:not(.nm-script) {
  max-width: 680px;

  margin:
    0 auto 30px;

  color:
    rgba(
      255,
      255,
      255,
      0.90
    );

  font-size: 1.08rem;

  line-height: 1.7;

  text-align: center;
}


.nm-contact-content
.nm-buttons {
  width: 100%;

  justify-content: center;
}


/* =========================================================
   13. TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-section {
    padding: 70px 0;
  }


  .nm-hero {
    padding: 65px 0;
  }


  .nm-hero-grid,
  .nm-shop-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .nm-hero-content {
    max-width: 760px;
  }


  .nm-hero-logo {
    max-width: 700px;

    margin:
      0 auto;
  }


  .nm-card-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .nm-card:last-child {
    grid-column:
      1 / -1;

    width: 100%;
    max-width: 620px;

    margin:
      0 auto;
  }

}


/* =========================================================
   14. SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-container {
    width:
      min(
        calc(100% - 30px),
        var(--nm-container)
      );
  }


  .nm-section {
    padding: 55px 0;
  }


  .nm-hero {
    padding:
      48px 0 60px;
  }


  .nm-hero-grid {
    gap: 36px;
  }


  .nm-hero h1 {
    font-size:
      clamp(
        2.25rem,
        11vw,
        3.2rem
      );
  }


  .nm-lead {
    font-size: 1rem;
  }


  .nm-hero-logo img {
    max-width: 470px;
  }


  .nm-buttons {
    flex-direction: column;

    align-items: stretch;
  }


  .nm-btn {
    width: 100%;
  }


  .nm-usp-grid,
  .nm-story-grid,
  .nm-card-grid,
  .nm-shop-info {
    grid-template-columns: 1fr;
  }


  .nm-usp {
    padding: 30px 5px;
  }


  .nm-usp + .nm-usp {
    border-top:
      1px solid
      rgba(
        138,
        91,
        36,
        0.25
      );

    border-left: 0;
  }


  .nm-story-grid::before {
    display: none;
  }


  .nm-story-heading {
    margin-bottom: 45px;
  }


  .nm-story-heading h2 {
    font-size: 2.15rem;
  }


  .nm-story-step {
    padding: 18px 10px;
  }


  .nm-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  .nm-card-content >
  p:not(.nm-card-label) {
    min-height: 0;
  }


  .nm-contact-cta {
    min-height: 440px;
  }


  .nm-contact-content {
    padding-top: 65px;
    padding-bottom: 65px;
  }

}


/* =========================================================
   15. KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 420px) {

  .nm-hero h1 {
    font-size: 2.15rem;
  }


  .nm-script {
    font-size: 1.75rem;
  }


  .nm-story-heading h2 {
    font-size: 1.9rem;
  }


  .nm-card-content {
    padding: 22px;
  }

}
/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: UNSERE MANUFAKTUR
   ========================================================= */


/* ---------------------------------------------------------
   JOOMLA / HELIX
   --------------------------------------------------------- */

body:has(.nm-manufaktur) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-manufaktur) .article-details {
  margin: 0;
}

body:has(.nm-manufaktur) .article-details .article-header,
body:has(.nm-manufaktur) .page-header {
  display: none;
}


.nm-manufaktur {
  width: 100%;
  overflow: hidden;
  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-manufaktur *,
.nm-manufaktur *::before,
.nm-manufaktur *::after {
  box-sizing: border-box;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.nm-manu-hero {
  padding: 85px 0 95px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(196, 154, 74, 0.13),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--nm-offwhite) 0%,
      #FAF1DF 100%
    );
}

.nm-manu-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 70px;
  align-items: center;
}

.nm-manu-hero h1 {
  margin-bottom: 20px;

  color: var(--nm-olive);

  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.nm-manu-hero h1 span {
  color: var(--nm-brown);
}

.nm-manu-hero .nm-script {
  margin-bottom: 28px;
}

.nm-manu-hero-image {
  position: relative;
}

.nm-manu-hero-image::after {
  content: "";

  position: absolute;
  top: -16px;
  right: -16px;

  width: 58%;
  height: 58%;

  border-top: 2px solid var(--nm-gold);
  border-right: 2px solid var(--nm-gold);

  border-radius: 0 var(--nm-radius) 0 0;

  pointer-events: none;
}

.nm-manu-hero-image img {
  display: block;

  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius: var(--nm-radius);

  box-shadow: var(--nm-shadow);
}


/* ---------------------------------------------------------
   GESCHICHTE / ZEITLEISTE
   --------------------------------------------------------- */

.nm-manu-story {
  background: var(--nm-offwhite);
}

.nm-manu-timeline {
  max-width: 1050px;
  margin: 0 auto;
}

.nm-manu-timeline-item {
  display: grid;

  grid-template-columns: 150px 1fr;

  gap: 40px;

  position: relative;

  padding: 0 0 50px;
}

.nm-manu-timeline-item:last-child {
  padding-bottom: 0;
}

.nm-manu-timeline-item::before {
  content: "";

  position: absolute;

  top: 48px;
  bottom: 0;
  left: 74px;

  width: 1px;

  background: var(--nm-gold);
}

.nm-manu-timeline-item:last-child::before {
  display: none;
}

.nm-manu-year {
  display: flex;

  width: 96px;
  height: 96px;

  margin: 0 auto;

  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 1;

  border: 2px solid var(--nm-gold);
  border-radius: 50%;

  background: var(--nm-cream);

  color: var(--nm-olive);

  font-size: 1.1rem;
  font-weight: 700;
}

.nm-manu-timeline-content {
  padding: 8px 0 35px;
}

.nm-manu-number {
  display: block;

  margin-bottom: 6px;

  color: var(--nm-gold);

  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.nm-manu-timeline-content h3 {
  margin-bottom: 12px;

  color: var(--nm-olive);

  font-size: 1.65rem;
}

.nm-manu-timeline-content p {
  max-width: 720px;

  margin: 0;

  color: var(--nm-muted);

  line-height: 1.75;
}


/* ---------------------------------------------------------
   HERSTELLUNG
   --------------------------------------------------------- */

.nm-manu-production {
  background: var(--nm-cream);
}

.nm-manu-process {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: 70px;

  align-items: center;

  margin-top: 80px;
}

.nm-manu-process:first-of-type {
  margin-top: 0;
}

.nm-manu-process-reverse
.nm-manu-process-image {
  order: 2;
}

.nm-manu-process-reverse
.nm-manu-process-content {
  order: 1;
}

.nm-manu-process-image img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius: var(--nm-radius);

  box-shadow: var(--nm-shadow);
}

.nm-manu-process-content {
  position: relative;
}

.nm-manu-process-number {
  display: block;

  margin-bottom: 15px;

  color: rgba(196, 154, 74, 0.45);

  font-size: 4.5rem;
  font-weight: 700;

  line-height: 1;
}

.nm-manu-process-content h3 {
  margin-bottom: 18px;

  color: var(--nm-olive);

  font-size: 2rem;
}

.nm-manu-process-content > p:not(.nm-kicker) {
  margin: 0;

  color: var(--nm-muted);

  font-size: 1.05rem;

  line-height: 1.8;
}


/* ---------------------------------------------------------
   WERTE
   --------------------------------------------------------- */

.nm-manu-values {
  background: var(--nm-offwhite);
}

.nm-manu-values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.nm-manu-value {
  padding: 38px 32px;

  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);

  background: var(--nm-cream);

  text-align: center;
}

.nm-manu-value-icon {
  display: flex;

  width: 62px;
  height: 62px;

  margin: 0 auto 22px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: var(--nm-cream);

  font-size: 1.55rem;
}

.nm-manu-value h3 {
  margin-bottom: 14px;

  color: var(--nm-olive);

  font-size: 1.35rem;

  text-align: center;
}

.nm-manu-value p {
  margin: 0;

  color: var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.nm-manu-cta {
  padding: 90px 0;

  background: var(--nm-olive);

  color: #FFFFFF;
}

.nm-manu-cta-content {
  max-width: 850px;

  text-align: center;
}

.nm-manu-cta .nm-script {
  margin-bottom: 12px;

  color: var(--nm-gold-light);

  text-align: center;
}

.nm-manu-cta h2 {
  margin-bottom: 18px;

  color: #FFFFFF;

  text-align: center;
}

.nm-manu-cta-content > p:not(.nm-script) {
  max-width: 700px;

  margin: 0 auto 30px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 1.08rem;

  line-height: 1.75;

  text-align: center;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

  .nm-manu-hero-grid,
  .nm-manu-process {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .nm-manu-process-reverse
  .nm-manu-process-image,
  .nm-manu-process-reverse
  .nm-manu-process-content {
    order: initial;
  }

  .nm-manu-values-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .nm-manu-value:last-child {
    grid-column: 1 / -1;

    max-width: 620px;

    width: 100%;

    margin: 0 auto;
  }

}


/* ---------------------------------------------------------
   SMARTPHONE
   --------------------------------------------------------- */

@media (max-width: 767px) {

  .nm-manu-hero {
    padding: 50px 0 60px;
  }

  .nm-manu-hero h1 {
    font-size: 2.35rem;
  }

  .nm-manu-timeline-item {
    grid-template-columns: 1fr;

    gap: 20px;

    padding-bottom: 45px;

    text-align: center;
  }

  .nm-manu-timeline-item::before {
    display: none;
  }

  .nm-manu-timeline-content {
    padding: 0;
  }

  .nm-manu-timeline-content p {
    margin-right: auto;
    margin-left: auto;
  }

  .nm-manu-process {
    margin-top: 60px;
  }

  .nm-manu-process-number {
    font-size: 3.6rem;
  }

  .nm-manu-values-grid {
    grid-template-columns: 1fr;
  }

  .nm-manu-value:last-child {
    grid-column: auto;

    max-width: none;
  }

  .nm-manu-cta {
    padding: 65px 0;
  }

}
/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: NUDELN
   ========================================================= */


/* ---------------------------------------------------------
   JOOMLA / HELIX
   --------------------------------------------------------- */

body:has(.nm-produkte) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-produkte) .article-details {
  margin: 0;
}

body:has(.nm-produkte) .article-details .article-header,
body:has(.nm-produkte) .page-header {
  display: none;
}

.nm-produkte {
  width: 100%;
  overflow: hidden;

  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-produkte *,
.nm-produkte *::before,
.nm-produkte *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.nm-prod-hero {
  padding: 90px 0 82px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(196, 154, 74, 0.16),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #FAF1DF 0%,
      var(--nm-offwhite) 100%
    );
}

.nm-prod-hero-inner {
  max-width: 900px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.nm-prod-hero h1 {
  margin: 0 0 16px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.3rem
    );

  line-height: 1.08;

  text-align: center;
}

.nm-prod-hero .nm-script {
  margin-bottom: 25px;

  color: var(--nm-brown);

  text-align: center;
}

.nm-prod-lead {
  max-width: 780px;

  margin: 0 auto;

  color: var(--nm-muted);

  font-size: 1.1rem;
  line-height: 1.8;

  text-align: center;
}


/* Herz / Trennlinie */

.nm-prod-hero-line {
  display: flex;

  max-width: 350px;

  margin: 32px auto 0;

  align-items: center;

  gap: 14px;
}

.nm-prod-hero-line span:not(.nm-prod-heart) {
  flex: 1;

  height: 1px;

  background: var(--nm-gold);
}

.nm-prod-heart {
  color: var(--nm-gold);

  font-size: 1rem;
}


/* =========================================================
   HARTWEIZEN / DINKEL
   ========================================================= */

.nm-prod-category {
  background: var(--nm-offwhite);
}

.nm-prod-category-alt {
  background: var(--nm-cream);
}


/* =========================================================
   PRODUKTGRID
   ========================================================= */

.nm-prod-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 28px;

  max-width: 1220px;

  margin: 0 auto;
}


/* Bei 10 Produkten die letzten zwei Karten mittig setzen */

.nm-prod-grid > .nm-prod-card:nth-last-child(2) {
  grid-column: 2;
}

.nm-prod-grid > .nm-prod-card:last-child {
  grid-column: 3;
}


/* =========================================================
   PRODUKTKARTEN
   ========================================================= */

.nm-prod-card {
  display: flex;

  min-width: 0;

  overflow: hidden;

  flex-direction: column;

  border:
    1px solid var(--nm-border);

  border-radius:
    var(--nm-radius);

  background: #FFFFFF;

  box-shadow:
    0 7px 24px
    rgba(
      46,
      42,
      36,
      0.07
    );

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.nm-prod-card:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(
      196,
      154,
      74,
      0.50
    );

  box-shadow:
    var(--nm-shadow);
}


/* =========================================================
   PRODUKTBILDER
   ========================================================= */

.nm-prod-card img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 5;

  padding: 18px;

  object-fit: contain;
  object-position: center;

  background:
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #FAF5EA 100%
    );

  transition:
    transform 0.3s ease;
}

.nm-prod-card:hover img {
  transform:
    scale(1.025);
}


/* =========================================================
   PRODUKTINHALT
   ========================================================= */

.nm-prod-card > div {
  display: flex;

  min-height: 175px;

  padding:
    24px 22px 27px;

  flex: 1;
  flex-direction: column;

  border-top:
    1px solid
    rgba(
      138,
      91,
      36,
      0.12
    );
}

.nm-prod-card h3 {
  margin:
    0 0 11px;

  color: var(--nm-olive);

  font-size: 1.3rem;

  line-height: 1.3;

  text-align: center;
}

.nm-prod-card p {
  margin:
    0 auto;

  color: var(--nm-muted);

  font-size: 0.95rem;
  line-height: 1.65;

  text-align: center;
}


/* =========================================================
   HANDWERK
   ========================================================= */

.nm-prod-handwerk {
  padding:
    90px 0;

  background:
    var(--nm-offwhite);
}

.nm-prod-handwerk-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: 70px;

  align-items: center;
}

.nm-prod-handwerk-image {
  position: relative;
}

.nm-prod-handwerk-image::before {
  content: "";

  position: absolute;

  top: -16px;
  left: -16px;

  width: 60%;
  height: 60%;

  border-top:
    2px solid var(--nm-gold);

  border-left:
    2px solid var(--nm-gold);

  border-radius:
    var(--nm-radius) 0 0 0;

  pointer-events: none;
}

.nm-prod-handwerk-image img {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius:
    var(--nm-radius);

  box-shadow:
    var(--nm-shadow);
}

.nm-prod-handwerk-content h2 {
  margin:
    0 0 20px;

  color:
    var(--nm-olive);
}

.nm-prod-handwerk-content >
p:not(.nm-kicker) {
  margin:
    0 0 28px;

  color:
    var(--nm-muted);

  font-size: 1.05rem;
  line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.nm-prod-cta {
  padding:
    90px 0;

  background:
    var(--nm-olive);

  color: #FFFFFF;
}

.nm-prod-cta-content {
  max-width: 850px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.nm-prod-cta .nm-script {
  margin-bottom: 12px;

  color:
    var(--nm-gold-light);

  text-align: center;
}

.nm-prod-cta h2 {
  margin:
    0 0 18px;

  color:
    #FFFFFF;

  text-align: center;
}

.nm-prod-cta-content >
p:not(.nm-script) {
  max-width: 720px;

  margin:
    0 auto 30px;

  color:
    rgba(
      255,
      255,
      255,
      0.90
    );

  font-size: 1.08rem;
  line-height: 1.75;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-prod-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 24px;
  }


  .nm-prod-grid >
  .nm-prod-card:nth-last-child(2),
  .nm-prod-grid >
  .nm-prod-card:last-child {
    grid-column: auto;
  }


  .nm-prod-handwerk-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-prod-hero {
    padding:
      60px 0;
  }

  .nm-prod-grid {
    grid-template-columns: 1fr;

    gap: 26px;
  }

  .nm-prod-card {
    max-width: 520px;

    width: 100%;

    margin:
      0 auto;
  }

  .nm-prod-card img {
    aspect-ratio: 4 / 4.6;

    padding: 18px 24px;
  }

  .nm-prod-card > div {
    min-height: 0;

    padding:
      22px 22px 25px;
  }

  .nm-prod-handwerk {
    padding:
      65px 0;
  }

  .nm-prod-handwerk-image::before {
    top: -10px;
    left: -10px;
  }

  .nm-prod-cta {
    padding:
      65px 0;
  }

}


/* =========================================================
   KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 420px) {

  .nm-prod-card img {
    padding:
      14px 18px;
  }

  .nm-prod-card h3 {
    font-size:
      1.2rem;
  }

}

/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: HOFLADEN
   ========================================================= */

body:has(.nm-hofladen) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-hofladen) .article-details {
  margin: 0;
}

body:has(.nm-hofladen) .article-details .article-header,
body:has(.nm-hofladen) .page-header {
  display: none;
}

.nm-hofladen {
  width: 100%;
  overflow: hidden;
  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-hofladen *,
.nm-hofladen *::before,
.nm-hofladen *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.nm-hof-hero {
  padding: 85px 0 95px;

  background:
    radial-gradient(
      circle at 85% 25%,
      rgba(196, 154, 74, 0.14),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--nm-offwhite) 0%,
      #FAF1DF 100%
    );
}

.nm-hof-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 70px;

  align-items: center;
}

.nm-hof-hero h1 {
  margin-bottom: 24px;

  color: var(--nm-olive);

  font-size: clamp(2.7rem, 5vw, 4.4rem);

  line-height: 1.08;
}

.nm-hof-hero h1 span {
  color: var(--nm-brown);
}

.nm-hof-hero-image {
  position: relative;
}

.nm-hof-hero-image::before {
  content: "";

  position: absolute;

  top: -16px;
  right: -16px;

  width: 65%;
  height: 65%;

  border-top: 2px solid var(--nm-gold);
  border-right: 2px solid var(--nm-gold);

  border-radius:
    0 var(--nm-radius) 0 0;
}

.nm-hof-hero-image img {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius: var(--nm-radius);

  box-shadow: var(--nm-shadow);
}


/* =========================================================
   INFO-KARTEN
   ========================================================= */

.nm-hof-info {
  background: var(--nm-cream);
}

.nm-hof-info-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}

.nm-hof-info-card {
  padding: 36px 28px;

  border:
    1px solid
    var(--nm-border);

  border-radius:
    var(--nm-radius);

  background:
    var(--nm-offwhite);

  text-align: center;

  box-shadow:
    0 7px 24px
    rgba(46, 42, 36, 0.06);
}

.nm-hof-info-icon {
  display: flex;

  width: 62px;
  height: 62px;

  margin:
    0 auto 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: var(--nm-cream);

  font-size: 1.45rem;
}

.nm-hof-info-card h3 {
  margin-bottom: 15px;

  color: var(--nm-olive);

  text-align: center;
}

.nm-hof-info-card p {
  margin-bottom: 8px;

  color: var(--nm-muted);

  line-height: 1.65;

  text-align: center;
}

.nm-hof-info-card strong {
  display: block;

  color: var(--nm-brown);

  font-size: 1.05rem;
}

.nm-hof-info-card a {
  color: var(--nm-brown) !important;

  font-weight: 700;

  text-decoration: none;
}

.nm-hof-info-card a:hover {
  color: var(--nm-gold) !important;
}


/* =========================================================
   SORTIMENT
   ========================================================= */

.nm-hof-sortiment {
  background: var(--nm-offwhite);
}

.nm-hof-sortiment-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.8fr);

  gap: 80px;

  align-items: center;
}

.nm-hof-sortiment-content h2 {
  margin-bottom: 22px;

  color: var(--nm-olive);
}

.nm-hof-sortiment-content > p {
  color: var(--nm-muted);

  line-height: 1.8;
}

.nm-hof-sortiment-content .nm-btn {
  margin-top: 10px;
}

.nm-hof-sortiment-box {
  padding: 42px;

  border:
    1px solid
    var(--nm-border);

  border-radius:
    var(--nm-radius);

  background:
    var(--nm-cream);

  box-shadow:
    var(--nm-shadow);
}

.nm-hof-sortiment-box .nm-script {
  margin-bottom: 26px;

  color: var(--nm-olive);
}

.nm-hof-sortiment-box ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.nm-hof-sortiment-box li {
  position: relative;

  padding:
    13px 0 13px 28px;

  border-bottom:
    1px solid
    rgba(138, 91, 36, 0.18);

  color: var(--nm-text);

  line-height: 1.55;
}

.nm-hof-sortiment-box li:last-child {
  border-bottom: 0;
}

.nm-hof-sortiment-box li::before {
  content: "♥";

  position: absolute;

  left: 0;

  color: var(--nm-gold);
}


/* =========================================================
   REGIONAL
   ========================================================= */

.nm-hof-regional {
  background: var(--nm-cream);
}

.nm-hof-values {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;
}

.nm-hof-values article {
  padding: 20px 42px;

  text-align: center;
}

.nm-hof-values article + article {
  border-left:
    1px solid
    rgba(138, 91, 36, 0.25);
}

.nm-hof-values span {
  display: flex;

  width: 52px;
  height: 52px;

  margin:
    0 auto 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: #FFFFFF;

  font-weight: 700;
}

.nm-hof-values h3 {
  margin-bottom: 12px;

  color: var(--nm-olive);

  text-align: center;
}

.nm-hof-values p {
  max-width: 280px;

  margin: 0 auto;

  color: var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   GESCHENKIDEEN
   ========================================================= */

.nm-hof-gift {
  padding: 90px 0;

  background: var(--nm-offwhite);
}

.nm-hof-gift-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: 70px;

  align-items: center;
}

.nm-hof-gift-image img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius: var(--nm-radius);

  box-shadow: var(--nm-shadow);
}

.nm-hof-gift-content h2 {
  margin-bottom: 20px;

  color: var(--nm-olive);
}

.nm-hof-gift-content > p:not(.nm-kicker) {
  margin-bottom: 28px;

  color: var(--nm-muted);

  font-size: 1.05rem;

  line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.nm-hof-cta {
  padding: 90px 0;

  background: var(--nm-olive);

  color: #FFFFFF;
}

.nm-hof-cta-content {
  max-width: 850px;

  text-align: center;
}

.nm-hof-cta .nm-script {
  margin-bottom: 12px;

  color: var(--nm-gold-light);

  text-align: center;
}

.nm-hof-cta h2 {
  margin-bottom: 18px;

  color: #FFFFFF;

  text-align: center;
}

.nm-hof-cta-content > p:not(.nm-script) {
  max-width: 700px;

  margin:
    0 auto 30px;

  color:
    rgba(255, 255, 255, 0.9);

  font-size: 1.08rem;

  line-height: 1.75;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-hof-hero-grid,
  .nm-hof-sortiment-grid,
  .nm-hof-gift-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .nm-hof-info-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .nm-hof-info-card:last-child {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 620px;

    margin: 0 auto;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-hof-hero {
    padding: 50px 0 60px;
  }

  .nm-hof-hero h1 {
    font-size: 2.35rem;
  }

  .nm-hof-info-grid,
  .nm-hof-values {
    grid-template-columns: 1fr;
  }

  .nm-hof-info-card:last-child {
    grid-column: auto;

    max-width: none;
  }

  .nm-hof-values article {
    padding: 30px 10px;
  }

  .nm-hof-values article + article {
    border-top:
      1px solid
      rgba(138, 91, 36, 0.25);

    border-left: 0;
  }

  .nm-hof-sortiment-box {
    padding: 30px 24px;
  }

  .nm-hof-gift,
  .nm-hof-cta {
    padding: 60px 0;
  }

}
/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: VERKAUFSSTELLEN & PARTNER
   ========================================================= */

body:has(.nm-partner) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-partner) .article-details {
  margin: 0;
}

body:has(.nm-partner) .article-details .article-header,
body:has(.nm-partner) .page-header {
  display: none;
}

.nm-partner {
  width: 100%;
  overflow: hidden;

  background: var(--nm-offwhite);

  color: var(--nm-text);
}

.nm-partner *,
.nm-partner *::before,
.nm-partner *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.nm-partner-hero {
  padding: 90px 0 85px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(196, 154, 74, 0.16),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #FAF1DF 0%,
      var(--nm-offwhite) 100%
    );
}

.nm-partner-hero-content {
  max-width: 900px;

  text-align: center;
}

.nm-partner-hero .nm-script {
  margin-bottom: 14px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.2rem,
      5vw,
      3.7rem
    );

  text-align: center;
}

.nm-partner-hero h1 {
  margin-bottom: 22px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.5rem,
      5vw,
      4rem
    );

  line-height: 1.1;

  text-align: center;
}

.nm-partner-hero h1 span {
  color: var(--nm-brown);
}

.nm-partner-lead {
  max-width: 760px;

  margin: 0 auto;

  color: var(--nm-muted);

  font-size: 1.12rem;

  line-height: 1.8;

  text-align: center;
}


/* =========================================================
   VERKAUFSSTELLEN
   ========================================================= */

.nm-partner-sales {
  background: var(--nm-offwhite);
}

.nm-partner-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 22px;
}

.nm-partner-card {
  display: flex;

  min-height: 245px;

  padding: 28px 25px;

  flex-direction: column;

  border:
    1px solid
    var(--nm-border);

  border-radius:
    var(--nm-radius);

  background: #FFFFFF;

  box-shadow:
    0 7px 22px
    rgba(
      46,
      42,
      36,
      0.06
    );

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.nm-partner-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(
      196,
      154,
      74,
      0.5
    );

  box-shadow:
    var(--nm-shadow);
}

.nm-partner-type {
  display: inline-block;

  align-self: flex-start;

  margin-bottom: 14px;

  color: var(--nm-gold);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.nm-partner-card h3 {
  margin-bottom: 13px;

  color: var(--nm-olive);

  font-size: 1.22rem;

  line-height: 1.35;
}

.nm-partner-card p {
  margin-bottom: 18px;

  color: var(--nm-muted);

  line-height: 1.65;
}

.nm-partner-card a {
  margin-top: auto;

  color:
    var(--nm-brown) !important;

  font-weight: 700;

  text-decoration: none !important;
}

.nm-partner-card a:hover {
  color:
    var(--nm-gold) !important;
}


/* =========================================================
   GASTRONOMIE
   ========================================================= */

.nm-partner-gastro {
  background:
    var(--nm-cream);
}

.nm-partner-gastro-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 28px;

  max-width: 1000px;

  margin: 0 auto;
}

.nm-partner-gastro-card {
  display: grid;

  grid-template-columns:
    70px 1fr;

  gap: 24px;

  padding: 34px;

  align-items: flex-start;

  border:
    1px solid
    var(--nm-border);

  border-radius:
    var(--nm-radius);

  background:
    var(--nm-offwhite);

  box-shadow:
    0 7px 24px
    rgba(
      46,
      42,
      36,
      0.07
    );
}

.nm-partner-gastro-icon {
  display: flex;

  width: 62px;
  height: 62px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    var(--nm-olive);

  color:
    var(--nm-cream);

  font-size: 1.4rem;
}

.nm-partner-gastro-card span {
  display: block;

  margin-bottom: 7px;

  color: var(--nm-gold);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.nm-partner-gastro-card h3 {
  margin-bottom: 12px;

  color:
    var(--nm-olive);

  font-size: 1.4rem;
}

.nm-partner-gastro-card p {
  margin-bottom: 15px;

  color:
    var(--nm-muted);

  line-height: 1.65;
}

.nm-partner-gastro-card a {
  color:
    var(--nm-brown) !important;

  font-weight: 700;

  text-decoration: none !important;
}

.nm-partner-gastro-card a:hover {
  color:
    var(--nm-gold) !important;
}


/* =========================================================
   CTA
   ========================================================= */

.nm-partner-cta {
  padding: 90px 0;

  background:
    var(--nm-olive);

  color: #FFFFFF;
}

.nm-partner-cta-content {
  max-width: 850px;

  text-align: center;
}

.nm-partner-cta .nm-script {
  margin-bottom: 12px;

  color:
    var(--nm-gold-light);

  text-align: center;
}

.nm-partner-cta h2 {
  margin-bottom: 18px;

  color: #FFFFFF;

  text-align: center;
}

.nm-partner-cta-content >
p:not(.nm-script) {
  max-width: 680px;

  margin:
    0 auto 30px;

  color:
    rgba(
      255,
      255,
      255,
      0.9
    );

  font-size: 1.08rem;

  line-height: 1.75;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .nm-partner-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


@media (max-width: 850px) {

  .nm-partner-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .nm-partner-gastro-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-partner-hero {
    padding: 60px 0;
  }

  .nm-partner-cta {
    padding: 60px 0;
  }

}


@media (max-width: 560px) {

  .nm-partner-grid {
    grid-template-columns: 1fr;
  }

  .nm-partner-card {
    min-height: 0;
  }

  .nm-partner-gastro-card {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .nm-partner-gastro-icon {
    margin: 0 auto;
  }

  .nm-partner-gastro-card h3,
  .nm-partner-gastro-card p {
    text-align: center;
  }

}
/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: GESCHENKIDEEN
   ========================================================= */

body:has(.nm-geschenke) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-geschenke) .article-details {
  margin: 0;
}

body:has(.nm-geschenke) .article-details .article-header,
body:has(.nm-geschenke) .page-header {
  display: none;
}

.nm-geschenke {
  width: 100%;
  overflow: hidden;
  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-geschenke *,
.nm-geschenke *::before,
.nm-geschenke *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.nm-gift-hero {
  padding: 85px 0 95px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(196, 154, 74, 0.15),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--nm-offwhite) 0%,
      #FAF1DF 100%
    );
}

.nm-gift-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);

  gap: 70px;

  align-items: center;
}

.nm-gift-hero h1 {
  margin-bottom: 20px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.4rem
    );

  line-height: 1.08;
}

.nm-gift-hero h1 span {
  color: var(--nm-brown);
}

.nm-gift-hero .nm-script {
  margin-bottom: 26px;
}

.nm-gift-hero-image {
  position: relative;
}

.nm-gift-hero-image::before {
  content: "";

  position: absolute;

  top: -16px;
  right: -16px;

  width: 62%;
  height: 62%;

  border-top:
    2px solid var(--nm-gold);

  border-right:
    2px solid var(--nm-gold);

  border-radius:
    0 var(--nm-radius) 0 0;
}

.nm-gift-hero-image img {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius:
    var(--nm-radius);

  box-shadow:
    var(--nm-shadow);
}


/* =========================================================
   GESCHENKIDEEN KARTEN
   ========================================================= */

.nm-gift-options {
  background:
    var(--nm-cream);
}

.nm-gift-options-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}

.nm-gift-option {
  padding: 40px 32px;

  border:
    1px solid var(--nm-border);

  border-radius:
    var(--nm-radius);

  background:
    var(--nm-offwhite);

  text-align: center;

  box-shadow:
    0 7px 24px
    rgba(46, 42, 36, 0.06);
}

.nm-gift-option-icon {
  display: flex;

  width: 66px;
  height: 66px;

  margin:
    0 auto 22px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    var(--nm-olive);

  color:
    var(--nm-cream);

  font-size: 1.6rem;
}

.nm-gift-option h3 {
  margin-bottom: 14px;

  color:
    var(--nm-olive);

  text-align: center;
}

.nm-gift-option p {
  margin: 0;

  color:
    var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   GESCHENKKORB FEATURE
   ========================================================= */

.nm-gift-feature {
  background:
    var(--nm-offwhite);
}

.nm-gift-feature-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: 70px;

  align-items: center;
}

.nm-gift-feature-image img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius:
    var(--nm-radius);

  box-shadow:
    var(--nm-shadow);
}

.nm-gift-feature-content h2 {
  margin-bottom: 20px;

  color:
    var(--nm-olive);
}

.nm-gift-feature-content >
p:not(.nm-kicker) {
  color:
    var(--nm-muted);

  font-size: 1.04rem;

  line-height: 1.8;
}

.nm-gift-feature-content .nm-btn {
  margin-top: 10px;
}


/* =========================================================
   ANLÄSSE
   ========================================================= */

.nm-gift-occasions {
  background:
    var(--nm-cream);
}

.nm-gift-occasion-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;
}

.nm-gift-occasion-grid article {
  padding: 20px 42px;

  text-align: center;
}

.nm-gift-occasion-grid article + article {
  border-left:
    1px solid
    rgba(138, 91, 36, 0.25);
}

.nm-gift-occasion-grid span {
  display: flex;

  width: 54px;
  height: 54px;

  margin:
    0 auto 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    var(--nm-olive);

  color: #FFFFFF;

  font-weight: 700;
}

.nm-gift-occasion-grid h3 {
  margin-bottom: 12px;

  color:
    var(--nm-olive);

  text-align: center;
}

.nm-gift-occasion-grid p {
  max-width: 290px;

  margin: 0 auto;

  color:
    var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   ERGÄNZUNGSPRODUKTE
   ========================================================= */

.nm-gift-extra {
  background:
    var(--nm-offwhite);
}

.nm-gift-extra-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.82fr);

  gap: 80px;

  align-items: center;
}

.nm-gift-extra-content .nm-script {
  margin-bottom: 10px;

  color:
    var(--nm-olive);
}

.nm-gift-extra-content h2 {
  margin-bottom: 20px;

  color:
    var(--nm-olive);
}

.nm-gift-extra-content >
p:not(.nm-script) {
  color:
    var(--nm-muted);

  line-height: 1.8;
}

.nm-gift-extra-content .nm-btn {
  margin-top: 10px;
}

.nm-gift-extra-box {
  padding: 40px;

  border:
    1px solid var(--nm-border);

  border-radius:
    var(--nm-radius);

  background:
    var(--nm-cream);

  box-shadow:
    var(--nm-shadow);
}

.nm-gift-extra-box ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.nm-gift-extra-box li {
  position: relative;

  padding:
    13px 0 13px 28px;

  border-bottom:
    1px solid
    rgba(138, 91, 36, 0.18);

  line-height: 1.6;
}

.nm-gift-extra-box li:last-child {
  border-bottom: 0;
}

.nm-gift-extra-box li::before {
  content: "♥";

  position: absolute;

  left: 0;

  color:
    var(--nm-gold);
}

.nm-gift-extra-note {
  margin:
    22px 0 0;

  color:
    var(--nm-muted);

  font-size: 0.9rem;

  font-style: italic;
}


/* =========================================================
   CTA
   ========================================================= */

.nm-gift-cta {
  padding: 90px 0;

  background:
    var(--nm-olive);

  color: #FFFFFF;
}

.nm-gift-cta-content {
  max-width: 850px;

  text-align: center;
}

.nm-gift-cta .nm-script {
  margin-bottom: 12px;

  color:
    var(--nm-gold-light);

  text-align: center;
}

.nm-gift-cta h2 {
  margin-bottom: 18px;

  color: #FFFFFF;

  text-align: center;
}

.nm-gift-cta-content >
p:not(.nm-script) {
  max-width: 700px;

  margin:
    0 auto 30px;

  color:
    rgba(
      255,
      255,
      255,
      0.9
    );

  font-size: 1.08rem;

  line-height: 1.75;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-gift-hero-grid,
  .nm-gift-feature-grid,
  .nm-gift-extra-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .nm-gift-options-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .nm-gift-option:last-child {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 600px;

    margin: 0 auto;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-gift-hero {
    padding: 50px 0 60px;
  }

  .nm-gift-hero h1 {
    font-size: 2.35rem;
  }

  .nm-gift-options-grid,
  .nm-gift-occasion-grid {
    grid-template-columns: 1fr;
  }

  .nm-gift-option:last-child {
    grid-column: auto;

    max-width: none;
  }

  .nm-gift-occasion-grid article {
    padding: 30px 10px;
  }

  .nm-gift-occasion-grid article + article {
    border-top:
      1px solid
      rgba(138, 91, 36, 0.25);

    border-left: 0;
  }

  .nm-gift-extra-box {
    padding: 30px 24px;
  }

  .nm-gift-cta {
    padding: 60px 0;
  }

}
/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   FOOTER – FINALER GRUNDSTAND
   ========================================================= */

#sp-footer {
  margin-top: 32px;

  background: var(--nm-cream) !important;
  color: var(--nm-text) !important;
  border-top: 2px solid var(--nm-gold);
}

#sp-footer .container {
  padding-top: 55px;
  padding-bottom: 45px;
}


/* ---------------------------------------------------------
   LINKER BEREICH – KONTAKT / MARKE
   --------------------------------------------------------- */

#sp-footer .nm-footer-contact,
#sp-footer .nm-footer-contact * {
  color: var(--nm-text);
}

#sp-footer .nm-footer-brand {
  max-width: 500px;
}

#sp-footer .nm-footer-name {
  margin: 0 0 6px;

  color: var(--nm-olive) !important;

  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
}

#sp-footer .nm-footer-slogan {
  margin: 0 0 24px;

  color: var(--nm-brown) !important;

  font-family:
    "Segoe Script",
    "Bradley Hand",
    "Snell Roundhand",
    "Brush Script MT",
    cursive;

  font-size: 1.55rem;
  line-height: 1.4;
}

#sp-footer .nm-footer-contactdata p {
  margin: 0 0 14px;

  color: var(--nm-muted) !important;

  line-height: 1.7;
}

#sp-footer .nm-footer-contactdata a {
  color: var(--nm-brown) !important;
  text-decoration: none !important;
}

#sp-footer .nm-footer-contactdata a:hover {
  color: var(--nm-gold) !important;
}

#sp-footer .nm-footer-hours {
  display: inline-block;

  margin: 6px 0 0;
  padding-left: 15px;

  border-left: 3px solid var(--nm-gold);

  color: var(--nm-olive) !important;

  font-weight: 600;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   RECHTER BEREICH – FOOTER NAVIGATION
   --------------------------------------------------------- */

#sp-footer .nm-footer-menu {
  display: flex;
  justify-content: flex-end;
}

#sp-footer .nm-footer-menu ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

#sp-footer .nm-footer-menu li {
  margin: 0;
  padding: 0;

  border-bottom: 1px solid rgba(138, 91, 36, 0.18);
}

#sp-footer .nm-footer-menu li:last-child {
  border-bottom: 0;
}

#sp-footer .nm-footer-menu a {
  display: block;

  min-width: 220px;
  padding: 11px 4px;

  color: var(--nm-olive) !important;

  font-weight: 600;
  text-align: left;
  text-decoration: none !important;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

#sp-footer .nm-footer-menu a:hover,
#sp-footer .nm-footer-menu .active > a {
  padding-left: 10px;

  color: var(--nm-brown) !important;
}

/* ---------------------------------------------------------
   JOOMLA / HELIX STANDARD-FARBEN ÜBERSCHREIBEN
   --------------------------------------------------------- */

#sp-footer p,
#sp-footer span,
#sp-footer strong {
  color: inherit;
}

#sp-footer a {
  text-decoration: none;
}


/* ---------------------------------------------------------
   TABLET / SMARTPHONE
   --------------------------------------------------------- */

@media (max-width: 767px) {

  #sp-footer {
    margin-top: 20px;
  }

  #sp-footer .container {
    padding-top: 40px;
    padding-bottom: 35px;
  }

  #sp-footer .nm-footer-brand {
    max-width: none;
    margin-bottom: 35px;

    text-align: center;
  }

  #sp-footer .nm-footer-hours {
    padding-left: 0;

    border-left: 0;

    text-align: center;
  }

  #sp-footer .nm-footer-menu {
    justify-content: center;

    text-align: center;
  }

  #sp-footer .nm-footer-menu a {
    min-width: 0;

    text-align: center;
  }

#sp-footer .nm-footer-menu a:hover,
#sp-footer .nm-footer-menu .active > a {
  padding-left: 4px;
}

} /* Ende @media max-width 767px */

/* =========================================================
   FOOTER2 – NAVIGATION ZWINGEND VERTIKAL
   ========================================================= */

#sp-footer2 .sp-module {
  width: 100%;
}

#sp-footer2 .sp-module-content {
  width: 100%;
}

#sp-footer2 ul,
#sp-footer2 ul.menu,
#sp-footer2 ul.mod-menu,
#sp-footer2 .mod-menu {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;

  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  align-items: flex-start !important;

  list-style: none !important;
}

#sp-footer2 ul > li,
#sp-footer2 ul.menu > li,
#sp-footer2 ul.mod-menu > li,
#sp-footer2 .mod-menu > li {
  display: block !important;
  float: none !important;

  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  border-bottom: 1px solid rgba(138, 91, 36, 0.18);
}

#sp-footer2 ul > li:last-child {
  border-bottom: 0;
}

#sp-footer2 ul > li > a,
#sp-footer2 .mod-menu > li > a {
  display: block !important;

  width: 100% !important;

  padding: 11px 4px !important;

  color: var(--nm-olive) !important;

  font-weight: 600;

  text-align: left !important;
  text-decoration: none !important;

  white-space: normal !important;
}

#sp-footer2 ul > li > a:hover,
#sp-footer2 ul > li.active > a {
  padding-left: 10px !important;

  color: var(--nm-brown) !important;
}


/* Smartphone */

@media (max-width: 767px) {

  #sp-footer2 ul,
  #sp-footer2 ul.menu,
  #sp-footer2 ul.mod-menu,
  #sp-footer2 .mod-menu {
    align-items: center !important;
  }

  #sp-footer2 ul > li > a,
  #sp-footer2 .mod-menu > li > a {
    text-align: center !important;
  }

}
/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   RECHTLICHE SEITEN
   ========================================================= */

body:has(.nm-legal) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-legal) .article-details {
  margin: 0;
}

body:has(.nm-legal) .article-details .article-header,
body:has(.nm-legal) .page-header {
  display: none;
}

.nm-legal {
  width: 100%;
  background: var(--nm-offwhite);
  color: var(--nm-text);
}


/* HERO */

.nm-legal-hero {
  padding: 75px 0 65px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(196, 154, 74, 0.14),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #FAF1DF 0%,
      var(--nm-offwhite) 100%
    );

  text-align: center;
}

.nm-legal-hero h1 {
  margin-bottom: 15px;

  color: var(--nm-olive);

  font-size: clamp(2.4rem, 5vw, 3.8rem);

  text-align: center;
}

.nm-legal-hero p:last-child {
  margin-bottom: 0;

  color: var(--nm-muted);

  font-size: 1.05rem;

  text-align: center;
}


/* INHALT */

.nm-legal-content {
  background: var(--nm-offwhite);
}

.nm-legal-box {
  max-width: 950px;

  margin: 0 auto;

  padding: 50px 55px;

  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);

  background: #FFFFFF;

  box-shadow:
    0 8px 28px rgba(46, 42, 36, 0.06);
}

.nm-legal-box h2 {
  margin-top: 40px;
  margin-bottom: 15px;

  color: var(--nm-olive);

  font-size: 1.55rem;
}

.nm-legal-box h2:first-child {
  margin-top: 0;
}

.nm-legal-box h3 {
  margin-top: 30px;
  margin-bottom: 12px;

  color: var(--nm-brown);

  font-size: 1.2rem;
}

.nm-legal-box p,
.nm-legal-box li {
  color: var(--nm-muted);

  line-height: 1.8;
}

.nm-legal-box strong {
  color: var(--nm-text);
}

.nm-legal-box a {
  color: var(--nm-brown) !important;

  text-decoration: none !important;

  overflow-wrap: anywhere;
}

.nm-legal-box a:hover {
  color: var(--nm-gold) !important;
}


/* SMARTPHONE */

@media (max-width: 767px) {

  .nm-legal-hero {
    padding: 55px 0 45px;
  }

  .nm-legal-box {
    padding: 32px 24px;
  }

}
/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: PRODUKTÜBERSICHT
   ========================================================= */

/* Joomla / Helix */
body:has(.nm-produkte-overview) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-produkte-overview) .article-details {
  margin: 0;
}

body:has(.nm-produkte-overview) .article-details .article-header,
body:has(.nm-produkte-overview) .page-header {
  display: none;
}

.nm-produkte-overview {
  width: 100%;
  overflow: hidden;
  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-produkte-overview *,
.nm-produkte-overview *::before,
.nm-produkte-overview *::after {
  box-sizing: border-box;
}


/* Hero */
.nm-pov-hero {
  padding: 90px 0 82px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(196, 154, 74, 0.16),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #FAF1DF 0%,
      var(--nm-offwhite) 100%
    );
}

.nm-pov-hero-inner {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.nm-pov-hero h1 {
  margin: 0 0 14px;
  color: var(--nm-olive);
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  line-height: 1.08;
  text-align: center;
}

.nm-pov-hero .nm-script {
  margin-bottom: 26px;
  color: var(--nm-brown);
  text-align: center;
}

.nm-pov-lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--nm-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}


/* Produktkategorien */
.nm-pov-categories {
  background: var(--nm-offwhite);
}

.nm-pov-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.nm-pov-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);
  background: #FFFFFF;
  box-shadow: 0 8px 28px rgba(46, 42, 36, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.nm-pov-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 154, 74, 0.5);
  box-shadow: var(--nm-shadow);
}

.nm-pov-card-image {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--nm-cream);
}

.nm-pov-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.nm-pov-card:hover .nm-pov-card-image img {
  transform: scale(1.035);
}

.nm-pov-card-content {
  display: flex;
  min-height: 270px;
  padding: 30px 32px 32px;
  flex: 1;
  flex-direction: column;
}

.nm-pov-label {
  margin: 0 0 7px;
  color: var(--nm-gold);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nm-pov-card h3 {
  margin: 0 0 14px;
  color: var(--nm-olive);
  font-size: 1.7rem;
  line-height: 1.25;
}

.nm-pov-card-content > p:not(.nm-pov-label) {
  margin: 0 0 24px;
  color: var(--nm-muted);
  line-height: 1.7;
}

.nm-pov-card .nm-text-link {
  margin-top: auto;
}

.nm-pov-card-image:focus-visible {
  outline: 3px solid var(--nm-gold);
  outline-offset: -3px;
}


/* Werte */
.nm-pov-values {
  background: var(--nm-cream);
}

.nm-pov-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.nm-pov-values-grid article {
  padding: 20px 42px;
  text-align: center;
}

.nm-pov-values-grid article + article {
  border-left: 1px solid rgba(138, 91, 36, 0.25);
}

.nm-pov-values-grid span {
  display: flex;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nm-olive);
  color: #FFFFFF;
  font-weight: 700;
}

.nm-pov-values-grid h3 {
  margin: 0 0 12px;
  color: var(--nm-olive);
  text-align: center;
}

.nm-pov-values-grid p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--nm-muted);
  line-height: 1.7;
  text-align: center;
}


/* CTA */
.nm-pov-cta {
  padding: 90px 0;
  background: var(--nm-olive);
  color: #FFFFFF;
}

.nm-pov-cta-content {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.nm-pov-cta .nm-script {
  margin-bottom: 12px;
  color: var(--nm-gold-light);
  text-align: center;
}

.nm-pov-cta h2 {
  margin: 0 0 18px;
  color: #FFFFFF;
  text-align: center;
}

.nm-pov-cta-content > p:not(.nm-script) {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: center;
}


/* Tablet */
@media (max-width: 991px) {
  .nm-pov-grid {
    gap: 24px;
  }

  .nm-pov-card-content {
    min-height: 290px;
    padding: 26px;
  }
}


/* Smartphone */
@media (max-width: 767px) {
  .nm-pov-hero {
    padding: 60px 0;
  }

  .nm-pov-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nm-pov-card-content {
    min-height: 0;
    padding: 26px 24px;
  }

  .nm-pov-values-grid {
    grid-template-columns: 1fr;
  }

  .nm-pov-values-grid article {
    padding: 30px 10px;
  }

  .nm-pov-values-grid article + article {
    border-top: 1px solid rgba(138, 91, 36, 0.25);
    border-left: 0;
  }

  .nm-pov-cta {
    padding: 65px 0;
  }
}

/* =========================================================
   HERO
   ========================================================= */

.nm-pov-hero {
  padding: 90px 0 85px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(196, 154, 74, 0.16),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #FAF1DF 0%,
      var(--nm-offwhite) 100%
    );
}

.nm-pov-hero-inner {
  max-width: 900px;

  text-align: center;
}

.nm-pov-hero h1 {
  margin-bottom: 14px;

  color: var(--nm-olive);

  font-size: clamp(2.7rem, 5vw, 4.3rem);

  line-height: 1.08;

  text-align: center;
}

.nm-pov-hero .nm-script {
  margin-bottom: 26px;

  color: var(--nm-brown);

  text-align: center;
}

.nm-pov-lead {
  max-width: 780px;

  margin: 0 auto;

  color: var(--nm-muted);

  font-size: 1.1rem;
  line-height: 1.8;

  text-align: center;
}


/* =========================================================
   PRODUKTKATEGORIEN
   ========================================================= */

.nm-pov-categories {
  background: var(--nm-offwhite);
}

.nm-pov-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;

  max-width: 1120px;

  margin: 0 auto;
}

.nm-pov-card {
  position: relative;

  display: grid;

  grid-template-columns:
    90px 1fr;

  gap: 25px;

  min-height: 285px;

  padding: 36px;

  overflow: hidden;

  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius);

  background: #FFFFFF;

  box-shadow:
    0 8px 28px rgba(46, 42, 36, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.nm-pov-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(196, 154, 74, 0.55);

  box-shadow: var(--nm-shadow);
}

.nm-pov-number {
  display: flex;

  width: 72px;
  height: 72px;

  align-items: center;
  justify-content: center;

  border: 2px solid var(--nm-gold);
  border-radius: 50%;

  background: var(--nm-cream);

  color: var(--nm-olive);

  font-size: 1.1rem;
  font-weight: 700;
}

.nm-pov-card-content {
  display: flex;

  flex-direction: column;
}

.nm-pov-label {
  margin-bottom: 7px;

  color: var(--nm-gold);

  font-size: 0.76rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.nm-pov-card h3 {
  margin-bottom: 14px;

  color: var(--nm-olive);

  font-size: 1.65rem;
  line-height: 1.25;
}

.nm-pov-card-content > p:not(.nm-pov-label) {
  margin-bottom: 22px;

  color: var(--nm-muted);

  line-height: 1.7;
}

.nm-pov-card .nm-text-link {
  margin-top: auto;
}


/* =========================================================
   WERTE
   ========================================================= */

.nm-pov-values {
  background: var(--nm-cream);
}

.nm-pov-values-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;

  max-width: 1100px;

  margin: 0 auto;
}

.nm-pov-values-grid article {
  padding: 25px 42px;

  text-align: center;
}

.nm-pov-values-grid article + article {
  border-left:
    1px solid rgba(138, 91, 36, 0.25);
}

.nm-pov-values-grid span {
  display: flex;

  width: 54px;
  height: 54px;

  margin: 0 auto 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: #FFFFFF;

  font-weight: 700;
}

.nm-pov-values-grid h3 {
  margin-bottom: 12px;

  color: var(--nm-olive);

  text-align: center;
}

.nm-pov-values-grid p {
  max-width: 290px;

  margin: 0 auto;

  color: var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   CTA
   ========================================================= */

.nm-pov-cta {
  padding: 90px 0;

  background: var(--nm-olive);

  color: #FFFFFF;
}

.nm-pov-cta-content {
  max-width: 850px;

  text-align: center;
}

.nm-pov-cta .nm-script {
  margin-bottom: 12px;

  color: var(--nm-gold-light);

  text-align: center;
}

.nm-pov-cta h2 {
  margin-bottom: 18px;

  color: #FFFFFF;

  text-align: center;
}

.nm-pov-cta-content > p:not(.nm-script) {
  max-width: 700px;

  margin: 0 auto 30px;

  color: rgba(255, 255, 255, 0.90);

  font-size: 1.08rem;
  line-height: 1.75;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-pov-grid {
    grid-template-columns: 1fr;
  }

  .nm-pov-card {
    min-height: 0;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-pov-hero {
    padding: 60px 0;
  }

  .nm-pov-card {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 30px 24px;

    text-align: center;
  }

  .nm-pov-number {
    margin: 0 auto;
  }

  .nm-pov-card h3,
  .nm-pov-card-content > p,
  .nm-pov-label {
    text-align: center;
  }

  .nm-pov-values-grid {
    grid-template-columns: 1fr;
  }

  .nm-pov-values-grid article {
    padding: 30px 10px;
  }

  .nm-pov-values-grid article + article {
    border-top:
      1px solid rgba(138, 91, 36, 0.25);

    border-left: 0;
  }

  .nm-pov-cta {
    padding: 65px 0;
  }

}

/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: WEINSORTIMENT – FINAL HARMONISIERT
   ========================================================= */


/* ---------------------------------------------------------
   JOOMLA / HELIX
   --------------------------------------------------------- */

body:has(.nm-wein) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-wein) .article-details {
  margin: 0;
}

body:has(.nm-wein) .article-details .article-header,
body:has(.nm-wein) .page-header {
  display: none;
}

.nm-wein {
  width: 100%;
  overflow: hidden;

  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-wein *,
.nm-wein *::before,
.nm-wein *::after {
  box-sizing: border-box;
}

/*
   WICHTIG:
   Keine 100vw-Ausdehnung der einzelnen Bereiche.
   Die Hintergrundflächen bleiben – wie auf der Nudelseite –
   innerhalb der normalen Joomla-/Helix-Inhaltsbreite.
*/
.nm-wein > section {
  width: 100%;

  margin-left: 0;
  margin-right: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.nm-wine-hero {
  padding: 88px 0 92px;

  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(196, 154, 74, 0.15),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      var(--nm-offwhite) 0%,
      #FAF1DF 100%
    );
}

.nm-wine-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);

  gap: 72px;

  max-width: 1180px;

  margin-right: auto;
  margin-left: auto;

  align-items: center;
}

.nm-wine-hero h1 {
  margin: 0 0 18px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.4rem
    );

  line-height: 1.06;
}

.nm-wine-hero .nm-script {
  margin-bottom: 25px;

  color: var(--nm-brown);
}

.nm-wine-hero .nm-lead {
  max-width: 610px;
}

.nm-wine-hero-image {
  position: relative;
}

.nm-wine-hero-image::before {
  content: "";

  position: absolute;

  top: -16px;
  right: -16px;

  width: 62%;
  height: 62%;

  border-top: 2px solid var(--nm-gold);
  border-right: 2px solid var(--nm-gold);

  border-radius:
    0 var(--nm-radius) 0 0;

  pointer-events: none;
}

.nm-wine-hero-image img {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;
  object-position: center;

  border-radius: var(--nm-radius);

  box-shadow: var(--nm-shadow);
}


/* =========================================================
   KATEGORIEN / SEITENRHYTHMUS
   ========================================================= */

.nm-wein .nm-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.nm-wein .nm-section-heading {
  max-width: 850px;

  margin-bottom: 48px;
}

.nm-wine-category {
  background: var(--nm-offwhite);
}

.nm-wine-category-alt {
  background: var(--nm-cream);
}

/*
   Nach Rotwein (hell) und Weißwein (creme) bleibt Sekt hell.
   "Besonderes" wechselt wieder auf Creme. So entsteht derselbe
   ruhige Hell/Creme-Rhythmus wie auf den übrigen Seiten.
*/
.nm-wine-special {
  background: var(--nm-cream);
}

#rotwein {
  scroll-margin-top: 120px;
}


/* =========================================================
   GROSSE PRODUKTGRIDS
   Rotwein / Rosé + Weißwein
   ========================================================= */

.nm-wine-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 30px;

  max-width: 1080px;

  margin: 0 auto;
}


/* =========================================================
   PRODUKTKARTEN
   ========================================================= */

.nm-wine-card {
  display: flex;

  min-width: 0;

  overflow: hidden;

  flex-direction: column;

  border:
    1px solid var(--nm-border);

  border-radius: var(--nm-radius);

  background: #FFFFFF;

  box-shadow:
    0 8px 26px
    rgba(
      46,
      42,
      36,
      0.07
    );

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.nm-wine-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(
      196,
      154,
      74,
      0.50
    );

  box-shadow: var(--nm-shadow);
}


/* =========================================================
   BILDER
   ========================================================= */

.nm-wine-card img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center;

  background: #FFFFFF;

  transition: transform 0.3s ease;
}

.nm-wine-card:hover img {
  transform: scale(1.02);
}


/* =========================================================
   KARTENINHALT
   ========================================================= */

.nm-wine-card > div {
  display: flex;

  min-height: 112px;

  padding:
    20px 20px 22px;

  flex: 1;
  flex-direction: column;
  justify-content: center;

  border-top:
    1px solid
    rgba(
      138,
      91,
      36,
      0.12
    );

  background: #FFFFFF;
}

.nm-wine-card h3 {
  margin:
    0 0 7px;

  color: var(--nm-olive);

  font-size: 1.23rem;
  line-height: 1.32;

  text-align: center;
}

.nm-wine-card p {
  margin: 0;

  color: var(--nm-brown);

  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;

  text-align: center;
}


/* =========================================================
   SEKT & BESONDERES
   Breitere 2x2-Karten statt kleiner Mini-Karten
   ========================================================= */

.nm-wine-grid-small {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;

  max-width: 980px;
}

.nm-wine-grid-small .nm-wine-card {
  display: grid;

  grid-template-columns:
    minmax(185px, 0.82fr)
    minmax(190px, 1.18fr);

  min-height: 265px;

  text-align: left;
}

.nm-wine-grid-small .nm-wine-card img {
  width: 100%;
  height: 100%;

  min-height: 265px;

  aspect-ratio: auto;

  object-fit: cover;
  object-position: center;
}

.nm-wine-grid-small .nm-wine-card > div {
  min-height: 0;

  padding:
    28px 26px;

  align-items: flex-start;
  justify-content: center;

  border-top: 0;
  border-left:
    1px solid
    rgba(
      138,
      91,
      36,
      0.12
    );
}

.nm-wine-grid-small .nm-wine-card h3,
.nm-wine-grid-small .nm-wine-card p {
  text-align: left;
}


/* =========================================================
   HINWEIS ZUR VERFÜGBARKEIT
   ========================================================= */

.nm-wine-note {
  padding:
    82px 0 90px;

  background: var(--nm-offwhite);
}

.nm-wine-note-box {
  max-width: 900px;

  margin: 0 auto;

  padding:
    42px 46px;

  border:
    1px solid var(--nm-border);

  border-left:
    5px solid var(--nm-gold);

  border-radius: var(--nm-radius);

  background: var(--nm-cream);

  box-shadow:
    0 7px 24px
    rgba(
      46,
      42,
      36,
      0.06
    );
}

.nm-wine-note-box .nm-kicker {
  margin-bottom: 10px;
}

.nm-wine-note-box h2 {
  margin:
    0 0 15px;

  color: var(--nm-olive);

  font-size:
    clamp(
      1.7rem,
      3vw,
      2.25rem
    );
}

.nm-wine-note-box p:last-child {
  margin: 0;

  color: var(--nm-muted);

  line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.nm-wine-cta {
  padding:
    90px 0;

  background: var(--nm-olive);

  color: #FFFFFF;
}

.nm-wine-cta-content {
  max-width: 850px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.nm-wine-cta .nm-script {
  margin-bottom: 12px;

  color: var(--nm-gold-light);

  text-align: center;
}

.nm-wine-cta h2 {
  margin:
    0 0 18px;

  color: #FFFFFF;

  text-align: center;
}

.nm-wine-cta-content >
p:not(.nm-script) {
  max-width: 700px;

  margin:
    0 auto 30px;

  color:
    rgba(
      255,
      255,
      255,
      0.90
    );

  font-size: 1.08rem;
  line-height: 1.75;

  text-align: center;
}


/* =========================================================
   KLEINER DESKTOP / TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .nm-wine-hero-grid {
    gap: 50px;
  }

  .nm-wine-grid {
    gap: 24px;
  }

  .nm-wine-grid-small {
    max-width: 900px;
  }

}


@media (max-width: 991px) {

  .nm-wine-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;

    max-width: 780px;
  }

  .nm-wine-hero-image {
    max-width: 760px;

    margin: 0 auto;
  }

  .nm-wine-grid,
  .nm-wine-grid-small {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    max-width: 760px;
  }

  .nm-wine-grid-small .nm-wine-card {
    display: flex;

    min-height: 0;

    flex-direction: column;
  }

  .nm-wine-grid-small .nm-wine-card img {
    height: auto;
    min-height: 0;

    aspect-ratio: 4 / 5;
  }

  .nm-wine-grid-small .nm-wine-card > div {
    min-height: 110px;

    padding:
      20px 20px 22px;

    align-items: center;

    border-top:
      1px solid
      rgba(
        138,
        91,
        36,
        0.12
      );

    border-left: 0;
  }

  .nm-wine-grid-small .nm-wine-card h3,
  .nm-wine-grid-small .nm-wine-card p {
    text-align: center;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-wine-hero {
    padding:
      55px 0 62px;
  }

  .nm-wine-hero h1 {
    font-size: 2.35rem;
  }

  .nm-wein .nm-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .nm-wein .nm-section-heading {
    margin-bottom: 36px;
  }

  .nm-wine-grid,
  .nm-wine-grid-small {
    grid-template-columns: 1fr;

    max-width: 520px;

    gap: 26px;
  }

  .nm-wine-card {
    width: 100%;

    margin: 0 auto;
  }

  .nm-wine-card img,
  .nm-wine-grid-small .nm-wine-card img {
    aspect-ratio: 4 / 4.8;
  }

  .nm-wine-card > div,
  .nm-wine-grid-small .nm-wine-card > div {
    min-height: 0;

    padding:
      21px 20px 23px;
  }

  .nm-wine-note {
    padding:
      60px 0 65px;
  }

  .nm-wine-note-box {
    padding:
      30px 24px;
  }

  .nm-wine-cta {
    padding:
      65px 0;
  }

}


/* =========================================================
   KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 420px) {

  .nm-wine-card h3 {
    font-size: 1.16rem;
  }

}


/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: REGIONALES SORTIMENT
   ========================================================= */


/* ---------------------------------------------------------
   JOOMLA / HELIX
   --------------------------------------------------------- */

body:has(.nm-regional) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-regional) .article-details {
  margin: 0;
}

body:has(.nm-regional) .article-details .article-header,
body:has(.nm-regional) .page-header {
  display: none;
}

.nm-regional {
  width: 100%;
  overflow: hidden;

  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-regional *,
.nm-regional *::before,
.nm-regional *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.nm-regional-hero {
  padding: 90px 0 82px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(196, 154, 74, 0.16),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #FAF1DF 0%,
      var(--nm-offwhite) 100%
    );
}

.nm-regional-hero-inner {
  max-width: 900px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.nm-regional-hero h1 {
  margin: 0 0 16px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.3rem
    );

  line-height: 1.08;

  text-align: center;
}

.nm-regional-hero .nm-script {
  margin-bottom: 25px;

  color: var(--nm-brown);

  text-align: center;
}

.nm-regional-lead {
  max-width: 760px;

  margin: 0 auto;

  color: var(--nm-muted);

  font-size: 1.1rem;
  line-height: 1.8;

  text-align: center;
}


/* =========================================================
   PRODUKTBEREICHE
   ========================================================= */

.nm-regional-products {
  background: var(--nm-offwhite);
}

.nm-regional-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 32px;

  max-width: 1050px;

  margin: 0 auto;
}

.nm-regional-card {
  display: flex;

  min-width: 0;

  overflow: hidden;

  flex-direction: column;

  border:
    1px solid var(--nm-border);

  border-radius:
    var(--nm-radius);

  background: #FFFFFF;

  box-shadow:
    0 8px 28px
    rgba(
      46,
      42,
      36,
      0.07
    );

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.nm-regional-card:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(
      196,
      154,
      74,
      0.5
    );

  box-shadow:
    var(--nm-shadow);
}


/* =========================================================
   PRODUKTBILDER
   ========================================================= */

.nm-regional-card-image {
  display: block;

  width: 100%;

  overflow: hidden;

  background:
    var(--nm-cream);
}

.nm-regional-card-image img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.35s ease;
}

.nm-regional-card:hover
.nm-regional-card-image img {
  transform:
    scale(1.035);
}


/* =========================================================
   KARTENINHALT
   ========================================================= */

.nm-regional-card-content {
  display: flex;

  min-height: 245px;

  padding:
    30px 32px 32px;

  flex: 1;
  flex-direction: column;
}

.nm-regional-label {
  margin:
    0 0 7px;

  color: var(--nm-gold);

  font-size: 0.77rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.nm-regional-card h3 {
  margin:
    0 0 14px;

  color: var(--nm-olive);

  font-size: 1.7rem;

  line-height: 1.25;
}

.nm-regional-card-content >
p:not(.nm-regional-label) {
  margin: 0;

  color: var(--nm-muted);

  line-height: 1.75;
}


/* =========================================================
   WERTE
   ========================================================= */

.nm-regional-values {
  background: var(--nm-cream);
}

.nm-regional-values-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;

  max-width: 1100px;

  margin: 0 auto;
}

.nm-regional-values-grid article {
  padding:
    20px 42px;

  text-align: center;
}

.nm-regional-values-grid article + article {
  border-left:
    1px solid
    rgba(
      138,
      91,
      36,
      0.25
    );
}

.nm-regional-values-grid span {
  display: flex;

  width: 54px;
  height: 54px;

  margin:
    0 auto 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    var(--nm-olive);

  color: #FFFFFF;

  font-weight: 700;
}

.nm-regional-values-grid h3 {
  margin:
    0 0 12px;

  color:
    var(--nm-olive);

  text-align: center;
}

.nm-regional-values-grid p {
  max-width: 290px;

  margin: 0 auto;

  color:
    var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   HINWEIS / VERFÜGBARKEIT
   ========================================================= */

.nm-regional-note {
  padding:
    25px 0 90px;

  background:
    var(--nm-offwhite);
}

.nm-regional-note-box {
  max-width: 900px;

  margin: 0 auto;

  padding:
    42px 46px;

  border:
    1px solid var(--nm-border);

  border-left:
    5px solid var(--nm-gold);

  border-radius:
    var(--nm-radius);

  background:
    var(--nm-cream);

  box-shadow:
    0 7px 24px
    rgba(
      46,
      42,
      36,
      0.06
    );
}

.nm-regional-note-box .nm-kicker {
  margin-bottom: 10px;
}

.nm-regional-note-box h2 {
  margin:
    0 0 15px;

  color:
    var(--nm-olive);

  font-size:
    clamp(
      1.7rem,
      3vw,
      2.25rem
    );
}

.nm-regional-note-box p:last-child {
  margin: 0;

  color:
    var(--nm-muted);

  line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.nm-regional-cta {
  padding:
    90px 0;

  background:
    var(--nm-olive);

  color: #FFFFFF;
}

.nm-regional-cta-content {
  max-width: 850px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.nm-regional-cta .nm-script {
  margin-bottom: 12px;

  color:
    var(--nm-gold-light);

  text-align: center;
}

.nm-regional-cta h2 {
  margin:
    0 0 18px;

  color:
    #FFFFFF;

  text-align: center;
}

.nm-regional-cta-content >
p:not(.nm-script) {
  max-width: 700px;

  margin:
    0 auto 30px;

  color:
    rgba(
      255,
      255,
      255,
      0.90
    );

  font-size: 1.08rem;
  line-height: 1.75;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-regional-grid {
    gap: 24px;
  }

  .nm-regional-card-content {
    min-height: 265px;

    padding:
      26px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-regional-hero {
    padding:
      60px 0;
  }

  .nm-regional-grid {
    grid-template-columns: 1fr;

    gap: 28px;

    max-width: 520px;
  }

  .nm-regional-card-content {
    min-height: 0;

    padding:
      26px 24px;
  }

  .nm-regional-values-grid {
    grid-template-columns: 1fr;
  }

  .nm-regional-values-grid article {
    padding:
      30px 10px;
  }

  .nm-regional-values-grid article + article {
    border-top:
      1px solid
      rgba(
        138,
        91,
        36,
        0.25
      );

    border-left: 0;
  }

  .nm-regional-note {
    padding:
      10px 0 65px;
  }

  .nm-regional-note-box {
    padding:
      30px 24px;
  }

  .nm-regional-cta {
    padding:
      65px 0;
  }

}

/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   STARTSEITE: PRODUKTBEREICH – 4 KATEGORIEN
   ========================================================= */

/*
   Gilt nur für den neuen Produktbereich auf der Startseite.
   Die übrigen .nm-card-Grids der Website bleiben unverändert.
*/

.nm-home-product-grid {
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 26px;
}

.nm-home-product-grid .nm-card {
  display: flex;

  min-width: 0;

  flex-direction: column;
}

.nm-home-product-grid .nm-card-image img {
  aspect-ratio: 4 / 3;

  object-fit: cover;
  object-position: center;
}

.nm-home-product-grid .nm-card-content {
  display: flex;

  min-height: 245px;

  padding: 26px;

  flex: 1;
  flex-direction: column;
}

.nm-home-product-grid
.nm-card-content > p:not(.nm-card-label) {
  min-height: 0;

  margin-bottom: 22px;

  flex: 1;
}

.nm-home-product-grid .nm-text-link {
  margin-top: auto;
}


/* =========================================================
   KLEINER DESKTOP / TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .nm-home-product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 24px;
  }

  .nm-home-product-grid .nm-card {
    width: 100%;
    max-width: none;

    margin: 0;

    grid-column: auto;
  }

  .nm-home-product-grid .nm-card-content {
    min-height: 220px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-home-product-grid {
    grid-template-columns: 1fr;

    gap: 26px;
  }

  .nm-home-product-grid .nm-card {
    width: 100%;
    max-width: 540px;

    margin:
      0 auto;
  }

  .nm-home-product-grid .nm-card-content {
    min-height: 0;

    padding: 24px;
  }

}


/* =========================================================
   KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 420px) {

  .nm-home-product-grid .nm-card-content {
    padding: 22px;
  }

}

/* =========================================================
   MANUFAKTUR – FAMILIENFOTO
   ========================================================= */

.nm-manu-family-image img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: var(--nm-radius);

  box-shadow: var(--nm-shadow);
}


/* =========================================================
   KONTAKT – LAGEKARTE
   ========================================================= */

.nm-contact-map {
  background: var(--nm-offwhite);
}

.nm-contact-map-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(320px, 0.65fr);

  gap: 42px;

  align-items: stretch;

  max-width: 1120px;

  margin: 0 auto;
}

.nm-contact-map-image {
  overflow: hidden;

  min-height: 420px;

  border-radius: var(--nm-radius);

  background: var(--nm-cream);

  box-shadow: var(--nm-shadow);
}

.nm-contact-map-image img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 420px;

  object-fit: cover;
  object-position: center;
}

.nm-contact-map-info {
  display: flex;

  padding: 42px 38px;

  flex-direction: column;
  justify-content: center;

  border:
    1px solid var(--nm-border);

  border-radius: var(--nm-radius);

  background: var(--nm-cream);

  box-shadow:
    0 8px 28px
    rgba(
      46,
      42,
      36,
      0.07
    );
}

.nm-contact-map-info .nm-script {
  margin-bottom: 12px;

  color: var(--nm-brown);
}

.nm-contact-map-info h3 {
  margin:
    0 0 20px;

  color: var(--nm-olive);

  font-size:
    clamp(
      1.55rem,
      2.5vw,
      2rem
    );

  line-height: 1.35;
}

.nm-contact-map-info p:not(.nm-script) {
  margin:
    0 0 28px;

  color: var(--nm-muted);

  line-height: 1.75;
}

.nm-contact-map-info .nm-btn {
  align-self: flex-start;
}


/* =========================================================
   KONTAKT – TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-contact-map-grid {
    grid-template-columns: 1fr;

    gap: 28px;

    max-width: 760px;
  }

  .nm-contact-map-image,
  .nm-contact-map-image img {
    min-height: 360px;
  }

  .nm-contact-map-info {
    padding: 34px 30px;
  }

}


/* =========================================================
   KONTAKT – SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-contact-map-image,
  .nm-contact-map-image img {
    min-height: 270px;
  }

  .nm-contact-map-info {
    padding: 28px 24px;
  }

  .nm-contact-map-info .nm-btn {
    width: 100%;

    text-align: center;
  }

}

/* =========================================================
   NUDELMANUFAKTUR EISENREICH
   SEITE: KONTAKT – FINALER SEITENAUFBAU
   ========================================================= */


/* ---------------------------------------------------------
   JOOMLA / HELIX RESET
   --------------------------------------------------------- */

body:has(.nm-kontakt) #sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

body:has(.nm-kontakt) .article-details {
  margin: 0;
}

body:has(.nm-kontakt) .article-details .article-header,
body:has(.nm-kontakt) .page-header {
  display: none;
}

.nm-kontakt {
  width: 100%;
  overflow: hidden;

  background: var(--nm-offwhite);
  color: var(--nm-text);
}

.nm-kontakt *,
.nm-kontakt *::before,
.nm-kontakt *::after {
  box-sizing: border-box;
}

.nm-kontakt h1,
.nm-kontakt h2,
.nm-kontakt h3,
.nm-kontakt p {
  margin-top: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.nm-contact-hero {
  padding: 88px 0 84px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(196, 154, 74, 0.16),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #FAF1DF 0%,
      var(--nm-offwhite) 100%
    );
}

.nm-contact-hero-content {
  max-width: 900px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.nm-contact-hero .nm-script {
  margin-bottom: 13px;

  color: var(--nm-brown);

  text-align: center;
}

.nm-contact-hero h1 {
  margin-bottom: 22px;

  color: var(--nm-olive);

  font-size:
    clamp(
      2.8rem,
      5vw,
      4.4rem
    );

  line-height: 1.08;

  text-align: center;
}

.nm-contact-lead {
  max-width: 760px;

  margin:
    0 auto;

  color: var(--nm-muted);

  font-size: 1.1rem;
  line-height: 1.8;

  text-align: center;
}

.nm-contact-hero .nm-prod-hero-line {
  margin-top: 30px;
}


/* =========================================================
   KONTAKTDATEN
   ========================================================= */

.nm-contact-data {
  background: var(--nm-cream);
}

.nm-contact-card-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}

.nm-contact-card {
  display: flex;

  min-width: 0;

  padding: 38px 30px;

  flex-direction: column;
  align-items: center;

  border:
    1px solid var(--nm-border);

  border-radius: var(--nm-radius);

  background: var(--nm-offwhite);

  text-align: center;

  box-shadow:
    0 7px 24px
    rgba(
      46,
      42,
      36,
      0.06
    );
}

.nm-contact-card-icon {
  display: flex;

  width: 62px;
  height: 62px;

  margin:
    0 auto 21px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: var(--nm-cream);

  font-size: 1.4rem;
  line-height: 1;
}

.nm-contact-card h3 {
  margin-bottom: 15px;

  color: var(--nm-olive);

  font-size: 1.45rem;

  text-align: center;
}

.nm-contact-card p {
  margin-bottom: 16px;

  color: var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}

.nm-contact-card strong {
  color: var(--nm-text);
}

.nm-contact-card a {
  margin-top: auto;

  color: var(--nm-brown) !important;

  font-weight: 700;

  text-decoration: none;
}

.nm-contact-card a:hover {
  color: var(--nm-gold) !important;
}


/* =========================================================
   ÖFFNUNGSZEITEN / HOFLADEN
   ========================================================= */

.nm-contact-hours {
  background: var(--nm-offwhite);
}

.nm-contact-hours-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(0, 1.22fr);

  gap: 72px;

  align-items: center;
}

.nm-contact-hours-content h2 {
  margin-bottom: 20px;

  color: var(--nm-olive);
}

.nm-contact-hours-content > p:not(.nm-script) {
  max-width: 560px;

  margin-bottom: 25px;

  color: var(--nm-muted);

  line-height: 1.8;
}

.nm-contact-opening {
  display: inline-flex;

  margin-bottom: 28px;

  padding:
    16px 20px;

  flex-wrap: wrap;
  gap: 6px 16px;

  border-left:
    4px solid var(--nm-gold);

  border-radius:
    0 12px 12px 0;

  background: var(--nm-cream);

  color: var(--nm-text);

  line-height: 1.5;
}

.nm-contact-opening strong {
  color: var(--nm-olive);
}

.nm-contact-hours-image {
  position: relative;
}

.nm-contact-hours-image::before {
  content: "";

  position: absolute;

  top: -14px;
  right: -14px;

  width: 62%;
  height: 62%;

  border-top:
    2px solid var(--nm-gold);

  border-right:
    2px solid var(--nm-gold);

  border-radius:
    0 var(--nm-radius) 0 0;
}

.nm-contact-hours-image img {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius: var(--nm-radius);

  box-shadow: var(--nm-shadow);
}


/* =========================================================
   ANFAHRT / LAGEKARTE
   ========================================================= */

.nm-contact-map {
  background: var(--nm-cream);
}

.nm-contact-map .nm-section-heading {
  margin-bottom: 48px;
}

.nm-contact-map-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(320px, 0.65fr);

  gap: 32px;

  align-items: stretch;

  max-width: 1120px;

  margin: 0 auto;
}

.nm-contact-map-image {
  overflow: hidden;

  min-height: 420px;

  border:
    1px solid var(--nm-border);

  border-radius: var(--nm-radius);

  background: var(--nm-offwhite);

  box-shadow: var(--nm-shadow);
}

.nm-contact-map-image img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 420px;

  object-fit: cover;
  object-position: center;
}

.nm-contact-map-info {
  display: flex;

  padding:
    42px 38px;

  flex-direction: column;
  justify-content: center;

  border:
    1px solid var(--nm-border);

  border-radius: var(--nm-radius);

  background: var(--nm-offwhite);

  box-shadow:
    0 7px 24px
    rgba(
      46,
      42,
      36,
      0.06
    );
}

.nm-contact-map-info .nm-script {
  margin-bottom: 15px;

  color: var(--nm-brown);
}

.nm-contact-map-info h3 {
  margin-bottom: 18px;

  color: var(--nm-olive);

  font-size:
    clamp(
      1.6rem,
      2.6vw,
      2.05rem
    );

  line-height: 1.35;
}

.nm-contact-map-info p:not(.nm-script) {
  margin-bottom: 28px;

  color: var(--nm-muted);

  line-height: 1.8;
}

.nm-contact-map-info .nm-btn {
  align-self: flex-start;
}


/* =========================================================
   FRAGEN & WÜNSCHE
   ========================================================= */

.nm-contact-direct {
  background: var(--nm-offwhite);
}

.nm-contact-direct-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;

  max-width: 1080px;

  margin: 0 auto;
}

.nm-contact-direct-item {
  padding:
    22px 42px;

  text-align: center;
}

.nm-contact-direct-item + .nm-contact-direct-item {
  border-left:
    1px solid
    rgba(
      138,
      91,
      36,
      0.25
    );
}

.nm-contact-direct-item span {
  display: flex;

  width: 54px;
  height: 54px;

  margin:
    0 auto 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nm-olive);

  color: #FFFFFF;

  font-weight: 700;
}

.nm-contact-direct-item h3 {
  margin-bottom: 12px;

  color: var(--nm-olive);

  font-size: 1.45rem;

  text-align: center;
}

.nm-contact-direct-item p {
  max-width: 290px;

  margin: 0 auto;

  color: var(--nm-muted);

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   ABSCHLUSS CTA
   ========================================================= */

.nm-contact-final {
  padding:
    90px 0;

  background: var(--nm-olive);

  color: #FFFFFF;
}

.nm-contact-final-content {
  max-width: 850px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.nm-contact-final .nm-script {
  margin-bottom: 12px;

  color: var(--nm-gold-light);

  text-align: center;
}

.nm-contact-final h2 {
  margin-bottom: 18px;

  color: #FFFFFF;

  text-align: center;
}

.nm-contact-final-content >
p:not(.nm-script) {
  max-width: 680px;

  margin:
    0 auto 30px;

  color:
    rgba(
      255,
      255,
      255,
      0.9
    );

  font-size: 1.08rem;
  line-height: 1.75;

  text-align: center;
}

.nm-contact-final .nm-btn-gold {
  background: var(--nm-gold);
  color: var(--nm-olive-dark) !important;
}

.nm-contact-final .nm-btn-light {
  border-color:
    rgba(
      255,
      255,
      255,
      0.72
    );

  background: transparent;

  color: #FFFFFF !important;
}

.nm-contact-final .nm-btn-light:hover {
  border-color: #FFFFFF;

  background: #FFFFFF;

  color: var(--nm-olive) !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .nm-contact-card-grid {
    grid-template-columns: 1fr;

    max-width: 680px;

    margin:
      0 auto;
  }

  .nm-contact-hours-grid {
    grid-template-columns: 1fr;

    gap: 45px;

    max-width: 780px;

    margin:
      0 auto;
  }

  .nm-contact-map-grid {
    grid-template-columns: 1fr;

    gap: 28px;

    max-width: 780px;
  }

  .nm-contact-map-image,
  .nm-contact-map-image img {
    min-height: 360px;
  }

  .nm-contact-map-info {
    padding:
      34px 30px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .nm-contact-hero {
    padding:
      60px 0;
  }

  .nm-contact-card {
    padding:
      30px 24px;
  }

  .nm-contact-hours-image::before {
    top: -10px;
    right: -10px;
  }

  .nm-contact-map-image,
  .nm-contact-map-image img {
    min-height: 270px;
  }

  .nm-contact-map-info {
    padding:
      28px 24px;
  }

  .nm-contact-map-info .nm-btn {
    width: 100%;

    text-align: center;
  }

  .nm-contact-direct-grid {
    grid-template-columns: 1fr;
  }

  .nm-contact-direct-item {
    padding:
      30px 10px;
  }

  .nm-contact-direct-item + .nm-contact-direct-item {
    border-top:
      1px solid
      rgba(
        138,
        91,
        36,
        0.25
      );

    border-left: 0;
  }

  .nm-contact-final {
    padding:
      65px 0;
  }

}

/* =========================================================
   KONTAKT – LAGEKARTE: MARKENNAME IM INFOFELD
   ========================================================= */

.nm-contact-map-info .nm-script {
  display: block;

  max-width: 100%;

  font-size:
    clamp(
      1.8rem,
      2.4vw,
      2.35rem
    );

  line-height: 1.05;

  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 991px) {

  .nm-contact-map-info .nm-script {
    font-size:
      clamp(
        1.9rem,
        5vw,
        2.6rem
      );
  }

}

@media (max-width: 480px) {

  .nm-contact-map-info .nm-script {
    font-size: 1.9rem;
  }

}
/* =========================================================
   HELIX – ARTIKEL SOCIAL SHARE AUSBLENDEN
   ========================================================= */

.article-details .social-share-block,
.article-details .article-social-share {
  display: none !important;
}
