/*
Theme Name: Nordix Theme
Author: Pascal Kreylos
Version: 1.0
Description: Eigenes WordPress-Theme basierend auf statischem HTML
*/


/*CSS-Formular-Overlay*/
.overlay-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay-modal .overlay-content {
  background: white;
  padding: 2rem;
  max-width: 400px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.overlay-modal button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: #0057A0;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


/*CSS-Startseite*/
 :root {
      --blau: #0057A0;
      --gelb: #FFC300;
      --anthrazit: #222222;
      --grau: #F2F2F2;
      --weiß: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--weiß);
      color: var(--anthrazit);
    }

.page-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

    nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--weiß);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  z-index: 100;
}

    .logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--blau);
    }

.logo a {
  text-decoration: none;
  border-bottom: none;
  color: var(--blau);
  font-weight: 800;
  font-size: 1.5rem;
  position: relative;
}

.logo a::after {
  content: none;
}

.logo a:hover {
  color: var(--blau);
}


    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

   nav a {
  text-decoration: none;
  color: var(--anthrazit);
  font-weight: 600;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--gelb);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;

}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--anthrazit);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: var(--weiß);
    position: absolute;
    top: 70px;
    right: 2rem;
    padding: 1rem 2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }
}


    .hero {
      display: flex;
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }




    .hero-content {
      width: 50%;
      padding: 6rem 0rem;
      z-index: 2;
      gap: 20px !important;
    }

     .hero-content-start {
      width: 50%;
      padding: 6rem 4rem;
      z-index: 2;
      gap: 20px !important;
    }


@media (max-width: 768px) {

  .hero-content-start {
    width: 100%;
  }

  .hero-content-start h1 {
    font-size: 2rem !important;
  }
}


    
.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  background: var(--blau);
  color: var(--weiß) !important;
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-weight: 700;
  margin-bottom: 1rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);

}

    .hero-content h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    .hero-content-start h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    .hero-content h1 span {
      color: var(--blau);
    }

    .hero-content-start h1 span {
      color: var(--blau);
    }

.hero-subline {
  font-size: 1.15rem;
  color: #5c5c5c; /* dezentes Mittelgrau */
  font-weight: 500;
  letter-spacing: 0.2px;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.9;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 40px;;
}


   

  .cta-button {
    background: var(--gelb);
    background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.08) 2px,
    transparent 2px,
    transparent 6px
  );
  display: inline-block;
  color: var(--anthrazit);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 195, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 195, 0, 0.6);
}

    .hero-image {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1495036019936-220b29b930ea?q=80&w=1470') no-repeat center/cover;
      clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
      z-index: 0;
    }


/*Cards-Styling*/


.alle-btn {
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  background: var(--blau);
  color: var(--weiß);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.2s ease;
}

.alle-btn:hover {
  background: #004080;
}

.kategorien-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

.kategorien-slider .card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}



    .card-section {
  background: transparent;
  padding: 0 2rem 4rem;
  margin-top: -100px; /* Überlappt Hero */
  position: relative;
  z-index: 5;
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--blau);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-btn {
  text-decoration: none;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--blau);
  color: var(--weiß) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.card-btn:hover {
  background: var(--gelb);
}


    .card-grid {
      display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

 .card {
background-color: #f8f8f8;
  background-image: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
  background-size: 300px 300px;
  background-repeat: repeat;
  background-blend-mode: multiply;
  color: var(--anthrazit);
  background-size: 300px 300px;
  padding: 2.5rem 2rem 2rem;
  border: 2px solid #ccc;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}


    .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

    .card h2 {
      font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--anthrazit);
}

    .card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 1.5rem;
    }

    .card a {
      text-decoration: none;
      color: var(--blau);
      font-weight: bold;
      font-size: 0.95rem;
    }

    .card.featured {
      background: var(--blau);
      color: var(--weiß);
    }

    .card.featured h3 {
      color: var(--weiß);
    }

    .card.featured a {
      color: var(--gelb);
    }

@media (max-width: 768px) {
  .hero-content {
    padding: 0rem;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}





    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
      }

      .hero-content {
        width: 100%;
        padding: 3rem 2rem;
      }

      .hero-image {
        position: relative;
        width: 100%;
        clip-path: none;
        height: 300px;
      }
    }




/*About-Styling*/

