:root {
  --bg: #f7f7f3;
  --surface: #ffffff;
  --surface-soft: #ecece7;
  --ink: #111312;
  --muted: #60645f;
  --line: #deded6;
  --dark: #171b1d;
  --dark-2: #22282b;
  --accent: #6f766f;
  --radius: 0;
  --shadow: 0 22px 70px rgba(17, 19, 18, .10);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 999;
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: .86rem;
}
.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 243, .94);
  border-bottom: 1px solid rgba(222,222,214,.82);
  backdrop-filter: blur(16px);
}
.header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  letter-spacing: -.05em;
}
.brand__text { font-size: 1.18rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .95rem;
  font-weight: 650;
}
.main-nav a:not(.button) { color: #252a27; }
.main-nav a:not(.button):hover { color: #000; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--dark);
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button--dark { background: var(--dark); color: #fff; }
.button--dark:hover { background: #000; border-color: #000; }
.button--light { background: transparent; color: var(--ink); border-color: var(--line); }
.button--light:hover { border-color: var(--ink); }
.button--small { min-height: 42px; padding: 0 16px; }

.section { padding: 96px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: #4e524e;
  max-width: 680px;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding-top: 76px;
  background:
    linear-gradient(90deg, rgba(247,247,243,.96) 0%, rgba(247,247,243,.78) 48%, rgba(247,247,243,.96) 100%),
    radial-gradient(circle at 80% 20%, rgba(44,49,49,.14), transparent 38%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: .92;
  letter-spacing: -.075em;
  max-width: 850px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero__visual {
  position: relative;
  min-height: 520px;
}
.hero-card {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img { width: 100%; height: 100%; object-fit: contain; }
.hero-card--main {
  right: 0;
  top: 0;
  width: min(100%, 540px);
  height: 540px;
  padding: 20px;
}
.hero-card--floating {
  left: 0;
  bottom: 8px;
  width: 300px;
  height: 230px;
  padding: 12px;
  border: 10px solid var(--bg);
}

.category-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.category-strip__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 18px 0;
  scrollbar-width: thin;
}
.category-strip a {
  white-space: nowrap;
  padding: 11px 16px;
  background: #f3f3ef;
  font-size: .92rem;
  font-weight: 750;
}
.category-strip a:hover { background: var(--dark); color: #fff; }

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}
.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading h2,
.feature__copy h2,
.focus-card h2,
.contact__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.section-heading p,
.feature__copy p,
.focus-card p,
.contact__copy p { color: var(--muted); font-size: 1.05rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  background: var(--surface);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.category-card--wide { grid-column: span 2; }
.category-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr auto;
}
.category-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  padding: 28px;
  background: #fff;
  transition: transform .45s ease;
}
.category-card:hover img { transform: scale(1.035); }
.category-card__body {
  padding: 28px;
  border-top: 1px solid var(--line);
}
.category-card__body span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.category-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.category-card p { margin: 0; color: var(--muted); }

.feature { background: var(--surface); }
.feature__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.feature__image {
  background: #f6f6f2;
  border: 1px solid var(--line);
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 42px;
}
.feature__image img { max-height: 490px; object-fit: contain; }
.benefit-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.benefit-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.benefit-list strong { font-size: 1rem; }
.benefit-list span { color: var(--muted); }

.product-focus { background: var(--bg); }
.focus-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--dark);
  color: #fff;
  min-height: 560px;
}
.focus-card__copy {
  padding: clamp(36px, 6vw, 80px);
  align-self: center;
}
.focus-card p { color: rgba(255,255,255,.76); }
.focus-card .eyebrow { color: rgba(255,255,255,.58); }
.focus-card .button { border-color: #fff; background: #fff; color: var(--ink); margin-top: 18px; }
.focus-card__image { background: #fff; display: grid; place-items: center; padding: 34px; }
.focus-card__image img { max-height: 520px; object-fit: contain; }

.support { background: var(--surface); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 250px;
}
.support-card__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  background: var(--dark);
  color: #fff;
  font-size: .86rem;
  font-weight: 850;
}
.support-card h3 { margin: 0 0 12px; font-size: 1.35rem; letter-spacing: -.035em; }
.support-card p { margin: 0; color: var(--muted); }

.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-mail {
  display: inline-block;
  margin-top: 22px;
  font-weight: 800;
  font-size: 1.15rem;
  border-bottom: 2px solid var(--ink);
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  gap: 18px;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form span { font-weight: 750; font-size: .92rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink); background: #fff; }
.form-hint { margin: 0; color: var(--muted); font-size: .84rem; }

.footer {
  background: #0f1111;
  color: #fff;
  padding: 70px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
}
.footer p { color: rgba(255,255,255,.68); max-width: 300px; }
.footer h2 {
  margin: 0 0 18px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}
.footer a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }
.footer a:hover { color: #fff; }
.brand--footer .brand__mark { background: #fff; color: #0f1111; }
.footer__bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
.footer__bottom a { display: inline; color: #fff; }

@media (max-width: 980px) {
  .header__inner { min-height: 78px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease, visibility 0s;
  }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 12px; border-bottom: 0; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero__grid,
  .feature__grid,
  .focus-card,
  .contact__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 470px; }
  .hero-card--main { width: 100%; height: 430px; }
  .hero-card--floating { width: 250px; height: 190px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card--wide { grid-column: span 1; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar__inner { flex-direction: column; align-items: flex-start; padding: 10px 0; gap: 4px; }
  .main-nav { top: 113px; }
  .section { padding: 66px 0; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero__visual { min-height: 390px; }
  .hero-card--main { height: 330px; }
  .hero-card--floating { width: 190px; height: 145px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 420px; }
  .category-card img { height: 250px; }
  .feature__image { min-height: auto; padding: 20px; }
  .benefit-list div { grid-template-columns: 1fr; gap: 6px; }
  .focus-card__copy { padding: 34px 24px; }
  .footer__bottom { flex-direction: column; }
}


/* Basis-Seiten: Impressum, Datenschutz, 404 */
.legal-hero,
.error-page {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.legal-hero__inner,
.error-page__inner {
  max-width: 900px;
}
.legal-hero h1,
.error-page h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.07em;
}
.legal-hero p,
.error-page p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}
.legal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.legal-note {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.legal-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.legal-content {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 58px);
}
.legal-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
}
.legal-content a,
.form-hint a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.error-page {
  min-height: 62vh;
  display: grid;
  align-items: center;
}
.error-page__actions { margin-top: 30px; }

@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-note { position: static; }
}

/* Produktübersicht */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 64px;
  align-items: center;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.075em;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-hero__image {
  min-height: 520px;
  background: #f6f6f2;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 54px);
}
.page-hero__image img {
  max-height: 460px;
  object-fit: contain;
}
.products-overview {
  background: var(--bg);
}
.product-category-list {
  display: grid;
  gap: 24px;
}
.product-section-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 500px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-section-card.is-hidden {
  display: none;
}
.product-section-card--reverse .product-section-card__image {
  order: 2;
}
.product-section-card__image {
  background: #f6f6f2;
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 58px);
  border-right: 1px solid var(--line);
}
.product-section-card--reverse .product-section-card__image {
  border-right: 0;
  border-left: 1px solid var(--line);
}
.product-section-card__image img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}
.product-section-card__image--split {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.product-section-card__image--split img {
  max-height: 270px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.product-section-card__content {
  padding: clamp(34px, 5vw, 68px);
  align-self: center;
}
.product-number {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.product-section-card h3 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.product-section-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag-list li {
  background: #f3f3ef;
  border: 1px solid var(--line);
  padding: 8px 11px;
  color: #3d423e;
  font-size: .88rem;
  font-weight: 750;
}
.product-section-card__actions {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.product-roadmap {
  background: var(--surface);
}
.roadmap-card {
  background: var(--dark);
  color: #fff;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  padding: clamp(34px, 6vw, 72px);
  align-items: center;
}
.roadmap-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.roadmap-card p {
  margin: 0 0 26px;
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
}
.roadmap-card .eyebrow { color: rgba(255,255,255,.58); }
.roadmap-card .button--light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.roadmap-card .button--light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

@media (max-width: 980px) {
  .page-hero__grid,
  .product-section-card,
  .roadmap-card {
    grid-template-columns: 1fr;
  }
  .page-hero__image { min-height: 390px; }
  .product-section-card--reverse .product-section-card__image { order: 0; }
  .product-section-card__image,
  .product-section-card--reverse .product-section-card__image {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .page-hero__image { min-height: 300px; padding: 22px; }
  .product-section-card { min-height: auto; }
  .product-section-card__image { padding: 24px; }
  .product-section-card__image img { max-height: 260px; }
  .product-section-card__image--split { grid-template-columns: 1fr; }
  .product-section-card__content { padding: 30px 24px; }
  .product-section-card h3 { font-size: clamp(2rem, 11vw, 3.2rem); }
}

/* Product detail page */
.product-hero {
  background: var(--bg);
  padding-top: 76px;
}
.product-hero__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.product-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: .88;
  letter-spacing: -.085em;
}
.product-type {
  margin: 14px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.product-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.product-hero__media {
  min-height: 610px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 70px);
}
.product-hero__media img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.product-nav {
  position: sticky;
  top: 76px;
  z-index: 60;
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.product-nav__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 0;
}
.product-nav a {
  white-space: nowrap;
  padding: 10px 14px;
  background: #f3f3ef;
  font-size: .9rem;
  font-weight: 800;
}
.product-nav a:hover {
  background: var(--dark);
  color: #fff;
}
.product-benefits {
  background: var(--surface);
}
.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-benefit-grid article {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(26px, 4vw, 44px);
  min-height: 250px;
}
.product-benefit-grid span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .14em;
  margin-bottom: 24px;
}
.product-benefit-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.product-benefit-grid p {
  margin: 0;
  color: var(--muted);
}
.product-split {
  background: var(--bg);
}
.product-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.product-split__image {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 60px);
}
.product-split__image img {
  max-height: 430px;
  object-fit: contain;
}
.product-split__copy h2,
.specs h2,
.detail-card h2,
.downloads h2,
.product-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.product-split__copy p,
.specs p,
.detail-card p,
.downloads p,
.product-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #353936;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 2px;
  background: var(--dark);
}
.specs {
  background: var(--surface);
}
.specs__grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.spec-table {
  border-top: 1px solid var(--line);
  background: #fff;
}
.spec-table > div {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.spec-table span {
  color: var(--muted);
  font-weight: 750;
}
.spec-table strong {
  font-weight: 850;
}
.product-details {
  background: var(--bg);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(30px, 5vw, 58px);
}
.downloads {
  background: var(--surface);
}
.downloads__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.download-list {
  display: grid;
  gap: 12px;
}
.download-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 98px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: background .2s ease, border .2s ease, transform .2s ease;
}
.download-card:hover {
  background: #fff;
  border-color: var(--dark);
  transform: translateY(-1px);
}
.download-card--disabled {
  opacity: .55;
  cursor: not-allowed;
}
.download-card--disabled:hover {
  background: var(--bg);
  border-color: var(--line);
  transform: none;
}
.download-card__type {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--dark);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.download-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  margin-bottom: 5px;
}
.download-card small {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}
.product-cta {
  background: var(--bg);
}
.product-cta__card {
  background: var(--dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
}
.product-cta__card p { color: rgba(255,255,255,.72); }
.product-cta__card .eyebrow { color: rgba(255,255,255,.58); }
.product-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.product-cta .button--light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.product-cta .button--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

@media (max-width: 980px) {
  .product-hero__grid,
  .product-split__grid,
  .specs__grid,
  .detail-grid,
  .downloads__grid,
  .product-cta__card,
  .product-benefit-grid {
    grid-template-columns: 1fr;
  }
  .product-hero__media,
  .product-split__image { min-height: 390px; }
  .product-cta__actions { justify-content: flex-start; }
  .product-nav { top: 76px; }
}

@media (max-width: 640px) {
  .product-hero h1 { font-size: clamp(3.4rem, 18vw, 5.1rem); }
  .product-hero__media,
  .product-split__image { min-height: 300px; padding: 22px; }
  .spec-table > div { grid-template-columns: 1fr; gap: 6px; }
  .download-card { grid-template-columns: 52px 1fr; padding: 16px; }
  .download-card__type { width: 48px; height: 48px; }
}

/* AnchorLock image gallery */
.product-gallery {
  background: var(--bg);
}
.gallery-heading {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}
.gallery-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 6.3rem);
  line-height: .92;
  letter-spacing: -.07em;
}
.gallery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}
.gallery-stage {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: min(76vw, 760px);
  display: grid;
  grid-template-rows: 1fr auto;
}
.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
  padding: clamp(12px, 2vw, 26px);
}
.gallery-stage figcaption {
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  color: var(--muted);
  font-weight: 750;
  background: #fff;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: min(76vw, 760px);
  overflow: auto;
  padding-right: 4px;
}
.gallery-thumb {
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  transition: border .2s ease, background .2s ease, transform .2s ease;
}
.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--dark);
  background: #f5f5f2;
}
.gallery-thumb:hover {
  transform: translateY(-1px);
}
.gallery-thumb img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  display: block;
  background: #f4f4f1;
}
.gallery-thumb span {
  font-size: .95rem;
  font-weight: 850;
  color: var(--ink);
}
.gallery-thumb:focus-visible {
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .gallery-heading,
  .gallery-layout {
    grid-template-columns: 1fr;
  }
  .gallery-stage {
    min-height: 560px;
  }
  .gallery-thumbs {
    max-height: none;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow: visible;
    padding-right: 0;
  }
  .gallery-thumb {
    grid-template-columns: 1fr;
  }
  .gallery-thumb img {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 640px) {
  .gallery-stage {
    min-height: 390px;
  }
  .gallery-stage img {
    padding: 8px;
  }
  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
  }
  .gallery-thumb {
    min-width: 142px;
  }
  .gallery-thumb img {
    height: 96px;
  }
}


