/* //////////////////////////////////////////////////////////////////////////////////////////////// Footer Space */


.footer-spacer-verbindungstechnik {
  height: 5vw;  /* Abstand in Höhe */
}

.stage-headingv {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 6vw;
  margin-left: 8vw;
  margin-bottom: 0vw;
  color: #555; /* an dein Farbschema anpassen */
}

.product-image--vt img {
  width: 8vw;            /* Bildbreite relativ zum Viewport */
  height: auto;           /* Seitenverhältnis beibehalten */
  border-radius: 0.5em;   /* leichte Abrundung */
  margin-right: 10vw;
  margin-top: 0vw;
  margin-left: 3vw;
}

.product:first-of-type {
  margin-top: -7vw;   /* nach Bedarf anpassen (z.B. -1.8vw) */
}

/* //////////////////////////////////////////////////////////////////////////////////////////////// Schnellzugriff  */

/* Quick Links Box rechts */
.quick-links1 {
  background: #f9f9f9;
  border: 0.1em solid #ddd;
  border-radius: 0.8em;
  padding: 1.5em;
  margin-left: 62vw;
  margin-top: -10vw;
  box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.1);
  max-width: 35em;   /* Breite begrenzen */ 
}

.quick-links1 h3 {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #333;
  line-height: 1.4;
}

.quick-links-title1 {
  display: block;
  font-weight: bold;
  margin-bottom: 0.8em;
  color: #de800e;
}

.quick-links1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links1 li {
  margin-bottom: 0.6em;
}

.quick-links1 a {
  text-decoration: none;
  color: #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95em;
  padding: 0.3em 0.2em;
  border-radius: 0.3em;
  transition: background 0.2s ease, color 0.2s ease;
}

.quick-links1 a:hover {
  color: #de800e;
  background: rgba(230, 126, 34, 0.1);
}

.link-page {
  font-size: 0.85em;
  color: #999;
}

/* Pfeil oben rechts */
.quick-links1 .scroll-down {
  position: absolute;
  margin-left: 27.6vw;
  margin-top: 0.5vw;
  font-size: 1.2em;
  color: #555;
  cursor: pointer;
  text-decoration: none;
}
/* Hoverfarbe für den Scroll-Pfeil deaktivieren */
.quick-links1 .scroll-down:hover {
  color: #555;           /* gleiche Farbe wie im Normalzustand */
  background: none;      /* kein Hintergrund */
}