@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans";
  font-weight: 400;
  overflow-x: hidden;
}

.inner-container {
  max-width: 1320px;
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.inner-container-smaller {
  max-width: 1100px;
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.meta {
  height: 35px;
  background-color: #f6f6f6;
  position: fixed;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.meta .meta-inner {
  max-width: 1320px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.meta .meta-inner .meta-adress {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 620px) {
  .meta .meta-inner .meta-adress {
    display: none;
  }
}
.meta .meta-inner .meta-menu {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 620px) {
  .meta .meta-inner .meta-menu {
    max-width: 100%;
  }
}
.meta .meta-inner .meta-menu ul {
  list-style: none;
  text-align: right;
}
.meta .meta-inner .meta-menu ul li {
  display: inline;
  margin-left: 10px;
}
.meta .meta-inner .meta-menu ul li a {
  color: #00305b !important;
}
.meta .strich {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bold;
  color: #882626;
}
@media (max-width: 890px) {
  .meta .kontaktdaten {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1320px;
  margin: auto;
}
.header-inner .brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100px;
}
.header-inner .brand img, .header-inner .brand svg {
  display: block;
  height: 100px;
  width: auto;
}
.header-inner .main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.header-inner .header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav ul, .main-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav .menu-item--cart {
  position: relative;
}
.main-nav .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  color: #111;
}
.main-nav .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #0e2a47; /* groh blau */
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.main-nav .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}
.main-nav .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  color: #0c0f14;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.main-nav .menu-item > a:hover {
  color: #6e1e1e;
}
.main-nav .menu-item.current-menu-item > a, .main-nav .menu-item.current-menu-ancestor > a, .main-nav .menu-item.is-active > a {
  color: #882626;
}
.main-nav .menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 30px; /* Abstand zum Submenu */
}

.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 20px); /* hier Abstand einstellen */
  left: 100%;
  background: #2f2f2f;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  padding: 14px 10px;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
.main-nav .sub-menu li {
  display: block;
}
.main-nav .sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 12px;
  transition: background 0.14s ease, opacity 0.14s ease;
}
.main-nav .sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.main-nav .sub-menu li.current-menu-item > a,
.main-nav .sub-menu li.is-active > a {
  background: #882626;
  color: #fff;
}
.main-nav .sub-menu li.current-menu-item > a:hover,
.main-nav .sub-menu li.is-active > a:hover {
  background: #882626;
}
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.main-nav .submenu-label {
  position: absolute;
  top: calc(100% - 34px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1;
  color: #0c0f14;
  background: #f2f3f6;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  display: none;
  white-space: nowrap;
}
.main-nav .menu-item-has-children:hover > .submenu-label,
.main-nav .menu-item-has-children:focus-within > .submenu-label {
  display: inline-block;
}

.header-actions a, .header-actions button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c0f14;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
}
.header-actions a:hover, .header-actions button:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #6e1e1e;
}
.header-search {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 16px;
  background: #f2f3f6;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.header-search:focus-within {
  background: #fff;
  border-color: #882626;
}
.header-search__input {
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  font-size: 14px;
  color: #0c0f14;
  width: 160px;
  padding: 6px 0;
}
.header-search__input::placeholder { color: #8a8f99; }
.header-search__btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 0;
  background: #882626;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.header-search__btn:hover { background: #6e1e1e; }
.header-search__btn svg { width: 16px; height: 16px; display: block; }
@media (max-width: 1200px) {
  .header-search__input { width: 130px; }
  .header-inner .main-nav .menu { gap: 22px; }
}
@media (max-width: 1024px) {
  .header-search { display: none; }
}

.header-actions a svg, .header-actions button svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 0 18px;
    gap: 16px;
  }
  .header-inner .main-nav {
    justify-content: flex-start;
  }
  .main-nav .menu {
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .main-nav .menu {
    gap: 14px;
  }
  .main-nav .menu > li > a {
    font-size: 16px;
  }
  .main-nav .sub-menu {
    left: 0;
    transform: none;
  }
}
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 35%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75)), linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 55%), #0b0f14;
  filter: saturate(0.95);
}

.hero-slider {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  height: clamp(320px, 42vw, 520px);
}
.hero-slider .swiper-slide {
  position: relative;
  height: 100%;
}
.hero-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 1;
}
.hero-slider .hero-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.hero-slider {
  /*dezente Abdunklung für Lesbarkeit, ohne “Milchglas”
    .swiper-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.05) 100%),
        linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.35) 100%);
      pointer-events: none;
    }
  */
}
.hero-slider .hero-slide__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 350px);
  max-width: 1520px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-slider .hero-slide__title,
.hero-slider .hero-slide__text {
  max-width: 70%;
  text-align: right;
}
.hero-slider .hero-slide__btn {
  align-self: flex-end;
}
.hero-slider .hero-slide__title,
.hero-slider .hero-slide__text {
  color: #fff;
  margin: 0;
}
.hero-slider .hero-slide__title {
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.2px;
  background: none;
  padding: 0;
}
.hero-slider .hero-slide__title > span {
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background: rgba(0, 0, 0, 0.62);
  padding: 0.2em 0.55em;
}
.hero-slider .hero-slide__text {
  margin-top: 14px;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.7;
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
}
.hero-slider .hero-slide__text > span {
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3em 0.7em;
}
.hero-slider .hero-slide__btn {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #882626;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.hero-slider .hero-slide__btn:hover {
  transform: translateY(-1px);
  background: rgba(235, 235, 235, 0.92);
  color: rgba(0, 0, 0, 0.85);
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 3;
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.38);
  transform: scale(1.03);
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.hero-slider .swiper-button-prev {
  left: 14px;
}
.hero-slider .swiper-button-next {
  right: 14px;
}
.hero-slider .swiper-pagination {
  bottom: 14px !important;
}
.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: transform 0.15s ease, background 0.15s ease;
}
.hero-slider .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
}

