/*
Theme Name: pro:factory
Theme URI: https://pro-factory.de
Author: Pro Factory Werbemittel GmbH & Co. KG
Author URI: https://pro-factory.de
Description: Individuelles WordPress Block-Theme (FSE) für pro-factory.de – B2B-Taschenhersteller (The Bag Company). WooCommerce-kompatibel. Clean & Industrial. Fonts (IBM Plex Sans/Mono) lokal gehostet (DSGVO).
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 7.4
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: profactory
Tags: full-site-editing, block-patterns, custom-colors, custom-logo, e-commerce, block-styles
*/

/* =========================================================================
   pro:factory – Komponenten-CSS
   Design-Quelle: blocktheme-mockup (Screens 9a/6a Header, 2a Footer).
   Tokens (Farben/Fonts/Spacing) leben in theme.json; hier liegt das
   Layout/Verhalten der festen Theme-Parts (Header, Mega-Menü, Footer).
   ========================================================================= */

:root {
  --pf-gutter: clamp(20px, 4vw, 40px);
  --pf-content: 1240px;
  /* Abstand von der Elementkante bis zum zentrierten 1240er-Band (je Sektion).
     100% = Breite der jeweiligen full-bleed-Sektion. */
  --pf-center: max(0px, calc((100% - var(--pf-content)) / 2));
  /* Horizontal-Padding einspaltiger full-bleed-Sektionen: zentriert auf 1240
     und behält innen 40px Gutter (Content = min(1160, vp − 2·gutter)). */
  --pf-pad-x: calc(var(--pf-center) + var(--pf-gutter));
  --pf-header-logo-h: 36px;
}

/* Seiten-/Beitragsinhalt: seitlicher Gutter (Sektionen sind sonst full-bleed
   und bringen ihren Gutter selbst mit). */
.pf-content { padding-inline: var(--pf-pad-x); }

/* Boxed-Layout: der gesamte Inhalt liegt als zentrierte weiße 1240er-Fläche
   auf dem beigen Seiten-Canvas (Body = #F0EEE6 via theme.json). Die full-bleed
   Sektionen spannen damit die Sheet-Breite (1240), das Beige zeigt sich außen. */
.wp-site-blocks {
  max-width: var(--pf-content);
  margin-inline: auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .03), 0 12px 44px -22px rgba(0, 0, 0, .16);
}

/* ---- Topbar ------------------------------------------------------------ */
.pf-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px var(--pf-pad-x);
  background: #faf9f7;
  border-bottom: 1px solid #ececec;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: #8a8a8a;
}
.pf-topbar__claim { letter-spacing: .04em; }
.pf-topbar__meta { display: flex; gap: 22px; align-items: center; }
.pf-topbar__meta a { color: inherit; text-decoration: none; }
.pf-topbar__phone { color: #3a3a3a; font-weight: 600; }

/* ---- Header bar -------------------------------------------------------- */
/* Sticky liegt auf dem template-part-Wrapper (voller Seiten-Elternkontext),
   nicht auf .pf-header selbst – sonst hätte das Sticky keinen Scroll-Weg. */
.pf-header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
}
.pf-header { background: #fff; position: relative; }
.pf-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--pf-pad-x);
  border-bottom: 1px solid #ececec;
  background: #fff;
}
.pf-header__left { display: flex; align-items: center; gap: 34px; }
.pf-header__logo { flex: 0 0 auto; }
.pf-header__logo img,
.pf-header__logo .custom-logo-link img {
  height: var(--pf-header-logo-h);
  width: auto;
  display: block;
}

/* ---- Primary nav ------------------------------------------------------- */
.pf-nav { display: flex; gap: 24px; align-items: center; }
/* „Unternehmen" ist ein Button (öffnet nur das Mega-Menü, navigiert nicht) und
   muss dafür wie die Nav-Links aussehen: Button-Defaults zurücksetzen. */
