/* ==========================================================================
   PICO Food – Theme-Stylesheet
   Nachbau des Relaunch-Entwurfs 2025
   ========================================================================== */

:root {
  --color-dynamic: #1d58a2;
  --text: #191a23;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 28px;
  line-height: 0.9;
}

h3,
h4,
h5,
h6 {
  font-size: 36px;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--color-dynamic);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

button {
  font: inherit;
}

/* --------------------------------------------------------------------------
   Generische Bausteine
   -------------------------------------------------------------------------- */

.l-section {
  width: 100%;
  background-size: cover;
  background-repeat: repeat;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 75px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  color: var(--color-dynamic);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow--center {
  text-align: center;
}

.title-lg {
  margin: 15px 0 25px;
  font-size: 30px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Kopfbereich
   -------------------------------------------------------------------------- */

.site-header {
  position: relative;
  display: block;
  height: 100px;
  text-align: left;
}

.site-header__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header__gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.header-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header-nav {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-logo {
  width: 20%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.header-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-logo img {
  height: 100px;
  width: auto;
}

.header-spacer {
  width: 40%;
}

/* Desktop-Menü */

.header-menu {
  display: flex;
}

.header-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu li {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.header-menu a {
  display: flex;
  align-items: center;
  padding: 20px 15px;
  font-size: 17px;
  color: var(--text);
  border: 0 solid transparent;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.header-menu li:hover > a {
  color: var(--color-dynamic);
}

.header-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #fff;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}

.header-menu .sub-menu a {
  padding: 20px 15px;
}

.header-menu .has-children > a::after {
  content: "";
  width: 0.35em;
  height: 0.35em;
  margin-left: 0.5em;
  border-right: 0.1em solid;
  border-top: 0.1em solid;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out;
}

/* Mobiles Menü */

.header-mobile {
  position: relative;
  z-index: 10002;
  display: none;
}

.mobile-nav {
  position: relative;
  display: block;
  z-index: 10005;
}

.mobile-nav__toggle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  list-style: none;
  z-index: 10006;
  cursor: pointer;
}

.mobile-nav__toggle::-webkit-details-marker {
  display: none;
}

.mobile-nav__toggle::marker {
  content: "";
  display: none;
}

.mobile-nav__bars {
  width: 30px;
  height: 18px;
  display: block;
  position: relative;
}

.mobile-nav__bar {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-dynamic);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}

.mobile-nav__bar:nth-child(1) {
  top: 0;
}

.mobile-nav__bar:nth-child(2) {
  top: 8px;
}

.mobile-nav__bar:nth-child(3) {
  top: 16px;
}

.mobile-nav[open] .mobile-nav__bar:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.mobile-nav[open] .mobile-nav__bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] .mobile-nav__bar:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.mobile-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.22);
  transition: opacity 0.3s ease;
}

.mobile-nav[open] .mobile-nav__panel {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__panel-inner {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  padding: 110px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-nav[open] .mobile-nav__panel-inner {
  transform: translateX(0);
}

.mobile-nav__logo-wrap {
  display: inline-flex;
  margin-bottom: 0;
  width: 180px;
  max-width: 100px;
  position: absolute;
  top: 25px;
  right: 75px;
  z-index: 10003;
}

.mobile-nav__logo {
  width: 100%;
  height: auto;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-nav__link {
  display: block;
  padding: 18px 0;
  color: var(--color-dynamic);
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(1, 87, 162, 0.12);
}

body.mobile-nav-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  width: 100%;
  height: 70vh;
  margin-top: -100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero__inner {
  width: 1200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__content {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__text {
  font-size: 20px;
}

/* --------------------------------------------------------------------------
   Abschnitt „Seit 1968“
   -------------------------------------------------------------------------- */

.intro {
  position: relative;
  display: block;
}

.intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 75px 0 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.intro__media {
  width: 50%;
  aspect-ratio: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 20% 50%;
}

.intro__body {
  width: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.intro__panel {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.intro__text {
  text-align: left;
  width: 100%;
}

.intro__text > p:first-child,
.b2b__text > p:first-child,
.b2b__col--text p:first-child {
  margin-top: 0;
}

.intro__text > p:last-child,
.b2b__text > p:last-child,
.b2b__col--text p:last-child {
  margin-bottom: 0;
}

/* Pfeil-Button */

.button-pfeil {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}

.button-pfeil__icon {
  color: var(--color-dynamic);
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  transform-origin: center center;
  will-change: transform;
}

.button-pfeil__icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.button-pfeil__text {
  color: var(--color-dynamic);
  font-weight: 700;
}

.button-pfeil:hover .button-pfeil__icon {
  animation: buttonPfeilBounceRight 0.7s ease-out 1;
}

@keyframes buttonPfeilBounceRight {
  0% {
    transform: translateX(0);
  }

  18% {
    transform: translateX(8px);
  }

  36% {
    transform: translateX(0);
  }

  58% {
    transform: translateX(6px);
  }

  76% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

.intro__deco {
  position: absolute;
  width: 250px;
  height: 147px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.intro__deco--1 {
  top: 0;
  left: -75px;
}

.intro__deco--2 {
  top: -50px;
  right: 0;
  width: 250px;
  height: 204px;
}

.intro__deco--3 {
  right: 0;
  bottom: 0;
  width: 178px;
  height: 250px;
  background-size: contain;
}

/* --------------------------------------------------------------------------
   Abschnitt „Von süß bis salzig“
   -------------------------------------------------------------------------- */

.categories-head {
  display: block;
  text-align: left;
}

.categories-head__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 125px 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories-head__text {
  text-align: center;
  width: 80%;
}

/* --------------------------------------------------------------------------
   Produktkategorien-Slider
   -------------------------------------------------------------------------- */

.categories {
  display: block;
  text-align: left;
}

.categories__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-swiper {
  width: 100%;
  height: 800px;
}

.category-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
  transition: all 0.4s ease;
}

.category-slide__link {
  text-decoration: none;
  outline: none;
  display: block;
  transform: scale(0.9);
  opacity: 1;
  transition: all 0.4s ease;
}

.category-card {
  position: relative;
  width: 90%;
  min-height: 400px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: visible;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-card__shoutout {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  z-index: 20;
}

.category-card__shoutout span {
  display: block;
}

.category-card__image {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  z-index: 10;
}

.category-card__image img {
  display: block;
  width: 140%;
  max-width: none;
  height: auto;
  margin-left: -20%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease;
}

.category-card__bottom {
  text-align: center;
  width: 100%;
}

.category-card__title {
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.category-card__desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.swiper-slide-active .category-slide__link {
  transform: scale(1.1);
  opacity: 1;
  z-index: 5;
}

.swiper-slide-active .category-card__image img {
  transform: scale(1.05);
}

.swiper-slide-active .category-card {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background-color: var(--color-dynamic);
}

.category-swiper .swiper-button-prev,
.category-swiper .swiper-button-next {
  color: var(--color-dynamic);
}

.category-swiper .swiper-button-prev::after,
.category-swiper .swiper-button-next::after {
  font-size: 50px;
}

.category-swiper .swiper-pagination-bullet-active {
  background-color: #000;
}

/* --------------------------------------------------------------------------
   Logo-/Bild-Laufband
   -------------------------------------------------------------------------- */

.logo-marquee-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-marquee-section__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-marquee {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.logo-marquee__viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  --marquee-size: clamp(220px, 23vw, 310px);
  --marquee-gap: 0px;
}

.logo-marquee__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: max-content;
  will-change: transform;
  animation: picLogoSliderScroll var(--marquee-duration, 26s) linear infinite;
}

.logo-marquee__viewport:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee__item {
  flex: 0 0 var(--marquee-size);
  min-width: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}

.logo-marquee__item.is-clone {
  pointer-events: none;
}

.logo-marquee__tile {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-marquee__tile img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes picLogoSliderScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--marquee-distance, 0px)), 0, 0);
  }
}

/* --------------------------------------------------------------------------
   B2B / Eigenmarke
   -------------------------------------------------------------------------- */

.b2b {
  display: block;
}

.b2b__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.b2b__body {
  width: 50%;
  aspect-ratio: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b2b__panel {
  width: 100%;
  padding: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.b2b__text {
  text-align: left;
}

.b2b__columns {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.b2b__col {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.b2b__col--image {
  width: 30%;
  align-items: flex-start;
  justify-content: center;
}

.b2b__col--image img {
  object-position: left center;
}

.b2b__col--text {
  width: 70%;
  align-items: flex-start;
}

.b2b__col--text p {
  text-align: left;
}

.b2b__media {
  width: 50%;
  aspect-ratio: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

/* --------------------------------------------------------------------------
   Fußzeile
   -------------------------------------------------------------------------- */

.site-footer {
  width: 100%;
  background-color: var(--color-dynamic);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.site-footer__fade {
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-dynamic) 80%);
}

.site-footer__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 75px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.site-footer__top {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 35px;
}

.site-footer__logo {
  width: 50%;
}

.site-footer__logo img {
  height: 100px;
  width: auto;
}

.site-footer__links-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
}

.site-footer__links {
  display: flex;
  flex-direction: row;
  margin-right: 75px;
}

.site-footer__link {
  color: #fff;
  letter-spacing: 1.1px;
  padding: 0 10px;
  font-size: 14px;
  display: inline-block;
}

.site-footer__link:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 35px;
}

.site-footer__address {
  font-size: 14px;
}

.site-footer__social {
  display: flex;
  flex-direction: row;
  margin-right: -10px;
  margin-bottom: -10px;
}

.site-footer__social a {
  font-size: 25px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.site-footer__social svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  color: #fff;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Farbwähler
   -------------------------------------------------------------------------- */

.color-picker {
  position: fixed;
  right: 10px;
  bottom: 50px;
  z-index: 999;
}

.color-picker__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #d1d5db;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.15);
}

.color-dot.is-active {
  box-shadow: 0 0 0 2px #111111;
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .header-menu {
    display: none;
  }

  .header-mobile {
    display: flex;
  }

  .intro__inner {
    flex-direction: column-reverse;
  }

  .intro__media {
    width: 100%;
    height: 400px;
    aspect-ratio: auto;
  }

  .intro__body {
    width: 100%;
    aspect-ratio: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .intro__deco--1 {
    width: 175px;
    left: -30px;
    background-size: contain;
  }

  .intro__deco--2 {
    width: 175px;
    background-size: contain;
  }

  .b2b__inner {
    flex-direction: column-reverse;
  }

  .b2b__body {
    width: 100%;
    aspect-ratio: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .b2b__media {
    width: 100%;
    height: 400px;
    aspect-ratio: auto;
  }

  .b2b__columns > .b2b__col {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .logo-marquee-section__inner {
    padding: 42px 0;
  }

  .logo-marquee__viewport {
    --marquee-size: clamp(150px, 46vw, 210px);
  }

  .site-footer__links {
    margin-right: 0;
  }
}

/* ==========================================================================
   Produktseite
   ========================================================================== */

.product-detail__inner {
  padding-top: 150px;
}

.product-detail__grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product-detail__media {
  width: 40%;
  padding-right: 20px;
  background-color: var(--color-dynamic);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-detail__imagewrap {
  width: 100%;
}

.product-detail__imagewrap img {
  width: 100%;
  height: auto;
}

.product-detail__body {
  width: 60%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-detail__titlewrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.product-detail__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* Nährwerte-Akkordeon */

.nutrition {
  width: auto;
  max-width: 100%;
}

.nutrition__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 0 15px;
  margin: 10px 0;
  cursor: pointer;
  list-style: none;
}

.nutrition__row::-webkit-details-marker {
  display: none;
}

.nutrition__row::marker {
  content: "";
  display: none;
}

.nutrition__icon {
  color: var(--color-dynamic);
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
}

.nutrition__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s;
}

.nutrition[open] .nutrition__icon svg {
  transform: rotate(90deg);
}

.nutrition__label {
  font-weight: 700;
  color: var(--color-dynamic);
}

.nutrition__content {
  width: 100%;
  padding: 8px;
}

.nutrition__item {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.nutrition__name {
  width: 300px;
}

.nutrition__value {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Bezugsquellen */

.sources__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sources__eyebrow {
  font-size: 20px;
  color: var(--color-dynamic);
  margin-bottom: 10px;
}

.sources__title {
  font-size: 30px;
  margin-bottom: 15px;
}

.sources__form {
  width: 100%;
  margin-top: 20px;
}

/* Formular */

.pico-form__grid {
  display: flex;
  flex-wrap: wrap;
}

.pico-form__half {
  width: 48%;
  margin-right: 4%;
}

.pico-form__half--last {
  margin-right: 0;
}

.pico-form__full {
  width: 100%;
}

.pico-form input[type="text"],
.pico-form input[type="email"],
.pico-form textarea {
  width: 100%;
  padding: 20px;
  margin-bottom: 6px;
  border: none;
  background-color: whitesmoke;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  color: var(--color-dynamic);
  font-family: inherit;
  transition: 0.3s ease background, color;
}

.pico-form textarea {
  height: 150px;
  resize: none;
}

.pico-form ::placeholder {
  color: #000;
}

.pico-form :focus {
  color: red;
  outline: 0;
}

.pico-form :focus::placeholder {
  color: var(--color-dynamic);
}

.pico-form__consent {
  margin-bottom: 6px;
}

.pico-form__consent-label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
}

.pico-form__consent-label input {
  margin: 0;
  flex: 0 0 auto;
}

.pico-form__consent-label a {
  color: var(--text);
}

.pico-form__consent-label a:hover {
  color: var(--color-dynamic);
}

.pico-form__submit {
  width: 100%;
  padding: 20px;
  border: none;
  background-color: whitesmoke;
  color: var(--color-dynamic);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: 0.3s ease;
}

.pico-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pico-form__submit:not(:disabled):hover {
  color: #fff;
  background-color: var(--color-dynamic);
}

/* CTA */

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta__eyebrow {
  color: var(--color-dynamic);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta__title {
  font-size: 30px;
  margin: 0;
}

.cta__text {
  margin-top: 35px;
  text-align: center;
}

.cta__text > p:first-child {
  margin-top: 0;
}

.cta__text > p:last-child {
  margin-bottom: 0;
}

/* Weitere Produkte */

.related__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.related__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.related__eyebrow {
  color: var(--color-dynamic);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.related__title {
  font-size: 30px;
}

.related__slider {
  width: 100%;
  height: 400px;
}

.related__slider .swiper-button-prev,
.related__slider .swiper-button-next {
  color: #0f3e71;
}

.related__slider .swiper-button-prev::after,
.related__slider .swiper-button-next::after {
  font-size: 32px;
}

.related__slider .swiper-pagination-bullet-active {
  background-color: #f9f9fa;
}

.product-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.product-slide__image {
  width: 80%;
  height: 300px;
  margin-bottom: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.product-slide__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.product-slide__title {
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.product-slide__link {
  display: inline-block;
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 15px;
  margin-top: 20px;
  padding: 10px 25px;
  font-weight: 700;
  transition: border-color 0.3s ease;
}

.product-slide__link:hover {
  color: #fff;
}

/* ==========================================================================
   Produktkategorie
   ========================================================================== */

.category-hero {
  width: 100%;
  height: 50vh;
  margin-top: -100px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.category-hero__text {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-hero__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
}

.category-products__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: stretch;
}

.sortiment-hero {
  background-size: cover;
}

.sortiment-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: stretch;
}

.product-tile {
  position: relative;
  padding: 30px 20px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.product-tile:hover {
  background-color: var(--produkte-color);
}

.product-tile__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.product-tile__image {
  max-width: 100%;
  height: auto;
}

.product-tile__title {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  color: var(--text);
  transition: color 0.3s ease;
}

.product-tile__button {
  display: inline-block;
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 15px;
  margin-top: 20px;
  padding: 10px 25px;
  font-weight: 700;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.product-tile:hover .product-tile__title,
.product-tile:hover .product-tile__button {
  color: #fff;
}

.product-tile:hover .product-tile__button {
  border-color: #fff;
}

.category-products__empty {
  text-align: center;
}

@media (max-width: 991px) {
  .product-detail__grid {
    flex-direction: column;
  }

  .product-detail__media {
    width: 100%;
    padding-right: 0;
  }

  .product-detail__body {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 767px) {
  .pico-form__half {
    width: 100%;
    margin-right: 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .sortiment-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   B2B-Seite
   ========================================================================== */

.b2b-hero {
  background-size: cover;
}

.b2b-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

/* Einleitung */

.b2b-intro__box {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.b2b-intro .b2b-title {
  margin: 15px 0 25px;
}

/* Zwei-Spalten-Abschnitte */

.b2b-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: stretch;
}

.b2b-split__media {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.b2b-split__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.b2b-text {
  width: 100%;
}

.b2b-list {
  color: var(--color-dynamic);
  list-style: disc;
  padding-left: 40px;
  margin: 15px 0;
}

.b2b-note {
  color: var(--color-dynamic);
  font-weight: 700;
  text-transform: uppercase;
}

/* Partner-Netzwerk */

.b2b-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2b-partners .b2b-title {
  margin-bottom: 10px;
}

.b2b-logos {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.b2b-logo {
  width: calc(10% - 30px);
  margin: 15px;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
}

.b2b-logo:hover {
  opacity: 0.7;
}

.b2b-partners__more {
  align-self: flex-end;
  color: var(--color-dynamic);
  font-weight: 700;
}

/* 4 Schritte */

.b2b-steps {
  background-color: #f9f9f9;
}

.b2b-steps__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2b-steps__grid {
  width: 100%;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  align-items: stretch;
  grid-auto-rows: minmax(min-content, 1fr);
}

.b2b-step {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.b2b-step__number {
  font-weight: 700;
  font-size: 50px;
  color: #fff;
}

.b2b-step__title {
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.b2b-step__title span {
  display: block;
}

.b2b-step__text {
  color: #f9f9fa;
}

/* Standortkarte */

.b2b-map img {
  width: 100%;
  height: auto;
}

/* Kontakt */

.b2b-contact {
  padding-bottom: 125px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.b2b-contact__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2b-contact .b2b-title {
  margin: 15px 0 30px;
}

.b2b-contact__lead {
  width: 100%;
  text-align: center;
}

.b2b-contact__grid {
  width: 100%;
  margin-top: 35px;
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.b2b-contact__form {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.b2b-contact__info {
  width: 50%;
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.b2b-contact__image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.b2b-contact__row {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}

.b2b-contact__icon {
  color: var(--color-dynamic);
  margin-right: 15px;
  display: inline-flex;
}

.b2b-contact__icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.b2b-contact__value {
  text-align: left;
}

/* Absende-Button mit Pfeil (Kontaktformular B2B) */

.pico-form__submit-arrow {
  cursor: pointer;
  background: none;
  background-color: transparent;
  text-transform: none;
  font: inherit;
  border: none;
  padding: 0;
  width: auto;
  text-align: left;
}

@media (max-width: 1200px) {
  .b2b-steps__grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    grid-column-gap: 20px;
  }
}

@media (max-width: 991px) {
  .b2b-logo {
    width: calc(20% - 30px);
  }

  .b2b-contact__grid {
    flex-direction: column;
  }

  .b2b-contact__form,
  .b2b-contact__info {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .b2b-split {
    grid-template-columns: 1fr;
  }

  .b2b-steps__grid {
    grid-template-columns: 1fr;
  }

  .b2b-logo {
    width: calc(33.333% - 30px);
  }
}

/* ==========================================================================
   Über-uns-Seite
   ========================================================================== */

.ueber-uns-hero {
  background-size: cover;
}

.ueber-uns-about {
  width: 100%;
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
}

.ueber-uns-about__media {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ueber-uns-about__media img {
  max-width: 100%;
  height: auto;
}

.ueber-uns-about__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ueber-uns-about__title {
  margin: 15px 0 25px;
  font-size: 30px;
  font-weight: 600;
}

.ueber-uns-about__text {
  width: 100%;
}

.ueber-uns-history {
  flex-direction: row;
}

.ueber-uns-history__links {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ueber-uns-history__links img {
  width: 80%;
  height: auto;
}

.ueber-uns-history__links img:first-child {
  margin-bottom: 25px;
}

.ueber-uns-history__items {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-item {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.history-item__icon-outer {
  flex: 0 0 auto;
  border-radius: 9999px;
  width: 125px;
  height: 125px;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.history-item__icon-outer:not(.is-last)::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-0.5px);
  width: 1px;
  height: 150px;
  background-color: #000;
  z-index: 0;
}

.history-item__icon-inner {
  background-color: #fff;
  width: 125px;
  height: 125px;
  border-radius: 999px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.history-item__icon-inner img {
  max-width: 100%;
  height: auto;
}

.history-item__content {
  margin-left: 25px;
  width: calc(100% - 125px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-animate .history-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-animate .history-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .ueber-uns-history {
    flex-direction: column-reverse;
  }

  .ueber-uns-history__links,
  .ueber-uns-history__items {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ueber-uns-about {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Rechts-/Inhaltsseiten (Impressum, Datenschutz, AGB)
   ========================================================================== */

.page-content__body {
  max-width: 100%;
}

/* ==========================================================================
   Kontaktseite
   ========================================================================== */

.kontakt-hero {
  background-size: cover;
}

.kontakt-main {
  text-align: center;
  background-color: #fff;
}

.kontakt-main .l-inner {
  padding-top: 78px;
  padding-bottom: 82px;
}

.kontakt-main__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kontakt-main__title {
  margin-bottom: 18px;
}

.kontakt-main__intro {
  font-size: 16px;
  line-height: 1.7;
}

.kontakt-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.kontakt-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.kontakt-side {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.kontakt-side__image {
  width: 100%;
  height: 314px;
  object-fit: cover;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.kontakt-detail {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.kontakt-detail__icon {
  color: var(--color-dynamic);
  margin-top: 3px;
  display: inline-flex;
}

.kontakt-detail__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.kontakt-detail__text {
  line-height: 1.55;
}

/* ==========================================================================
   B2B V3 – Editorialer D/A/CH-Auftritt
   ========================================================================== */

.b2b-v3 {
  --v3-ink: #16243b;
  --v3-blue: #1d58a2;
  --v3-orange: #f1a51b;
  --v3-paper: #f5f1e9;
  color: var(--v3-ink);
  overflow: hidden;
}

.b2b-v3__hero {
  min-height: min(690px, 78vh);
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  background: var(--v3-blue);
}

.b2b-v3__hero-copy {
  padding: clamp(60px, 8vw, 130px) clamp(30px, 6vw, 96px);
  align-self: center;
  color: #fff;
}

.b2b-v3__eyebrow {
  margin: 0 0 18px;
  color: var(--v3-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.b2b-v3__hero-title,
.b2b-v3 h2,
.b2b-v3 h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
}

.b2b-v3__hero-title {
  max-width: 570px;
  color: #fff;
  font-size: clamp(46px, 5.3vw, 82px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.b2b-v3__hero-text {
  max-width: 470px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

.b2b-v3__hero-media {
  min-height: 520px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.b2b-v3__hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 88, 162, 0.18), transparent 45%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 35%);
}

.b2b-v3__hero-stamp {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 58px);
  z-index: 1;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.b2b-v3__hero-stamp small {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: none;
}

.b2b-v3__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.b2b-v3__button:hover {
  color: inherit;
  transform: translateY(-3px);
}

.b2b-v3__button--light { color: #fff; }
.b2b-v3__button--light:hover { background: #fff; color: var(--v3-blue); }
.b2b-v3__button--dark { color: var(--v3-ink); }
.b2b-v3__button--dark:hover { background: var(--v3-ink); color: #fff; }

.b2b-v3__paths {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 20px clamp(90px, 11vw, 160px);
}

.b2b-v3__section-head { max-width: 720px; margin-bottom: 48px; }
.b2b-v3__section-head--wide { max-width: 820px; }
.b2b-v3__section-head h2,
.b2b-v3__logistics-copy h2,
.b2b-v3__contact h2 {
  margin: 0;
  color: var(--v3-ink);
  font-size: clamp(36px, 4.2vw, 62px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.b2b-v3__path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.b2b-v3__path-card {
  min-height: 440px;
  padding: 42px clamp(25px, 4vw, 60px) 36px;
  background: var(--v3-paper);
  border-top: 6px solid var(--v3-blue);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.b2b-v3__path-card:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(22, 36, 59, 0.12); }
.b2b-v3__path-card--accent { border-top-color: var(--v3-orange); background: #fff7e8; }
.b2b-v3__path-number { color: var(--v3-orange); font-size: 14px; font-weight: 800; letter-spacing: 0.16em; }
.b2b-v3__card-kicker { margin: 45px 0 10px; color: var(--v3-blue); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.b2b-v3__path-card h3 { margin: 0 0 22px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.04em; line-height: 1; }
.b2b-v3__path-card > p:not(.b2b-v3__card-kicker) { max-width: 470px; margin: 0; font-size: 16px; line-height: 1.65; }
.b2b-v3__path-card ul { margin: 30px 0 28px; padding: 0; list-style: none; }
.b2b-v3__path-card li { margin: 8px 0; padding-left: 22px; font-size: 14px; line-height: 1.45; position: relative; }
.b2b-v3__path-card li::before { content: '↗'; position: absolute; left: 0; color: var(--v3-orange); font-weight: 700; }
.b2b-v3__card-link { margin-top: auto; color: var(--v3-blue); font-size: 13px; font-weight: 800; letter-spacing: 0.04em; }
.b2b-v3__card-link span { display: inline-block; margin-left: 10px; transition: transform 0.25s ease; }
.b2b-v3__card-link:hover span { transform: translateX(5px); }

.b2b-v3__benefits { background: var(--v3-orange); }
.b2b-v3__benefits-inner { max-width: 1200px; margin: 0 auto; padding: 40px 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.b2b-v3__benefit { display: flex; align-items: baseline; gap: 14px; color: var(--v3-ink); }
.b2b-v3__benefit span { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; }
.b2b-v3__benefit strong { font-size: 18px; line-height: 1.3; }

.b2b-v3__partners { max-width: 1240px; margin: 0 auto; padding: clamp(80px, 10vw, 140px) 20px; }
.b2b-v3__logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: #dfe4eb; border: 1px solid #dfe4eb; }
.b2b-v3__logo { aspect-ratio: 1.35; background-color: #fff; background-position: center; background-repeat: no-repeat; background-size: contain; filter: grayscale(1); opacity: 0.75; transition: filter 0.2s ease, opacity 0.2s ease; }
.b2b-v3__logo:hover { filter: grayscale(0); opacity: 1; }

.b2b-v3__logistics { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr); background: var(--v3-ink); color: #fff; }
.b2b-v3__logistics-media { min-height: 530px; background-color: #fff; background-position: center; background-size: cover; }
.b2b-v3__logistics-copy { align-self: center; padding: clamp(50px, 8vw, 110px) clamp(30px, 7vw, 100px); }
.b2b-v3__logistics-copy h2 { color: #fff; }
.b2b-v3__logistics-copy > p:not(.b2b-v3__eyebrow):not(.b2b-v3__logistics-note) { margin: 28px 0 0; color: rgba(255, 255, 255, 0.78); line-height: 1.7; }
.b2b-v3__logistics-note { margin: 36px 0 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.25); color: #fff; font-size: 14px; line-height: 1.5; }
.b2b-v3__logistics-note span { margin-right: 10px; color: var(--v3-orange); font-size: 24px; vertical-align: -2px; }

.b2b-v3__contact { background: var(--v3-paper); }
.b2b-v3__contact-inner { max-width: 1200px; margin: 0 auto; padding: clamp(70px, 9vw, 120px) 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.b2b-v3__contact h2 { max-width: 690px; }
.b2b-v3__contact p:not(.b2b-v3__eyebrow) { max-width: 500px; margin: 24px 0 0; line-height: 1.65; }

@media (max-width: 991px) {
  .b2b-v3__hero { grid-template-columns: 1fr; }
  .b2b-v3__hero-copy { order: 2; }
  .b2b-v3__hero-media { min-height: 440px; order: 1; }
  .b2b-v3__logos { grid-template-columns: repeat(4, 1fr); }
  .b2b-v3__logistics { grid-template-columns: 1fr; }
  .b2b-v3__logistics-media { min-height: 430px; }
  .b2b-v3__contact-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767px) {
  .b2b-v3__hero-title { font-size: clamp(44px, 13vw, 66px); }
  .b2b-v3__hero-text { font-size: 16px; }
  .b2b-v3__path-grid { grid-template-columns: 1fr; }
  .b2b-v3__path-card { min-height: 390px; }
  .b2b-v3__benefits-inner { grid-template-columns: 1fr; gap: 18px; padding-top: 30px; padding-bottom: 30px; }
  .b2b-v3__logos { grid-template-columns: repeat(3, 1fr); }
  .b2b-v3__logistics-media { min-height: 300px; }
}

@media (max-width: 991px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .kontakt-side__image {
    height: 420px;
  }
}

@media (max-width: 479px) {
  .kontakt-main .l-inner {
    padding-top: 62px;
    padding-left: 16px;
    padding-bottom: 62px;
    padding-right: 16px;
  }

  .kontakt-side__image {
    height: 300px;
  }
}

/* ==========================================================================
   B2B V3 – an das bestehende PICO-Seitensystem angepasst
   ========================================================================== */

.b2b-v3 {
  color: var(--text);
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  overflow: visible;
}

.b2b-v3 h1,
.b2b-v3 h2,
.b2b-v3 h3,
.b2b-v3 h4,
.b2b-v3 h5,
.b2b-v3 h6 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: var(--text);
  letter-spacing: normal;
}

.b2b-v3 .category-hero {
  height: 50vh;
  margin-top: -100px;
  background-size: cover;
  background-position: 50% 50%;
}

.b2b-v3-intro {
  background: #fff;
  text-align: center;
}

.b2b-v3-intro .l-inner {
  align-items: center;
}

.b2b-v3-intro__box {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2b-v3-intro .eyebrow,
.b2b-v3-section-head .eyebrow {
  margin: 0;
  color: var(--color-dynamic);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.b2b-v3-intro .b2b-title,
.b2b-v3-section-head .b2b-title,
.b2b-v3-contact .b2b-title {
  margin: 15px 0 25px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.b2b-v3-intro__box > p:last-child {
  width: 100%;
  max-width: 1060px;
  margin: 0;
  line-height: 1.65;
}

.b2b-v3-offers .l-inner {
  align-items: center;
  padding-top: 75px;
  padding-bottom: 75px;
}

.b2b-v3-section-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.b2b-v3-section-head .b2b-title {
  margin-bottom: 35px;
}

.b2b-v3-offer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}

.b2b-v3-offer + .b2b-v3-offer {
  margin-top: 20px;
}

.b2b-v3-offer__media {
  min-height: 390px;
  overflow: hidden;
}

.b2b-v3-offer__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.b2b-v3-offer__body {
  min-height: 390px;
  padding: 45px 50px;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.b2b-v3-offer--reverse .b2b-v3-offer__media {
  order: 2;
}

.b2b-v3-offer--reverse .b2b-v3-offer__body {
  order: 1;
}

.b2b-v3-offer__body .eyebrow {
  margin: 0 0 15px;
  color: var(--color-dynamic);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.b2b-v3-offer__body h3 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.b2b-v3-offer__body > p:not(.eyebrow) {
  width: 100%;
  margin: 0;
  line-height: 1.65;
}

.b2b-v3-list {
  margin: 18px 0 12px;
  padding-left: 30px;
  color: var(--color-dynamic);
  list-style: disc;
}

.b2b-v3-list li {
  padding-left: 3px;
  line-height: 1.55;
}

.b2b-v3-arrow-link {
  margin-top: 12px;
  color: var(--color-dynamic);
  font-weight: 700;
  transition: color 0.25s ease;
}

.b2b-v3-arrow-link:hover {
  color: var(--text);
}

.b2b-v3-arrow-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.25s ease;
}

.b2b-v3-arrow-link:hover span {
  transform: translateX(4px);
}

.b2b-v3-benefits {
  background: #f9f9f9;
}

.b2b-v3-benefits .l-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.b2b-v3-benefits__grid {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.b2b-v3-benefit {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--color-dynamic);
}

.b2b-v3-benefit span {
  color: #f3ab1a;
  font-size: 13px;
  font-weight: 700;
}

.b2b-v3-benefit strong {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.b2b-v3-partners .l-inner,
.b2b-v3-logistics .l-inner {
  align-items: center;
}

.b2b-v3-partners .l-inner {
  padding-top: 75px;
  padding-bottom: 75px;
}

.b2b-v3-section-head--center {
  align-items: center;
  text-align: center;
}

.b2b-v3-logos {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.b2b-v3-logo {
  width: calc(10% - 30px);
  margin: 15px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
}

.b2b-v3-logo:hover {
  opacity: 0.7;
}

.b2b-v3-partners__more {
  width: 100%;
  color: var(--color-dynamic);
  font-weight: 700;
  text-align: right;
}

.b2b-v3-logistics .l-inner {
  padding-top: 75px;
  padding-bottom: 125px;
}

.b2b-v3-logistics__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
}

.b2b-v3-logistics__media img {
  width: 100%;
  height: auto;
}

.b2b-v3-logistics__body {
  padding: 20px 35px;
}

.b2b-v3-logistics__body > p {
  margin: 0;
  line-height: 1.65;
}

.b2b-v3-logistics__note {
  margin-top: 25px !important;
  color: var(--color-dynamic);
  font-weight: 700;
}

.b2b-v3-contact {
  background: #fff;
  text-align: center;
}

.b2b-v3-contact .l-inner {
  align-items: center;
  padding-top: 75px;
  padding-bottom: 125px;
}

.b2b-v3-contact__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2b-v3-contact__inner > p:not(.eyebrow) {
  max-width: 740px;
  margin: 0 0 20px;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .b2b-v3-offer,
  .b2b-v3-logistics__grid {
    grid-template-columns: 1fr;
  }

  .b2b-v3-offer--reverse .b2b-v3-offer__media,
  .b2b-v3-offer--reverse .b2b-v3-offer__body {
    order: initial;
  }

  .b2b-v3-logo {
    width: calc(20% - 30px);
  }
}

@media (max-width: 767px) {
  .b2b-v3-intro__box {
    padding: 35px 20px;
  }

  .b2b-v3-offer__body {
    min-height: 0;
    padding: 35px 25px 40px;
  }

  .b2b-v3-offer__media,
  .b2b-v3-offer__media img {
    min-height: 260px;
  }

  .b2b-v3-benefits__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .b2b-v3-logo {
    width: calc(33.333% - 30px);
  }

  .b2b-v3-logistics__body {
    padding: 20px 0 0;
  }
}

/* ========================================================================
   Mobile Feinschliff
   Der Desktop-Aufbau bleibt bewusst unverändert. Auf kleinen Screens wird
   der Header aus dem Bild herausgelöst und jeder Abschnitt bekommt eine
   lesbare, klare Breite.
   ======================================================================== */

@media (min-width: 768px) and (max-width: 991px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 90px;
    background: #fff;
  }

  .site-header__gradient {
    display: none;
  }

  .header-inner {
    min-height: 90px;
    padding: 0 28px;
  }

  .header-nav,
  .header-spacer {
    width: 25%;
  }

  .header-logo {
    width: 50%;
  }

  .header-logo img {
    height: 88px;
  }

  .hero,
  .category-hero,
  .b2b-v3 .category-hero {
    margin-top: 0;
  }

  .hero {
    min-height: 520px;
    height: min(680px, 76vh);
    align-items: flex-end;
    background-position: 66% center;
  }

  .hero__inner {
    width: 100%;
    padding: 0 28px 44px;
  }

  .hero__content {
    width: 100%;
    max-width: 500px;
    padding: 22px 24px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--color-dynamic);
    box-shadow: 0 12px 30px rgba(25, 26, 35, 0.12);
  }

  .hero__title {
    font-size: clamp(38px, 6vw, 52px);
    line-height: 1.08;
  }

  .hero__text {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.55;
  }

  .l-inner {
    padding: 64px 28px;
  }

  .intro__inner,
  .b2b__inner {
    padding-top: 0;
  }

  .intro__panel,
  .b2b__panel {
    padding: 50px 36px;
  }

  .intro__deco {
    display: none;
  }

  .category-hero {
    height: 360px;
    min-height: 0;
    background-size: cover;
    background-position: 60% center;
    justify-content: flex-end;
  }

  .category-hero__inner {
    padding: 0 28px 36px;
  }

  .category-hero__text {
    width: 100%;
  }

  .category-hero__title {
    max-width: 520px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.88);
    border-left: 4px solid var(--color-dynamic);
    font-size: clamp(36px, 6vw, 50px);
    line-height: 1.08;
  }

  .product-detail__inner {
    padding-top: 54px;
  }

  .product-detail__title {
    font-size: clamp(40px, 6vw, 54px);
    text-align: left;
  }

  .product-tile__button {
    color: var(--color-dynamic);
    border-color: var(--color-dynamic);
  }

  .color-picker {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
    font-size: 16px;
  }

  .site-header {
    height: 78px;
    background: #fff;
  }

  .site-header__gradient {
    display: none;
  }

  .header-inner {
    min-height: 78px;
    padding: 0 16px;
  }

  .header-nav,
  .header-spacer {
    width: 25%;
  }

  .header-logo {
    width: 50%;
  }

  .header-logo img {
    height: 76px;
  }

  .mobile-nav__toggle {
    width: 48px;
    height: 48px;
    justify-content: flex-start;
  }

  .mobile-nav__bars,
  .mobile-nav__bar {
    width: 26px;
  }

  .mobile-nav__panel-inner {
    padding: 96px 24px 32px;
  }

  .mobile-nav__logo-wrap {
    width: 88px;
    top: 18px;
    right: 50%;
    transform: translateX(50%);
  }

  .mobile-nav__link {
    padding: 16px 0;
    font-size: clamp(22px, 7vw, 28px);
  }

  .hero,
  .category-hero,
  .b2b-v3 .category-hero {
    margin-top: 0;
  }

  .hero {
    min-height: 520px;
    height: min(680px, 76vh);
    align-items: flex-end;
    background-position: 66% center;
  }

  .hero__inner {
    width: 100%;
    padding: 0 16px 38px;
  }

  .hero__content {
    width: 100%;
    max-width: 345px;
    padding: 18px 18px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--color-dynamic);
    box-shadow: 0 12px 30px rgba(25, 26, 35, 0.12);
  }

  .hero__title {
    font-size: clamp(32px, 9.5vw, 43px);
    line-height: 1.08;
  }

  .hero__text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  .l-inner {
    padding: 52px 16px;
  }

  .eyebrow {
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .title-lg {
    margin: 10px 0 20px;
    font-size: clamp(26px, 7.5vw, 32px);
    line-height: 1.1;
  }

  .intro__inner,
  .b2b__inner {
    padding-top: 0;
  }

  .intro__media,
  .b2b__media {
    height: min(320px, 72vw);
    min-height: 250px;
  }

  .intro__panel,
  .b2b__panel {
    padding: 42px 20px 50px;
  }

  .intro__text,
  .b2b__text {
    line-height: 1.65;
  }

  .intro__deco {
    display: none;
  }

  .categories-head__inner {
    padding: 72px 16px 18px;
  }

  .categories-head__text {
    width: 100%;
    line-height: 1.6;
  }

  .categories__inner {
    padding: 0 16px 52px;
  }

  .category-swiper {
    height: 625px;
  }

  .category-slide {
    padding: 28px 0 48px;
  }

  .category-slide__link {
    width: 100%;
    transform: scale(0.94);
  }

  .swiper-slide-active .category-slide__link {
    transform: scale(1);
  }

  .category-card {
    width: 100%;
    min-height: 470px;
    padding: 24px 18px 22px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  }

  .category-card__shoutout {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .category-card__image {
    margin-bottom: 18px;
  }

  .category-card__image img {
    width: 110%;
    margin-left: -5%;
  }

  .category-card__title {
    font-size: clamp(21px, 6vw, 26px);
  }

  .category-card__desc {
    max-width: 290px;
    margin: 8px auto 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .logo-marquee-section__inner {
    padding: 26px 0;
  }

  .logo-marquee__viewport {
    --marquee-size: clamp(142px, 43vw, 190px);
  }

  .b2b__columns {
    align-items: center;
  }

  .b2b__col {
    padding: 12px 0;
  }

  .b2b__col--image {
    width: 32% !important;
  }

  .b2b__col--text {
    width: 68% !important;
  }

  .site-footer__content {
    padding: 0 16px 42px;
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer__logo,
  .site-footer__links-wrap {
    width: 100%;
    align-items: flex-start;
  }

  .site-footer__logo img {
    height: 82px;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .site-footer__link {
    padding: 0 10px 0 0;
  }

  .site-footer__bottom {
    padding-top: 24px;
  }

  .site-footer__address {
    max-width: 280px;
    line-height: 1.5;
  }

  .color-picker {
    display: none;
  }

  .product-detail__inner {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .product-detail__media {
    width: 100%;
  }

  .product-detail__body {
    padding-top: 26px;
  }

  .product-detail__titlewrap {
    align-items: flex-start;
    text-align: left;
  }

  .product-detail__title {
    width: 100%;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.08;
    text-align: left;
  }

  .product-detail__body .product-detail__desc {
    line-height: 1.6;
  }

  .nutrition__row {
    padding: 16px 0 12px;
  }

  .nutrition__label {
    font-size: 15px;
    line-height: 1.35;
  }

  .nutrition__content {
    padding: 4px 0;
  }

  .nutrition__item {
    gap: 12px;
    justify-content: space-between;
  }

  .nutrition__name {
    width: auto;
    max-width: 72%;
  }

  .nutrition__value {
    width: auto;
  }

  .sources__inner,
  .related__inner,
  .cta__inner {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .sources__eyebrow,
  .related__eyebrow,
  .cta__eyebrow {
    font-size: 15px;
    line-height: 1.25;
  }

  .sources__title,
  .related__title,
  .cta__title {
    font-size: clamp(26px, 7.5vw, 32px);
    line-height: 1.1;
  }

  .sources__text,
  .cta__text {
    line-height: 1.6;
  }

  .pico-form input[type="text"],
  .pico-form input[type="email"],
  .pico-form textarea {
    padding: 16px;
    font-size: 13px;
  }

  .pico-form textarea {
    height: 130px;
  }

  .pico-form__consent-label {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.45;
  }

  .pico-form :focus-visible,
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible {
    outline: 3px solid var(--color-dynamic);
    outline-offset: 3px;
  }

  .category-hero {
    height: 300px;
    min-height: 0;
    background-size: cover;
    background-position: 60% center;
    justify-content: flex-end;
  }

  .category-hero__inner {
    padding: 0 16px 30px;
  }

  .category-hero__text {
    width: 100%;
  }

  .category-hero__title {
    max-width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.88);
    border-left: 4px solid var(--color-dynamic);
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.05;
  }

  .category-hero__title a {
    color: inherit;
  }

  .category-grid,
  .sortiment-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-tile {
    padding: 24px 16px;
  }

  .product-tile__title {
    font-size: 18px;
  }

  .product-tile__button {
    color: var(--color-dynamic);
    border-color: var(--color-dynamic);
  }

  .b2b-intro__box {
    padding: 36px 20px;
  }

  .b2b-title {
    font-size: clamp(26px, 7.5vw, 32px);
    line-height: 1.1;
  }

  .b2b-split__media {
    min-height: 250px;
  }

  .b2b-step {
    padding: 30px 24px;
  }

  .b2b-step__number {
    font-size: 42px;
  }

  .b2b-contact {
    padding-bottom: 62px;
  }

  .b2b-contact__grid {
    gap: 30px;
  }

  .b2b-contact__info {
    margin: 0;
  }

  .ueber-uns-about {
    padding: 34px 20px;
    grid-template-columns: 1fr;
  }

  .ueber-uns-about__title {
    margin: 8px 0 18px;
    font-size: clamp(26px, 7.5vw, 32px);
    line-height: 1.1;
  }

  .ueber-uns-history {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .ueber-uns-history__links img {
    width: 100%;
  }

  .history-item {
    margin-bottom: 34px;
    align-items: flex-start;
  }

  .history-item__icon-outer,
  .history-item__icon-inner {
    width: 78px;
    height: 78px;
  }

  .history-item__icon-outer:not(.is-last)::before {
    bottom: -112px;
    height: 112px;
  }

  .history-item__content {
    width: calc(100% - 78px);
    margin-left: 16px;
  }

  .history-item__year {
    font-size: 22px;
  }

  .kontakt-main .l-inner {
    padding: 50px 16px 58px;
  }

  .kontakt-main__title {
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .kontakt-main__intro {
    line-height: 1.6;
  }

  .kontakt-grid {
    gap: 30px;
  }

  .kontakt-side__image {
    height: min(300px, 76vw);
    min-height: 240px;
  }

  .b2b-v3-intro__box {
    padding: 32px 20px 38px;
  }

  .b2b-v3 .category-hero {
    height: 300px;
    min-height: 0;
  }

  .b2b-v3-offers .l-inner,
  .b2b-v3-partners .l-inner,
  .b2b-v3-logistics .l-inner {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .b2b-v3-section-head {
    align-items: flex-start;
    text-align: left;
  }

  .b2b-v3-section-head .b2b-title {
    text-align: left;
  }

  .b2b-v3-offer__media,
  .b2b-v3-offer__media img {
    min-height: 220px;
  }

  .b2b-v3-offer__body {
    padding: 30px 20px 34px;
  }

  .b2b-v3-offer__body h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .b2b-v3-benefits .l-inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .b2b-v3-partners__more {
    margin-top: 14px;
    text-align: left;
  }

  .b2b-v3-logistics__body {
    padding: 18px 0 0;
  }

  .b2b-v3-contact .l-inner {
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .b2b-v3-contact__inner {
    align-items: flex-start;
    text-align: left;
  }

  .b2b-v3-contact .b2b-title {
    text-align: left;
  }
}