/* Thule-artige Produktnavigation / Megamenü */
.nav-link--button {
  border: 0;
  background: transparent;
  color: #252a27;
  padding: 0;
  font-weight: 750;
  cursor: pointer;
}
.nav-link--button:hover,
.nav-link--button.is-active { color: #000; }

.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(42px + 76px);
  z-index: 90;
  background: rgba(247, 247, 243, .985);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 54px rgba(17,19,18,.10);
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .24s ease, transform .24s ease, visibility 0s linear .24s;
}
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .24s ease, transform .24s ease, visibility 0s;
}
.mega-menu__inner { padding: 18px 0 16px; }
.mega-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.mega-menu__top p {
  margin: 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -.025em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}
.mega-close {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 0fr;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 300px;
  max-width: 1040px;
  overflow: hidden;
  transition: grid-template-columns .24s ease, max-width .24s ease;
}
.mega-menu.has-selection .mega-menu__grid {
  grid-template-columns: minmax(300px, .85fr) minmax(360px, 1.15fr);
}
.mega-menu__categories {
  border-right: 1px solid var(--line);
  background: #fff;
}
.mega-category {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 760;
  font-size: .96rem;
  cursor: pointer;
}
.mega-category:hover,
.mega-category.is-active { background: #ddd4c4; }
.mega-category span:last-child { font-size: 1.45rem; font-weight: 500; }
.mega-menu__subcategories {
  background: #ddd4c4;
  padding: 26px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  overflow: hidden;
}
.mega-menu.has-selection .mega-menu__subcategories {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
.mega-subpanel { display: none; }
.mega-subpanel.is-active { display: grid; gap: 14px; }
.mega-subpanel a {
  font-size: .98rem;
  font-weight: 500;
}
.mega-subpanel a:hover { text-decoration: underline; text-underline-offset: 4px; }
.mega-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 850 !important;
  margin-bottom: 8px;
}
.mega-all span { font-size: 1.55rem; font-weight: 500; }
.mega-menu__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  font-weight: 800;
  font-size: .92rem;
}
.mega-menu__footer a { border-bottom: 2px solid transparent; }
.mega-menu__footer a:hover { border-color: var(--ink); }
body.mega-open { overflow: auto; }

