/* //////////////////////////////////////////////////////////////////////////////////////////////// Produktüberschrift */
.product-subheading {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 3vw;
  color: #555;
  margin-left: 12vw;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////// Footer Space */
.footer-spacer-pneumatik2 {
  height: 1vw;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////// Schnellzugriff */
.quick-links1 {
  position: fixed;
  bottom: 18vw;
  right: 6vw;
  background: #f9f9f9;
  border: 0.1em solid #ddd;
  border-radius: 0.8em;
  padding: 1.5em;
  box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.1);
  max-width: 45em;
  z-index: 9999;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  max-height: 500px; /* ausgeklappt: genug Platz */
}

/* Eingeklappt – nur Header bleibt */
.quick-links1.collapsed {
  max-height: 4.5em; /* passt genau auf Überschrift + Pfeil */
  opacity: 0.97;
}

/* Headerbereich (Überschrift + Pfeil) */
.quick-links-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Überschrift */
.quick-links1 h3 {
  font-size: 1.1em;
  margin: 0;
  color: #333;
  line-height: 1.4;
}

/* Pfeil */
.quick-links-toggle {
  font-size: 1.3em;
  color: #555;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Pfeil dreht sich nach unten, wenn eingeklappt */
.quick-links-toggle.collapsed {
  transform: rotate(180deg);
  color: #de800e;
}

/* Inhalt unter Überschrift */
.quick-links-content {
  margin-top: 1em;
  transition: opacity 0.4s ease;
}

/* Eingeklappt: Inhalt ausblenden */
.quick-links1.collapsed .quick-links-content {
  opacity: 0;
  pointer-events: none;
}

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

/* Liste */
.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);
}

/* Nur S.1 usw. weiter rechts */
.quick-links1 .link-page {
  font-size: 0.85em;
  color: #999;
  margin-left: 12em;
}
