/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  color: #000;
  background: #fff;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  --blue: #3677b9;
  --header-height: 140px;
  --header-height-scrolled: 50px;
  --logo-offset-left: 25px;
  --logo-offset-top: 20px;
  --logo-height: 100px;
  --logo-height-scrolled: 24px;
  --font-text: "neue-haas-grotesk-text", sans-serif;
  --font-display: "neue-haas-grotesk-display", sans-serif;
  --menu-open-header-height: var(--header-height-scrolled);
  --menu-title-col: minmax(180px, 22%);
  --menu-grid-gap: 24px;
  --menu-section-gap: 30px;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--header-height);
  background: #fff;
  transition: height 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding: 0 25px var(--logo-offset-top) var(--logo-offset-left);
}

.site-logo {
  flex-shrink: 0;
  display: block;
  height: var(--logo-height);
}

.site-logo img {
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: height 0.3s ease;
}

/* Scrolled header (closed menu) */
body.product-detail-page:not(.menu-open),
body.is-scrolled:not(.menu-open) {
  --header-height: var(--header-height-scrolled);
  --logo-height: var(--logo-height-scrolled);
}

body.product-detail-page:not(.menu-open) .header-inner,
body.is-scrolled:not(.menu-open) .header-inner {
  align-items: center;
  padding: 0 25px;
}

body.product-detail-page:not(.menu-open) .nav-list,
body.is-scrolled:not(.menu-open) .nav-list {
  display: none;
}

body.product-detail-page:not(.menu-open) .burger-toggle,
body.is-scrolled:not(.menu-open) .burger-toggle {
  align-items: center;
  padding: 0;
}

body.product-detail-page:not(.menu-open) .burger-toggle .burger-icon,
body.is-scrolled:not(.menu-open) .burger-toggle .burger-icon {
  transform: none;
}

.main-nav {
  display: flex;
  align-items: flex-end;
  gap: 36px;
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

.nav-list a {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--blue);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  opacity: 0.75;
}

.burger-toggle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  min-width: 0;
  min-height: 0;
  padding: 12px 0 0;
}

.burger-toggle .burger-icon {
  width: 23px;
  height: auto;
  transform: translateY(-7px);
  transition: none;
}

.burger-toggle .close-icon {
  display: none;
  color: var(--blue);
  transform: none;
  transition: none;
}

body.menu-open .burger-toggle .burger-icon {
  display: none;
}

body.menu-open .burger-toggle .close-icon {
  display: block;
}

.burger-toggle:hover,
.burger-toggle:focus-visible {
  opacity: 0.75;
}

.menu-lang {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
}

body.menu-open .menu-lang {
  display: flex;
}

body.menu-open .nav-list {
  display: none;
}

.menu-lang a.is-active {
  font-weight: 700;
}

.menu-lang a:not(.is-active) {
  font-weight: 400;
}

.menu-lang span {
  opacity: 0.6;
}