@media (max-width: 820px) {
  .hero {
    padding: 0;
  }
  .hero-slider {
    width: 100%;
  }
  .hero-slider .hero-slide__content {
    left: 36px;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: calc(100% - 72px);
    align-items: flex-start;
  }
  .hero-slider .hero-slide__title,
  .hero-slider .hero-slide__text {
    max-width: 100%;
    text-align: left;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
  .hero-slider .hero-slide__btn {
    align-self: flex-start;
  }
  .hero-slider .hero-slide__title {
    font-size: clamp(18px, 5.5vw, 26px);
    display: inline-block;
  }
  .hero-slider .hero-slide__text {
    font-size: 13px;
  }
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 25px;
  background-color: #882626;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.einstieg {
  padding-top: 100px;
  padding-bottom: 100px;
}
.einstieg h1 {
  font-size: clamp(22px, 4.2vw, 38px);
  line-height: 1.2;
  margin: 0 0 18px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.einstieg p {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .einstieg {
    padding: 40px 20px;
  }
}

.site-footer {
  background: #f2f2f2;
  color: #111;
  padding: 56px 0;
}

.site-footer__inner {
  width: min(1200px, 100% - 80px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.footer-col__rule {
  display: block;
  height: 1px;
  width: 72%;
  background: rgba(0, 0, 0, 0.18);
  margin: 0 0 22px 0;
}

.footer-col__title {
  margin: 0 0 8px 0;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.footer-col__meta {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(0, 0, 0, 0.48);
  text-decoration: none;
  line-height: 1.35;
}

a.footer-col__meta:hover {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col__meta a {
  color: rgba(0, 0, 0, 0.48);
  text-decoration: none;
}
.footer-col__meta a:hover {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer CTA */
.footer-cta {
  padding: 80px 0;
  text-align: center;
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: #111;
  margin: 0;
  line-height: 1.2;
}
.footer-cta__title strong {
  font-weight: 900;
}
.footer-cta__btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #882626;
  border-radius: 40px;
  color: #882626;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-cta__btn:hover {
  background: #882626;
  color: #fff;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0e2a47;
  color: #fff;
  transition: background .15s;
}
.footer-social a:hover {
  background: #882626;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Footer Logo Slider */
.footer-logo-slider {
  margin-top: 8px;
  padding-bottom: 28px;
}
.footer-logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo-slider .swiper-slide a {
  display: block;
}
.footer-logo-slider .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.footer-logo-pagination {
  position: relative !important;
  margin-top: 12px;
  text-align: left !important;
}
.footer-logo-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,.25);
  opacity: 1;
}
.footer-logo-pagination .swiper-pagination-bullet-active {
  background: #0e2a47;
}

/* Footer Legal */
.site-footer__legal {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}
.site-footer__legal a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.site-footer__legal a:hover {
  color: #111;
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0e2a47;
  color: #fff;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  min-width: 260px;
}
.cookie-banner__text a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background .15s;
}
.cookie-banner__btn--accept {
  background: #882626;
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  background: #6e1e1e;
}
.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
}
.cookie-banner__btn--decline:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* responsive */
@media (max-width: 980px) {
  .site-footer__inner {
    width: min(1200px, 100% - 40px);
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 44px;
  }
  .footer-col__rule {
    width: 78%;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 0;
  }
  .site-footer__inner {
    width: min(1200px, 100% - 40px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-col__rule {
    width: 50%;
    margin-bottom: 8px;
  }
  .footer-col__title {
    font-size: 15px !important;
    margin-bottom: 3px;
  }
  .footer-col__meta,
  .footer-col__meta a {
    font-size: 14px !important;
    line-height: 1.5;
  }
  .footer-social {
    gap: 8px;
  }
  .footer-social a {
    width: 30px;
    height: 30px;
  }
  .footer-social svg {
    width: 14px;
    height: 14px;
  }
  .footer-logo-slider {
    padding-bottom: 0;
    overflow: visible;
  }
  .footer-logo-slider .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    transform: none !important;
    gap: 8px;
  }
  .footer-logo-slider .swiper-slide {
    width: calc((100% - 16px) / 3) !important;
    flex: 0 0 calc((100% - 16px) / 3) !important;
  }
  .footer-logo-slider .swiper-slide a {
    max-width: 100%;
    display: block;
  }
  .footer-logo-slider .swiper-slide img {
    border-radius: 4px;
  }
  .footer-logo-pagination {
    display: none !important;
  }
  .footer-cta {
    padding: 40px 0;
  }
  .footer-cta__title {
    font-size: 22px !important;
  }
  .footer-cta__btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}/*# sourceMappingURL=style.css.map */