/* =====================================================
   Parkett Direkt Bild Lightbox
===================================================== */

.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
}

.lb-overlay.active {
  display: flex;
}

.lb-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lb-trigger {
  margin-bottom: 20px;
  width: 100%;
  display: block;
  object-fit: cover;
  cursor: zoom-in;
}


/* =====================================================
   Parkett Direkt FAQ Akkordeon
===================================================== */

/* Wrapper */
.pd-acc {
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  width: 100%;
  transition: box-shadow .25s ease, border-color .25s ease;
  margin-bottom:10px;
}

/* Wrapper â€“ Hover & offen */
.pd-acc:hover,
.pd-acc[data-open="1"] {
  border-color: #FFBF00;
  box-shadow: 0 4px 16px rgba(255,191,0,.20);
}

/* Trigger-Button */
.pd-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .22s ease;
}

/* Button-Hintergrund â€“ Hover & offen */
.pd-acc:hover .pd-acc__btn,
.pd-acc[data-open="1"] .pd-acc__btn {
  background: #fffbee;
}

/* Akzentbalken links */
.pd-acc__bar {
  flex-shrink: 0;
  width: 4px;
  height: 28px;
  border-radius: 2px;
  background: #e0e0e0;
  transition: background .22s ease;
}

/* Balken â€“ Hover & offen */
.pd-acc:hover .pd-acc__bar,
.pd-acc[data-open="1"] .pd-acc__bar {
  background: #FFBF00;
}

/* Fragetext */
.pd-acc__label {
  flex: 1;
  font-size: 15.5px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
}

/* Pfeil-Icon */
.pd-acc__arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform .28s ease, background .22s ease, border-color .22s ease;
}

.pd-acc__arrow svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #888;
  stroke-width: 2.2;
  transition: stroke .22s ease;
}

/* Pfeil â€“ offen */
.pd-acc[data-open="1"] .pd-acc__arrow {
  transform: rotate(180deg);
  background: #FFBF00;
  border-color: #FFBF00;
}

.pd-acc[data-open="1"] .pd-acc__arrow svg {
  stroke: #1a1a1a;
}

/* Ausfahrendes Panel */
.pd-acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s cubic-bezier(.4,0,.2,1);
}

/* Panel â€“ offen */
.pd-acc[data-open="1"] .pd-acc__panel {
  max-height: 600px;
}

/* Innenabstand Antworttext */
.pd-acc__body {
  padding: 6px 18px 22px 38px;
  border-top: 1px solid #f0f0f0;
}