/* Kategorie-Zielseiten */
.category-hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.category-hero__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.category-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: .92;
  letter-spacing: -.075em;
}
.category-hero__image {
  background: #f6f6f2;
  border: 1px solid var(--line);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 34px;
}
.category-hero__image img { max-height: 470px; object-fit: contain; }
.product-list-grid { display: grid; gap: 22px; }
.product-list-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 330px;
}
.product-list-card__media {
  background: #f7f7f3;
  display: grid;
  place-items: center;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.product-list-card__media img { max-height: 280px; object-fit: contain; }
.product-list-card__body {
  padding: clamp(28px, 4vw, 48px);
  align-self: center;
}
.product-list-card__body h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.product-list-card__body p { color: var(--muted); max-width: 600px; }
.product-list-card__body .button { margin-top: 18px; }

@media (max-width: 980px) {
  .main-nav {
    top: 120px;
    max-height: calc(100vh - 111px);
    overflow-y: auto;
  }
  .main-nav .nav-link--button {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .mega-menu {
    top: 120px;
    height: calc(100vh - 111px);
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 1;
    transition: transform .26s ease, visibility 0s linear .26s;
  }
  .mega-menu.is-open {
    transform: translateX(0);
    transition: transform .26s ease, visibility 0s;
  }
  .mega-menu__inner { width: 100%; padding: 0; }
  .mega-menu__top { padding: 16px 20px; margin: 0; border-bottom: 1px solid var(--line); }
  .mega-menu__grid,
  .mega-menu.has-selection .mega-menu__grid { grid-template-columns: 1fr; border: 0; min-height: 0; max-width: none; }
  .mega-menu__categories { border-right: 0; }
  .mega-menu__subcategories { display: none; padding: 0; background: #ddd4c4; opacity: 1; visibility: visible; transform: none; }
  .mega-menu.has-selection .mega-menu__subcategories { display: block; }
  .mega-subpanel.is-active { padding: 18px 24px 26px; }
  .mega-category { min-height: 60px; padding: 0 22px; font-size: .98rem; }
  .mega-menu__footer { padding: 18px 20px; flex-direction: column; background: #fff; }
  body.mega-open { overflow: hidden; }
  .category-hero__grid,
  .product-list-card { grid-template-columns: 1fr; }
  .category-hero__image { min-height: 390px; }
  .product-list-card__media { border-right: 0; border-bottom: 1px solid var(--line); }
  .category-subnav { top: 120px; }
}

@media (max-width: 640px) {
  .mega-menu { top: 113px; height: calc(100vh - 113px); }
  .category-subnav { top: 113px; }
  .category-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .category-hero__image { min-height: 300px; padding: 20px; }
}

/* Erweiterung Kategorie-Landingpage Sicherungstechnik */
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 32px;
  align-items: end;
}
.section-heading--split p { margin-top: 0; }
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.product-list-card--placeholder { opacity: .88; }
.product-list-card--placeholder .product-list-card__media img { filter: grayscale(.35); opacity: .72; }
.cta-band {
  margin-top: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.cta-band p { max-width: 620px; }
.cta-band--light { background: #f7f7f3; }
@media (max-width: 760px) {
  .section-heading--split,
  .cta-band { grid-template-columns: 1fr; display: grid; }
  .cta-band .button { width: max-content; }
}

/* FIX: Kategorie-Hero und Split-Headings ohne Textüberlappung */
.category-hero__grid > *,
.section-heading--split > * {
  min-width: 0;
}

.category-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.category-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.07em;
}

.category-hero .lead {
  max-width: 620px;
}

.section-heading--split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: start;
}

.section-heading--split h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .96;
}

@media (max-width: 1100px) {
  .category-hero__grid {
    grid-template-columns: 1fr;
  }
  .category-hero h1 {
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .section-heading--split {
    grid-template-columns: 1fr;
  }
  .category-hero h1,
  .section-heading--split h2 {
    letter-spacing: -.055em;
  }
}


/* AnchorLock Premium-Produktseite */
.product-hero--premium .lead { max-width: 680px; }
.product-hero__media--image { overflow: hidden; }
.product-hero__media--image img { max-height: 620px; }
.product-quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
}
.product-quickfacts div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  padding: 16px;
}
.product-quickfacts dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-quickfacts dd {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.025em;
}
.gallery-stage { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
  padding: 28px;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease, visibility 0s;
}
.lightbox img {
  max-width: min(1120px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 640px) {
  .product-quickfacts { grid-template-columns: 1fr; }
  .lightbox { padding: 12px; }
}


/* FIX: Split-Headings ohne Überlappung */
.section-heading--split {
  display: block !important;
  max-width: 980px !important;
}
.section-heading--split h2 {
  max-width: 900px !important;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem) !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}
.section-heading--split p {
  max-width: 720px !important;
  margin-top: 18px !important;
}
@media (max-width: 760px) {
  .section-heading--split h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem) !important;
  }
}