/* Full-screen menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  height: 100dvh;
  overflow: hidden;
  background: #fff;
  padding-top: var(--header-height);
}

.nav-overlay.is-open {
  display: flex;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-overlay {
  padding-top: var(--menu-open-header-height);
}

body.menu-open .site-header {
  height: var(--menu-open-header-height);
  transition: none;
}

body.menu-open .header-inner {
  position: relative;
  display: grid;
  grid-template-columns: var(--menu-title-col) repeat(4, minmax(0, 1fr));
  column-gap: var(--menu-grid-gap);
  align-items: center;
  padding: 0 25px;
}

body.menu-open .site-logo {
  grid-column: 1;
}

body.menu-open .site-logo,
body.menu-open .site-logo img {
  height: var(--logo-height-scrolled);
  transition: none;
}

body.menu-open .menu-lang {
  grid-column: 5;
  justify-self: start;
  margin: 0;
}

body.menu-open .main-nav {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
}

body.menu-open .burger-toggle {
  align-items: center;
  padding: 0;
}

body.menu-open .burger-toggle .close-icon {
  transform: none;
}

.menu-scroll {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-rule {
  flex-shrink: 0;
  height: 1px;
  margin: 0 25px;
  border: none;
  background: var(--blue);
}

.menu-spacer {
  flex: 1 1 var(--menu-section-gap);
  min-height: var(--menu-section-gap);
}

.menu-section {
  display: grid;
  grid-template-columns: var(--menu-title-col) repeat(4, minmax(0, 1fr));
  column-gap: var(--menu-grid-gap);
  row-gap: 2px;
  align-items: start;
  flex-shrink: 0;
  padding: 10px 25px 0;
}

.menu-section-title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  color: #000;
  transition: color 0.15s ease;
}

.menu-section-title:hover,
.menu-section-title a:hover,
.menu-section-title a:focus-visible {
  color: var(--blue);
}

.menu-section-title a {
  color: inherit;
  text-decoration: none;
}

.menu-sub-link {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
}

.menu-sub-link:hover,
.menu-sub-link:focus-visible {
  color: var(--blue);
}

.menu-section > .menu-sub-link:nth-child(2) {
  grid-column: 2;
}

.menu-section > .menu-sub-link:nth-child(3) {
  grid-column: 3;
}

.menu-section > .menu-sub-link:nth-child(4) {
  grid-column: 4;
}

.menu-section > .menu-sub-link:nth-child(5) {
  grid-column: 5;
}

.menu-section--products {
  padding-top: 8px;
}

.menu-section--products .menu-product-col:nth-child(2) {
  grid-column: 2;
}

.menu-section--products .menu-product-col:nth-child(3) {
  grid-column: 3;
}

.menu-section--products .menu-product-col:nth-child(4) {
  grid-column: 4;
}

.menu-section--products .menu-product-col:nth-child(5) {
  grid-column: 5;
}

.menu-product-col {
  min-width: 0;
}

.menu-product-cat {
  margin: 0 0 8px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
}

.menu-product-cat a {
  color: inherit;
  text-decoration: none;
}

.menu-product-cat a:hover,
.menu-product-cat a:focus-visible {
  color: var(--blue);
}

.menu-product-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.menu-product-links li {
  margin: 0;
  padding: 0;
}

.menu-product-links .menu-sub-link {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 112%;
  letter-spacing: 0.01em;
}

.menu-kontakt-content {
  grid-column: 2 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.menu-section--kontakt .menu-newsletter-link {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--blue);
  white-space: nowrap;
}

.menu-section--kontakt .menu-newsletter-link:hover,
.menu-section--kontakt .menu-newsletter-link:focus-visible {
  opacity: 0.75;
}

.menu-kontakt-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 3px;
}

.menu-newsletter-form {
  display: flex;
  align-items: center;
  width: min(100%, 320px);
  height: 40px;
  margin-left: -5px;
  background: #e5f2fc;
  border-radius: 999px;
  overflow: hidden;
}

.menu-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 8px 16px;
  border: none;
  background: transparent;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  color: #000;
  outline: none;
}

.menu-newsletter-form input::placeholder {
  color: var(--blue);
  opacity: 1;
}

.menu-newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.menu-newsletter-form button img {
  display: block;
}

.menu-footer {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  padding: 0 25px 25px;
}

.menu-footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: var(--blue);
}

.menu-footer-legal a:hover,
.menu-footer-legal a:focus-visible {
  opacity: 0.75;
}

.menu-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--blue);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.menu-catalog-btn img {
  display: block;
}

.menu-catalog-btn:hover,
.menu-catalog-btn:focus-visible {
  opacity: 0.9;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
main {
  padding-top: var(--header-height);
  transition: padding-top 0.3s ease;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 480px;
  overflow: hidden;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero-tagline {
  position: absolute;
  left: 0;
  bottom: 75px;
  max-width: 75%;
  margin: 0;
  padding: 0 25px;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Leistungen intro
   -------------------------------------------------------------------------- */
.leistungen-intro {
  padding: 40px 25px 20px;
  background: #fff;
}

.leistungen-intro-inner {
  width: 100%;
}

.leistungen-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--blue);
}

.leistungen-headline {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  color: #000;
}

.leistungen-intro-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}