.about-split-features {
  background: #f4f4f4 url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  background-repeat: repeat;
  background-size: auto;
  padding: 5rem 2rem;
  font-family: 'Open Sans', sans-serif;
  color: #222;
 padding: 7rem 2rem 6rem;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}

.about-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.about-left {
  flex: 1 1 40%;
}

.about-right {
  flex: 1 1 55%;
}

.about-eyebrow {
  display: inline-block;
  background: var(--blau); /* oder #0057A0 */
  color: white;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Open Sans', sans-serif;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}


.about-split-features .headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
}

.about-right p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  opacity: 0.95;
  max-width: 620px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
}

.feature-icon {
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--blau);
}

.feature-text {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}


.feature-text p {
  font-size: 0.95rem;
  color: #222;
  line-height: 1.5;
  margin: 0;
}

.feature-text strong {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #111;
}

.feature-text .feature-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  margin-bottom: 0.35rem;
  letter-spacing: 0.2px;
}

.feature-box {
   background: #ffffff;
  padding: 2.5rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 240px;
  min-height: 240px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);

  /* Neue diagonale Metallstruktur */
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.035) 0px,
      rgba(0, 0, 0, 0.035) 2px,
      transparent 2px,
      transparent 6px
    );
  background-size: 8px 8px;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}


.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 87, 160, 0.15);
}

.feature-box i {
  font-size: 2rem;
  color: var(--blau);
  margin-bottom: 1rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: #222;
  line-height: 1.4;
  margin: 0;
}

.about-cta {
  margin-top: 3rem;
  text-align: center;
}

.about-button {
  display: inline-block;
  background: var(--gelb);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  color: var(--anthrazit);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 195, 0, 0.25);
  transition: all 0.2s ease;
}

.about-button i {
  margin-left: 0.6rem;
  transition: transform 0.2s ease;
}

.about-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 195, 0, 0.35);
}

.about-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .about-cta-box {
      margin: 4rem 2rem !important;
  }
}





.about-cta-box {
   background: linear-gradient(145deg, #eeeeee, #d5d5d5);
  border: 2px solid #999;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 4rem auto;
  text-align: center;
  max-width: 720px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.about-cta-box::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.06) 3px,
    transparent 3px,
    transparent 6px
  );
  transform: rotate(10deg);
  opacity: 0.6;
  z-index: 1;
}

.about-cta-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--anthrazit);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-cta-box .cta-button {
  position: relative;
  z-index: 2;
}


.cta-button i {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }
}



.bolt {
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #aaa, #444);
  border-radius: 50%;
  box-shadow:
    inset -1px -1px 2px rgba(255,255,255,0.3),
    inset 1px 1px 2px rgba(0,0,0,0.4),
    0 1px 3px rgba(0,0,0,0.3);
  z-index: 3;
}

.bolt-top-left {
  top: 10px;
  left: 10px;
}

.bolt-top-right {
  top: 10px;
  right: 10px;
}

.bolt-bottom-left {
  bottom: 10px;
  left: 10px;
}

.bolt-bottom-right {
  bottom: 10px;
  right: 10px;
}


/*Testimonials-Sytling*/
 .testimonials {
      position: relative;
      background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center/cover;
      color: #fff;
      text-align: center;
      padding: 8rem 2rem;
      overflow: hidden;
    }

    .testimonials .overlay {
      position: absolute;
      inset: 0;
        background: 
    linear-gradient(to bottom, rgba(0, 87, 160, 0.95), rgba(20, 20, 20, 0.95)),
    url('https://www.transparenttextures.com/patterns/asfalt-light.png');
  background-size: cover;
  mix-blend-mode: multiply;
      z-index: 0;
    }

    .testimonials .container {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-heading .highlighted-word {
  background: var(--gelb);
  color: var(--anthrazit);
  padding: 0.2rem 0.8rem;
  display: inline-block;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  margin-left: 0.5rem;
}


    .testimonial-slider {
      position: relative;
    }

    .testimonial {
      display: none;
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .testimonial.active {
      display: block;
    }

    .quote {
      font-style: italic;
      margin-bottom: 1.5rem;
    }

   .product-label {
      text-transform: uppercase;
      font-size: 0.8rem;
      color: #ccc;
      margin-bottom: 0.4rem;
      letter-spacing: 1px;
    }


    .icon-product {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.6rem;
      font-weight: bold;
      font-size: 1rem;
    }

    .icon-product i {
      font-size: 1.4rem;
    }

     .slider-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 2.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    
    .dots {
      display: flex;
      gap: 0.5rem;
    }

   .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    45deg,
    #888,
    #888 2px,
    #666 2px,
    #666 4px
  );
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.2),
              0 2px 4px rgba(0,0,0,0.4);
  border: 2px solid #999;
  opacity: 0.6;
  transition: all 0.3s ease;
}

 .dot.active {
  border-color: var(--gelb);
  box-shadow:
    0 0 0 2px rgba(255, 195, 0, 0.5),
    0 0 10px rgba(255, 195, 0, 0.8),
    inset 0 1px 2px rgba(255,255,255,0.2);
  opacity: 1;
}

  .arrow-controls {
      display: flex;
      gap: 1rem;
    }

