/* //////////////////////////////////////////////////////////////////////////////////////////////// Footer Space */
.footer-spacer-hydrauliktransparent {
  height: 2vw; /* Abstand in Höhe */
}

/* //////////////////////////////////////////////////////////////////////////////////////////////// Überschrift  */

.stufe-heading {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 12vw;
  margin-left: 5vw;
  margin-bottom: 13vw;
  color: #555; /* an dein Farbschema anpassen */
}


/* ============================================================= */
/* QUICK LINKS 1 – FIXIERT RECHTS (Hydraulik Transparent)        */
/* ============================================================= */

.quick-links1 {
  position: fixed;
  top: 12vw;
  right: 6vw;               /* etwas näher an den Rand */
  background: #f9f9f9;
  border: 0.1em solid #ddd;
  border-radius: 0.8em;

  padding: 2em;             /* größer als vorher 1.5em */
  max-width: 24vw;          /* vorher 18vw → deutlich breiter */

  box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.12);
  z-index: 100;
}


/* Überschrift + Toggle */
.quick-links-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0em;
}

.quick-links-header h3 {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

.quick-links-toggle {
  font-size: 1.2em;
  color: #444;
  transition: transform 0.25s ease;
}

.quick-links-toggle:hover {
  transform: scale(1.1);
}

/* Rotierung bei geschlossenem Zustand */
.quick-links1.closed .quick-links-toggle {
  transform: rotate(-90deg);
}

/* ============================================================= */
/* EIN-/AUSKLAPPBARER BEREICH                                    */
/* ============================================================= */

.quick-links-content {
  overflow: hidden;
  max-height: 600px;
  transition: max-height 0.35s ease-in-out;
  margin-top: 1em;
}

.quick-links1.closed .quick-links-content {
  max-height: 0;
  margin-top: 0;
}

/* ============================================================= */
/* TITEL + UL                                                     */
/* ============================================================= */

.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;
}

/* ============================================================= */
/* BUTTON STYLE (exakt wie deine anderen Quick-Links)             */
/* ============================================================= */

.quick-link-button {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;

  text-align: left;
  border-radius: 0.3em;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #444;
  font-size: 1.05em;
  gap: 2.5em;
  padding: 0.45em 0.3em;

  transition: background 0.2s ease,
              color 0.2s ease,
              transform 0.15s ease;
}

/* Hover */
.quick-link-button:hover {
  transform: scale(1.015);
  color: #de800e;
  background: rgba(230, 126, 34, 0.1);
}

/* Klick-Effekt */
.quick-link-button:active {
  transform: scale(0.96);
  background: rgba(230, 126, 34, 0.15);
}

/* Seitenzahl rechts */
.quick-link-button .link-page {
  font-size: 0.85em;
  color: #999;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////// Abstand nach oben vom Magnetverteilerventil  */

.product.product-Zylinder {
  margin-top: -9vw; /* oder 0 wenn du es bündig willst */
}


/* ============================================================
   HYDRAULIK TRANSPARENT – QUICK LINKS 1 (MOBILE)
   ============================================================ */
@media (max-width: 600px) {

  /* ----------------------------------------------------------
     FOOTER SPACE
  ---------------------------------------------------------- */
  .footer-spacer-hydrauliktransparent {
    height: 16vw;
  }

  /* ----------------------------------------------------------
     ÜBERSCHRIFT
  ---------------------------------------------------------- */
  .stufe-heading {
    font-size: 1.2em;
    margin-top: 22vw;
    margin-left: 0;
    margin-bottom: 10vw;
    text-align: center;
  }
  /* ----------------------------------------------------------
     PRODUKT – NEGATIVE MARGINS ENTSCHÄRFEN
  ---------------------------------------------------------- */
  .product.product-Zylinder {
    margin-top: 0;
  }



  .quick-links-handle::after {
    content: "Schnellzugriff";
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%) rotate(-90deg);

    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #444;
    white-space: nowrap;

    pointer-events: none;
  }

  /* GRAUES HANDLE (halb sichtbar) */
  .quick-links-handle {
    position: fixed;
    right: -1.4em;                 /* halb außerhalb */
    top: 50%;
    transform: translateY(-50%);

    width: 2.8em;
    height: 10.2em;

    background: #d6d6d6;
    border-radius: 1.4em 0 0 1.4em;

    box-shadow: -0.2em 0.25em 0.45em rgba(0,0,0,0.2);
    cursor: pointer;

    z-index: 1100;
  }

  /* Optional: dezentes Feedback beim Tippen */
  .quick-links-handle:active {
    background: #cfcfcf;
  }

/* QUICK LINKS PANEL */
.quick-links1 {
  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(100%, -50%); /* START: rechts außerhalb */
  height: 40vh;

  width: 82%;
  max-width: 22em;

  padding: 1.6em 1.4em;

  background: #f9f9f9;
  border-radius: 1em;

  box-shadow: 0 0.6em 1.5em rgba(0,0,0,0.35);

  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;

  overflow-y: auto;
}

/* OFFEN → ZENTRIERT */
.quick-links1.active {
  transform: translate(-50%, -50%);
}

  /* Desktop-Elemente auf Mobile aus */
  .quick-links1 .scroll-down {
    display: none;
  }

























}