.leistungen-intro-content {
  grid-column: 1 / span 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.leistungen-intro-content .btn-primary,
.nachhaltigkeit-cta .btn-primary {
  padding: 13px 22px 14px 24px;
  gap: 8px;
}

.leistungen-intro-content .btn-primary {
  margin-left: -3px;
}

.leistungen-body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--blue);
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  opacity: 0.9;
}

.btn-primary__icon {
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-primary__icon,
.btn-primary:focus-visible .btn-primary__icon {
  transform: translateX(3px);
}

.leistungen-intro-image {
  grid-column: 9 / span 4;
  width: 100%;
  height: auto;
  min-width: 0;
  margin-bottom: 40px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Produkte intro
   -------------------------------------------------------------------------- */
.produkte-intro {
  padding: 40px 25px;
  background: #e5f2fc;
}

.produkte-intro-inner {
  width: 100%;
}

.produkte-eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--blue);
}

.produkte-category {
  padding-bottom: 30px;
}

.produkte-rule {
  height: 1px;
  margin: 0 0 16px;
  border: none;
  background: var(--blue);
}

.produkte-intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0;
}

.produkte-category-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  color: #000;
}

.produkte-category-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.produkte-category-title a:hover,
.produkte-category-title a:focus-visible {
  color: var(--blue);
}

.produkte-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}

.produkte-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.produkte-list a {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
}

.produkte-list a:hover,
.produkte-list a:focus-visible {
  color: var(--blue);
}

/* --------------------------------------------------------------------------
   Nachhaltigkeit
   -------------------------------------------------------------------------- */
.nachhaltigkeit-intro {
  background: #fff;
}

.nachhaltigkeit-intro-header,
.nachhaltigkeit-intro-body {
  padding-left: 25px;
  padding-right: 25px;
}

.nachhaltigkeit-intro-header {
  padding-top: 40px;
}

.nachhaltigkeit-hero-image {
  display: block;
  width: calc(100% - 50px);
  height: auto;
  margin: 0 25px;
  object-fit: cover;
}

.nachhaltigkeit-intro-body {
  padding-top: 40px;
  padding-bottom: 40px;
}

.nachhaltigkeit-columns {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}

.nachhaltigkeit-col:first-child {
  grid-column: 1 / span 5;
}

.nachhaltigkeit-col:last-child {
  grid-column: 7 / span 5;
}

.nachhaltigkeit-sub-eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--blue);
}

.nachhaltigkeit-rule {
  height: 1px;
  margin: 0 0 17px;
  border: none;
  background: var(--blue);
}

.nachhaltigkeit-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.nachhaltigkeit-cta .btn-primary {
  margin-top: 0;
}

.section-divider {
  height: 1px;
  margin: 0 25px;
  border: none;
  background: var(--blue);
}

/* --------------------------------------------------------------------------
   Site footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--blue);
  color: #fff;
  padding-bottom: 25px;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  row-gap: 28px;
  padding: 40px 25px 5px;
}

.site-footer-logo {
  grid-column: 1 / span 6;
  grid-row: 1;
  align-self: start;
  margin-bottom: 20px;
}

.site-footer-logo img {
  display: block;
  width: auto;
  height: 32px;
  filter: brightness(0) invert(1);
}

.site-footer-catalog {
  grid-column: 7 / span 6;
  grid-row: 1;
  justify-self: end;
  align-self: start;
}

.site-footer-newsletter {
  grid-column: 9 / span 4;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  align-items: center;
  align-self: end;
  container-type: inline-size;
}

.site-footer-newsletter-text {
  margin: 0;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: left;
}

.newsletter-unseren-narrow,
.newsletter-br-narrow {
  display: none;
}

@container (max-width: 240px) {
  .newsletter-unseren-wide,
  .newsletter-br-wide {
    display: none;
  }

  .newsletter-unseren-narrow {
    display: inline;
  }

  .newsletter-br-narrow {
    display: inline;
  }
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  width: calc(100% + 13px);
  margin-left: -13px;
  height: 34px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 6px 14px;
  border: none;
  background: transparent;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: var(--blue);
  opacity: 1;
}

.footer-newsletter-form button img {
  display: block;
}

.footer-newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.site-footer-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 20px;
  row-gap: 0;
}

.site-footer-col-title {
  margin: 0 0 8px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff;
}

.site-footer-col-title a {
  color: inherit;
  text-decoration: none;
}

.site-footer-col-title a:hover,
.site-footer-col-title a:focus-visible {
  opacity: 0.75;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-footer-links a {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #fff;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  opacity: 0.75;
}

.site-footer-legal {
  grid-column: 1 / span 6;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #fff;
}

.site-footer-legal a {
  color: inherit;
  text-decoration: none;
}

.site-footer-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
}

.site-footer-catalog img {
  display: block;
}

.site-footer-catalog:hover,
.site-footer-catalog:focus-visible,
.site-footer-legal a:hover,
.site-footer-legal a:focus-visible {
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Produkte page
   -------------------------------------------------------------------------- */