.arrow-controls button {
  background: repeating-linear-gradient(
    45deg,
    #333,
    #333 2px,
    #444 2px,
    #444 4px
  );
  border: 2px solid #888;
  color: var(--weiß);
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  box-shadow:
    inset -1px -1px 2px rgba(255,255,255,0.1),
    inset 1px 1px 2px rgba(0,0,0,0.4),
    0 2px 6px rgba(0,0,0,0.5);
  transition: all 0.2s ease;
}

.arrow-controls button:hover {
  background: var(--gelb);
  color: #000;
  border-color: #e6b200;
  box-shadow:
    0 0 12px rgba(255,195,0,0.4),
    inset 0 1px 2px rgba(255,255,255,0.2);
}


    @media (max-width: 600px) {
      .arrow-controls {
        width: 100%;
        justify-content: center;
      }

      .slider-controls {
        flex-direction: column;
        align-items: center;
      }
    }


.quote-box {
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 720px;
  margin: 0 auto 2rem;
  position: relative;
  backdrop-filter: blur(4px);
  font-family: 'Open Sans', sans-serif;
}

.quote-box .quote-icon {
 position: absolute;
  top: -25px;
  left: -25px;
  font-size: 4rem;
  color: var(--gelb);
  opacity: 0.9;
  text-shadow:
    1px 1px 0 #000,
    2px 2px 2px rgba(0, 0, 0, 0.5),
    -1px -1px 1px rgba(255, 255, 255, 0.1);
  transform: rotate(-10deg);
  pointer-events: none;
}

.quote-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  position: relative;
}



.quote-mark {
  font-size: 4rem;
  color: rgba(255,255,255,0.2);
  font-family: serif;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
}

.quote-mark.end {
  top: auto;
  bottom: -20px;
  left: auto;
  right: -20px;
  transform: rotate(180deg);
}

.quote {
  font-size: 1.6rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: -10px;
}

.quote::before {
  left: -20px;
}

.quote::after {
  right: -20px;
}

.product-meta {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
   margin-bottom: 1.2rem;
}
 

.product-tag {
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.05) 2px,
    rgba(255,255,255,0.02) 2px,
    rgba(255,255,255,0.02) 4px
  );
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.2);
  margin-left: 1rem;;
}

@media (max-width: 768px){
  .product-tag{
    margin-left: 0px;
  }
}


.product-tag i {
  font-size: 1.2rem;
}

.ebay-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: underline;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.ebay-link:hover {
  opacity: 1;
}




/*Form-Styling*/

.contact-section {
  display: flex;
  justify-content: center;
  background: 
    url('https://www.transparenttextures.com/patterns/concrete-wall.png') repeat,
    linear-gradient(to bottom, rgba(245,245,245,0.96), rgba(240,240,240,0.95));
  background-blend-mode: multiply;
  padding: 6rem 2rem;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1140px;
  overflow-x: hidden;
  box-sizing: border-box;
  padding: 1rem;
  gap: 2rem;
}


.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--anthrazit);
  font-weight: 700;
  margin-bottom: 0.25rem;
}


.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8f8f8 url('https://www.transparenttextures.com/patterns/diagonals-light.png') repeat;
  background-blend-mode: multiply;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.8),
    inset 0 -1px 2px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease;
}

.contact-form button {
  margin-top: 1rem;
  background: var(--gelb);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.08) 2px,
    transparent 2px,
    transparent 6px
  );
  color: var(--anthrazit);
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  padding: 1rem 2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 195, 0, 0.4);
  transition: all 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 195, 0, 0.6);
}