/* Product video section */
.product-video {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-video__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
}
.product-video__copy {
  min-width: 0;
  max-width: 620px;
}
.product-video__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.25vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.065em;
  max-width: 100%;
  overflow-wrap: normal;
  hyphens: auto;
}
.product-video__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.product-video__hint {
  margin-top: 18px !important;
  font-size: .95rem !important;
  color: #747874 !important;
}
.product-video__player {
  min-width: 0;
  background: #0f1211;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-video__player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #111;
}
@media (max-width: 1100px) {
  .product-video__grid {
    grid-template-columns: 1fr;
  }
  .product-video__copy {
    max-width: 760px;
  }
}
@media (max-width: 640px) {
  .product-video__copy h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
    letter-spacing: -.055em;
  }
}


/* Logo integration */
.brand--logo { gap: 0; }
.brand__logo { display: block; height: 56px; width: auto; max-width: 320px; object-fit: contain; }
.brand--footer .brand__logo { filter: invert(1); opacity: .96; }

/* Compact dropdown navigation */
.nav-link--button { background: transparent; border: 0; cursor: pointer; color: #252a27; font-weight: 650; padding: 0; }
.nav-link--button:hover, .nav-link--button.is-active { color: #000; }
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown__menu { position: absolute; top: calc(100% + 18px); right: 0; min-width: 295px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease, visibility .22s ease; z-index: 150; }
.nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown__menu a { display: block; padding: 12px 14px; margin: 0; border-bottom: 1px solid rgba(222,222,214,.75); }
.nav-dropdown__menu a:last-child { border-bottom: 0; }
.nav-dropdown__menu a:hover { background: #f3f3ef; }

/* Editorial and support pages */
.editorial-hero { background: var(--bg); padding-top: 110px; }
.editorial-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.editorial-hero h1 { margin: 0; font-size: clamp(3.4rem, 8vw, 7.2rem); line-height: .92; letter-spacing: -.075em; }
.editorial-hero__image { background: #fff; box-shadow: var(--shadow); min-height: 420px; display: grid; place-items: center; overflow: hidden; }
.editorial-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.two-col h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .95; letter-spacing: -.065em; }
.two-col p { color: var(--muted); font-size: 1.08rem; }
.feature-grid-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid article { border: 1px solid var(--line); padding: 28px; background: var(--bg); }
.feature-grid h3 { margin: 0 0 10px; font-size: 1.25rem; }
.feature-grid p { color: var(--muted); margin: 0 0 16px; }
.feature-grid a { font-weight: 800; border-bottom: 2px solid var(--ink); }
.image-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.image-band__grid img { background: #fff; height: 320px; width: 100%; object-fit: contain; padding: 20px; }
.support-teaser-card { background: #fff; border: 1px solid var(--line); padding: 34px; box-shadow: var(--shadow); }
.support-teaser-card h3, .support-teaser-card h2 { margin-top: 0; }
.support-teaser-card--hero { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.contact__grid--teaser { align-items: center; }
.contact-form select { min-height: 50px; border: 1px solid var(--line); background: #f8f8f5; padding: 0 14px; }
.contact-form select:focus { border-color: var(--ink); background: #fff; outline: none; }
.downloads-overview { display: grid; gap: 46px; }
.download-section h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin: 0 0 20px; letter-spacing: -.04em; }
.download-list { display: grid; gap: 12px; }
.download-row { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); padding: 18px; transition: border .2s ease, transform .2s ease; }
.download-row:hover { border-color: var(--ink); transform: translateY(-1px); }
.download-row small { display: block; color: var(--muted); margin-top: 3px; }

@media (max-width: 900px) {
  .brand__logo { height: 44px; max-width: 255px; }
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown__toggle { width: 100%; text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-dropdown__menu { position: static; min-width: 0; box-shadow: none; border: 0; padding: 0 0 8px 14px; display: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown__menu a { padding: 10px 0; background: transparent; }
  .editorial-hero__grid, .two-col, .feature-grid, .image-band__grid, .contact__grid--teaser { grid-template-columns: 1fr; }
  .editorial-hero__image { min-height: 300px; }
}


/* Startseite: ruhigere Produktwelt statt überlagerter Einzelbilder */
.hero__visual--product-wall {
  min-height: 540px;
}
.hero-product-wall {
  height: 540px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}
.hero-product-tile {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero-product-tile--large {
  grid-row: span 3;
}
.hero-product-tile--wide {
  grid-column: 2;
}
.hero-product-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  background: #fff;
}
.hero-product-tile--photo img {
  object-fit: cover;
  padding: 0;
  background: transparent;
}
.hero-product-tile figcaption {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f9f9f6;
}
.support-card--link {
  display: block;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.support-card--link:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 18px 48px rgba(17, 19, 18, .08);
}

@media (max-width: 980px) {
  .hero-product-wall { height: auto; min-height: 460px; }
  .hero-product-tile--large { grid-row: span 2; }
  .hero-product-tile img { min-height: 150px; }
}
@media (max-width: 640px) {
  .hero__visual--product-wall { min-height: auto; }
  .hero-product-wall { grid-template-columns: 1fr 1fr; height: auto; min-height: 0; }
  .hero-product-tile--large { grid-column: span 2; grid-row: auto; }
  .hero-product-tile--wide { grid-column: span 2; }
  .hero-product-tile img { height: 180px; min-height: 0; padding: 16px; }
  .hero-product-tile figcaption { font-size: .68rem; }
}


/* Fix: Support-/Editorial-Hero sauberer zweispaltiger Aufbau */
.editorial-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
}
.editorial-hero__grid > * {
  min-width: 0;
}
.support-teaser-card--hero {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  min-height: 320px;
}
@media (max-width: 1150px) {
  .editorial-hero__grid {
    grid-template-columns: 1fr;
  }
  .support-teaser-card--hero {
    justify-self: stretch;
    max-width: none;
    min-height: auto;
  }
}


/* Lifestyle image usage */
.image-band--lifestyle .image-band__grid img {
  object-fit: cover;
  padding: 0;
  height: 360px;
}
@media (max-width: 900px) {
  .image-band--lifestyle .image-band__grid img { height: 260px; }
}

/* Additional lifestyle scene gallery */
.scene-section { background: #f3f3ef; }
.scene-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.scene-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.scene-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.scene-card figcaption {
  padding: 14px 16px;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fafaf7;
}
@media (max-width: 980px) {
  .scene-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .scene-gallery { grid-template-columns: 1fr; }
  .scene-card img { height: 240px; }
}


/* Fix: Download-Übersicht ohne Überschrift/Kachel-Kollision */
.editorial-hero--downloads .editorial-hero__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
}
.editorial-hero--downloads h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
}
.editorial-hero--downloads .lead {
  max-width: 920px;
}
.editorial-hero--downloads .support-teaser-card--hero {
  justify-self: stretch;
  max-width: none;
  min-height: auto;
  padding: clamp(28px, 4vw, 48px);
}


/* Unified category overview templates */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}
.category-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  font-weight: 850;
  color: #2c302d;
}
.category-products .section-heading {
  margin-bottom: 36px;
}
.category-products .product-list-grid {
  display: grid;
  gap: 22px;
}
.category-products .product-list-card {
  overflow: hidden;
}
.category-products .product-list-card__media img {
  width: 100%;
  height: 100%;
  max-height: 285px;
  object-fit: contain;
}
.category-products .product-card-actions .button {
  margin-top: 0;
}
.category-hero .hero__actions {
  margin-top: 30px;
}
@media (max-width: 760px) {
  .category-tags span {
    min-height: 38px;
    padding: 8px 12px;
    font-size: .9rem;
  }
}


/* Legal long text refinements */
.legal-content .index,
.legal-content .m-elements,
.legal-content .glossary {
  padding-left: 1.25rem;
}
.legal-content .index li,
.legal-content .m-elements li,
.legal-content .glossary li {
  margin-bottom: .75rem;
}
.legal-content a {
  word-break: break-word;
}


/* Kontaktformular: Inline-Erfolgsmeldung statt externer Formspree-Erfolgsseite */
.form-status {
  display: none;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-weight: 750;
  background: #f7f7f3;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  border-color: #1f5f3a;
  background: #edf7f0;
  color: #17462b;
}
.form-status.is-error {
  border-color: #8a2d2d;
  background: #fff1f1;
  color: #692121;
}
.contact-form button[disabled] {
  opacity: .65;
  cursor: wait;
}


/* Thule-artige Klicknavigation – Headerposition bleibt unverändert */
.site-header--thule { position: sticky; top: 0; z-index: 220; }
.main-nav--thule { display: flex; align-items: center; gap: 26px; }
.main-nav--thule .nav-link--button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: #252a27;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
.main-nav--thule .nav-link--button:hover,
.main-nav--thule .nav-link--button.is-active { color: #000; }
.nav-panel-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 210;
  pointer-events: none;
}
.nav-panel-layer.is-active { pointer-events: auto; }
.nav-panel {
  display: none;
  background: rgba(247, 247, 243, .992);
  border-top: 1px solid rgba(222,222,214,.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(17,19,18,.13);
  opacity: 0;
  transform: translateY(-12px);
}
.nav-panel.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: navPanelIn .22s ease both;
}
@keyframes navPanelIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.nav-panel__inner { padding: 26px 0 22px; }
.nav-panel__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  padding-bottom: 22px;
}
.nav-panel__head .eyebrow { grid-column: 1; margin: 0 0 8px; }
.nav-panel__head h2 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.nav-panel__close {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.nav-panel__grid--products {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: #fff;
  min-height: 400px;
}
.nav-panel__rail { border-right: 1px solid var(--line); background: #fff; }
.nav-panel__rail-item {
  width: 100%;
  min-height: 68px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 820;
  cursor: pointer;
}
.nav-panel__rail-item:hover,
.nav-panel__rail-item.is-active { background: #ddd4c4; }
.nav-panel__rail-item span:last-child { font-size: 1.4rem; font-weight: 500; }
.nav-panel__content { background: #ddd4c4; padding: clamp(28px, 4vw, 48px); }
.nav-section { display: none; }
.nav-section.is-active { display: block; animation: navSectionIn .18s ease both; }
@keyframes navSectionIn { from { opacity: .4; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
.nav-section__intro { max-width: 720px; margin-bottom: 28px; }
.nav-section__intro span,
.nav-simple-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17,19,18,.22);
  margin-bottom: 14px;
  font-weight: 850;
  font-size: .82rem;
}
.nav-section__intro h3 { margin: 0 0 12px; font-size: clamp(1.8rem, 3vw, 3.3rem); line-height: 1; letter-spacing: -.055em; }
.nav-section__intro p { margin: 0; color: #494b47; font-size: 1.05rem; line-height: 1.6; }
.nav-link-grid,
.nav-simple-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.nav-link-grid a,
.nav-simple-grid a {
  display: block;
  min-height: 118px;
  padding: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,19,18,.12);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-link-grid a:hover,
.nav-simple-grid a:hover { background: #fff; border-color: var(--ink); transform: translateY(-1px); }
.nav-link-grid strong,
.nav-simple-grid strong { display: block; font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.nav-link-grid small,
.nav-simple-grid small { display: block; color: var(--muted); line-height: 1.45; }
.nav-panel__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  font-weight: 850;
}
.nav-panel__footer a { border-bottom: 2px solid transparent; }
.nav-panel__footer a:hover { border-color: var(--ink); }
.nav-panel--simple .nav-panel__inner { max-width: var(--container); }
.nav-panel--simple .nav-simple-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body.nav-panel-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(17,19,18,.18);
  z-index: 180;
  pointer-events: none;
}
.site-header--thule { z-index: 230; }

@media (max-width: 980px) {
  .main-nav--thule {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
    z-index: 235;
  }
  .main-nav--thule.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease, visibility 0s;
  }
  .main-nav--thule .nav-link--button {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .main-nav--thule .button { margin-top: 14px; width: 100%; text-align: center; }
  .nav-panel-layer {
    position: fixed;
    top: 120px;
    bottom: 0;
    overflow: hidden;
    z-index: 240;
  }
  .nav-panel {
    height: 100%;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 1;
    box-shadow: -20px 0 60px rgba(17,19,18,.12);
    border-top: 1px solid var(--line);
  }
  .nav-panel.is-open { animation: navPanelMobileIn .24s ease both; }
  @keyframes navPanelMobileIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .nav-panel__inner { padding: 0; width: 100%; }
  .nav-panel__head { padding: 18px 20px; border-bottom: 1px solid var(--line); background: #fff; }
  .nav-panel__head h2 { font-size: clamp(2rem, 10vw, 3.4rem); }
  .nav-panel__grid--products { grid-template-columns: 1fr; border-left: 0; border-right: 0; min-height: 0; }
  .nav-panel__rail { border-right: 0; }
  .nav-panel__rail-item { min-height: 62px; padding: 0 20px; }
  .nav-panel__content { padding: 0; background: #ddd4c4; }
  .nav-section { padding: 24px 20px 30px; }
  .nav-link-grid,
  .nav-simple-grid,
  .nav-panel--simple .nav-simple-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 20px 24px; }
  .nav-panel--products .nav-link-grid { padding: 0; }
  .nav-link-grid a,
  .nav-simple-grid a { min-height: 0; padding: 18px; }
  .nav-panel__footer { padding: 18px 20px 28px; flex-direction: column; background: #fff; }
  body.nav-panel-open { overflow: hidden; }
  body.nav-panel-open::after { display: none; }
}
@media (max-width: 640px) {
  .main-nav--thule { top: 113px; }
  .nav-panel-layer { top: 113px; }
}


/* Robuste mobile Navigation: eigenes Accordion statt Desktop-Mega-Menü */
.mobile-nav-menu {
  display: none;
}

@media (max-width: 980px) {
  .main-nav--thule > .nav-link--button {
    display: none !important;
  }

  .nav-panel-layer {
    display: none !important;
  }

  .mobile-nav-menu {
    display: block;
    width: 100%;
  }

  .mobile-nav-group {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }

  .mobile-nav-group summary {
    list-style: none;
    cursor: pointer;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 850;
    font-size: 1.05rem;
    color: var(--ink);
    user-select: none;
  }

  .mobile-nav-group summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-group summary::after {
    content: "＋";
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
  }

  .mobile-nav-group[open] summary::after {
    content: "−";
  }

  .mobile-nav-links {
    display: grid;
    gap: 10px;
    padding: 0 0 16px;
  }

  .mobile-nav-links a {
    display: block;
    padding: 15px 16px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
  }

  .mobile-nav-links a strong {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .mobile-nav-links a span {
    display: block;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.35;
  }

  .main-nav--thule .button {
    margin-top: 18px;
  }
}


/* HARD FIX Mobile Navigation 2026-06-02
   Eigenes Mobile-Accordion, Desktop-Panels auf Mobile komplett ausblenden. */
@media (max-width: 980px) {
  header.site-header--thule .main-nav--thule > button.nav-link--button {
    display: none !important;
  }

  header.site-header--thule .nav-panel-layer,
  header.site-header--thule .nav-panel,
  header.site-header--thule .nav-panel__content,
  header.site-header--thule .nav-section {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  header.site-header--thule .main-nav--thule .mobile-nav-menu {
    display: block !important;
    width: 100%;
  }

  header.site-header--thule .mobile-nav-menu details {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  header.site-header--thule .mobile-nav-menu summary {
    list-style: none;
    cursor: pointer;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 850;
    font-size: 1.05rem;
    color: var(--ink);
  }

  header.site-header--thule .mobile-nav-menu summary::-webkit-details-marker {
    display: none;
  }

  header.site-header--thule .mobile-nav-menu summary::after {
    content: "＋";
    font-size: 1.2rem;
    font-weight: 600;
  }

  header.site-header--thule .mobile-nav-menu details[open] summary::after {
    content: "−";
  }

  header.site-header--thule .mobile-nav-links {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 16px;
  }

  header.site-header--thule .mobile-nav-links a {
    display: block !important;
    padding: 15px 16px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
  }

  header.site-header--thule .mobile-nav-links a strong,
  header.site-header--thule .mobile-nav-links a span {
    display: block !important;
  }

  header.site-header--thule .mobile-nav-links a strong {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  header.site-header--thule .mobile-nav-links a span {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.35;
    font-weight: 500;
  }

  header.site-header--thule .main-nav--thule > .button {
    margin-top: 18px;
    width: 100%;
    text-align: center;
  }
}


/* Optischer Feinschliff Mobile Navigation: keine Unterbeschreibungen mehr */
@media (max-width: 980px) {
  header.site-header--thule .mobile-nav-links a {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  header.site-header--thule .mobile-nav-links a strong {
    margin-bottom: 0;
  }
}


/* Optik-Fix: Mobile Navigationspunkte ohne Kartenrahmen */
@media (max-width: 980px) {
  header.site-header--thule .mobile-nav-links a {
    border: 0 !important;
    background: transparent !important;
    padding-left: 0;
    padding-right: 0;
  }
}


/* Optik-Fix: Mobile Unterpunkte dezenter als Hauptkategorien */
@media (max-width: 980px) {
  header.site-header--thule .mobile-nav-links {
    gap: 0;
    padding: 2px 0 18px 18px;
    margin-left: 2px;
    border-left: 1px solid rgba(17, 19, 18, .16);
  }

  header.site-header--thule .mobile-nav-links a {
    position: relative;
    padding: 10px 0 10px 18px !important;
    color: rgba(17, 19, 18, .76);
  }

  header.site-header--thule .mobile-nav-links a::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    width: 10px;
    height: 1px;
    background: rgba(17, 19, 18, .22);
  }

  header.site-header--thule .mobile-nav-links a strong {
    font-weight: 520 !important;
    font-size: .96rem;
    letter-spacing: -.01em;
    color: rgba(17, 19, 18, .78);
  }

  header.site-header--thule .mobile-nav-links a:active strong,
  header.site-header--thule .mobile-nav-links a:hover strong {
    color: var(--ink);
  }
}


/* Optik-Fix: Desktop-Navigation ohne Unterbeschreibungen */
@media (min-width: 981px) {
  header.site-header--thule .nav-panel .nav-link-grid small,
  header.site-header--thule .nav-panel .nav-simple-grid small {
    display: none !important;
  }

  header.site-header--thule .nav-panel .nav-link-grid a,
  header.site-header--thule .nav-panel .nav-simple-grid a {
    min-height: 86px;
    display: flex;
    align-items: center;
  }

  header.site-header--thule .nav-panel .nav-link-grid strong,
  header.site-header--thule .nav-panel .nav-simple-grid strong {
    margin-bottom: 0;
  }
}


/* Optik-Fix: Desktop-Produktfamilien in der Navigation kompakter */
@media (min-width: 981px) {
  header.site-header--thule .nav-panel--products .nav-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  header.site-header--thule .nav-panel--products .nav-link-grid a {
    min-height: 92px;
  }
}


/* Optik-Fix: Desktop-Navigation ohne Nummern-Kästchen */
@media (min-width: 981px) {
  header.site-header--thule .nav-section__intro > span,
  header.site-header--thule .nav-simple-grid > a > span {
    display: none !important;
  }

  header.site-header--thule .nav-section__intro {
    margin-bottom: 28px;
  }

  header.site-header--thule .nav-simple-grid a {
    padding-top: 28px;
  }
}


/* Optik-Fix: Entdecken und Support als Listen-Navigation wie Produkte */
@media (min-width: 981px) {
  header.site-header--thule .nav-panel--discover-list .nav-link-grid,
  header.site-header--thule .nav-panel--support-list .nav-link-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 520px;
  }

  header.site-header--thule .nav-panel--discover-list .nav-link-grid a,
  header.site-header--thule .nav-panel--support-list .nav-link-grid a {
    min-height: 86px;
    display: flex;
    align-items: center;
  }

  header.site-header--thule .nav-panel--discover-list .nav-panel__grid--products,
  header.site-header--thule .nav-panel--support-list .nav-panel__grid--products {
    min-height: 330px;
  }
}


/* Optik-Fix: Entdecken und Support im Desktop-Menü als Direktliste ohne rechten Bereich */
@media (min-width: 981px) {
  header.site-header--thule .nav-panel__grid--direct-list {
    display: block;
    max-width: 520px;
    min-height: 0;
    border: 1px solid var(--line);
    background: #fff;
  }

  header.site-header--thule .nav-panel__grid--direct-list .nav-panel__rail {
    border-right: 0;
  }

  header.site-header--thule .nav-panel__rail-link {
    color: var(--ink);
    text-decoration: none;
  }

  header.site-header--thule .nav-panel__rail-link:hover {
    background: #ddd4c4;
  }
}


/* Desktop-Navigation kompakter 2026-06-03 */
@media (min-width: 981px) {
  header.site-header--thule .nav-panel__inner {
    padding: 20px 0 8px;
  }

  header.site-header--thule .nav-panel__head {
    gap: 18px;
    margin-bottom: 12px;
  }

  header.site-header--thule .nav-panel__head h2 {
    font-size: clamp(2.15rem, 3.1vw, 3.35rem);
    line-height: 0.95;
    max-width: 16ch;
  }

  header.site-header--thule .nav-panel__close {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }

  header.site-header--thule .nav-panel__grid--products {
    grid-template-columns: 405px minmax(0, 1fr);
    min-height: 400px;
  }

  header.site-header--thule .nav-panel__rail button,
  header.site-header--thule .nav-panel__rail a {
    padding: 20px 24px;
    gap: 14px;
    font-size: 1rem;
  }

  header.site-header--thule .nav-panel__content {
    padding: 28px 34px 24px;
    gap: 18px;
  }

  header.site-header--thule .nav-panel__content-title {
    font-size: clamp(1.8rem, 2.8vw, 3.05rem);
    line-height: 0.95;
  }

  header.site-header--thule .nav-panel__content-text {
    max-width: 760px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  header.site-header--thule .nav-panel__content-cards {
    gap: 12px;
  }

  header.site-header--thule .nav-panel__content-card {
    min-height: 86px;
    padding: 20px 22px;
  }

  header.site-header--thule .nav-panel__content-card strong {
    font-size: 0.98rem;
  }

  header.site-header--thule .nav-panel__content-links {
    gap: 18px;
  }

  header.site-header--thule .nav-panel__grid--direct-list {
    max-width: 480px;
    min-height: 0;
  }
}

/* Optik-Fix: Desktop-Menü kompakter */
@media (min-width: 981px) {
  header.site-header--thule .nav-panel__inner {
    padding: 28px 0 20px;
  }

  header.site-header--thule .nav-panel__head {
    margin-bottom: 18px;
    gap: 18px;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  header.site-header--thule .nav-panel__eyebrow {
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  header.site-header--thule .nav-panel__head h2 {
    margin: 0;
    max-width: none !important;
    white-space: nowrap;
    line-height: 0.96;
    font-size: clamp(2.5rem, 4.1vw, 4.35rem);
  }

  header.site-header--thule .nav-panel__close {
    width: 54px;
    height: 54px;
    margin-top: 2px;
  }

  header.site-header--thule .nav-grid {
    min-height: 0;
    gap: 0;
  }

  header.site-header--thule .nav-level1 {
    min-height: 0;
  }

  header.site-header--thule .nav-level1__item {
    min-height: 92px;
    padding: 0 28px;
  }

  header.site-header--thule .nav-level1__item .title {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  header.site-header--thule .nav-level2 {
    padding: 28px 34px;
    min-height: 0;
  }

  header.site-header--thule .nav-level2__header {
    margin-bottom: 18px;
  }

  header.site-header--thule .nav-level2__title {
    font-size: clamp(2.15rem, 3.4vw, 3.95rem);
    line-height: 0.98;
    margin-bottom: 10px;
  }

  header.site-header--thule .nav-level2__desc {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 0;
  }

  header.site-header--thule .nav-level2__cards {
    gap: 16px;
    margin-top: 18px;
  }

  header.site-header--thule .nav-card {
    min-height: 122px;
    padding: 18px 22px;
  }

  header.site-header--thule .nav-card__title {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  header.site-header--thule .nav-panel__footer {
    padding-top: 14px;
    margin-top: 14px;
  }
}


/* Optik-Fix: Unterkategorien im Desktop-Menü schmaler */
@media (min-width: 981px) {
  header.site-header--thule .nav-panel__grid--products {
    grid-template-columns: 335px minmax(0, 1fr) !important;
    min-height: 0 !important;
  }

  header.site-header--thule .nav-panel__rail-item {
    min-height: 54px !important;
    padding: 0 18px !important;
    font-size: .92rem !important;
  }

  header.site-header--thule .nav-panel__rail-item span:first-child {
    line-height: 1.15;
  }

  header.site-header--thule .nav-panel__rail-item span:last-child {
    font-size: 1.05rem !important;
  }

  header.site-header--thule .nav-panel__content {
    padding: 22px 30px 22px !important;
  }

  header.site-header--thule .nav-section__intro {
    margin-bottom: 18px !important;
  }

  header.site-header--thule .nav-section__intro h3 {
    font-size: clamp(1.65rem, 2.7vw, 3.15rem) !important;
  }

  header.site-header--thule .nav-section__intro p {
    font-size: .92rem !important;
    line-height: 1.35 !important;
  }

  header.site-header--thule .nav-link-grid {
    gap: 12px !important;
  }

  header.site-header--thule .nav-link-grid a {
    min-height: 72px !important;
    padding: 16px 18px !important;
  }

  header.site-header--thule .nav-link-grid strong {
    font-size: .94rem !important;
  }

  header.site-header--thule .nav-panel__footer {
    padding-top: 10px !important;
    margin-top: 8px !important;
  }

  header.site-header--thule .nav-panel__inner {
    padding-bottom: 12px !important;
  }

  header.site-header--thule .nav-panel__grid--direct-list {
    max-width: 335px !important;
  }
}


/* Optik-Fix: Footer auf Produktseiten wie Startseiten-Footer */
.site-footer {
  background: #0f1111;
  color: #fff;
  padding: 70px 0 28px;
}

.site-footer p {
  color: rgba(255,255,255,.68);
  max-width: 300px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 18px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,.78);
  margin: 8px 0;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer__bottom a {
  display: inline;
  color: #fff;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 54px 0 28px;
  }

  .site-footer .footer__grid {
    gap: 34px;
  }

  .site-footer .footer__bottom {
    flex-direction: column;
  }
}


/* Optik-Fix: Produktübersicht-Hero Titel kollidiert nicht mit Bild */
@media (min-width: 981px) {
  .category-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(36px, 4vw, 58px);
  }

  .category-hero__grid > * {
    min-width: 0;
  }

  .category-hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 5.8vw, 6.05rem);
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .category-hero__image {
    min-height: 470px;
  }

  .category-hero__image img {
    max-height: 420px;
    max-width: 100%;
  }
}


/* Optik-Fix: Breadcrumb auf Mobile läuft nicht über den Rand */
@media (max-width: 640px) {
  .breadcrumb {
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    font-size: .78rem;
    line-height: 1.25;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb a,
  .breadcrumb span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .breadcrumb span:last-child {
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* Optik-Fix: Mobile Produktseiten Breadcrumb und Titel bleiben im Viewport */
@media (max-width: 640px) {
  .product-hero,
  .product-detail-hero,
  .product-page-hero {
    overflow: hidden;
  }

  .breadcrumb {
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    font-size: .78rem;
    line-height: 1.25;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb a,
  .breadcrumb span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .breadcrumb span:last-child {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-hero h1,
  .product-detail-hero h1,
  .product-page-hero h1,
  .product-hero__copy h1,
  .product-detail__copy h1,
  .product-detail h1 {
    max-width: 100%;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    font-size: clamp(3.05rem, 14vw, 4.5rem);
    line-height: .92;
    letter-spacing: -.075em;
  }

  .product-hero .lead,
  .product-detail-hero .lead,
  .product-page-hero .lead,
  .product-hero__copy .lead,
  .product-detail__copy .lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__actions,
  .product-hero .hero__actions,
  .product-detail-hero .hero__actions {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}


/* Mobile Produktseiten: Overflow-Fix für Breadcrumbs, Überschriften, Buttons, Kacheln und Bilder */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .product-hero,
  .product-detail-hero,
  .product-page-hero,
  .product-detail,
  .product-page,
  .product-content,
  .product-sections,
  .product-gallery,
  .product-media,
  .product-visual,
  .product-section,
  .product-layout,
  .container,
  .content,
  .inner,
  .wrapper {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .breadcrumb {
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb a,
  .breadcrumb span,
  .breadcrumb li {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .breadcrumb span:last-child,
  .breadcrumb li:last-child {
    max-width: 48vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-hero h1,
  .product-detail-hero h1,
  .product-page-hero h1,
  .product-detail h1,
  .product-page h1,
  .product-hero__copy h1,
  .product-detail__copy h1,
  .hero__content h1,
  .hero__copy h1,
  h1.product-title,
  h1.page-title {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    font-size: clamp(2.7rem, 12.5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

  .product-hero p,
  .product-detail p,
  .product-page p,
  .product-section p,
  .product-section li,
  .product-copy p,
  .product-copy li,
  .spec-card,
  .spec-card *,
  .tech-card,
  .tech-card *,
  .detail-card,
  .detail-card *,
  .product-card,
  .product-card * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .hero__actions,
  .product-hero .hero__actions,
  .product-detail-hero .hero__actions,
  .product-actions,
  .cta-row,
  .button-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero__actions > *,
  .product-hero .hero__actions > *,
  .product-detail-hero .hero__actions > *,
  .product-actions > *,
  .cta-row > *,
  .button-row > * {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
  }

  .btn,
  .button,
  .cta-button {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .spec-grid,
  .specs-grid,
  .details-grid,
  .facts-grid,
  .feature-grid,
  .info-grid,
  .stats-grid,
  .tech-grid,
  .technical-data-grid,
  .cards-grid,
  .card-grid,
  .product-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .spec-grid > *,
  .specs-grid > *,
  .details-grid > *,
  .facts-grid > *,
  .feature-grid > *,
  .info-grid > *,
  .stats-grid > *,
  .tech-grid > *,
  .technical-data-grid > *,
  .cards-grid > *,
  .card-grid > *,
  .product-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
    height: auto;
  }

  .product-gallery img,
  .product-image img,
  .product-visual img,
  .product-media img,
  .media-panel img,
  .feature-image img,
  .image-card img,
  picture img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
}


/* Mobile Produktseiten: finaler sauberer Umbruch für Breadcrumb, Titel, Text, Buttons und Quickfacts */
@media (max-width: 768px) {
  .product-hero,
  .product-hero__grid,
  .product-hero__copy,
  .product-detail,
  .product-page,
  .product-section,
  .product-sections,
  .product-gallery,
  .gallery-layout,
  .gallery-stage,
  .gallery-thumbs,
  .product-quickfacts,
  .product-hero__media,
  .container {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .product-hero__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    overflow: hidden;
  }

  .product-hero__copy {
    overflow: hidden;
  }

  .product-hero .breadcrumb,
  .product-detail .breadcrumb,
  .breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 8px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    white-space: normal !important;
    font-size: .78rem !important;
    line-height: 1.35 !important;
  }

  .product-hero .breadcrumb a,
  .product-hero .breadcrumb span,
  .product-detail .breadcrumb a,
  .product-detail .breadcrumb span,
  .breadcrumb a,
  .breadcrumb span {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .product-hero .breadcrumb span:last-child,
  .product-detail .breadcrumb span:last-child,
  .breadcrumb span:last-child {
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .product-hero h1,
  .product-hero__copy h1,
  #product-title {
    display: block !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
    font-size: clamp(2.65rem, 12vw, 4rem) !important;
    line-height: .95 !important;
    letter-spacing: -.055em !important;
  }

  .product-type,
  .product-hero .lead,
  .product-hero__copy .lead,
  .product-hero__copy p,
  .product-detail p,
  .product-section p,
  .product-section li {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
  }

  .product-hero__actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .product-hero__actions .button,
  .product-hero__actions a {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .product-quickfacts {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .product-quickfacts > div,
  .product-quickfacts dt,
  .product-quickfacts dd {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  .product-hero__media,
  .gallery-stage,
  .product-split__image,
  .product-image,
  .image-card {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-hero__media img,
  .gallery-stage img,
  .product-split__image img,
  .product-image img,
  .image-card img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}


/* MOBILE STICKY HEADER FINAL 2026-06-04 */
@media (max-width: 980px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    padding-top: 79px;
  }

  header.site-header--thule,
  .site-header.site-header--thule {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 5000 !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  header.site-header--thule .header__inner {
    min-height: 78px;
  }

  header.site-header--thule .main-nav--thule {
    position: fixed !important;
    top: 78px !important;
    left: 0 !important;
    right: 0 !important;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 4999 !important;
  }

  .product-nav {
    top: 78px !important;
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 980px) {
    header.site-header--thule .main-nav--thule {
      max-height: calc(100vh - 78px);
    }
  }
}
/* END MOBILE STICKY HEADER FINAL 2026-06-04 */