.hero--image {
  height: calc(100vh - var(--header-height) - 40px);
}

.hero--image .hero-media {
  object-position: center;
}

.product-category {
  --category-color: var(--blue);
  scroll-margin-top: var(--header-height);
}

.product-category-bar {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 25px;
  background: var(--category-color);
}

.product-category-eyebrow {
  margin: 0;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

.product-category-eyebrow a {
  color: inherit;
  text-decoration: none;
}

.product-grid {
  --product-line-gap: 24px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 25px;
}

.product-card {
  position: relative;
  grid-column: span 6;
  display: block;
  padding: 12px 0 22px;
  color: inherit;
  text-decoration: none;
}

.product-card:nth-child(odd) {
  padding-left: 25px;
  padding-right: calc(var(--product-line-gap) / 2);
}

.product-card:nth-child(even) {
  padding-left: calc(var(--product-line-gap) / 2);
  padding-right: 25px;
}

.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background: var(--category-color);
}

.product-card:nth-child(odd)::after {
  left: 25px;
  right: calc(var(--product-line-gap) / 2);
}

.product-card:nth-child(even)::after {
  left: calc(var(--product-line-gap) / 2);
  right: 25px;
}

.product-card:nth-last-child(1):nth-child(odd)::after,
.product-card:nth-last-child(1):nth-child(even)::after,
.product-card:nth-last-child(2):nth-child(odd)::after {
  display: none;
}

.product-card:hover .product-card__title,
.product-card:focus-visible .product-card__title {
  color: var(--category-color);
}

.product-card__icon {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.product-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: 110%;
  color: #000;
  transition: color 0.2s ease;
}

.product-card__teaser {
  margin: 0;
  max-width: 520px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
}

/* --------------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------------- */
.product-detail {
  --category-color: var(--blue);
  padding-top: var(--header-height);
}

.product-detail-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 40px 25px 0;
}

.product-detail__icon {
  display: block;
  width: 60px;
  height: 60px;
}

.product-detail-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  color: #000;
}

.product-detail-intro {
  padding: 40px 25px;
}

.product-detail-intro-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  align-items: start;
}

.product-detail-intro-main {
  grid-column: 1 / span 5;
}

.product-detail-body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
}

.product-detail-sidebar {
  grid-column: 10 / span 3;
}

.product-detail-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--category-color);
}

.product-detail-rule {
  margin: 0 0 16px;
  border: none;
  border-top: 1px solid var(--category-color);
}

.product-detail-sidebar .produkte-list li {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
}

.product-detail-section {
  padding: 0 25px 60px;
}

.product-detail-section--last {
  padding-bottom: 80px;
}

.product-detail-figure {
  margin: 0;
}

.product-detail-figure img {
  width: 50%;
  height: auto;
}

.product-detail-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.product-detail-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: var(--font-text);
  line-height: 130%;
  color: #000;
}

.product-detail-table th,
.product-detail-table td {
  padding: 12px 16px;
  border: 1px solid var(--category-color);
  text-align: left;
  vertical-align: top;
}

.product-detail-table thead th,
.product-detail-table tbody th {
  font-size: 16px;
  font-weight: 500;
}

.product-detail-table td {
  font-size: 16px;
  font-weight: 400;
}