.contact-info {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-eyebrow {
  display: inline-block;
  background: var(--blau);
  color: white !important;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Open Sans', sans-serif;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}


.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.info-block a {
  color: #0057A0;
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

.checkbox-dsgvo {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
  max-width: 100%;
}

.checkbox-dsgvo span {
  display: inline;
  word-break: normal;
  white-space: normal;
}

.checkbox-dsgvo input[type="checkbox"] {
  margin: 0;
  padding: 0;
  width: 16px;  
  height: 16px;
  vertical-align: middle;
}


/* Undurchsichtiger Hintergrund */
.styled-contact-box {
  background: #f8f8f8 url('https://www.transparenttextures.com/patterns/brushed-alum.png') repeat;
  background-blend-mode: normal;
  border: 2px solid #bbb;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.3),
    0 8px 18px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Neuer Stil für Kontaktzeilen */
.info-block-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.info-block-box {
  background: linear-gradient(135deg, #f4f4f4, #eaeaea);
  border: 1px solid #ccc;
  border-left: 4px solid var(--blau);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
  font-size: 0.95rem;
}

.info-block-box i {
  font-size: 1.2rem;
  color: var(--blau);
  flex-shrink: 0;
}

.info-block-box a,
.info-block-box span {
  color: #222;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}

.info-block-box a:hover {
  color: var(--blau);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form{
    width: 100%;
  }

  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-form form {
    width: 100%;
    max-width: 100%;
  }

  input,
  textarea,
  button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-feature-grid{
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
  }
}




/*Maps-Styling*/
.map-boxed {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.map-boxed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info-box {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  font-family: 'Open Sans', sans-serif;
  color: #333;
  z-index: 10;
}

.map-info-box h3 {
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--anthrazit, #222);
}

.map-info-box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.info-columns {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  line-height: 1.5;
  gap: 1.5rem;
}

.directions-btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--blau, #0057A0);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.directions-btn:hover {
  background: #004080;
}

@media (max-width: 600px) {
  .map-info-box {
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 1.5rem;
  }

  .info-columns {
    flex-direction: column;
  }
}


.styled-box {
    background: linear-gradient(145deg, #f0f0f0, #e3e3e3);
    border: 2px solid #bbb;
    border-left: 5px solid var(--blau);
    box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    inset 0 1px 2px rgba(255,255,255,0.3);
    background-image: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.02),
    rgba(0,0,0,0.02) 2px,
    transparent 2px,
    transparent 6px
    );
    border: 1px solid #ddd;
    border-left: 4px solid var(--blau);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    position: relative;
}

.contact-info i {
    color: var(--blau);
    margin-right: 0.5rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

.contact-info h5 i {
  margin-right: 0.4rem;
  font-size: 1rem;
  color: var(--gelb);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blau);
  outline: none;
}

.contact-form button i {
  margin-right: 0.5rem;
}

.small-print {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
}



/*Footer-Styling*/
.nordix-footer {
  background: #fff;
  padding: 4rem 2rem 2rem;
  font-family: 'Open Sans', sans-serif;
  color: #000;
  border-top: 3px solid var(--gelb);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h4.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #000;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.footer-col ul li a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gelb);
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #000;
}

.footer-col p i {
  color: var(--gelb);
  margin-right: 0.4rem;
}

.footer-col p a {
  color: #000;
  text-decoration: none;
}

.footer-col p a:hover {
  color: var(--gelb);
  text-decoration: underline;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blau);
  border: 2px solid var(--blau);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #000;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer-socials a img {
  height: 24px;
  display: block;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover img {
  opacity: 0.7;
}



@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .contact-form form,
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-form button {
    display: block;
  }


 .contact-info.styled-contact-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 2rem 1rem;
  }

  .info-block-box {
    flex-wrap: wrap;
    word-break: break-word;
  }

  .contact-section{
    padding-left: 1rem;
    padding-right: 1rem;
  }

   .contact-container {
    flex-direction: column-reverse;
    padding: 0;
  }
}

/*CSS-Fahrzeuge*/
.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-container{
    padding: 0rem;
  }

}

.hero-section.hero-final {
  position: relative;
  min-height: 580px;
  padding: 6rem 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--weiß);
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1583024011792-b165975b52f5?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
  opacity: 0.025;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  text-align: left;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--weiß);
}
.hero-content p {
  font-size: 1.05rem;
  color: #ddd;
  max-width: 600px;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-divider {
  height: 24px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.eyebrow{
text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  background: var(--blau);
  color: var(--weiß) !important;
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-weight: 700;
  margin-bottom: 1rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

    .zurueck-wrapper {
  text-align: center;
  margin: 3rem auto 2rem;
}
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 2rem;
    }
    .category-card {
      background: #f8f8f8;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .category-card i {
      font-size: 2rem;
      color: var(--blau);
      margin-bottom: 1rem;
    }
    .category-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    .category-card p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
    }
    .category-card a {
      display: inline-block;
      background: var(--blau);
      color: var(--weiß);
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border-radius: 4px;
      font-weight: bold;
    }
 
/*CTA-Design*/
.cta-card {
  background: transparent;
  padding: 6rem 2rem 4rem;
}
.cta-card-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 3rem 3rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text {
  flex: 1 1 60%;
}
.cta-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--anthrazit);
  margin-bottom: 0.8rem;
}
.cta-text p {
  font-size: 1rem;
  color: #444;
  max-width: 600px;
}
.cta-action {
  flex: 1 1 30%;
  text-align: right;
}
.cta-button {
  display: inline-block;
  background: var(--gelb);
  color: var(--anthrazit);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(255, 195, 0, 0.35);
  transition: background 0.2s ease;
}
.cta-button:hover {
  background: #e6b800;
}
/* Responsive */
@media (max-width: 768px) {
  .cta-card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-action {
    text-align: center;
    margin-top: 2rem;
  }
}
.cta-icon {
  font-size: 2rem;
  color: var(--blau);
  margin-bottom: 0.8rem;
}