.pf-nav a,
.pf-nav__company {
  font-size: 13.5px;
  font-weight: 500;
  color: #3a3a3a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .15s ease;
}
.pf-nav__company {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  line-height: inherit;
  cursor: pointer;
}
.pf-nav a:hover,
.pf-nav__company:hover { color: #ff9900; }
.pf-nav__recycling { color: #1f7a4d !important; font-weight: 600; gap: 6px !important; }
.pf-nav__recycling:hover { color: #155938 !important; }
.pf-nav__recycling::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f7a4d;
  display: inline-block;
  flex: 0 0 auto;
}
.pf-nav__caret { font-size: 15px; margin-left: 2px; }

/* ---- Mega-Dropdown „Unternehmen" ----------------------------------------
   Overlay: absolut unter dem Header, schiebt den Seiteninhalt NICHT nach
   unten (.pf-header ist position:relative). */
.pf-megamenu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1180;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, .25);
}
.pf-header.is-company-open .pf-megamenu { display: block; }
.pf-header.is-company-open .pf-nav__company {
  color: #ff9900;
  border-bottom: 2px solid #ff9900;
  padding-bottom: 2px;
}
.pf-megamenu__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 0;
  padding: 0 var(--pf-gutter);
  max-width: var(--pf-content);
  margin: 0 auto;
}
.pf-megamenu__col { padding: 28px; border-right: 1px solid #ececec; }
.pf-megamenu__col:first-child { padding-left: 0; }
.pf-megamenu__col:last-child { padding-right: 0; border-right: 0; }
.pf-megamenu__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: #9a9a9a;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.pf-megamenu__lead { font-size: 15px; line-height: 1.55; color: #565656; max-width: 260px; }
.pf-megamenu__more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #141414;
  text-decoration: none;
  border-bottom: 1.5px solid #141414;
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.pf-megamenu__more:hover { color: #ff9900; border-color: #ff9900; }
.pf-megamenu__list { display: flex; flex-direction: column; gap: 12px; }
.pf-megamenu__item { text-decoration: none; color: #141414; transition: color .15s ease; }
.pf-megamenu__item:hover { color: #ff9900; }
.pf-megamenu__item strong { display: block; font-size: 14.5px; font-weight: 600; }
.pf-megamenu__item span { display: block; font-size: 12px; color: #9a9a9a; margin-top: 2px; }
.pf-megamenu__contact { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: #3a3a3a; }
.pf-megamenu__contact .pf-strong { font-weight: 600; }
.pf-megamenu__contact .pf-muted { color: #9a9a9a; font-size: 12.5px; }
.pf-megamenu__contact a { color: #ff9900; font-weight: 600; text-decoration: none; margin-top: 6px; }

/* ---- CTA button -------------------------------------------------------- */
.pf-cta {
  display: inline-block;
  background: #ff9900;
  color: #1a1a1a !important;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease;
}
.pf-cta:hover { background: #e68a00; }

/* ---- Actions (rechte Header-Seite) ------------------------------------- */
.pf-header__actions { display: flex; align-items: center; gap: 16px; }

/* ---- Sprachumschalter ---------------------------------------------------
   Flagge plus Kuerzel, in der Anmutung der uebrigen Meta-Angaben im Header
   (IBM Plex Mono, 11px). Bewusst zurueckhaltend: er soll auffindbar sein,
   aber dem CTA nicht die Aufmerksamkeit nehmen. */
.pf-lang { display: flex; align-items: center; gap: 10px; }
.pf-lang__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  color: #565656;
  text-decoration: none;
  padding: 4px 2px;
}
.pf-lang__link:hover { color: #141414; }
.pf-lang__flag {
  display: block;
  width: 18px;
  height: 12px;
  border-radius: 1px;
  /* Hairline, damit die weissen Flaechen der Flagge nicht im Header verschwimmen */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .14);
}
/* Noch nicht veroeffentlichte Sprache: sieht ohnehin nur, wer angemeldet ist -
   die gestrichelte Linie macht klar, dass das noch ein Entwurf ist. */
.pf-lang__link--entwurf { border-bottom: 1px dashed #c27400; }

/* ---- Header-Produktsuche (SKU / Taschenbezeichnung) ---------------------
   Lupe sitzt dauerhaft im Header; Klick öffnet eine Suchleiste über die
   volle Breite unter dem Header (die Header-Bar selbst ist inhaltsbreiten-
   begrenzt, ein Inline-Feld passt auf keiner Breite neben die Navigation). */
.pf-search { display: flex; align-items: center; }
.pf-search__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  color: #141414;
}
.pf-search__toggle:hover { color: #ff9900; }
.pf-search__box {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #e3e3e3;
  padding: 14px var(--pf-pad-x, 16px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  z-index: 1190;
}
.pf-search.is-open .pf-search__box { display: flex; }
.pf-search__icon { flex: 0 0 auto; color: #9a9a9a; }
.pf-search__input {
  border: 0;
  outline: 0;
  background: none;
  font: inherit;
  font-size: 15px;
  width: 100%;
  color: #141414;
}
.pf-search__input::placeholder { color: #9a9a9a; }
.pf-search__input::-webkit-search-cancel-button { -webkit-appearance: none; }
.pf-search__results {
  position: absolute;
  top: calc(100% + 52px);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  z-index: 1200;
  max-height: 60vh;
  overflow-y: auto;
}
.pf-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px var(--pf-pad-x, 16px);
  text-decoration: none;
  color: #141414;
  border-bottom: 1px solid #f2f2f2;
}
.pf-search__item:last-child { border-bottom: 0; }
.pf-search__item:hover,
.pf-search__item.is-active { background: #f8f7f5; }
.pf-search__thumb {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 2px;
}
.pf-search__thumb--empty { background: #f4f4f4; border-style: dashed; }
.pf-search__title {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pf-search__sku {
  flex: 0 0 auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #9a9a9a;
  white-space: nowrap;
}
.pf-search__empty {
  padding: 14px;
  font-size: 13px;
  color: #6b6b6b;
}
.pf-search__empty a { color: #141414; }
.pf-search__all {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-top: 1px solid #ececec;
  font-size: 13px; font-weight: 600; color: #ff9900; text-decoration: none;
}
.pf-search__all:hover { background: #fff7ec; }
.pf-search__count { font-weight: 600; white-space: nowrap; }
.pf-product-grid--search { padding: 22px 0 0; }

/* ---- Mobile toggle (verdrahtet in späterem Schritt: Interactivity API) - */
.pf-burger { display: none; }
.pf-burger svg { display: block; }

/* ---- Caret-Flip bei offenem Dropdown ----------------------------------- */
.pf-nav__caret { display: inline-block; transition: transform .15s ease; }
.pf-header.is-company-open .pf-nav__caret { transform: rotate(180deg); }

/* ---- Mobiles Burger-Overlay (Screen 12c) ------------------------------- */
.pf-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}
.pf-mobile-menu[hidden] { display: none; }
.pf-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}
html.pf-menu-open { overflow: hidden; }

.pf-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #ececec;
}
.pf-mobile-menu__logo img { height: 30px; width: auto; display: block; }
.pf-mobile-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #141414;
  border-radius: 2px;
  background: none;
  font-size: 19px;
  font-weight: 600;
  color: #141414;
  cursor: pointer;
  line-height: 1;
}

.pf-mobile-nav { padding: 8px 0; flex: 1 0 auto; }
.pf-mobile-nav__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 18px;
  font-weight: 600;
  color: #141414;
  text-decoration: none;
}
.pf-mobile-nav__arrow { color: #ff9900; font-weight: 600; }
.pf-mobile-nav__recycling {
  color: #1f7a4d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-mobile-nav__recycling::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f7a4d;
  display: inline-block;
  flex: 0 0 auto;
}
.pf-mobile-nav__item--recycling .pf-mobile-nav__arrow { color: #1f7a4d; }

.pf-mobile-acc { border-bottom: 1px solid #f2f2f2; }
.pf-mobile-acc:has(.pf-mobile-acc__toggle[aria-expanded="true"]) { background: #faf9f7; }
.pf-mobile-acc__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #141414;
  cursor: pointer;
}
.pf-mobile-acc__toggle[aria-expanded="true"] { color: #c27400; }
.pf-mobile-acc__caret { font-size: 11px; transition: transform .15s ease; }
.pf-mobile-acc__toggle[aria-expanded="true"] .pf-mobile-acc__caret {
  transform: rotate(180deg);
  color: #c27400;
}
.pf-mobile-acc__panel { padding: 0 20px 14px; display: flex; flex-direction: column; }
.pf-mobile-acc__panel[hidden] { display: none; }
.pf-mobile-acc__panel a {
  padding: 11px 0 11px 16px;
  border-left: 2px solid #ececec;
  font-size: 15px;
  color: #3a3a3a;
  text-decoration: none;
}

.pf-mobile-menu__foot { padding: 20px; }
.pf-cta--block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  font-size: 15.5px;
}
.pf-mobile-menu__contact {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ececec;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: #8a8a8a;
}
.pf-mobile-menu__contact .pf-strong { color: #3a3a3a; font-weight: 600; text-decoration: none; }
.pf-mobile-menu__contact a { text-decoration: none; color: inherit; }

/* ---- Footer ------------------------------------------------------------ */
.pf-footer {
  padding: 44px var(--pf-pad-x) 36px;
  background: #fff;
  border-top: 1px solid #ececec;
}
.pf-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.pf-footer__logo img { height: 34px; width: auto; display: block; margin-bottom: 14px; }
.pf-footer__addr { font-size: 13px; color: #767676; line-height: 1.7; }
.pf-footer__coltitle {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.pf-footer__links { display: flex; flex-direction: column; gap: 8px; }
.pf-footer__links a {
  font-size: 13.5px;
  color: #3a3a3a;
  text-decoration: none;
  transition: color .15s ease;
}
.pf-footer__links a:hover { color: #ff9900; }
.pf-footer__bar {
  border-top: 1px solid #ececec;
  margin-top: 32px;
  padding-top: 18px;
  font-size: 12px;
  color: #9a9a9a;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.pf-footer__bar .pf-mono { font-family: "IBM Plex Mono", monospace; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1023px) {
  .pf-nav,
  .pf-megamenu,
  .pf-header.is-company-open .pf-megamenu,
  .pf-header__actions .pf-cta { display: none; }
  .pf-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    cursor: pointer;
    color: #141414;
  }
  .pf-topbar__claim,
  .pf-topbar__meta a[href^="mailto"] { display: none; }
  .pf-topbar { justify-content: center; }
  .pf-footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .pf-footer__grid { grid-template-columns: 1fr; }
  .pf-footer__bar { flex-direction: column; }

  /* Header-Zeile: Logo (240px) + Lupe + Sprachumschalter + Burger passen auf
     schmalen Geraeten nicht nebeneinander - seit der Umschalter dazukam, sass
     die Lupe auf dem Logo (der Burger ueberlappte sogar schon vorher um ein
     paar Pixel). Deshalb: enge Abstaende, und das Logo darf schrumpfen. */
  .pf-header__bar { gap: 12px; }
  .pf-header__actions { gap: 4px; }
  /* flex-basis 0 ist hier entscheidend: mit "auto" haengt die Breite des
     Flex-Items am Bild, das Bild per max-width wieder am Item - diese
     Zirkularitaet kollabiert das Logo auf 0px. Mit Basis 0 vergibt das
     Layout die Restbreite, und das Bild skaliert hinein. */
  .pf-header__logo { flex: 1 1 0; min-width: 0; }
  .pf-header__logo img,
  .pf-header__logo .custom-logo-link img {
    height: auto;
    max-height: var(--pf-header-logo-h);
    max-width: 100%;
  }
}

/* =========================================================================
   Produktseite (single-product) – Screen 7a / mobil 12b
   ========================================================================= */

.pf-product { border-top: 1px solid #ececec; }

/* ---- Breadcrumb (auch für Kategorie/Archiv nutzbar) -------------------- */
.pf-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px var(--pf-pad-x);
  border-bottom: 1px solid #ececec;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: #9a9a9a;
}
.pf-breadcrumb a { color: inherit; text-decoration: none; }
.pf-breadcrumb a:hover { color: #ff9900; }
.pf-breadcrumb .pf-breadcrumb__current { color: #141414; font-weight: 600; }

.pf-matcard--hidden { display: none !important; }
.pf-matgrid-morewrap { text-align: center; margin-top: 28px; }

/* ---- Product main: Galerie + Info -------------------------------------- */
.pf-pd-main {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  padding-inline: var(--pf-center);
  border-bottom: 1px solid #ececec;
}
.pf-pd-left { border-right: 1px solid #ececec; min-width: 0; }
.pf-pd-gallery { padding: 36px 36px 36px var(--pf-gutter); }
.pf-pd-info { padding: 36px var(--pf-gutter) 36px 36px; }

/* Beschreibung links unter Galerie + Facts (statt eigener Sektion unten) */
.pf-pd-spec--side { padding: 8px 36px 44px var(--pf-gutter); }

/* Veredelungs-Box in der rechten Kaufspalte */
.pf-pd-veredelung--side { margin-top: 36px; padding: 28px; background: #faf9f7;
  border: 1px solid #ececec; border-radius: 6px; }

.pf-pd-stage {
  position: relative;
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f7f5;
}
.pf-pd-stage img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.pf-pd-stage--plain { background: #fff; }
.pf-pd-stage--plain img { mix-blend-mode: normal; }
.pf-pd-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  background: #141414;
  color: #fff;
  padding: 5px 9px;
  border-radius: 2px;
}
.pf-pd-eco {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #1f7a4d;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
}
.pf-pd-eco svg { flex: 0 0 auto; }
.pf-eco-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f7a4d;
  color: #fff;
  border-radius: 50%;
}
.pf-pd-thumbswrap { position: relative; margin-top: 12px; }
.pf-pd-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.pf-pd-thumbs::-webkit-scrollbar { display: none; }
.pf-pd-thumb { flex: 0 0 calc((100% - 30px) / 4); scroll-snap-align: start; }
.pf-pd-tnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.94);
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
}
.pf-pd-tnav:hover { border-color: #ff9900; }
.pf-pd-tnav--prev { left: -9px; }
.pf-pd-tnav--next { right: -9px; }
.pf-pd-tnav:disabled { opacity: .3; cursor: default; box-shadow: none; }
.pf-pd-tnav .pf-tri { transform: scale(.8); }

/* Lightbox (Großansicht Produktbilder) */
.pf-lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20,20,20,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pf-lb[hidden] { display: none; }
.pf-lb__img {
  max-width: min(1200px, calc(100vw - 140px));
  max-height: calc(100vh - 96px);
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}
.pf-lb__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #141414;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.94);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.pf-lb__nav--prev { left: 22px; }
.pf-lb__nav--next { right: 22px; }
.pf-lb__close:hover, .pf-lb__nav:hover { background: #ff9900; }
.pf-lb__count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #fff;
  letter-spacing: .06em;
}
@media (max-width: 767px) {
  .pf-lb { padding: 12px; }
  .pf-lb__img { max-width: calc(100vw - 24px); max-height: calc(100vh - 72px); }
  .pf-lb__nav--prev { left: 8px; }
  .pf-lb__nav--next { right: 8px; }
  .pf-lb__close { top: 10px; right: 10px; }
}

.pf-pd-thumb {
  border: 1px solid #ececec;
  border-radius: 4px;
  overflow: hidden;
  background: #f8f7f5;
  cursor: pointer;
  padding: 0;
}
.pf-pd-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.pf-pd-thumb:hover { border-color: #ff9900; }
.pf-pd-thumb.is-active { border: 2px solid #ff9900; }

.pf-pd-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.pf-pd-fact { border: 1px solid #ececec; border-radius: 4px; padding: 12px 14px; }
.pf-pd-fact__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #9a9a9a;
  margin-bottom: 4px;
}
.pf-pd-fact__value { font-size: 13px; font-weight: 600; }

.pf-pd-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: #c27400;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pf-pd-title { font-size: 32px; font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
.pf-colon { color: #ff9900; }
.pf-pd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #9a9a9a;
}
.pf-pd-desc { font-size: 14px; line-height: 1.6; color: #565656; margin-top: 16px; }

/* GE-Lieferanten-Bestand (nur IMP-Artikel) */
.pf-stockline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid #ececec;
  font-size: 13px;
  font-weight: 600;
}
.pf-stockline--ok { color: #1f7a4d; }
.pf-stockline--warn { color: #b05c00; }
.pf-stockline__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}
.pf-stockline--multi { display: block; }
.pf-stockline__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pf-stockline__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-weight: 400;
  font-size: 12.5px;
  color: #3d3d3d;
}
.pf-stockline__color strong { font-weight: 600; color: #1f7a4d; }
.pf-stockline__color--out { color: #9a9a9a; }
.pf-stockline__color--out strong { color: #b05c00; }

.pf-tiers {
  margin-top: 24px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
}
.pf-tiers__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 18px;
  background: #faf9f7;
  border-bottom: 1px solid #ececec;
}
.pf-tiers__title { font-size: 13px; font-weight: 700; }
.pf-tiers__unit { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; color: #9a9a9a; }
.pf-tiers__grid { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; }
.pf-tier { padding: 12px 10px; text-align: center; border-right: 1px solid #ececec; }
.pf-tier:last-child { border-right: 0; }
.pf-tier__qty { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; color: #9a9a9a; }
.pf-tier__price { font-size: 14px; font-weight: 600; margin-top: 3px; }
/* Staffel-Kacheln sind anklickbar -> setzen die Menge im Kalkulator */
.pf-tier--clickable { cursor: pointer; transition: background .12s ease; }
.pf-tier--clickable:hover { background: #fff6e0; }
.pf-tier--clickable:focus-visible { outline: 2px solid #ff9900; outline-offset: -2px; }
.pf-tier.is-active { background: #fff6e0; border-bottom: 2px solid #ff9900; }
.pf-tier.is-active .pf-tier__qty { color: #c27400; }
.pf-tier.is-active .pf-tier__price { color: #c27400; font-weight: 700; }

.pf-pd-color { margin-top: 22px; }
.pf-pd-color__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.pf-pd-color__label { font-size: 13px; font-weight: 700; }
.pf-pd-color__value { font-size: 12px; color: #9a9a9a; }
.pf-pd-swatches { display: flex; gap: 10px; }
.pf-swatch { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #ddd; cursor: pointer; padding: 0; }
.pf-swatch:hover { border-color: #ff9900; }
.pf-swatch.is-active { border: 2px solid #ff9900; box-shadow: inset 0 0 0 3px #fff; }

.pf-calc {
  margin-top: 22px;
  border: 1px solid #141414;
  border-radius: 6px;
  padding: 20px;
}
.pf-calc__title { font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.pf-calc__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pf-stepper { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 3px; }
.pf-stepper__btn {
  width: 38px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #767676;
  cursor: pointer;
  background: none;
  border: 0;
}
.pf-stepper__btn:first-child { border-right: 1px solid #ddd; }
.pf-stepper__btn:last-child { border-left: 1px solid #ddd; }
.pf-stepper__btn:hover { color: #ff9900; }
.pf-stepper__input {
  width: 70px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  background: none;
  font-family: inherit;
  -moz-appearance: textfield;
}
.pf-stepper__input::-webkit-outer-spin-button,
.pf-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pf-calc__unit { font-size: 13px; color: #565656; flex: 1; }
.pf-calc__total { text-align: right; }
.pf-calc__total-label { font-family: "IBM Plex Mono", monospace; font-size: 10px; color: #9a9a9a; }
.pf-calc__total-value { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.pf-calc__note { font-size: 11.5px; color: #9a9a9a; margin-top: 12px; line-height: 1.5; }

.pf-pd-ctas { display: flex; gap: 12px; margin-top: 20px; }
.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.pf-btn--primary { flex: 1; background: #ff9900; color: #1a1a1a; padding: 15px 0; font-size: 15px; transition: background .15s ease; }
.pf-btn--primary:hover { background: #e68a00; }
.pf-btn--ghost { border: 1.5px solid #ddd; padding: 15px 20px; font-size: 14px; color: #141414; transition: border-color .15s ease; }
.pf-btn--ghost:hover { border-color: #141414; }
.pf-pd-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; font-size: 12px; color: #767676; }
.pf-pd-trust b { color: #ff9900; font-weight: 700; }

/* ---- Details: Ausstattung + GPSR / Veredelung -------------------------- */

.pf-section-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #c27400;
  letter-spacing: .14em;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.pf-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; font-size: 13.5px; color: #3a3a3a; }
.pf-spec-item { display: flex; gap: 9px; align-items: baseline; padding: 7px 0; border-bottom: 1px solid #f2f2f2; }
.pf-spec-item::before { content: "+"; color: #ff9900; font-weight: 700; }

.pf-gpsr { margin-top: 22px; border-top: 1px solid #f2f2f2; padding-top: 14px; }
.pf-gpsr summary {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: .1em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pf-gpsr summary::-webkit-details-marker { display: none; }
.pf-gpsr summary:hover { color: #ff9900; }
.pf-gpsr summary::before { content: "\25B8"; font-size: 9px; }
.pf-gpsr[open] summary::before { content: "\25BE"; }
.pf-gpsr__body { font-size: 12px; color: #9a9a9a; line-height: 1.6; margin-top: 10px; padding-left: 16px; }
.pf-gpsr__body strong { color: #767676; font-weight: 600; }

.pf-vd-title { font-size: 20px; font-weight: 700; letter-spacing: -.02em; line-height: 1.25; margin-bottom: 16px; }
.pf-vd-list { display: flex; flex-direction: column; gap: 10px; }
.pf-vd-card { background: #fff; border: 1px solid #e4e4e4; border-radius: 4px; padding: 14px 16px; }
.pf-vd-card--rec { display: flex; justify-content: space-between; align-items: center; }
.pf-vd-card__name { font-size: 14.5px; font-weight: 600; }
.pf-vd-card__sub { font-size: 12px; color: #767676; margin-top: 2px; }
.pf-vd-badge { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; background: #f4f2ee; padding: 4px 8px; border-radius: 2px; }
.pf-vd-more { margin-top: 16px; }
.pf-link-underline {
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1.5px solid #141414;
  padding-bottom: 2px;
  text-decoration: none;
  color: #141414;
  transition: color .15s ease, border-color .15s ease;
}
.pf-link-underline:hover { color: #ff9900; border-color: #ff9900; }

/* ---- Ähnliche Produkte ------------------------------------------------- */
.pf-related { padding: 44px var(--pf-pad-x) 48px; }
.pf-related__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.pf-related__title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.pf-related__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pf-pcard {
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pf-pcard:hover { border-color: #ff9900; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
.pf-pcard__img { aspect-ratio: 1; overflow: hidden; background: #f4f2ee; }
.pf-pcard__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; display: block; }
.pf-pcard__body { padding: 14px 16px 16px; }
.pf-pcard__name { font-size: 14.5px; font-weight: 600; }
.pf-pcard__meta { font-size: 12px; color: #767676; margin-top: 3px; }

/* ---- Dunkles CTA-Band -------------------------------------------------- */
.pf-cta-band { background: #141414; color: #fff; padding: 48px var(--pf-pad-x); text-align: center; }
.pf-cta-band__title { font-size: 28px; font-weight: 700; letter-spacing: -.025em; color: #fff; }
.pf-cta-band__sub { font-size: 14.5px; color: #a5a5a5; margin: 8px 0 22px; }
.pf-cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pf-cta-band .pf-btn--primary { flex: 0 0 auto; padding: 14px 28px; font-size: 14.5px; }
.pf-cta-band .pf-btn--ghost { border-color: #3a3a3a; color: #fff; padding: 14px 24px; font-size: 14.5px; }
.pf-cta-band .pf-btn--ghost:hover { border-color: #fff; }

/* ---- Mobile Sticky-Anfrage-Leiste (12b) -------------------------------- */
.pf-sticky-bar { display: none; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .pf-pd-main { grid-template-columns: 1fr; }
  .pf-pd-left { display: contents; }
  .pf-pd-left .pf-pd-gallery { order: 1; border-bottom: 1px solid #ececec; padding: 24px 20px; }
  .pf-pd-info { order: 2; padding: 28px 20px; }
  .pf-pd-spec--side { order: 3; border-top: 1px solid #ececec; padding: 32px 20px; }
  .pf-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .pf-pd-title { font-size: 24px; }
  .pf-tiers__grid { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); grid-auto-columns: auto; }
  .pf-tiers__grid .pf-tier:nth-child(3n) { border-right: 0; }
  .pf-pd-ctas { flex-direction: column; }
  .pf-product { padding-bottom: 76px; }
  /* Die fixierte Leiste liegt ueber dem Seitenende - ohne diesen Abstand
     verdeckt sie die letzte Footer-Zeile (Copyright). Nur auf Produktseiten,
     nur dort gibt es die Leiste. */
  body.single-product .pf-footer { padding-bottom: 112px; }
  .pf-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 -8px 24px -12px rgba(0,0,0,.15);
  }
  .pf-sticky-bar .pf-btn--primary { padding: 14px 0; font-size: 14.5px; }
  .pf-sticky-bar__call {
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ddd;
    border-radius: 2px;
    font-size: 17px;
    color: #141414;
    text-decoration: none;
  }
}
@media (max-width: 560px) {
  .pf-spec-grid { grid-template-columns: 1fr; }
  .pf-related__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   Kategorieseite (taxonomy-product_cat) – Screen 11a
   ========================================================================= */

.pf-archive { border-top: 1px solid #ececec; }

/* ---- Kategorie-Kopf ---------------------------------------------------- */
.pf-cat-head { padding: 44px var(--pf-pad-x) 34px; border-bottom: 1px solid #ececec; }
.pf-cat-head__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.pf-cat-head__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: #c27400;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.pf-cat-head__title { font-size: 44px; line-height: 1.04; font-weight: 700; letter-spacing: -.03em; }
.pf-cat-head__desc { font-size: 15px; line-height: 1.6; color: #565656; }

/* ---- Filter + Sort ----------------------------------------------------- */
.pf-filterbar {
  padding: 14px var(--pf-pad-x);
  border-bottom: 1px solid #ececec;
  background: #faf9f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pf-filterbar__group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pf-filterbar__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: #9a9a9a;
  letter-spacing: .12em;
  margin-right: 4px;
}
.pf-chip {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  color: #141414;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.pf-chip:hover { border-color: #ff9900; color: #c27400; }
.pf-chip.is-active { background: #141414; color: #fff; font-weight: 600; border-color: #141414; }
.pf-sort {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ---- Produkt-Grid ------------------------------------------------------ */
.pf-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 36px var(--pf-pad-x) 44px;
}
.pf-pcard--cover .pf-pcard__img img { object-fit: cover; }
.pf-pcard--photo .pf-pcard__img img { mix-blend-mode: normal; }
.pf-pcard__img { position: relative; }
/* Markerzeile ueber dem Produktbild: Tag-Badge links, Farbhinweis rechts.
   Eine Flex-Zeile statt zwei absoluter Ecken - so koennen sich die beiden auf
   schmalen Karten nicht ueberlappen. */
.pf-pcard__marker {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}
.pf-badge2 {
  /* darf schrumpfen und kuerzen, damit der Farbhinweis nie herausgedraengt
     wird - er ist die nuetzlichere Information */
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.2;
  background: #141414;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}
.pf-badge2--green { background: #1f7a4d; }

/* Farbhinweis: Kreis aus den echten Artikelfarben + Anzahl. */
.pf-pcard__farben {
  margin-left: auto; /* bleibt rechts, auch wenn links kein Badge steht */
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .02em;
  white-space: nowrap;
  color: #141414;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #e4e4e4;
  border-radius: 2px;
  padding: 4px 8px 4px 6px;
}
.pf-pcard__farbkreis {
  width: 12px;
  height: 12px;
  flex: none;
  border-radius: 50%;
  /* Innenring, damit weisse und sehr helle Segmente nicht mit der Flaeche
     dahinter verschmelzen. */
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18);
}
.pf-pcard__eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #9a9a9a;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.pf-pcard__material { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pf-pcard__typ { flex: none; letter-spacing: .02em; }
.pf-pcard__typ--lager { color: #6b6b6b; }
.pf-pcard__typ--custom { color: #1f7a4d; }
.pf-pcard__priceline { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; }
.pf-pcard__price { font-size: 13px; font-weight: 600; }
.pf-pcard__price small { font-size: 11px; color: #9a9a9a; font-weight: 400; }
.pf-pcard__price--request { color: #c27400; }
.pf-pcard__minqty { font-size: 11.5px; color: #9a9a9a; }

/* Sonderanfertigungs-Karte */
.pf-card-custom {
  border: 2px dashed #ddd;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease;
  min-height: 220px;
}
.pf-card-custom:hover { border-color: #ff9900; }
.pf-card-custom__plus {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ff9900;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
}
.pf-card-custom__title { font-size: 15px; font-weight: 600; }
.pf-card-custom__sub { font-size: 12px; color: #767676; line-height: 1.5; max-width: 180px; }
/* Sonderkachel volle Breite, wenn sie sonst allein in einer Reihe stünde. */
.pf-card-custom--wide { grid-column: 1 / -1; }

.pf-loadmore { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 50px; margin-bottom: 48px; }

/* Produktseite: Registerkarten Ausstattung / Informationen */
.pf-feattabs { display: flex; gap: 22px; margin-bottom: 16px; }
.pf-feattab {
  background: none;
  border: 0;
  padding: 0 0 6px;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8a8a;
  border-bottom: 2px solid transparent;
}
.pf-feattab:hover { color: #141414; }
.pf-feattab.is-active { color: #141414; border-bottom-color: #ff9900; }
.pf-spec-grid[hidden] { display: none; }
.pf-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
.pf-info-grid[hidden] { display: none; }
.pf-info-row {
  display: flex;
  flex-wrap: wrap; /* langer Wert rutscht in eine eigene Zeile statt zu quetschen */
  justify-content: space-between;
  align-items: baseline;
  gap: 2px 16px;
  padding: 11px 0;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
}
.pf-info-row__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #767676;
  flex: 0 1 auto;
  min-width: 0;
}
.pf-info-row__value { text-align: right; color: #222; flex: 1 1 45%; min-width: 0; }
@media (max-width: 767px) {
  .pf-info-grid { grid-template-columns: 1fr; }
}

/* --- Zertifikate auf der Produktseite ------------------------------------
   Konkrete Angabe je Zertifikat statt pauschaler Oeko-Aussage (EmpCo,
   gilt ab 27.09.2026). Materialzertifikate gruen, Sozial-/Unternehmens-
   standards neutral - der Unterschied muss auch optisch sichtbar sein. */
.pf-certbox[hidden] { display: none; }
.pf-certs { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.pf-cert { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.pf-cert__badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  background: #eef7ee;
  color: #24713a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.pf-cert--sozial .pf-cert__badge { background: #f4f4f4; color: #5c5c5c; }
.pf-cert__desc { font-size: 14px; line-height: 1.6; color: #444; }
.pf-cert__link { white-space: nowrap; color: #141414; text-underline-offset: 2px; }
.pf-certs__hinweis {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  font-size: 12px;
  line-height: 1.6;
  color: #767676;
}
@media (max-width: 600px) {
  .pf-cert { grid-template-columns: 1fr; gap: 6px; }
}
.pf-btn--outline {
  border: 1.5px solid #ddd;
  padding: 12px 26px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 2px;
  background: none;
  color: #141414;
  cursor: pointer;
  transition: border-color .15s ease;
}
.pf-btn--outline:hover { border-color: #141414; }

/* ---- SEO/Info + verwandte Taschenarten --------------------------------- */
.pf-cat-info { display: grid; grid-template-columns: 1.1fr 0.9fr; padding-inline: var(--pf-center); border-top: 1px solid #ececec; border-bottom: 1px solid #ececec; }
.pf-cat-info__main { padding: 40px var(--pf-gutter); border-right: 1px solid #ececec; }
.pf-cat-info__side { padding: 40px var(--pf-gutter); background: #faf9f7; }
.pf-cat-info__title { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; }
.pf-cat-info__text { font-size: 13.5px; line-height: 1.65; color: #565656; }
.pf-cat-info__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-cat-info__note { margin-top: 20px; font-size: 13px; color: #565656; line-height: 1.6; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .pf-cat-head__grid { grid-template-columns: 1fr; gap: 16px; }
  .pf-product-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 20px 32px; }
  .pf-cat-info { grid-template-columns: 1fr; }
  .pf-cat-info__main { border-right: 0; border-bottom: 1px solid #ececec; }
}
@media (max-width: 767px) {
  .pf-cat-head { padding: 28px 20px 22px; }
  .pf-cat-head__title { font-size: 30px; }
}
@media (max-width: 480px) {
  .pf-product-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Taschenarten-Übersicht (Seite) – Screen 4b
   (Klassen generisch gehalten → auch für andere Übersichtsseiten nutzbar)
   ========================================================================= */

.pf-page { border-top: 1px solid #ececec; }

/* Seiten-Hero (Eyebrow + Titel + Beschreibung, zweispaltig) */
/* Video-Hero (vollflächig) */
.pf-videohero { position: relative; overflow: hidden; background: #141414; border-bottom: 1px solid #ececec; min-height: clamp(440px, 64vh, 660px); display: flex; align-items: center; }
.pf-videohero__poster, .pf-videohero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pf-videohero__poster { z-index: 1; }
.pf-videohero__video { z-index: 2; }
.pf-videohero__overlay { position: absolute; inset: 0; z-index: 3; background:
  linear-gradient(90deg, rgba(12,12,12,.82) 0%, rgba(12,12,12,.58) 44%, rgba(12,12,12,.22) 100%),
  linear-gradient(0deg, rgba(12,12,12,.5) 0%, rgba(12,12,12,0) 55%); }
.pf-videohero__inner { position: relative; z-index: 4; width: 100%; padding: clamp(52px, 7vw, 92px) var(--pf-pad-x); color: #fff; }
.pf-videohero__eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: .16em; color: #ffab3d; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; }
.pf-videohero__title { color: #fff; font-size: clamp(34px, 5vw, 56px); line-height: 1.02; font-weight: 700; letter-spacing: -.03em; margin: 0 0 18px; max-width: 15ch; }
.pf-videohero__desc { font-size: 16px; line-height: 1.62; color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 0 24px; }
.pf-videohero__meta { display: flex; flex-wrap: wrap; gap: 10px 14px; font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.pf-videohero__meta span { padding: 5px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; }
@media (prefers-reduced-motion: reduce) { .pf-videohero__video { display: none; } }
@media (max-width: 780px) {
  .pf-videohero { min-height: 0; }
  .pf-videohero__video { display: none; }
  /* Der Verlauf ist fuer die breite Ansicht von links gebaut. Hochkant liegt
     der Text mitten im hellen Bildbereich - deshalb hier senkrecht und
     kraeftiger abdunkeln. */
  .pf-videohero__overlay { background:
    linear-gradient(180deg, rgba(12,12,12,.62) 0%, rgba(12,12,12,.72) 55%, rgba(12,12,12,.82) 100%); }
  .pf-videohero__inner { padding-top: clamp(44px, 12vw, 72px); padding-bottom: clamp(44px, 12vw, 72px); }
  .pf-videohero__title { max-width: none; }
}

.pf-page-hero { padding: 56px var(--pf-pad-x) 44px; border-bottom: 1px solid #ececec; }
.pf-page-hero__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: #c27400;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.pf-page-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.pf-page-hero__title { font-size: 48px; line-height: 1.03; font-weight: 700; letter-spacing: -.03em; }
.pf-page-hero__desc { font-size: 15.5px; line-height: 1.6; color: #565656; }

/* Kategorie-Grid */
.pf-catgrid { padding: 44px var(--pf-pad-x) 48px; }
.pf-catgrid__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pf-catcard {
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pf-catcard:hover { border-color: #ff9900; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
.pf-catcard__img { aspect-ratio: 1; overflow: hidden; background: #f4f2ee; }
.pf-catcard__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; display: block; }
.pf-catcard__body { padding: 15px 17px 17px; }
.pf-catcard__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.pf-catcard__name { font-size: 16px; font-weight: 600; }
.pf-catcard__arrow { color: #ff9900; font-weight: 600; }
.pf-catcard__desc { font-size: 12.5px; color: #767676; line-height: 1.5; margin-top: 4px; }

/* Spezialitäten (kompakt) */
.pf-specialties { margin-top: 36px; }
.pf-specialties__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: #9a9a9a;
  letter-spacing: .14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.pf-specialties__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-speccard {
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px 0 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease;
}
.pf-speccard:hover { border-color: #ff9900; }
.pf-speccard__img { width: 120px; height: 120px; object-fit: contain; flex: 0 0 auto; background: #fff; }
/* Name + Pfeil in einer Zeile (Kacheln sind im 3er-Grid breit genug). */
.pf-speccard > div:last-child { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pf-speccard__name { font-size: 14.5px; font-weight: 600; }
.pf-speccard__arrow { font-size: 13px; color: #ff9900; font-weight: 600; }

/* Sonderanfertigungs-Band */
.pf-sonder-band {
  margin-top: 36px;
  border: 1px solid #141414;
  border-radius: 6px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.pf-sonder-band__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #c27400;
  letter-spacing: .14em;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pf-sonder-band__title { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.pf-sonder-band__btn {
  background: #141414;
  color: #fff;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  flex: none;
  white-space: nowrap;
}
.pf-sonder-band__btn:hover { background: #000; }

/* Responsive */
@media (max-width: 900px) {
  .pf-page-hero { padding: 32px 20px 26px; }
  .pf-page-hero__grid { grid-template-columns: 1fr; gap: 16px; }
  .pf-page-hero__title { font-size: 32px; }
  .pf-catgrid { padding: 28px 20px 32px; }
  .pf-catgrid__grid,
  .pf-specialties__grid { grid-template-columns: repeat(2, 1fr); }
  .pf-sonder-band { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 480px) {
  .pf-catgrid__grid,
  .pf-specialties__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Homepage (front-page) – Screen 2a
   ========================================================================= */

/* Sektionsrahmen + Sektions-Header-Pattern */
.pf-hsection { padding: 52px var(--pf-pad-x) 48px; border-bottom: 1px solid #ececec; }
/* Suchergebnisse: eigene Seite ohne Seitentitel - näher an den Header rücken. */
.pf-searchpage { padding-top: 26px; }
.pf-hsection--alt { background: #faf9f7; }
.pf-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.pf-sec-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #c27400;
  letter-spacing: .14em;
  font-weight: 600;
  text-transform: uppercase;
}
.pf-sec-more {
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1.5px solid #141414;
  padding-bottom: 2px;
  text-decoration: none;
  color: #141414;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.pf-sec-more:hover { color: #ff9900; border-color: #ff9900; }
.pf-sec-title { font-size: 30px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 28px; }
.pf-sec-title--narrow { max-width: 560px; }

/* ---- Hero -------------------------------------------------------------- */
.pf-hero { display: grid; grid-template-columns: 45fr 55fr; padding-inline: var(--pf-center); border-bottom: 1px solid #ececec; }
.pf-hero__text { padding: 56px var(--pf-gutter) 52px; display: flex; flex-direction: column; justify-content: center; }
.pf-hero__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: #c27400;
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.pf-hero__title { font-size: 52px; line-height: 1.02; font-weight: 700; letter-spacing: -.03em; }
.pf-hero__desc { font-size: 16.5px; line-height: 1.55; color: #565656; margin-top: 24px; max-width: 440px; }
.pf-hero__cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.pf-hero__cta .pf-btn--primary { flex: 0 0 auto; padding: 14px 26px; font-size: 14.5px; }
.pf-hero__cta .pf-btn--ghost { padding: 14px 24px; font-size: 14.5px; }
.pf-hero__stats { display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 44px; font-family: "IBM Plex Mono", monospace; font-size: 12px; color: #888; }
.pf-hero__stat { white-space: nowrap; }
.pf-hero__stat strong { display: block; font-family: "IBM Plex Sans", sans-serif; font-size: 24px; font-weight: 700; color: #141414; }
.pf-hero__media { position: relative; background: #fff; min-height: 460px; overflow: hidden; }
.pf-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-hero__tag {
  position: absolute; top: 18px; left: 18px;
  font-family: "IBM Plex Mono", monospace; font-size: 11px;
  background: #fff; padding: 6px 10px; border-radius: 2px; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.pf-hero__ref {
  position: absolute; bottom: 18px; right: 18px;
  font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #fff;
  background: rgba(20,20,20,.75); padding: 6px 10px; border-radius: 2px;
}

/* ---- Hero-Slider (Startseite) ----------------------------------------- */
.pf-hero-slider__track { position: absolute; inset: 0; }
.pf-hero-slide {
  position: absolute; inset: 0; display: block;
  opacity: 0; transition: opacity .8s ease; pointer-events: none;
}
.pf-hero-slide.is-active { opacity: 1; pointer-events: auto; }
.pf-hero-slide img { width: 100%; height: 100%; object-fit: contain; box-sizing: border-box; padding: 30px 38px; display: block; }
.pf-hero-slider__counter { z-index: 3; }
.pf-hero-slider__counter b { color: #fff; font-weight: 600; }
.pf-hero-slider__dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.pf-hero-dot {
  position: relative;
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.55); box-shadow: 0 1px 3px rgba(0,0,0,.35);
  transition: background .2s ease, transform .2s ease;
}
/* Unsichtbare Tippflaeche: der Punkt bleibt optisch 8px, laesst sich auf dem
   Handy aber auf 32px treffen. Pseudo-Element statt Rahmen, sonst wuerde der
   Schatten mitwachsen und der Punkt wirkte zu gross. */
.pf-hero-dot::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 32px; height: 32px; transform: translate(-50%, -50%);
}
.pf-hero-dot:hover { background: rgba(255,255,255,.85); }
.pf-hero-dot.is-active { background: #ff9900; transform: scale(1.25); }
.pf-hero-slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.85); color: #141414; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s ease, background .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.pf-hero-slider:hover .pf-hero-slider__nav,
.pf-hero-slider__nav:focus-visible { opacity: 1; }
.pf-hero-slider__nav:hover { background: #fff; }
.pf-hero-slider__nav--prev { left: 14px; }
.pf-hero-slider__nav--next { right: 14px; }
@media (hover: none) { .pf-hero-slider__nav { opacity: 1; } }

/* ---- 01 Dual entry ----------------------------------------------------- */
.pf-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pf-dual__card { border: 1px solid #e4e4e4; border-radius: 6px; padding: 26px 26px 22px; transition: border-color .15s ease; }
.pf-dual__card:hover { border-color: #ff9900; }
.pf-dual__label { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; color: #9a9a9a; }
.pf-dual__title { font-size: 20px; font-weight: 600; margin: 8px 0 14px; }
.pf-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.pf-chips .pf-chip { padding: 7px 12px; }
.pf-chips .pf-chip:hover { border-color: #ff9900; color: #ff9900; background: #fff6e0; }
.pf-chip--dark { background: #141414; color: #fff; border-color: #141414; }
.pf-chip--dark:hover { background: #ff9900; color: #1a1a1a; border-color: #ff9900; }

/* ---- 02 Taschenarten cards --------------------------------------------- */
.pf-hcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-hcard { border: 1px solid #e4e4e4; border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: border-color .15s ease, box-shadow .15s ease; }
.pf-hcard:hover { border-color: #ff9900; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
.pf-hcard__img { aspect-ratio: 4 / 3; overflow: hidden; background: #fff; padding: 10px; }
.pf-hcard__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pf-hcard__body { padding: 16px 18px 18px; }
.pf-hcard__title { font-size: 16.5px; font-weight: 600; }
.pf-hcard__desc { font-size: 13px; color: #767676; line-height: 1.5; margin-top: 5px; }

/* ---- 02 Taschenarten-Slider ---- */
.pf-hslider { position: relative; }
.pf-hslider__track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 2px 2px 6px;
}
.pf-hslider__track::-webkit-scrollbar { display: none; }
.pf-hslider__track > .pf-hcard { flex: 0 0 calc((100% - 36px) / 3); scroll-snap-align: start; }
.pf-hslider__nav {
  position: absolute; top: 34%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border: 1px solid #e4e4e4; border-radius: 50%;
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.12); transition: border-color .15s ease, opacity .15s ease;
}
.pf-hslider__nav:hover { border-color: #ff9900; }
.pf-hslider__nav--prev { left: 6px; }
.pf-hslider__nav--next { right: 6px; }
.pf-hslider__nav:disabled { opacity: .32; cursor: default; box-shadow: none; }
.pf-tri { display: block; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.pf-tri--l { border-right: 9px solid #141414; margin-right: 2px; }
.pf-tri--r { border-left: 9px solid #141414; margin-left: 2px; }
@media (max-width: 900px) {
  .pf-hslider__track > .pf-hcard { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 560px) {
  .pf-hslider__track > .pf-hcard { flex-basis: 80%; }
}

/* ---- 03 Einsatzbereiche ------------------------------------------------ */
.pf-usecases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pf-usecase {
  background: #fff; border: 1px solid #e4e4e4; border-radius: 6px; padding: 18px;
  display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit;
  transition: border-color .15s ease;
}
.pf-usecase:hover { border-color: #ff9900; }
.pf-usecase img { width: 44px; height: 44px; border-radius: 4px; flex: 0 0 auto; }
.pf-usecase span { font-size: 14px; font-weight: 600; }

/* ---- 04 Veredelung grid ------------------------------------------------ */
.pf-vergrid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #e4e4e4; border-radius: 6px; overflow: hidden; }
.pf-vercell { border-right: 1px solid #ececec; border-bottom: 1px solid #ececec; }
.pf-vercell:nth-child(3n) { border-right: 0; }
.pf-vercell:nth-child(n+4) { border-bottom: 0; }
.pf-vercell__img { width: 100%; aspect-ratio: 16 / 9; background: #fff; overflow: hidden; }
.pf-vercell__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pf-vercell__body { padding: 18px 24px 22px; }
.pf-vercell__name { font-weight: 600; font-size: 16px; }
.pf-vercell__desc { font-size: 13px; color: #767676; line-height: 1.5; margin-top: 6px; }

/* ---- 05 References mosaic ---------------------------------------------- */
.pf-refs { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.pf-refs__col { display: flex; flex-direction: column; gap: 18px; }
.pf-ref { position: relative; border-radius: 6px; overflow: hidden; min-height: 200px; background: #fff; }
.pf-ref--feat { min-height: 418px; }
/* Kleine Kacheln: Tasche komplett zeigen (freigestellte Titelbilder auf Weiß),
   unten Platz für die Bildunterschrift lassen. */
.pf-ref img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px 10px 56px; }
.pf-ref--feat img { object-fit: cover; padding: 0; }
.pf-ref__grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(12,12,12,.42) 81%, rgba(8,8,8,.80)); }
.pf-ref--feat .pf-ref__grad { background: linear-gradient(180deg, transparent 61%, rgba(12,12,12,.45) 76%, rgba(8,8,8,.82)); }
.pf-ref__cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 16px 9px; color: #fff; }
.pf-ref__cap > span { display: block; }
.pf-ref--feat .pf-ref__cap { padding: 22px 22px 12px; }
.pf-ref__eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #ffc266; margin-bottom: 8px; }
.pf-ref__title { font-size: 15px; font-weight: 700; line-height: 1.25; }
.pf-ref--feat .pf-ref__title { font-size: 20px; line-height: 1.2; }
.pf-ref__desc { font-size: 13px; opacity: .8; margin-top: 6px; }

/* ---- 06 Produktion ----------------------------------------------------- */
.pf-prod { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pf-prod-card { border: 1px solid #e4e4e4; border-radius: 6px; padding: 26px; }
.pf-prod-card__label { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; color: #9a9a9a; margin-bottom: 6px; }
.pf-prod-card__region { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pf-prod-list { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: #565656; }
.pf-plus-item { display: flex; gap: 9px; align-items: baseline; }
.pf-plus-item::before { content: "+"; color: #ff9900; font-weight: 700; }

/* ---- 07 Recyclingbags -------------------------------------------------- */
.pf-rec { display: grid; grid-template-columns: 1fr 1fr; padding-inline: var(--pf-center); border-bottom: 1px solid #ececec; }
.pf-rec__text { padding: 52px var(--pf-gutter); display: flex; flex-direction: column; justify-content: center; }
.pf-rec__eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 12px; color: #c27400; letter-spacing: .14em; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; }
.pf-rec__title { font-size: 30px; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; max-width: 420px; }
.pf-rec__desc { font-size: 15px; line-height: 1.6; color: #565656; margin: 18px 0 26px; max-width: 400px; }
.pf-rec__media { min-height: 340px; overflow: hidden; border-left: 1px solid #ececec; }
.pf-rec__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-btn--dark-outline {
  display: inline-block; border: 1.5px solid #141414; padding: 13px 22px;
  font-size: 14px; font-weight: 600; border-radius: 2px; text-decoration: none; color: #141414;
  transition: border-color .15s ease, color .15s ease;
}
.pf-btn--dark-outline:hover { border-color: #ff9900; color: #c27400; }

/* ---- 08 CTA (Home-Variante) -------------------------------------------- */
.pf-cta-band--home { padding: 64px var(--pf-pad-x); }
.pf-cta-band__eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 12px; color: #ff9900; letter-spacing: .14em; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; }
.pf-cta-band--home .pf-cta-band__title { font-size: 40px; letter-spacing: -.025em; }
.pf-cta-band--home .pf-cta-band__sub { font-size: 16px; margin: 12px 0 30px; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  /* minmax(0,1fr) statt 1fr: sonst zieht der breiteste Kind-Inhalt
     (min-content) die Spalte ueber die Bildschirmbreite hinaus. */
  .pf-hero, .pf-rec { grid-template-columns: minmax(0, 1fr); }
  .pf-hero__media, .pf-rec__media { border-left: 0; border-top: 1px solid #ececec; min-height: 300px; }
  .pf-usecases { grid-template-columns: repeat(2, 1fr); }
  .pf-refs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .pf-hsection { padding: 36px 20px 32px; }
  .pf-hero__text { padding: 36px 20px; }
  .pf-hero__title { font-size: 36px; }
  .pf-dual, .pf-hcards, .pf-prod { grid-template-columns: 1fr; }
  .pf-vergrid { grid-template-columns: 1fr 1fr; }
  .pf-cta-band--home .pf-cta-band__title { font-size: 30px; }
}
@media (max-width: 560px) {
  /* iOS Safari zoomt automatisch in die Seite, sobald ein Eingabefeld
     kleiner als 16px Schrift fokussiert wird - danach steht die Seite
     verschoben da. Betraf Suchfeld und ALLE Felder des Kontaktformulars. */
  .pf-search__input,
  .pf-search__input { font-size: 16px; }

  /* Tippflaechen: Telefonnummern und Mehr-Links werden auf dem Handy
     tatsaechlich angetippt, 17-25px Hoehe sind dafuer zu wenig. */
  .pf-topbar__phone,
  .pf-footer__links a,
  .pf-mobile-menu__contact a,
  .pf-megamenu__contact a,
  a[href^="tel:"] { display: inline-block; padding-block: 7px; }
  .pf-sec-more { display: inline-block; padding-block: 6px; }

  .pf-usecases, .pf-vergrid, .pf-refs { grid-template-columns: 1fr; }
  .pf-sec-title { font-size: 24px; }
}

/* =========================================================================
   Kontakt – Screen 10a (Formular = Fluent Forms + Info-Sidebar)
   ========================================================================= */

.pf-contact {
  display: grid;
  grid-template-columns: 1fr 360px;
  padding-inline: var(--pf-center);
  border-bottom: 1px solid #ececec;
}
.pf-contact__form { padding: 44px var(--pf-gutter); }
.pf-contact__formtitle { font-size: 19px; font-weight: 700; margin-bottom: 22px; }
.pf-contact__note { font-size: 12.5px; color: #9a9a9a; margin-top: 14px; }

/* ---- Fluent-Forms-Ausgabe an die CI angleichen --------------------------- */
.pf-contact__form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
.pf-contact__form .ff-el-group { grid-column: 1 / -1; margin: 0; }
.pf-contact__form .ff-el-group.pf-half { grid-column: auto; }
.pf-contact__form .ff-el-input--label { padding: 0; }
.pf-contact__form .ff-el-input--label label { font-size: 12.5px; font-weight: 600; color: #141414; margin-bottom: 6px; display: block; }
.pf-contact__form .ff-el-is-required,
.pf-contact__form .ff-el-input--label label .ff-el-is-required { color: #ff9900; }
.pf-contact__form input[type="text"],
.pf-contact__form input[type="email"],
.pf-contact__form input[type="tel"],
.pf-contact__form input[type="number"],
.pf-contact__form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #141414;
  background: #fff;
  box-shadow: none;
}
.pf-contact__form textarea { min-height: 110px; resize: vertical; }
.pf-contact__form input:focus,
.pf-contact__form textarea:focus { border-color: #ff9900; outline: none; }

/* Chip-Radios (Projekt-Angaben) */
.pf-contact__form .pf-chipfield { background: #faf9f7; border: 1px solid #ececec; border-radius: 6px; padding: 14px 16px; }
.pf-contact__form .pf-chipfield .ff-el-input--label label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px; font-weight: 500; color: #9a9a9a;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.pf-contact__form .pf-chipfield .ff-el-input--content { display: flex; flex-wrap: wrap; gap: 7px; }
.pf-contact__form .pf-chipfield .ff-el-form-check { margin: 0; padding: 0; }
.pf-contact__form .pf-chipfield .ff-el-form-check-label { display: inline-block; position: relative; margin: 0; cursor: pointer; }
.pf-contact__form .pf-chipfield .ff-el-form-check-input { position: absolute; top: 0; left: 0; opacity: 0; width: 0; height: 0; }
/* Der sichtbare Chip liegt auf dem <span> neben dem Radio (robuster als :has). */
.pf-contact__form .pf-chipfield .ff-el-form-check-label span {
  display: inline-block;
  background: #fff; border: 1px solid #e0e0e0;
  padding: 7px 12px; font-size: 12px; font-weight: 500;
  border-radius: 2px; color: #141414;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.pf-contact__form .pf-chipfield .ff-el-form-check-label:hover span { border-color: #ff9900; }
.pf-contact__form .pf-chipfield .ff-el-form-check-input:checked + span { background: #141414; color: #fff; border-color: #141414; }
/* Tastatur-Fokus sichtbar halten */
.pf-contact__form .pf-chipfield .ff-el-form-check-input:focus-visible + span { outline: 2px solid #ff9900; outline-offset: 2px; }

/* DSGVO-Checkbox */
.pf-contact__form .pf-gdpr .ff-el-form-check-label { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: #767676; line-height: 1.5; cursor: pointer; }
.pf-contact__form .pf-gdpr .ff-el-form-check-input { margin-top: 1px; flex: 0 0 auto; width: 16px; height: 16px; accent-color: #ff9900; }

/* Datei-Upload (Fluent Forms Pro) – als gestrichelte Dropzone */
.pf-contact__form .pf-upload .ff-el-input--content {
  border: 2px dashed #ddd;
  border-radius: 4px;
  padding: 16px 18px;
  transition: border-color .15s ease;
}
.pf-contact__form .pf-upload .ff-el-input--content:hover { border-color: #ff9900; }
.pf-contact__form .pf-upload input[type="file"] { font-size: 13px; }
.pf-contact__form .pf-upload .ff_upload_btn,
.pf-contact__form .pf-upload .ff-uploadable-btn,
.pf-contact__form .pf-upload button {
  border: 1px solid #ddd; border-radius: 2px;
  background: #fff; color: #141414;
  padding: 8px 14px; font-size: 13px; font-weight: 500; cursor: pointer;
}
.pf-contact__form .pf-upload .ff_upload_btn:hover,
.pf-contact__form .pf-upload button:hover { border-color: #ff9900; }
.pf-contact__form .pf-upload .ff-el-tooltip { display: none; }

/* Submit */
.pf-contact__form .ff-btn-submit {
  background: #ff9900; color: #1a1a1a;
  padding: 15px 32px; font-size: 15px; font-weight: 600;
  border: 0; border-radius: 2px; cursor: pointer;
  transition: background .15s ease;
}
.pf-contact__form .ff-btn-submit:hover { background: #e68a00; }
.pf-contact__form .ff-message-success { border: 1px solid #1f7a4d; background: #f2faf5; color: #155938; padding: 16px 18px; border-radius: 6px; font-size: 14px; }

/* ---- Info-Sidebar ------------------------------------------------------- */
.pf-contact__side { padding: 44px var(--pf-gutter); background: #faf9f7; border-left: 1px solid #ececec; display: flex; flex-direction: column; gap: 28px; }
.pf-side-block + .pf-side-block { border-top: 1px solid #ececec; padding-top: 24px; }
.pf-side-label { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; color: #9a9a9a; letter-spacing: .14em; margin-bottom: 10px; text-transform: uppercase; }
.pf-side-phone { font-size: 20px; font-weight: 700; letter-spacing: -.01em; color: #141414; text-decoration: none; display: block; }
.pf-side-hours { font-size: 13.5px; color: #565656; margin-top: 4px; }
.pf-side-email { font-size: 14px; font-weight: 600; margin-top: 10px; color: #141414; text-decoration: none; display: inline-block; }
.pf-side-addr { font-size: 13.5px; line-height: 1.65; color: #3a3a3a; }
.pf-side-steps { display: flex; flex-direction: column; gap: 12px; }
.pf-side-step { display: flex; gap: 12px; align-items: baseline; }
.pf-side-step__num { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #c27400; font-weight: 600; flex: 0 0 auto; }
.pf-side-step__text { font-size: 13px; color: #3a3a3a; line-height: 1.5; }
.pf-side-step__text b { color: #141414; font-weight: 600; }

@media (max-width: 900px) {
  .pf-contact { grid-template-columns: 1fr; }
  .pf-contact__form { padding: 28px 20px; }
  .pf-contact__form fieldset { grid-template-columns: 1fr; }
  .pf-contact__form .ff-el-group.pf-half { grid-column: 1 / -1; }
  .pf-contact__side { border-left: 0; border-top: 1px solid #ececec; padding: 28px 20px; }
}

/* =========================================================================
   Projekt-Detailseite (single-projekt) – eigenes Story-Layout
   ========================================================================= */

/* Projekt-Kopf im Hero-Muster der Startseite: Text links, Bild rechts. */
.pf-projekt-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-inline: var(--pf-center);
  border-bottom: 1px solid #ececec;
}
.pf-projekt-hero__body {
  padding: 52px var(--pf-gutter) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-projekt-hero__media { position: relative; background: #fff; min-height: 420px; overflow: hidden; }
/* contain: Der Hero ist fast quadratisch (Texthoehe bestimmt ihn), die
   Titelbilder sind quer (16:9 bis 4:3) - cover schnitt sie stark seitlich
   an. Weisser Grund, weil die Titelbilder freigestellt sind. */
.pf-projekt-hero__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pf-projekt-hero__cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
/* Basis-.pf-btn--primary ist auf Vollbreite ausgelegt (padding 15px 0);
   im Hero-Kontext braucht der Button eigenen Seitenabstand. */
.pf-projekt-hero__cta .pf-btn--primary { flex: 0 0 auto; padding: 14px 26px; font-size: 14.5px; }
/* Ohne Titelbild: Text über die volle Breite. */
.pf-projekt-hero--noimg { grid-template-columns: 1fr; }
.pf-projekt-hero--noimg .pf-projekt-hero__body { padding-inline: var(--pf-gutter); }

.pf-projekt-head__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px; letter-spacing: .16em; color: #c27400; font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase;
}
.pf-projekt-head__title { font-size: 42px; line-height: 1.06; font-weight: 700; letter-spacing: -.03em; max-width: 860px; }
.pf-projekt-head__lead { font-size: 16.5px; line-height: 1.6; color: #565656; margin-top: 18px; max-width: 640px; }


/* Story-Text: schmale Lesespalte, zentriert im 1240-Band */
.pf-projekt-body { padding: 44px var(--pf-pad-x) 40px; }
.pf-projekt-body .wp-block-post-content,
.pf-projekt-body .entry-content { max-width: 760px; margin-inline: auto; }
.pf-projekt-body p { font-size: 16px; line-height: 1.7; color: #333; margin: 0 0 18px; }
.pf-projekt-body h2 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin: 34px 0 14px; }
.pf-projekt-body h3 { font-size: 20px; font-weight: 600; margin: 26px 0 10px; }
.pf-projekt-body ul, .pf-projekt-body ol { font-size: 16px; line-height: 1.7; color: #333; margin: 0 0 18px; padding-left: 22px; }
.pf-projekt-body li { margin-bottom: 6px; }
.pf-projekt-body img { border-radius: 6px; height: auto; }
/* Galerie-Block: ruhiges 2er-Raster im Seiten-Stil.
   Überschreibt WordPress' Flex-Galerie bewusst: die bläst bei gemischten
   Formaten (Hoch-/Querformat) einzelne Bilder auf volle Breite auf. */
.pf-projekt-body .wp-block-gallery { margin: 28px 0; }
.pf-projekt-body .wp-block-gallery.has-nested-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pf-projekt-body .wp-block-gallery.has-nested-images figure.wp-block-image {
  width: auto;
  max-width: none;
  flex: none;
  margin: 0;
  display: block;
}
.pf-projekt-body .wp-block-gallery.has-nested-images figure.wp-block-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.pf-projekt-body figcaption { font-size: 13px; color: #767676; text-align: center; margin-top: 6px; }
@media (max-width: 700px) {
  .pf-projekt-body .wp-block-gallery.has-nested-images { grid-template-columns: 1fr; }
}
/* Galerie + „weite" Bilder dürfen breiter als die 760er-Textspalte werden
   (mehr Wirkung für Produktions-Bildstrecken), zentriert auf die Seite. */
.pf-projekt-body .wp-block-post-content .wp-block-gallery,
.pf-projekt-body .wp-block-post-content .alignwide {
  width: min(1040px, 92vw);
  margin-left: 50%;
  transform: translateX(-50%);
}
.pf-projekt-body a { color: #c27400; text-decoration: underline; text-underline-offset: 2px; }
.pf-projekt-body blockquote { border-left: 3px solid #ff9900; margin: 24px 0; padding: 4px 0 4px 20px; font-size: 18px; color: #141414; }

/* „Weitere Projekte" nutzt .pf-projects/.pf-projgrid/.pf-projcard (s. u.) */
.pf-related-projekte { padding: 44px var(--pf-pad-x) 48px; background: #faf9f7; border-top: 1px solid #ececec; border-bottom: 1px solid #ececec; }
.pf-related-projekte__title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 22px; }

/* Projekt-Hero stapelt wie der Startseiten-Hero (Bild unter den Text). */
@media (max-width: 980px) {
  .pf-projekt-hero { grid-template-columns: 1fr; }
  .pf-projekt-hero__media { border-top: 1px solid #ececec; min-height: 300px; }
}
@media (max-width: 900px) {
  .pf-projekt-hero__body { padding: 32px 20px; }
  .pf-projekt-head__title { font-size: 30px; }
  .pf-projekt-body { padding: 30px 20px; }
  .pf-related-projekte { padding: 28px 20px 32px; }
}

/* =========================================================================
   Projekte – Screen 8a (Featured-Story + Grid + Filter + Logo-Band)
   ========================================================================= */

/* Trenner in der Filterleiste (Einsatzbereich | Material) */
.pf-filterbar__sep { width: 1px; height: 22px; background: #ddd; flex: 0 0 auto; }

/* Featured-Story */
.pf-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  padding-inline: var(--pf-center);
  border-bottom: 1px solid #ececec;
}
.pf-featured__media { position: relative; min-height: 420px; overflow: hidden; background: #fff; }
.pf-featured__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 24px; display: block; }
.pf-featured__badge {
  position: absolute; top: 18px; left: 18px;
  font-family: "IBM Plex Mono", monospace; font-size: 10.5px; font-weight: 600;
  background: #ff9900; color: #1a1a1a; padding: 5px 10px; border-radius: 2px;
}
.pf-featured__text { padding: 44px var(--pf-gutter); display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #ececec; }
.pf-featured__meta { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #9a9a9a; margin-bottom: 12px; text-transform: uppercase; }
.pf-featured__title { font-size: 27px; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.pf-featured__desc { font-size: 14px; line-height: 1.6; color: #565656; margin-top: 16px; }
.pf-featured__stats { display: flex; gap: 26px; margin: 22px 0 24px; font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #888; }
.pf-featured__stat strong { display: block; font-family: "IBM Plex Sans", sans-serif; font-size: 19px; font-weight: 700; color: #141414; }

/* Projekt-Grid */
.pf-projects { padding: 44px var(--pf-pad-x) 48px; background: #faf9f7; border-bottom: 1px solid #ececec; }
.pf-projgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
/* „Mehr Projekte laden" sitzt direkt unter der letzten Reihe (statt der
   globalen 50 px der Kategorieseiten); der Abstand nach unten kommt vom
   padding-bottom des Abschnitts. */
.pf-projects .pf-loadmore { margin-top: 24px; margin-bottom: 0; }
.pf-projcard {
  background: #fff; border: 1px solid #e4e4e4; border-radius: 6px; overflow: hidden;
  display: block; text-decoration: none; color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pf-projcard:hover { border-color: #ff9900; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
/* contain statt cover: die Titelbilder haben gemischte Formate (1.33-1.5:1)
   und sind alle schmaler als die Kachel - cover schnitt sie oben/unten an.
   Weisser Grund, weil viele Motive freigestellt sind. */
.pf-projcard__img { aspect-ratio: 16 / 9; overflow: hidden; background: #fff; }
.pf-projcard__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pf-projcard__body { padding: 16px 18px 18px; }
.pf-projcard__meta { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; color: #9a9a9a; margin-bottom: 6px; text-transform: uppercase; }
.pf-projcard__title { font-size: 16px; font-weight: 600; line-height: 1.3; }
.pf-projcard__sub { font-size: 12.5px; color: #767676; margin-top: 6px; line-height: 1.4; }
/* Sonder-„Euer Projekt"-Karte nutzt .pf-card-custom (Pfeil statt Plus) */
.pf-card-custom__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: #ff9900; color: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600;
}

/* Referenzen / Logo-Band */
.pf-refs-band { padding: 44px var(--pf-pad-x) 48px; border-bottom: 1px solid #ececec; }
.pf-refs-band__label { font-family: "IBM Plex Mono", monospace; font-size: 12px; color: #c27400; letter-spacing: .14em; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; }
.pf-refs-band__title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 22px; }
.pf-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.pf-logo {
  border: 1px solid #ececec; border-radius: 4px; height: 74px;
  display: flex; align-items: center; justify-content: center;
  font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #b5b5b5;
}
.pf-logo--more { color: #9a9a9a; font-weight: 600; }
.pf-refs-band__note { font-size: 12px; color: #9a9a9a; margin-top: 14px; }

/* Referenz-Taschen statt Kundenlogos: Raster mit „+ viele mehr"-Kachel. */
.pf-reftaschen { display: grid; grid-template-columns: repeat(var(--pf-refcols, 5), 1fr); gap: 12px; }
/* Kachel im 3:2-Format, Bild füllt sie fast ganz aus (freigestellt auf Weiß). */
.pf-reftasche {
  box-sizing: border-box; border: 1px solid #ececec; border-radius: 4px; background: #fff;
  aspect-ratio: 3 / 2; overflow: hidden;
}
.pf-reftasche img { box-sizing: border-box; width: 100%; height: 100%; object-fit: contain; padding: 2px; display: block; }
.pf-reftasche--hidden { display: none; }
/* „+ viele mehr" ist eine Kachel im Raster (letzte Zelle der sichtbaren Reihe). */
.pf-reftaschen__more {
  box-sizing: border-box; border: 1px solid #dcdcdc; border-radius: 4px; background: #fff;
  aspect-ratio: 3 / 2; padding: 10px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.pf-reftaschen__more-zahl {
  font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: #767676;
}
/* Zweite Zeile sieht aus wie ein Button - macht die Kachel eindeutig klickbar. */
.pf-reftaschen__more-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 3px;
  background: var(--pf-orange, #f59300); color: #fff;
  font-family: "IBM Plex Sans", sans-serif; font-size: 13px; font-weight: 600;
  line-height: 1; white-space: nowrap;
  transition: background .15s, transform .15s;
}
.pf-reftaschen__more:hover { border-color: var(--pf-orange, #f59300); background: #fffdf8; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.pf-reftaschen__more:hover .pf-reftaschen__more-link { background: #d97f00; }
.pf-reftaschen__more:hover .pf-reftaschen__more-link span { transform: translateX(2px); }
.pf-reftaschen__more:focus-visible { outline: 2px solid var(--pf-orange, #f59300); outline-offset: 2px; }
.pf-reftaschen__more-link span { transition: transform .15s; }

@media (max-width: 900px) {
  .pf-featured { grid-template-columns: 1fr; }
  .pf-featured__media { min-height: 260px; }
  .pf-featured__text { border-left: 0; border-top: 1px solid #ececec; padding: 28px 20px; }
  .pf-projects { padding: 28px 20px 32px; }
  .pf-projgrid { grid-template-columns: 1fr 1fr; }
  /* 8 Projekte + Sonderkachel gehen im 3er-Raster glatt auf, im 2er bliebe
     die Sonderkachel allein stehen - dort läuft sie über beide Spalten. */
  .pf-projgrid .pf-card-custom { grid-column: 1 / -1; min-height: 150px; }
  .pf-refs-band { padding: 28px 20px 32px; }
  .pf-logos { grid-template-columns: repeat(3, 1fr); }
  .pf-reftaschen { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .pf-projgrid { grid-template-columns: 1fr; }
  .pf-logos { grid-template-columns: repeat(2, 1fr); }
  .pf-reftaschen { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   Veredelungsseite – Screen 4a (7 Verfahren, Sprungnav, Entscheidungshilfe)
   Prefix .pf-vp-* (getrennt von den Produktseiten-.pf-vd-*).
   ========================================================================= */

/* Hero-Meta-Zeile (Mono) in der rechten Hero-Spalte */
.pf-vp-herometa {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: #9a9a9a;
  letter-spacing: .04em;
}

/* Sprungnavigation (Anker zu den 7 Verfahren) */
.pf-vp-nav {
  padding: 14px var(--pf-pad-x);
  border-bottom: 1px solid #ececec;
  background: #faf9f7;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-vp-navchip {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  color: #141414;
  transition: border-color .15s ease, color .15s ease;
}
.pf-vp-navchip:hover { border-color: #ff9900; color: #c27400; }

/* Verfahren-Liste */
.pf-vp-list { padding: 44px var(--pf-pad-x) 48px; display: flex; flex-direction: column; gap: 16px; }
.pf-vp-row {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 28px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  padding: 24px;
  align-items: center;
  scroll-margin-top: 96px;
  transition: border-color .15s ease;
}
.pf-vp-row:hover { border-color: #ff9900; }
.pf-vp-row__media {
  position: relative;
  width: 280px; height: 200px;
  background: #fff; border-radius: 4px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.pf-vp-row__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Hover-Bild: sanfter Crossfade beim Überfahren der Karte. */
.pf-vp-row__media.has-hover .pf-vp-media__hover {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .45s ease;
}
.pf-vp-row:hover .pf-vp-row__media.has-hover .pf-vp-media__base { opacity: 1; }
.pf-vp-row:hover .pf-vp-row__media.has-hover .pf-vp-media__hover { opacity: 1; }
.pf-vp-row__media.has-hover .pf-vp-media__base { transition: opacity .45s ease; }
@media (hover: none) {
  /* Touch: kein Hover - Hover-Bild ausblenden, Basisbild bleibt. */
  .pf-vp-row__media.has-hover .pf-vp-media__hover { display: none; }
}
.pf-vp-row__head { display: flex; align-items: baseline; gap: 14px; }
.pf-vp-num { font-family: "IBM Plex Mono", monospace; font-size: 13px; color: #c27400; font-weight: 600; }
.pf-vp-name { font-size: 21px; font-weight: 700; line-height: 1.2; }
.pf-vp-sub { display: block; font-size: 13px; font-weight: 500; color: #9a9a9a; }
.pf-vp-desc { font-size: 14px; line-height: 1.65; color: #565656; margin-top: 10px; }
.pf-vp-ideal__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: #9a9a9a;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.pf-vp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-vp-tag { background: #f4f2ee; padding: 6px 10px; font-size: 12px; border-radius: 2px; }

/* Entscheidungshilfe */
.pf-vp-help { padding: 48px var(--pf-pad-x); background: #faf9f7; border-top: 1px solid #ececec; border-bottom: 1px solid #ececec; }
.pf-vp-help__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #c27400;
  letter-spacing: .14em;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pf-vp-help__title { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 24px; }
.pf-vp-help__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pf-vp-helpcard { background: #fff; border: 1px solid #e4e4e4; border-radius: 6px; padding: 22px; }
.pf-vp-helpcard__q { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.pf-vp-helpcard__a { font-size: 13.5px; color: #565656; line-height: 1.55; }
.pf-vp-helpcard__a b { color: #141414; font-weight: 600; }

@media (max-width: 900px) {
  .pf-vp-nav { padding: 12px 20px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pf-vp-navchip { white-space: nowrap; flex: 0 0 auto; }
  .pf-vp-list { padding: 28px 20px 32px; }
  .pf-vp-row { grid-template-columns: 1fr; gap: 16px; padding: 22px; }
  .pf-vp-row__media { width: 100%; height: 220px; }
  .pf-vp-help { padding: 32px 20px; }
  .pf-vp-help__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Einsatzbereiche-Übersicht – Screen 5a (8 Szenario-Karten)
   ========================================================================= */

.pf-scenarios {
  padding: 44px var(--pf-pad-x) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pf-scenario {
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pf-scenario:hover { border-color: #ff9900; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
/* Bild links auf halber Kachelbreite, Text rechts. (Vorher ein 52px-Quadrat:
   auf den Fotos war darin nichts zu erkennen.) */
.pf-scenario__img { overflow: hidden; background: #f4f2ee; }
.pf-scenario__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-scenario__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-scenario__name { font-size: 18px; font-weight: 700; }
.pf-scenario__q { font-size: 13px; color: #c27400; font-weight: 600; font-style: italic; margin-top: 2px; }
.pf-scenario__desc { font-size: 13.5px; color: #565656; line-height: 1.55; margin-bottom: 14px; }
.pf-scenario__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-scenario__tag { background: #f4f2ee; padding: 5px 10px; font-size: 11.5px; border-radius: 2px; font-weight: 500; }

@media (max-width: 900px) {
  .pf-scenarios { grid-template-columns: 1fr; padding: 28px 20px 32px; }
}
@media (max-width: 560px) {
  /* Einspaltig waere das Bild nur noch ein schmaler Streifen -> stapeln. */
  .pf-scenario { grid-template-columns: 1fr; }
  .pf-scenario__img { aspect-ratio: 16 / 9; }
}

/* =========================================================================
   Recyclingbags-Markenseite – Screen 14a
   Sonderregel: Grün #1F7A4D übernimmt die Akzentrolle von Orange (nur unter
   .pf-green gescopt). Header/Topbar bleiben orange (nicht in .pf-green).
   ========================================================================= */

/* Grün-Akzent statt Orange (geteilte Klassen unter .pf-green) */
.pf-green .pf-page-hero__eyebrow,
.pf-green .pf-mat-hero__eyebrow,
.pf-green .pf-mat-ref__eyebrow,
.pf-green .pf-sec-label { color: #1f7a4d; }
.pf-green .pf-colon { color: #1f7a4d; }
.pf-green .pf-btn--primary { background: #1f7a4d; color: #fff; }
.pf-green .pf-btn--primary:hover { background: #155938; }
.pf-green .pf-btn--ghost:hover { border-color: #1f7a4d; color: #1f7a4d; }
.pf-green .pf-link-underline:hover,
.pf-green .pf-sec-more:hover { color: #1f7a4d; border-color: #1f7a4d; }
/* Grüne ♺-Chips im Hero */
.pf-green .pf-mat-hero .pf-mat-chip { background: #e8f3ed; color: #1f7a4d; font-weight: 600; }
/* Dunkelgrünes CTA-Band (nur 14a) mit weißem Primär-Button */
.pf-green .pf-cta-band { background: #143d28; }
.pf-green .pf-cta-band__sub { color: #9dbcaa; }
.pf-green .pf-cta-band .pf-btn--primary { background: #fff; color: #143d28; }
.pf-green .pf-cta-band .pf-btn--primary:hover { background: #eaeaea; }
.pf-green .pf-cta-band .pf-btn--ghost { border-color: #3d6650; color: #fff; }
.pf-green .pf-cta-band .pf-btn--ghost:hover { border-color: #fff; }

/* 01 - Zwei Wege (2 Karten Bild oben) */
.pf-rb-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pf-rb-way { border: 1px solid #e4e4e4; border-radius: 6px; overflow: hidden; display: block; text-decoration: none; color: inherit; transition: border-color .15s ease, box-shadow .15s ease; }
.pf-rb-way:hover { border-color: #1f7a4d; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
.pf-rb-way__img { aspect-ratio: 5 / 3; overflow: hidden; background: #fff; }
.pf-rb-way__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pf-rb-way__body { padding: 24px 26px; }
.pf-rb-way__label { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #1f7a4d; font-weight: 600; margin-bottom: 8px; letter-spacing: .04em; }
.pf-rb-way__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.pf-rb-way__desc { font-size: 13.5px; color: #565656; line-height: 1.6; margin-bottom: 16px; }

/* 02 - Prozess (4 Schritt-Karten) */
.pf-rb-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pf-rb-step { background: #fff; border: 1px solid #e8e4da; border-radius: 12px; padding: 26px 20px 28px; text-align: center; }
.pf-rb-step__num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #1f7a4d; color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.pf-rb-step__icon { margin: 0 0 12px; }
.pf-rb-step__icon img { width: 108px; height: auto; display: block; margin: 0 auto; }
.pf-rb-step__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.pf-rb-step__desc { font-size: 13.5px; color: #565656; line-height: 1.55; max-width: 230px; margin: 0 auto; }
.pf-sec-intro { max-width: 760px; font-size: 16px; color: #444; line-height: 1.6; margin: 4px 0 0; }
.pf-rb-lead { display: grid; grid-template-columns: 1fr minmax(0, 340px); gap: 34px; align-items: center; margin-bottom: 4px; }
.pf-rb-lead__img img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; border-radius: 12px; display: block; }
/* Gespiegelt: Bild links, Text rechts - per grid-template-areas, damit beide in EINER Zeile bleiben. */
.pf-rb-lead--flip { grid-template-columns: minmax(0, 340px) 1fr; grid-template-areas: "img text"; }
.pf-rb-lead--flip .pf-rb-lead__img { grid-area: img; }
.pf-rb-lead--flip .pf-rb-lead__text { grid-area: text; }
@media (max-width: 900px) { .pf-rb-lead { grid-template-columns: 1fr; gap: 20px; } .pf-rb-lead--flip { grid-template-areas: none; } .pf-rb-lead--flip .pf-rb-lead__img, .pf-rb-lead--flip .pf-rb-lead__text { grid-area: auto; } }
.pf-rb-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.pf-rb-value { background: #fff; border: 1px solid #e8e4da; border-radius: 10px; padding: 22px 20px; }
.pf-rb-value__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pf-rb-value__desc { font-size: 14px; color: #565656; line-height: 1.55; }
.pf-rb-problem-note { margin: 20px 0 0; font-size: 16px; font-weight: 600; color: #1f7a4d; }
.pf-rb-models { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.pf-rb-model { display: block; background: #fff; border: 1px solid #e8e4da; border-radius: 10px; overflow: hidden; text-decoration: none; transition: box-shadow .15s, transform .15s; }
.pf-rb-model:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.pf-rb-model__img { aspect-ratio: 4 / 3; background: #fff; }
.pf-rb-model__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pf-rb-model__name { padding: 12px 14px; font-size: 14.5px; font-weight: 600; color: #222; text-align: center; }
@media (max-width: 900px) { .pf-rb-values { grid-template-columns: 1fr; } .pf-rb-models { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 900px) {
  .pf-rb-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .pf-rb-ways { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pf-rb-steps { grid-template-columns: 1fr; }
}

/* =========================================================================
   Materialien-Übersicht – Screen 13a (8 Material-Karten Bild-links)
   ========================================================================= */

.pf-moverview {
  padding: 44px var(--pf-pad-x) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pf-mcard {
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  /* 240px = exakt 4:3 bei 180px Bildhoehe -> die Materialfotos (800x600)
     werden nicht seitlich angeschnitten. */
  grid-template-columns: 240px 1fr;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pf-mcard:hover { border-color: #ff9900; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
/* aspect-ratio statt min-height: sonst bestimmt das Bild die Hoehe (ein
   quadratisches Foto machte die Kachel 240px hoch und zog die Nachbar-
   kachel im Raster mit). So bleiben alle Kacheln gleich hoch. */
/* Taschenfotos komplett zeigen (freigestellt auf Weiß), nicht beschneiden. */
.pf-mcard__img { overflow: hidden; background: #fff; aspect-ratio: 4 / 3; }
.pf-mcard__img img { box-sizing: border-box; width: 100%; height: 100%; object-fit: contain; padding: 10px; display: block; }
.pf-mcard__img--multiply img { mix-blend-mode: multiply; }
.pf-mcard__body { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; }
.pf-mcard__title { font-size: 18px; font-weight: 700; }
.pf-mcard__desc { font-size: 13px; color: #565656; line-height: 1.55; margin: 7px 0 12px; }
.pf-mcard__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-mcard__badge { background: #f4f2ee; padding: 5px 10px; font-size: 11px; border-radius: 2px; font-weight: 500; }
.pf-mcard__badge--green { background: #e8f3ed; color: #1f7a4d; font-weight: 600; }

@media (max-width: 900px) {
  .pf-moverview { grid-template-columns: 1fr; padding: 28px 20px 32px; }
}
@media (max-width: 560px) {
  .pf-mcard { grid-template-columns: 1fr; }
  /* Einspaltig: Bild im eigenen 4:3-Rahmen statt fixer Hoehe (sonst wird
     oben/unten stark beschnitten). */
  .pf-mcard__img { min-height: 0; aspect-ratio: 4 / 3; }
}

/* =========================================================================
   Materialseite (Vorlage für alle Materialien) – Screen 3a
   ========================================================================= */

/* Material-Hero */
.pf-mat-hero { display: grid; grid-template-columns: 1fr .9fr; padding-inline: var(--pf-center); border-bottom: 1px solid #ececec; }
.pf-mat-hero__text { padding: 52px var(--pf-gutter) 48px; display: flex; flex-direction: column; justify-content: center; }
.pf-mat-hero__eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: .16em; color: #c27400; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; }
.pf-mat-hero__title { font-size: 46px; line-height: 1.04; font-weight: 700; letter-spacing: -.03em; }
.pf-mat-hero__desc { font-size: 16px; line-height: 1.6; color: #565656; margin-top: 22px; max-width: 440px; }
.pf-mat-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.pf-mat-chip { background: #f4f2ee; padding: 7px 12px; font-size: 12.5px; border-radius: 2px; font-weight: 500; }
.pf-mat-hero__cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.pf-mat-hero__cta .pf-btn--primary { flex: 0 0 auto; padding: 13px 24px; font-size: 14px; }
.pf-mat-hero__cta .pf-btn--ghost { padding: 13px 22px; font-size: 14px; }
.pf-mat-hero__media { position: relative; min-height: 420px; overflow: hidden; border-left: 1px solid #ececec; }
/* Bild immer vollstaendig zeigen - nichts abschneiden. Der freie Rand
   bleibt weiss, damit freigestellte Produktfotos sauber wirken. */
.pf-mat-hero__media { background: #fff; }
.pf-mat-hero__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pf-mat-hero__tag { position: absolute; bottom: 18px; left: 18px; font-family: "IBM Plex Mono", monospace; font-size: 11px; background: #fff; padding: 6px 10px; border-radius: 2px; box-shadow: 0 2px 8px rgba(0,0,0,.1); }

/* Material-Fakten */
.pf-mat-facts { display: grid; grid-template-columns: repeat(4, 1fr); padding-inline: var(--pf-center); border-bottom: 1px solid #ececec; }
.pf-mat-facts--3 { grid-template-columns: repeat(3, 1fr); }
.pf-mat-fact { padding: 26px 28px; border-right: 1px solid #ececec; }
.pf-mat-fact:last-child { border-right: 0; }
.pf-mat-fact__label { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #9a9a9a; margin-bottom: 8px; }
.pf-mat-fact__value { font-size: 14.5px; font-weight: 600; line-height: 1.4; }

/* Produkt-Grid (Material) */
.pf-mat-products { padding: 52px var(--pf-pad-x) 48px; background: #faf9f7; border-bottom: 1px solid #ececec; }
.pf-mat-products__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.pf-mat-products__count { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; color: #9a9a9a; }
.pf-mat-products__title { font-size: 28px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.pf-mat-products__sub { font-size: 14px; color: #767676; margin-bottom: 26px; }
.pf-mat-filter { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.pf-matgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-matcard { background: #fff; border: 1px solid #e4e4e4; border-radius: 6px; overflow: hidden; display: block; text-decoration: none; color: inherit; transition: border-color .15s ease, box-shadow .15s ease; }
.pf-matcard:hover { border-color: #ff9900; box-shadow: 0 10px 26px -14px rgba(0,0,0,.25); }
.pf-matcard__img { aspect-ratio: 4 / 3; overflow: hidden; background: #f4f2ee; }
.pf-matcard__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; display: block; }
.pf-matcard__body { padding: 16px 18px 18px; }
.pf-matcard__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-family: "IBM Plex Mono", monospace; font-size: 10.5px; color: #9a9a9a; margin-bottom: 5px; text-transform: uppercase; }
.pf-matcard__metatext { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pf-matcard__typ { flex: none; letter-spacing: .02em; }
.pf-matcard__typ--lager { color: #6b6b6b; }
.pf-matcard__typ--custom { color: #1f7a4d; }
.pf-matcard__name { font-size: 16px; font-weight: 600; }
.pf-matcard__foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 10px; gap: 8px; }
.pf-matcard__price { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.pf-matcard__price small { font-size: 11px; font-weight: 400; color: #767676; }
.pf-matcard__minqty { font-size: 12.5px; color: #767676; }
.pf-matcard__cta { font-size: 13px; font-weight: 600; color: #ff9900; }

/* Referenz-Streifen */
/* Best-Practice-Slider (Recyclingbags) */
.pf-refslider { position: relative; }
.pf-refslider__slide { display: none !important; }
.pf-refslider__slide.is-active { display: grid !important; }
.pf-refslider__arrow { position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid #dcdcdc;
  background: #fff; color: #141414; font-size: 12px; line-height: 1;
  cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
  transition: border-color .15s ease, background .15s ease; }
.pf-refslider__arrow:hover { border-color: #141414; }
.pf-refslider__arrow--prev { left: calc(var(--pf-center) - 20px); }
.pf-refslider__arrow--next { right: calc(var(--pf-center) - 20px); }
@media (max-width: 992px) {
  .pf-refslider__arrow--prev { left: 8px; }
  .pf-refslider__arrow--next { right: 8px; }
}

.pf-mat-ref { display: grid; grid-template-columns: .9fr 1fr; padding-inline: var(--pf-center); border-bottom: 1px solid #ececec; }
.pf-mat-ref__media { height: 440px; overflow: hidden; }
.pf-mat-ref__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-mat-ref__text { padding: 44px var(--pf-gutter); display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #ececec; }
.pf-mat-ref__eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 11.5px; color: #c27400; letter-spacing: .14em; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; }
.pf-mat-ref__title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; max-width: 400px; }
.pf-mat-ref__desc { font-size: 14px; line-height: 1.6; color: #565656; margin: 14px 0 20px; max-width: 420px; }

/* Weitere Materialien */
.pf-mat-others { padding: 44px var(--pf-pad-x); border-bottom: 1px solid #ececec; }
.pf-mat-others__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-mat-others__chips .pf-chip { padding: 9px 15px; font-size: 13px; }

/* Responsive */
@media (max-width: 980px) {
  .pf-mat-hero, .pf-mat-ref { grid-template-columns: 1fr; }
  .pf-mat-hero__media { border-left: 0; border-top: 1px solid #ececec; min-height: 300px; }
  .pf-mat-ref__text { border-left: 0; border-top: 1px solid #ececec; }
  .pf-mat-ref__media { height: 300px; }
  .pf-mat-facts { grid-template-columns: 1fr 1fr; }
  .pf-mat-fact:nth-child(2n) { border-right: 0; }
}
@media (max-width: 900px) {
  .pf-mat-hero__text, .pf-mat-products, .pf-mat-others { padding-left: 20px; padding-right: 20px; }
  .pf-mat-hero__title { font-size: 34px; }
  .pf-matgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pf-mat-facts { grid-template-columns: 1fr; }
  .pf-mat-fact { border-right: 0; }
  .pf-matgrid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Unternehmen / Unsere Geschichte (page-unternehmen.html)
   ===================================================================== */
.pf-story,
.pf-story-team,
.pf-story-werte { padding: 44px var(--pf-pad-x) 48px; border-bottom: 1px solid #ececec; }
.pf-story__head { margin-bottom: 26px; }
.pf-story__label { font-family: "IBM Plex Mono", monospace; font-size: 12px; color: #c27400; letter-spacing: .14em; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; }
.pf-story__title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }

/* Zeitstrahl: Jahreszahl links, Text rechts, durchgehende Linie dazwischen. */
.pf-story__steps { display: flex; flex-direction: column; }
.pf-story__step { display: grid; grid-template-columns: 120px 1fr; gap: 28px; position: relative; padding: 0 0 30px; }
.pf-story__step:last-child { padding-bottom: 0; }
.pf-story__step::before { content: ""; position: absolute; left: 129px; top: 12px; bottom: -6px; width: 1px; background: #e6e2db; }
.pf-story__step:last-child::before { display: none; }
.pf-story__jahr {
  font-family: "IBM Plex Mono", monospace; font-size: 13px; font-weight: 600;
  color: #141414; padding-top: 2px; position: relative;
}
.pf-story__jahr::after { content: ""; position: absolute; right: -15px; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: #ff9900; }
.pf-story__body { max-width: 68ch; }
.pf-story__name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.pf-story__body p { font-size: 14px; line-height: 1.65; color: #565656; margin: 0; }

/* Fliesstext der Produktbeschreibung (Lieferanten-Prosa) */
.pf-prodtext { font-size: 14px; line-height: 1.65; color: #565656; margin: 0 0 14px; max-width: 68ch; }
.pf-prodtext:last-child { margin-bottom: 0; }

/* Produktion: Vorteils-Punkte je Standort (Haekchen-Liste, 2-spaltig) */
.pf-prod-punkte { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 260px)); gap: 8px 24px; }
.pf-prod-punkte li { font-size: 13.5px; color: #3a3a3a; padding-left: 22px; position: relative; }
.pf-prod-punkte li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #ff9900; font-weight: 700; }

/* Foto-Streifen im Zeitstrahl (Originale von 2005) */
.pf-story-fotos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pf-story-fotos figure { margin: 0; border: 1px solid #ececec; border-radius: 4px; overflow: hidden; background: #fff; aspect-ratio: 3 / 2; }
.pf-story-fotos img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-story-fotos__caption { font-size: 12px; color: #9a9a9a; margin-top: 10px; }
/* Einzelbilder nutzen dieselbe Zellgroesse wie der 4er-Streifen. */
.pf-story-fotos--einzel { margin-top: 14px; }
.pf-story__body--breit { max-width: none; }
/* Einzelner Lead-Abschnitt ohne Zeitstrahl-Nummer. */
.pf-idee { max-width: 82ch; }
.pf-idee p { margin: 6px 0 0; }

/* Standorte */
.pf-story-facts { padding: 40px var(--pf-pad-x) 44px; border-bottom: 1px solid #ececec; background: #faf9f7; }
.pf-story-facts__title { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 18px; }
.pf-story-facts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-story-fact { background: #fff; border: 1px solid #ececec; border-radius: 6px; padding: 18px 20px; }
.pf-story-fact__k { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #c27400; margin-bottom: 8px; }
.pf-story-fact__v { font-size: 13.5px; line-height: 1.6; color: #565656; }
.pf-story-facts__note { margin-top: 18px; font-size: 13.5px; color: #565656; }
.pf-story-facts__note a { color: #c27400; font-weight: 600; text-decoration: none; }
.pf-story-facts__note a:hover { text-decoration: underline; }

/* Produktions-Galerie (mit Platzhaltern) */
.pf-prodgal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.pf-prodgal__item { margin: 0; border-radius: 6px; overflow: hidden; background: #f2f1ee; aspect-ratio: 4 / 3; }
.pf-prodgal__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-prodgal__item--ph { display: flex; align-items: center; justify-content: center; border: 1px dashed #d5d3ce; background: #faf9f7; }
.pf-prodgal__item--ph span { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #b3b0aa; text-align: center; padding: 0 10px; }
@media (max-width: 780px) { .pf-prodgal { grid-template-columns: repeat(2, 1fr); } }

/* Team */
.pf-story-team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-tcard { border: 1px solid #ececec; border-radius: 6px; padding: 20px; background: #fff; }
.pf-tcard__name { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.pf-tcard__rolle { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #9a9a9a; margin: 4px 0 10px; }
.pf-tcard__text { font-size: 13.5px; line-height: 1.6; color: #565656; }

/* Haltung */
.pf-story-werte__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pf-wcard { border-left: 3px solid #ff9900; padding: 4px 0 4px 18px; }
.pf-wcard__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pf-wcard__text { font-size: 13.5px; line-height: 1.6; color: #565656; }

@media (max-width: 900px) {
  .pf-story, .pf-story-team, .pf-story-werte { padding: 28px 20px 32px; }
  .pf-story-facts { padding: 26px 20px 30px; }
  .pf-story__step { grid-template-columns: 1fr; gap: 6px; padding-bottom: 24px; }
  .pf-story__step::before { display: none; }
  .pf-story__jahr::after { display: none; }
  .pf-story-facts__grid,
  .pf-story-team__grid,
  .pf-story-werte__grid { grid-template-columns: 1fr; }
  .pf-story-fotos { grid-template-columns: 1fr 1fr; }
  .pf-prod-punkte { grid-template-columns: 1fr; }
}

/* =========================================================================
   Veredelung & optionale Ausstattung (Aufpreise mit Mengenstaffel)
   ========================================================================= */
.pf-optionen { margin: 18px 0 0; }
.pf-opt-block + .pf-opt-block { margin-top: 16px; }
.pf-opt-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }

.pf-opt-card {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid #e4e4e4; border-radius: 6px; padding: 10px 14px;
  cursor: pointer; background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.pf-opt-card:hover { border-color: #c9c9c9; }
.pf-opt-card.is-active { border-color: var(--pf-orange, #ff9900); background: #fffaf2; }
.pf-opt-card input { margin: 0; flex: 0 0 auto; accent-color: var(--pf-orange, #ff9900); }

.pf-opt-card__body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pf-opt-card__name { font-weight: 600; font-size: 15px; }
.pf-opt-card__hint { font-size: 12.5px; color: #777; }
/* In der Zeile rechts, damit die Kachel so hoch bleibt wie die anderen. */
.pf-opt-card__var {
  flex: 0 0 auto; align-self: center;
  font-size: 13px; padding: 5px 8px; border: 1px solid #ddd; border-radius: 4px; background: #fff;
}
.pf-opt-card__preis { flex: 0 0 auto; font-weight: 700; font-size: 15px; white-space: nowrap; }
.pf-opt-card--none .pf-opt-card__preis { color: #999; font-weight: 500; }

/* Technik ohne Festpreis (z. B. Stick): Text statt Preis + Info-Tooltip */
.pf-opt-card--individuell .pf-opt-card__preis {
  font-size: 12.5px; font-weight: 600; color: var(--pf-orange, #ff9900);
  white-space: normal; text-align: right; max-width: 9.5em; line-height: 1.25;
}
.pf-opt-info {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; margin-left: 6px; vertical-align: middle;
  border-radius: 50%; background: #dcdcd7; color: #333;
  font-size: 11px; font-weight: 700; cursor: help; user-select: none; flex: 0 0 auto;
}
.pf-opt-info__i { line-height: 1; font-family: Georgia, "Times New Roman", serif; }
.pf-opt-info__box {
  position: absolute; left: 50%; bottom: calc(100% + 9px); transform: translateX(-50%);
  width: min(290px, 78vw); z-index: 30;
  background: #1f2937; color: #fff; text-align: left;
  font-size: 12.5px; font-weight: 400; line-height: 1.45;
  padding: 10px 12px; border-radius: 8px; box-shadow: 0 8px 26px rgba(0,0,0,.24);
  opacity: 0; visibility: hidden; transition: opacity .15s ease; pointer-events: none;
}
.pf-opt-info__box::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #1f2937;
}
.pf-opt-info:hover .pf-opt-info__box,
.pf-opt-info:focus .pf-opt-info__box,
.pf-opt-info:focus-within .pf-opt-info__box { opacity: 1; visibility: visible; }
@media (max-width: 560px) {
  /* Tooltip an der Options-KARTE ausrichten, nicht am 16px-Icon: sonst waechst
     die 290px-Box vom Icon aus ueber den rechten Bildschirmrand hinaus. */
  .pf-opt-card { position: relative; }
  .pf-opt-info { position: static; }
  .pf-opt-info__box {
    left: 12px; right: 12px; width: auto; transform: none;
    bottom: calc(100% + 6px);
  }
  .pf-opt-info__box::after { display: none; }
}

.pf-opt-summe {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding: 8px 14px;
  background: #f6f6f4; border-radius: 6px; font-size: 14px;
}
.pf-opt-summe strong { font-size: 16px; }

@media (max-width: 560px) {
  .pf-opt-card { align-items: flex-start; }
  .pf-opt-card__preis { align-self: flex-start; }
}

.pf-opt-more { margin-top: 12px; }

/* „In den Warenkorb" mit Datei-Upload (individuell erstellt) */
.pf-atc { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.pf-atc-file { display: block; border: 1px dashed #cfcfcf; border-radius: 6px; padding: 12px 14px; background: #fafafa; cursor: pointer; }
.pf-atc-file__label { display: block; font-weight: 600; font-size: 14px; }
.pf-atc-file__label em { font-weight: 400; color: #888; font-style: normal; }
.pf-atc-file__hint { display: block; font-size: 12px; color: #888; margin-top: 4px; }
.pf-atc-file input[type=file] { margin-top: 8px; font-size: 13px; max-width: 100%; }
.pf-atc__btn { width: 100%; justify-content: center; }

/* ---- Mobile: kein iOS-Auto-Zoom in Eingabefeldern ----------------------
   Safari zoomt beim Fokus in jedes Feld mit weniger als 16px Schrift und
   laesst die Seite verschoben stehen. Betraf das komplette Kontaktformular
   (der lead-kritische Weg) und das Suchfeld. Bewusst am Dateiende, damit
   die Regel die Basiswerte weiter oben ueberschreibt. */
@media (max-width: 560px) {
  .pf-contact__form input[type="text"],
  .pf-contact__form input[type="email"],
  .pf-contact__form input[type="tel"],
  .pf-contact__form input[type="number"],
  .pf-contact__form input[type="file"],
  .pf-contact__form input[type="search"],
  .pf-contact__form textarea,
  .pf-contact__form select,
  select.pf-opt-card__var,
  .pf-search__input { font-size: 16px; }

  /* Tippflaechen auf der Produktseite: Mengen-Chips und Inhalts-Tabs waren
     mit 22-28px zu flach fuer den Daumen. */
  .pf-kalk__tier { min-height: 34px; }
  .pf-feattab { padding-block: 8px; }
  .pf-pd-tnav { width: 34px; height: 34px; }
}

/* ---- Mobile: Filterleiste als Wischstreifen ---------------------------
   Auf dem Handy brachen 12 Material-Chips auf vier Zeilen um und schoben
   das erste Produkt rund 290px nach unten. Jetzt eine Zeile je Gruppe,
   horizontal wischbar; das Label bleibt am linken Rand stehen.
   Die Leiste wird bewusst zum Block: als Flex-Container sizte der Streifen
   trotz min-width:0 auf Inhaltsbreite und die Seite scrollte quer. */
@media (max-width: 700px) {
  .pf-filterbar { display: block; padding-block: 10px; }
  .pf-filterbar__group {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: auto;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* volle Breite wischen, Inhalt bleibt am Raster eingerueckt */
    margin-inline: calc(-1 * var(--pf-pad-x));
    padding: 3px var(--pf-pad-x);
  }
  .pf-filterbar__group + .pf-filterbar__group { margin-top: 4px; }
  .pf-filterbar__group::-webkit-scrollbar { display: none; }
  .pf-filterbar__group > * { flex: 0 0 auto; }
  .pf-filterbar__label {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #faf9f7;
    padding-right: 8px;
  }
}

/* Punkte der Wisch-Slider: standardmaessig aus, nur auf dem Handy sichtbar.
   Bewusst per CSS statt per JS - beim Drehen des Geraets blieben sonst
   Punkte in der Breitansicht stehen. */
.pf-swipe__dots { display: none; }

/* ---- Mobile: Raster-Sektionen als Wisch-Slider -------------------------
   Veredelung (04) und Best Practice (05) zeigen auf dem Handy je eine Karte
   formatfuellend; gewischt wird nativ per scroll-snap, die Punkte kommen aus
   swipe.js. Ab Tablet bleibt das normale Raster. */
@media (max-width: 700px) {
  .pf-swipe {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* volle Breite wischen, Karten bleiben am Raster eingerueckt */
    margin-inline: calc(-1 * var(--pf-pad-x));
    padding-inline: var(--pf-pad-x);
    /* das Raster hatte einen Rahmen ueber alle Zellen - der passt hier nicht */
    border: 0;
    border-radius: 0;
    overflow-y: visible;
  }
  .pf-swipe::-webkit-scrollbar { display: none; }

  /* Jede Karte fuellt die Breite und rastet ein. */
  .pf-swipe > *,
  .pf-swipe .pf-refs__col > * {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  /* Die Zweier-Spalte bei Best Practice aufloesen, sonst waeren zwei
     Projekte auf einer Folie. */
  .pf-swipe .pf-refs__col { display: contents; }

  /* Veredelungs-Zellen sind Rasterzellen mit Trennlinien - als Karte
     brauchen sie einen eigenen Rahmen. */
  .pf-vergrid.pf-swipe .pf-vercell {
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
  }
  .pf-refs.pf-swipe .pf-ref,
  .pf-refs.pf-swipe .pf-ref--feat { min-height: 260px; }

  .pf-swipe__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .pf-swipe__dot {
    position: relative;
    width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
    background: #d4d2cd; cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }
  /* unsichtbare Tippflaeche, Optik bleibt 7px */
  .pf-swipe__dot::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 32px; height: 32px; transform: translate(-50%, -50%);
  }
  .pf-swipe__dot.is-active { background: #ff9900; transform: scale(1.25); }
}

/* ---- Lesbarkeit / WCAG-Korrekturen -------------------------------------
   Gemessen am 29.07.: drei Punkte lagen unter dem AA-Kontrast von 4,5:1
   bzw. unter der Mindest-Tippflaeche von 24px (WCAG 2.2). */

/* Kennzahl-Labels im Hero: #888 auf Weiss = 3,54:1 -> zu wenig. */
.pf-hero__stat { color: #6b6b6b; }
/* Sektionslabel (01 · Wo starten Sie?): #c27400 = 3,63:1 -> zu wenig. */
.pf-sec-label,
.pf-rec__eyebrow,
.pf-ref__eyebrow { color: #a05e00; }
.pf-ref__eyebrow { color: #ffc266; } /* auf dunklem Bild, dort ist Hell richtig */

@media (max-width: 700px) {
  /* Die E-Mail-Adresse in der Kopfzeile war 117x17px - unter der
     WCAG-2.2-Mindestgroesse von 24px. */
  .pf-topbar__meta a { display: inline-block; padding-block: 5px; }

  /* Kartentexte standen auf 13px. Auf dem Handy ist das grenzwertig,
     15px liest sich deutlich ruhiger. */
  .pf-hcard__desc,
  .pf-vercell__desc,
  .pf-ref__desc,
  .pf-plus-item { font-size: 15px; line-height: 1.55; }
}

/* ============ 404-Seite ============ */
.pf-404 {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px var(--pf-gutter, 24px) 96px;
  text-align: center;
}
.pf-404__stage { position: relative; display: inline-block; }
.pf-404__bubble {
  position: relative;
  display: inline-block;
  max-width: 340px;
  margin: 0 auto 18px;
  padding: 14px 20px;
  background: #fff;
  border: 1.5px solid #141414;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: #141414;
  font-weight: 500;
}
.pf-404__bubble::after,
.pf-404__bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
}
.pf-404__bubble::before {
  bottom: -13px;
  border-width: 13px 10px 0 10px;
  border-color: #141414 transparent transparent transparent;
}
.pf-404__bubble::after {
  bottom: -10.5px;
  border-width: 11px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
}
.pf-404__mascot { display: block; margin: 0 auto; height: auto; max-width: 300px; width: 82vw; }
.pf-404__eyebrow {
  margin: 26px 0 6px;
  font-family: var(--wp--preset--font-family--mono, "IBM Plex Mono", monospace);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff9900;
  font-weight: 600;
}
.pf-404__title { margin: 0 0 12px; font-size: clamp(30px, 5vw, 42px); line-height: 1.15; color: #141414; }
.pf-404__text { margin: 0 auto 30px; max-width: 520px; font-size: 16px; line-height: 1.6; color: #565656; }
.pf-404__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pf-404__btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.pf-404__btn--primary { background: #ff9900; color: #1a1a1a; }
.pf-404__btn--primary:hover { background: #e68a00; }
.pf-404__btn--ghost { border: 1.5px solid #ddd; color: #141414; }
.pf-404__btn--ghost:hover { border-color: #141414; }
@media (max-width: 640px) {
  .pf-404 { padding-top: 28px; }
  .pf-404__bubble { font-size: 15px; max-width: 300px; }
}

/* 404: Bodenschatten unter dem Bild-Maskottchen */
.pf-404__stage::after {
  content: "";
  display: block;
  width: 200px;
  height: 16px;
  margin: -6px auto 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(20,20,20,.10) 0%, rgba(20,20,20,0) 70%);
}

/* ============================================================
   FAQ-Seite
   Natives <details>/<summary> statt Akkordeon-Widget: kein JS,
   per Tastatur bedienbar, und der Antworttext steht im Markup -
   Suchmaschinen und Übersetzer sehen ihn auch zugeklappt.
   ============================================================ */
.pf-faq {
  padding-inline: var(--pf-pad-x);
  padding-block: 8px 56px;
  display: grid;
  gap: 10px;
}

.pf-faq__item {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.pf-faq__item[open] { border-color: #d6d6d6; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.pf-faq__item:hover { border-color: #d0d0d0; }

.pf-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #141414;
  cursor: pointer;
  list-style: none;
}

/* Die Standard-Dreiecke der Browser abschalten, wir zeichnen ein eigenes Plus. */
.pf-faq__q::-webkit-details-marker { display: none; }
.pf-faq__q::marker { content: ''; }

.pf-faq__q:focus-visible {
  outline: 2px solid var(--pf-orange, #ff9900);
  outline-offset: -2px;
  border-radius: 6px;
}

/* Plus, das sich beim Aufklappen zum Minus dreht. */
.pf-faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.pf-faq__icon::before,
.pf-faq__icon::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--pf-orange, #ff9900);
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .2s ease;
}

.pf-faq__icon::after { transform: translateY(-50%) rotate(90deg); }
.pf-faq__item[open] .pf-faq__icon::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.pf-faq__a {
  padding: 0 22px 22px;
  max-width: 74ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: #565656;
}

.pf-faq__a a { color: #141414; text-decoration: underline; text-underline-offset: 2px; }
.pf-faq__a a:hover { color: var(--pf-orange, #ff9900); }

@media (max-width: 600px) {
  .pf-faq__q { padding: 16px 18px; font-size: 15px; gap: 14px; }
  .pf-faq__a { padding: 0 18px 18px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .pf-faq__item,
  .pf-faq__icon::before,
  .pf-faq__icon::after { transition: none; }
}

/* ===== Schweiz-Service: Hinweis-Band (Startseite) + /schweiz/-Seite ===== */
.pf-ch-band { display: flex; align-items: center; gap: 14px; padding: 14px var(--pf-pad-x); background: #faf9f7; border-bottom: 1px solid #ececec; text-decoration: none; color: inherit; }
.pf-ch-band:hover .pf-ch-band__link { text-decoration: underline; }
.pf-ch-band__flag { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 4px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.pf-ch-band__text { font-size: 14px; line-height: 1.45; }
.pf-ch-band__text strong { font-weight: 600; }
.pf-ch-band__link { margin-left: auto; flex: 0 0 auto; font-size: 14px; font-weight: 600; white-space: nowrap; }
@media (max-width: 720px) { .pf-ch-band { flex-wrap: wrap; } .pf-ch-band__link { margin-left: 40px; } }

.pf-ch-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 44px var(--pf-pad-x) 12px; }
.pf-ch-fact { border: 1px solid #e4e4e4; border-radius: 6px; padding: 20px 22px; background: #fff; }
.pf-ch-fact__title { font-weight: 600; font-size: 16px; }
.pf-ch-fact__desc { font-size: 14px; color: #565656; line-height: 1.55; margin-top: 7px; }
@media (max-width: 720px) { .pf-ch-facts { grid-template-columns: 1fr; } }

.pf-ch-chlink { display: flex; align-items: center; gap: 12px; margin: 16px var(--pf-pad-x) 0; padding: 16px 20px; background: #faf9f7; border: 1px solid #e4e4e4; border-radius: 6px; text-decoration: none; color: inherit; font-size: 15px; }
.pf-ch-chlink--last { margin-bottom: 52px; }
.pf-ch-chlink a { color: inherit; }
.pf-ch-chlink:hover strong { text-decoration: underline; }
.pf-lang__flag--ch { width: 12px; height: 12px; display: inline-block; }
/* Platz fuer das CH-Icon im Header: Abstaende dezent gestrafft (Desktop-Nav).
   Der Puffer zwischen Nav und Actions betrug nur 16px - das CH-Icon braucht ~46px. */
.pf-nav { gap: 20px; }
.pf-lang { gap: 8px; }
.pf-search__toggle { width: 38px; }
/* CTA-Button naeher an den rechten Rand - gewonnener Platz geht in die Nav-Abstaende. */
.pf-header__bar { padding-right: 20px; }