/*Cards-Styling*/
.card-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--blau);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.card-btn {
  text-decoration: none;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--blau);
  color: var(--weiß) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.card-btn:hover {
  background: var(--gelb);
}
.card {
background-color: #f8f8f8;
  background-image: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
  background-size: 300px 300px;
  background-repeat: repeat;
  background-blend-mode: multiply;
  color: var(--anthrazit);
  background-size: 300px 300px;
  padding: 2.5rem 2rem 2rem;
  border: 2px solid #ccc;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}
    .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
    .card h2 {
      font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--anthrazit);
}
    .card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 1.5rem;
    }
    .card a {
      text-decoration: none;
      color: var(--blau);
      font-weight: bold;
      font-size: 0.95rem;
    }
    .card.featured {
      background: var(--blau);
      color: var(--weiß);
    }
    .card.featured h3 {
      color: var(--weiß);
    }
    .card.featured a {
      color: var(--gelb);
    }
/*Breadcrumbs-Design*/
.breadcrumbs {
  max-width: 1100px;
  margin: 2rem auto 0.5rem;
  padding: 0 2rem;
  font-size: 0.9rem;
  color: #555;
}
.breadcrumbs a {
  color: var(--blau);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  margin: 0 0.4rem;
  color: #aaa;
}
/*Zurück-Design*/
.zurueck-wrapper {
  text-align: center;
  margin: 3rem auto 4rem;
}
.zurueck-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 0.95rem;
  color: #b30000; /* alternativ: var(--blau) */
  text-decoration: none;
  transition: color 0.2s ease;
}
.zurueck-link i {
  font-size: 0.9rem;
}
.zurueck-link:hover {
  color: #7a0000;
  text-decoration: underline;
}


/*CSS-Kategorieseite*/
 .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 2rem;
    }

    .category-card {
      background: #f8f8f8;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .category-card i {
      font-size: 2rem;
      color: var(--blau);
      margin-bottom: 1rem;
    }

    .category-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .category-card p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
    }

    .category-card a {
      display: inline-block;
      background: var(--blau);
      color: var(--weiß);
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border-radius: 4px;
      font-weight: bold;
    }

    /*Produkt-Grid-Design*/
  .product-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  justify-content: start; /* ← wichtig */
}

    .product-card {
      max-width: 360px;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
    }

 .product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #eaeaea;
}

.product-card img.full-image {
  object-fit: cover;
  height: auto;
  aspect-ratio: 16/9;
}


    .product-card-content {
      padding: 1.5rem;
      flex-grow: 1;
    }

    .product-card-content h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .product-card-content a {
      margin-top: auto;
      display: inline-block;
      background: var(--blau);
      color: var(--weiß);
      padding: 0.6rem 1.2rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .product-card-content a:hover {
      background: #004280;
    }







/*CSS-Einzelproduktseite*/
.product-overview {
    margin-top: 30px; 
  padding: 60px 20px;
  background-color: #F9F9F9;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.product-info h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-list, .optional-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.spec-list li, .optional-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #222;
}

.spec-list li i, .optional-list li i {
  margin-right: 10px;
  color: #0057A0;
}

.optional-box {
  margin-top: 40px;      
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 20px;
}
.optional-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0057A0;
  margin-bottom: 12px;
}
.optional-list li i {
  color: #0057A0;
}


.product-title h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #0057A0;
}


.spec-list.clean {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.spec-list.clean li {
  display: grid;
  grid-template-columns: 24px 140px 1fr;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
}

.spec-list.clean li i {
  color: var(--blau);
  font-size: 1rem;
  margin-top: 3px;
}

.spec-list.clean li span {
  font-weight: 600;
  color: var(--anthrazit);
  margin-right: 0.3rem;
}

/*Anfrage-Design*/
.form-section {
  width: 100%;
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.form-container h2 {
  font-size: 1.5rem;
  color: var(--blau);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid textarea,
.form-grid select {
  grid-column: span 2;
}

input, select, textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

button[type="submit"] {
  margin-top: 2rem;
  background: var(--gelb);
  color: var(--anthrazit);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

button[type="submit"]:hover {
  background: #e6b800;
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid textarea,
  .form-grid select {
    grid-column: span 1;
  }
}


    .container {
  max-width: 1140px;
  margin: 0 auto;
}


/*Responsive-Anpassung*/
@media (max-width: 768px) {
 .breadcrumbs {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
  }


   .product-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

 
  .optional-box {
    padding: 1.5rem;
  }
}

/*CSS-Backlinks*/
.backlinks-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 4rem auto;
  max-width: 1100px;
  padding: 0 2rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blau);
  background: #f0f4f8;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.back-btn i {
  font-size: 0.9rem;
}

.back-btn:hover {
  background: var(--blau);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
 .breadcrumbs {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
  }


   .product-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

 
  .optional-box {
    padding: 1.5rem;
  }


  .product-title h1 {
    font-size: 1.6rem;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .backlinks-modern {
    flex-direction: column;
    align-items: stretch;
  }

  .backlinks-modern {
    flex-direction: column;
    align-items: center;
  }    
    
  
  .back-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }  
}

/*CSS-Impressum*/
.impressum-wrapper {
  background: #ffffff;
  padding: 4rem 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #222222;
}

.impressum-container {
  max-width: 1140px;
  margin: 0 auto;
  line-height: 1.7;
}

.impressum-container h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #0057A0; /* Nordix Blau */
  margin-bottom: 1.5rem;
}

.impressum-container h2,
.impressum-container h3 {
  font-family: 'Montserrat', sans-serif;
  color: #0057A0;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.impressum-container a {
  color: #0057A0;
  text-decoration: underline;
}

.impressum-container a:hover {
  color: #FFC300; /* Nordix Gelb als Hover */
}


/*CSS-Datenschutz*/

.datenschutz-wrapper {
  background: #ffffff;
  padding: 4rem 1rem;
  color: #222;
  font-family: 'Open Sans', sans-serif;
}

.datenschutz-container {
  max-width: 1140px;
  margin: 0 auto;
  line-height: 1.7;
}

.datenschutz-container h1,
.datenschutz-container h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0057A0;
  margin-top: 2rem;
}

.datenschutz-container a {
  color: #0057A0;
  text-decoration: underline;
}

.datenschutz-container a:hover {
  color: #FFC300;
}


/*CSS-Kontaktseite*/
.kontakt-einleitung-nordix {
  background-color: #f7f7f7;
  padding: 6rem 2rem 4rem;
}

.content-wrapper {
  max-width: 1140px;
  margin: 0 auto;
}

.kontakt-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #0057A0;
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.6px;
  margin-bottom: 1rem;
}

.kontakt-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.kontakt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.kontakt-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #e5e5e5;
}

.kontakt-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #0057A0;
  margin-bottom: 0.75rem;
}

.kontakt-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.kontakt-card ul {
  padding-left: 0;
  list-style: none;
}

.kontakt-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #333;
}

.kontakt-card ul li i {
  color: #0057A0;
  margin-right: 0.6rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .kontakt-headline {
    font-size: 1.5rem;
  }
}
