@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  /* height: 100% kann in Safari Scroll-Probleme machen, besser: */
  min-height: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Verhindert das horizontale Zucken der Leiste */
}
body {
  font-family: "Jost", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.47;
  color: #1b1b1b;
  background-color: #FFFFFF;
  padding-top: 80px;
}
@media (max-width: 1350px) {
  body {
    padding-top: 50px;
  }
}
#cmplz-manage-consent .cmplz-manage-consent {
  display: none !important;
}
a {
  text-decoration: none;
  color: #1b1b1b;
}
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1b1b1b;
  text-transform: none;
}
.h1_style {
  font-size: 3.4375rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1b1b1b;
  text-transform: none;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 1024px) {
  .h1_style {
    font-size: 2.5rem;
  }
}
h1 {
  font-size: 3.4375rem;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
h2.section-headline {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  h2.section-headline {
    margin-bottom: 40px;
  }
}
h3 {
  font-size: 1.4rem;
  margin-top: 30px;
}
h4 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
ul {
  margin-left: 22px;
}
.wrapper {
  max-width: 2080px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
@media (max-width: 1024px) {
  .wrapper {
    padding: 0 30px;
  }
}
.intro {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: left;
}
@media (max-width: 1024px) {
  .intro {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.intro .wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.intro p {
  margin-bottom: 16px;
}
.intro p:last-child {
  margin-bottom: 0;
}
.intro.textabschnitt h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.intro.textabschnitt h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.btn {
  position: relative;
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 35px;
  background: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF !important;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FFFFFF;
  z-index: -1;
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn:hover {
  color: #000000 !important;
}
.btn:hover::before {
  height: 100%;
}
.btn.btn-black {
  border-color: #1b1b1b;
  color: #1b1b1b !important;
}
.btn.btn-black::before {
  background: #1b1b1b;
}
.btn.btn-black:hover {
  color: #FFFFFF !important;
}
@media (max-width: 1024px) {
  .btn {
    padding: 12px 25px;
  }
}
#mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: block !important;
  visibility: hidden;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: 0.5s ease;
}
#mobile-nav-overlay .mobile-menu-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 580px) {
  #mobile-nav-overlay .mobile-menu-inner {
    max-width: 100%;
    padding: 30px;
  }
}
#mobile-nav-overlay .mobile-menu-inner .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-shrink: 0;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-menu-header .mobile-logo svg {
  width: 30px;
  height: auto;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-menu-header .mobile-logo svg path {
  fill: #1b1b1b;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-menu-header .close-menu {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 38px;
}
@media (max-width: 580px) {
  #mobile-nav-overlay .mobile-menu-inner .mobile-menu-header .close-menu {
    top: 30px;
  }
}
#mobile-nav-overlay .mobile-menu-inner .mobile-menu-header .close-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1b1b1b;
  position: absolute;
  top: 50%;
  left: 0;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-menu-header .close-menu span:nth-child(1) {
  transform: rotate(45deg);
}
#mobile-nav-overlay .mobile-menu-inner .mobile-menu-header .close-menu span:nth-child(2) {
  transform: rotate(-45deg);
}
#mobile-nav-overlay .mobile-menu-inner .mobile-nav-list ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  margin-left: 0;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-nav-list ul li a {
  color: #1b1b1b;
  text-decoration: none;
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-nav-list .menu-main-navigation-mobile-second-container ul {
  border-top: 1px solid grey;
  padding-top: 25px;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-nav-list .menu-main-navigation-mobile-second-container ul li a {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-nav-list .menu-main-navigation-mobile-second-container ul li a .menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #1b1b1b;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-nav-list .menu-main-navigation-mobile-second-container ul li a .menu-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#mobile-nav-overlay .mobile-menu-inner .rechtliches {
  padding-top: 20px;
  border-top: 1px solid grey;
  margin-bottom: 30px;
}
#mobile-nav-overlay .mobile-menu-inner .rechtliches ul {
  list-style: none;
  margin-left: 0;
}
#mobile-nav-overlay .mobile-menu-inner .rechtliches ul li {
  line-height: 1.3;
}
#mobile-nav-overlay .mobile-menu-inner .rechtliches ul li a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-contact-btns {
  margin-top: auto;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 120px;
  flex-shrink: 0;
}
#mobile-nav-overlay .mobile-menu-inner .mobile-contact-btns .btn {
  display: block;
  text-align: center;
  width: 100%;
}
header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  background: #000000;
  color: #FFFFFF;
  transition: transform 0.4s ease-in-out;
}
header.nav-up {
  transform: translateY(-100%);
}
@media (max-width: 1350px) {
  header {
    height: 50px;
  }
}
header .flex.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 80px;
  position: relative;
}
@media (max-width: 1350px) {
  header .flex.wrapper {
    padding: 0 30px;
  }
}
header .flex.wrapper .nav-container {
  flex: 1;
  display: flex;
  align-items: center;
}
header .flex.wrapper .nav-container nav.nav.desktop {
  display: block;
}
@media (max-width: 1350px) {
  header .flex.wrapper .nav-container nav.nav.desktop {
    display: none;
  }
}
header .flex.wrapper .nav-container nav.nav.desktop ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
header .flex.wrapper .nav-container nav.nav.desktop ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  text-transform: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
header .flex.wrapper .nav-container nav.nav.desktop ul li a:hover {
  opacity: 1;
}
header .flex.wrapper .nav-container nav.nav.desktop ul li.current-menu-item a, header .flex.wrapper .nav-container nav.nav.desktop ul li.current_page_item a {
  opacity: 1;
}
header .flex.wrapper .nav-container .burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
@media (max-width: 1350px) {
  header .flex.wrapper .nav-container .burger-menu {
    display: flex;
  }
}
header .flex.wrapper .nav-container .burger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background: #FFFFFF;
}
header .flex.wrapper .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10003;
  opacity: 0.7;
  transition: 0.3s ease;
}
header .flex.wrapper .logo:hover {
  opacity: 1;
}
header .flex.wrapper .logo svg {
  width: 33px;
  height: auto;
}
header .flex.wrapper .logo svg path {
  fill: #FFFFFF;
}
@media (max-width: 1350px) {
  header .flex.wrapper .logo svg {
    width: 28px;
  }
}
header .flex.wrapper .kontakt {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
header .flex.wrapper .kontakt a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
header .flex.wrapper .kontakt a .text {
  display: inline-block;
}
@media (max-width: 1024px) {
  header .flex.wrapper .kontakt a .text {
    display: none !important;
  }
}
header .flex.wrapper .kontakt a .icon {
  display: none;
}
@media (max-width: 1024px) {
  header .flex.wrapper .kontakt a .icon {
    display: flex;
    font-size: 1.3rem;
  }
  header .flex.wrapper .kontakt a .icon svg {
    width: 30px;
    fill: #FFFFFF;
  }
  header .flex.wrapper .kontakt a .icon svg path, header .flex.wrapper .kontakt a .icon svg circle, header .flex.wrapper .kontakt a .icon svg line {
    fill: #FFFFFF;
  }
}
header .flex.wrapper .kontakt a:hover {
  opacity: 1;
}
body.nav-open {
  overflow: hidden;
}
body.nav-open #mobile-nav-overlay {
  visibility: visible !important;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}
body.nav-open #mobile-nav-overlay .mobile-menu-inner {
  transform: translateX(0) !important;
}
body.nav-open header .flex .logo, body.nav-open header .flex .kontakt, body.nav-open header .flex .nav-container {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: none !important;
}
.slider {
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1530px) {
  .slider {
    height: 600px;
    aspect-ratio: auto;
  }
}
@media (max-width: 1024px) {
  .slider {
    height: auto;
    aspect-ratio: 1.6875;
  }
}
@media (max-width: 480px) {
  .slider {
    aspect-ratio: 1;
  }
}
.slider .swiper {
  width: 100%;
  height: 100%;
}
.slider .swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.slider .swiper .swiper-slide .slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.slider .swiper .swiper-slide .slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.slider .swiper .swiper-slide .slide-bg .slide-image, .slider .swiper .swiper-slide .slide-bg .slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider .swiper .swiper-slide .wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}
.slider .swiper .swiper-slide .slide-content {
  color: #FFFFFF;
  margin-top: -80px;
}
@media (max-width: 1024px) {
  .slider .swiper .swiper-slide .slide-content {
    margin-top: 0px;
  }
}
.slider .swiper .swiper-slide .slide-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 3.4375rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .slider .swiper .swiper-slide .slide-content h1 {
    font-size: 2.5rem;
  }
}
.slider .swiper .swiper-slide .slide-content .button-group {
  display: flex;
  gap: 20px;
  margin-top: 2.5rem;
}
@media (max-width: 650px) {
  .slider .swiper .swiper-slide .slide-content .button-group {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.slider .swiper-pagination {
  bottom: 30px !important;
}
.slider .swiper-pagination-bullet {
  width: 20px;
  /* Standard ist meist 8px */
  height: 20px;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 6px !important;
  /* Etwas mehr Abstand zwischen den großen Punkten */
  transition: all 0.3s ease;
}
/* Den aktiven Punkt hervorheben */
.slider .swiper-pagination-bullet-active {
  opacity: 1;
}
.feature-section {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .feature-section {
    padding: 40px 0 80px 0;
  }
}
@media (max-width: 768px) {
  .feature-section {
    padding: 40px 0 40px 0;
  }
}
.feature-section .feature-row {
  margin-bottom: 80px;
}
.feature-section .feature-row:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .feature-section .feature-row {
    margin-bottom: 40px;
  }
}
.feature-section .feature-row .feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  width: 100%;
  gap: 0;
}
@media (max-width: 1024px) {
  .feature-section .feature-row .feature-grid {
    display: flex;
    flex-direction: column;
  }
}
.feature-section .feature-row .feature-image {
  width: 100%;
  min-width: 0;
  position: relative;
}
@media (max-width: 1024px) {
  .feature-section .feature-row .feature-image {
    order: 1 !important;
    margin-bottom: 10px;
  }
}
.feature-section .feature-row .feature-image .feature-fancy-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}
.feature-section .feature-row .feature-image .feature-fancy-link::before {
  content: "+";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 3.5rem;
  font-weight: 200;
  opacity: 0;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(10px);
}
@media (hover: none) {
  .feature-section .feature-row .feature-image .feature-fancy-link::before {
    display: none;
  }
}
.feature-section .feature-row .feature-image .feature-fancy-link:hover::before {
  opacity: 1;
  transform: translateY(0);
}
.feature-section .feature-row .feature-image .feature-fancy-link img, .feature-section .feature-row .feature-image .feature-fancy-link video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-section .feature-row .feature-image .feature-fancy-link:hover img, .feature-section .feature-row .feature-image .feature-fancy-link:hover video {
  transform: scale(1.05);
}
.feature-section .feature-row .feature-image .feature-swiper {
  width: 100%;
  aspect-ratio: 1.5;
  background-color: #f9f9f9;
  overflow: hidden;
  position: relative;
}
.feature-section .feature-row .feature-content {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .feature-section .feature-row .feature-content {
    padding: 0 0 0 60px;
  }
}
@media (max-width: 1200px) {
  .feature-section .feature-row .feature-content {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .feature-section .feature-row .feature-content {
    padding: 15px 0 0 0;
    order: 2 !important;
  }
}
.feature-section .feature-row .feature-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.feature-section .feature-row .feature-content p {
  margin-bottom: 10px;
  opacity: 0.9;
  line-height: 1.6;
}
.feature-section .feature-row .feature-content p:last-of-type {
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .feature-section .feature-row:nth-child(odd) .feature-image {
    order: 1;
  }
  .feature-section .feature-row:nth-child(odd) .feature-content {
    order: 2;
  }
  .feature-section .feature-row:nth-child(even) .feature-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .feature-section .feature-row:nth-child(even) .feature-image {
    order: 2;
  }
  .feature-section .feature-row:nth-child(even) .feature-content {
    order: 1;
    padding: 0 120px;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .feature-section .feature-row:nth-child(even) .feature-content {
    padding: 0 60px 0 30px;
  }
}
.feature-pagination.swiper-pagination {
  position: relative !important;
  text-align: left;
  bottom: 0 !important;
  z-index: 10;
  display: flex;
  gap: 15px;
}
@media (max-width: 1530px) {
  .feature-pagination.swiper-pagination {
    margin-top: 10px;
    gap: 10px;
  }
}
.feature-pagination.swiper-pagination .swiper-pagination-bullet {
  background: #000 !important;
  opacity: 0.2;
  margin: 0 !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.feature-pagination.swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}
.feature-pagination.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 1530px) {
  .feature-pagination.swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
}
.feature-content .feature-pagination {
  display: flex !important;
  margin: 0px 0 30px 0;
}
@media (max-width: 1024px) {
  .feature-content .feature-pagination {
    display: none !important;
  }
}
.feature-image .feature-pagination.mobile-pagination {
  display: none !important;
}
@media (max-width: 1024px) {
  .feature-image .feature-pagination.mobile-pagination {
    display: flex !important;
    margin: 20px 0 0 0;
    justify-content: flex-start;
  }
}
/* ==========================================================================
   9. REVEAL & LAZYLOAD (Optimiert für Safari & Fancybox)
   ========================================================================== */
.reveal, .lazy-img, .lazy-bg {
  opacity: 0;
  /* Initialer State: Versatz nach unten */
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  /* Performance-Booster: Bereitet den Browser auf die Animation vor */
  will-change: opacity, transform;
  /* Wichtig für Safari Performance & Vermeidung von Flackern */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/* Sichtbarer Zustand */
.reveal.visible, .lazy-img.visible, .lazy-bg.visible {
  opacity: 1;
  /* Wir nutzen weiterhin translate3d(0,0,0) statt 'none'. 
	   Das verhindert den Layout-Jump (Zucken), da das Element 
	   im gleichen Rendering-Context bleibt. */
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
/* HINWEIS FÜR FANCYBOX: 
   Sollte Fancybox trotz translate3d(0,0,0) Probleme beim Zoomen haben, 
   ist es meist besser, das Transform-Attribut per JavaScript nach 
   Abschluss der Transition (0.6s) komplett zu entfernen, 
   statt es hart per CSS-Transition-Delay zu 'snappen'.
*/
/* Feature-Rows & Delays */
.feature-row.visible .feature-content {
  transition-delay: 0.1s;
  /* Konsistente Rückführung ohne Springen */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* Spezial-Fix für Background-Images */
.lazy-bg {
  /* Verhindert Probleme mit 'fixed' Backgrounds in Kombination mit Transforms */
  background-attachment: scroll;
}
.cta {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
  /* Standard für Home etc. */
  padding-top: 290px;
  padding-bottom: 290px;
}
@media (max-width: 1530px) {
  .cta {
    padding-top: 190px;
    padding-bottom: 190px;
  }
}
.cta.cta--no-margin {
  margin-top: 0 !important;
}
@media (max-width: 1024px) {
  .cta {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}
@media (max-width: 768px) {
  .cta {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 0px;
  }
}
.cta .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.cta .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.cta .wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 80px;
}
@media (max-width: 1024px) {
  .cta .wrapper {
    padding: 0 30px;
  }
}
.cta .cta-content {
  max-width: 650px;
  color: #FFFFFF;
  text-align: left;
}
.cta .cta-content h2 {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .cta .cta-content h2 {
    font-size: 2.5rem;
  }
}
.cta .cta-content p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.kontakt-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .kontakt-section {
    padding: 40px 0;
  }
}
.kontakt-section .kontakt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kontakt-section .kontakt-content {
  max-width: 720px;
  margin-bottom: 60px;
}
.kontakt-section .kontakt-content p {
  margin-bottom: 2.5rem;
}
.kontakt-section .kontakt-content .button-group {
  display: flex;
  justify-content: center;
}
.kontakt-section .kontakt-image {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
.kontakt-section .kontakt-image img {
  width: 100%;
  display: block;
}
.footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0 40px 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 40px 0;
  }
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer .footer-col {
  /* Vereinheitlichter Zeilenabstand für P, UL und LI */
  /* Jedes Element innerhalb der Spalte kriegt den exakt gleichen Unterabstand */
  /* Letztes Element braucht keinen Abstand */
}
.footer .footer-col h3 {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 1.5rem;
  /* Abstand von Headline zu Inhalt */
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .footer .footer-col h3 {
    margin-top: 30px;
  }
}
.footer .footer-col p, .footer .footer-col ul, .footer .footer-col .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.0625rem;
  line-height: 1.25;
}
.footer .footer-col p, .footer .footer-col li, .footer .footer-col a[style*="display: block"] {
  margin-bottom: 10px !important;
}
.footer .footer-col p:last-child, .footer .footer-col li:last-child, .footer .footer-col a:last-child {
  margin-bottom: 0 !important;
}
.footer .footer-col a {
  color: #FFFFFF !important;
  text-decoration: none;
  font-size: 1.0625rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: inline-block;
}
.footer .footer-col a:hover {
  opacity: 0.7 !important;
  color: #FFFFFF !important;
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 0px;
  padding-top: 20px;
}
.footer .footer-social a {
  display: inline-block;
  color: #FFFFFF !important;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.footer .footer-social a .social-icon {
  width: 40px;
  height: 40px;
  display: block;
}
.footer .footer-social a:hover {
  opacity: 0.7 !important;
}
.footer .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}
.footer .footer-bottom p {
  font-size: 1rem;
  opacity: 0.7;
  color: #FFFFFF;
  margin-bottom: 0 !important;
}
/* Container für das Menü */
.footer-horizontal-menu {
  width: 100%;
  margin: 30px 0 20px 0;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  /* Dezente Trennlinie */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  /* Dezente Trennlinie */
  margin-top: 60px;
}
/* Die Liste selbst */
.horizontal-icon-list {
  display: flex;
  justify-content: center;
  /* Zentriert das Menü */
  flex-wrap: wrap;
  /* Umbruch auf kleinen Bildschirmen */
  gap: 30px;
  /* Abstand zwischen den Punkten */
  list-style: none;
  padding: 0;
  margin: 0;
}
.horizontal-icon-list li a {
  display: grid;
  grid-template-columns: auto 1fr;
  /* Icon links, Text füllt den Rest */
  gap: 8px;
  /* Abstand Icon zu Text */
  align-items: center;
  text-decoration: none;
  opacity: 1;
  font-size: 1rem;
  transition: 0.3s ease;
  color: #fff;
}
.horizontal-icon-list li a:hover {
  opacity: 0.7;
}
.horizontal-icon-list .menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.horizontal-icon-list .menu-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  /* Identische Linienstärke wie Rest der Seite */
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 1024px) {
  .horizontal-icon-list {
    justify-content: flex-start;
    /* Links bündig auf Mobile */
    gap: 20px;
    /* Etwas kompakter */
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.faq-section {
  padding: 80px 0 80px 0;
  background-color: #FFFFFF;
}
@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 0 80px 0;
  }
}
.faq-section .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-section .faq-main-headline {
  width: 100%;
  max-width: 900px;
  margin-bottom: 40px;
  text-align: center;
}
.faq-section .faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.faq-section .faq-item {
  border-top: 2px solid #1b1b1b;
}
.faq-section .faq-item:last-child {
  border-bottom: 2px solid #1b1b1b;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.faq-section .faq-item .faq-question:hover {
  opacity: 0.7;
}
.faq-section .faq-item .faq-question h3 {
  margin: 0 !important;
  text-align: left;
  padding-right: 20px;
}
.faq-section .faq-item .faq-question .faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1b1b1b;
}
.faq-section .faq-item .faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
}
.faq-section .faq-item .faq-answer {
  overflow: hidden;
}
.faq-section .faq-item .faq-answer .faq-answer-inner {
  padding: 0 40px 40px 0;
  text-align: left;
}
.faq-section .faq-item .faq-answer .faq-answer-inner p {
  line-height: 1.7;
  margin-bottom: 10px;
}
.faq-section .faq-item .faq-answer .faq-answer-inner p:last-child {
  margin-bottom: 0;
}
.faq-section .faq-item .faq-answer .faq-answer-inner li {
  margin-bottom: 10px;
}
.faq-section .faq-item .faq-answer .faq-answer-inner li:last-child {
  margin-bottom: 0;
}
.faq-section .faq-item .faq-answer .faq-answer-inner a {
  text-decoration: underline;
  transition: opacity 0.3s ease, color 0.3s ease;
  color: inherit;
}
.faq-section .faq-item .faq-answer .faq-answer-inner a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .faq-section .faq-item .faq-answer .faq-answer-inner {
    padding: 0 0 30px 0;
  }
}
/* ==========================================================================
   13. Editionen (Komplett mit Responsive Typography)
   ========================================================================== */
.section-editionen {
  padding-top: 80px;
  text-align: left;
  /* Sektions-Headline H1 */
}
.section-editionen .section-headline {
  font-size: 3.4375rem;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .section-editionen .section-headline {
    font-size: 2.5rem;
    /* H1 Anpassung für Mobile */
  }
}
.section-editionen .editionen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-bottom: 80px;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .section-editionen .editionen-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .section-editionen .editionen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .section-editionen .editionen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-editionen .edition-item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  /* Item-Headline H2 */
  /* Safari Hover-Fix */
}
.section-editionen .edition-item .edition-image {
  position: relative;
  width: 100%;
  aspect-ratio: 0.75;
  margin-bottom: 12px;
  overflow: hidden;
  background-color: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.section-editionen .edition-item .edition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.section-editionen .edition-item h2.edition-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
  /* DEIN MOBILE FIX */
}
@media (max-width: 768px) {
  .section-editionen .edition-item h2.edition-title {
    font-size: 2rem;
  }
}
.section-editionen .edition-item h2.edition-title a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.section-editionen .edition-item:hover .edition-image img {
  opacity: 0.7 !important;
}
.weitere-editionen-section {
  padding-top: 40px;
  padding-bottom: 80px;
  border: none;
}
.weitere-editionen-section .editionen-grid {
  border-bottom: 0;
}
.weitere-editionen-section h2.section-headline {
  /* Deine exakten h1-Werte */
  font-weight: 600;
  font-size: 3.4375rem;
  /* ~55px */
  line-height: 1.1;
  margin-bottom: 30px;
  /* Leicht erhöht für den Abstand zum Grid */
  text-align: left;
}
/* Responsive Anpassung für Mobilgeräte (40px/80px Sektions-Abstand) */
@media (max-width: 1023px) {
  .weitere-editionen-section h2.section-headline {
    /* Mobil etwas kleiner, falls deine h1 dort auch skaliert */
    font-size: 2.2rem;
  }
}
/* Desktop-Abstände für die Sektion (80px/160px) */
@media (min-width: 1024px) {
  .weitere-editionen-section {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}
.messerkurs-ablauf {
  padding: 160px 0;
}
.messerkurs-ablauf h2.section-headline {
  line-height: 1.1;
  margin-bottom: 80px;
  text-align: center;
}
.ablauf-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
/* NAVIGATION (Desktop) */
.ablauf-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.step-item.active {
  opacity: 1;
  transform: translateX(10px);
}
.step-number {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  min-width: 50px;
}
.step-label {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
/* CONTENT BEREICH */
.mobile-step-title {
  display: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 15px;
}
.step-content {
  display: none;
  width: 100%;
  animation: fadeIn 0.5s ease forwards;
}
.step-content.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.step-text {
  line-height: 1.7;
  text-align: left;
}
.step-text h3 {
  margin-top: 0;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.step-image {
  width: 100%;
}
.step-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* MOBIL-ANPASSUNG (Zentriert) */
@media (max-width: 1024px) {
  .messerkurs-ablauf {
    padding: 80px 0;
  }
  .ablauf-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }
  .ablauf-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    width: 100%;
  }
  .step-label {
    display: none;
  }
  .step-item.active {
    transform: scale(1.1);
  }
  .step-text {
    text-align: center;
  }
  .step-text h3 {
    font-size: 1.8rem;
  }
  .mobile-step-title {
    display: block;
    text-align: center;
  }
  .step-image {
    margin: 0 auto;
    max-width: 500px;
  }
}
/* ==========================================================================
   16. Preise
   ========================================================================== */
.preise-section {
  padding: 160px 0 160px;
  background-color: #000000;
  /* Schwarzer Hintergrund für die gesamte Section */
}
@media (max-width: 1024px) {
  .preise-section {
    padding: 80px 0 80px 0;
  }
}
.preise-section h2 {
  color: #FFFFFF;
}
.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding: 20px;
  /* Puffer für den Zoom */
}
.preis-card {
  background: #f4f4f4;
  /* Hellgraue Cards */
  color: #000000;
  /* Schwarze Schrift */
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  /* Smooth Transition Setup */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.5s ease;
  will-change: transform;
}
/* DER SMOOTH HOVER */
.preis-card:hover {
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
  /* Schatten auf Schwarz angepasst */
  box-shadow: 0 30px 60px rgba(255, 255, 255, 0.1);
  z-index: 10;
}
.preis-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}
@media (max-width: 1024px) {
  .preis-card h3 {
    font-size: 2rem;
  }
}
.price-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000000;
}
.price-explanation {
  font-size: 1rem;
  margin-bottom: 60px;
  color: #333333;
  /* Dunkelgrau für bessere Lesbarkeit auf Hellgrau */
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  width: 100%;
}
.features-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000000;
}
.features-list li.check::before {
  content: "✓";
  color: #27ae60;
}
.features-list li.cross::before {
  content: "✕";
  color: #c0392b;
}
.preis-card.premium .features-list li.cross::before {
  content: "✓";
  color: #27ae60;
}
/* Button zurück auf Standard (btn-anfrage) oder dunkle Variante */
.preis-card .btn-anfrage {
  margin-top: auto;
}
/* Mobil-Stack */
@media (max-width: 1024px) {
  .preise-grid {
    grid-template-columns: 1fr;
  }
  .preise-section {
    padding: 80px 0 80px 0;
  }
  .preis-card:hover {
    transform: scale3d(1.02, 1.02, 1);
  }
}
.messerkurs-galerie {
  padding: 160px 0 80px 0;
  text-align: left;
}
@media (max-width: 1024px) {
  .messerkurs-galerie {
    padding: 80px 0 40px 0;
  }
}
.messerkurs-galerie .section-headline {
  margin-bottom: 60px;
}
.messerkurs-galerie .kurs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media (max-width: 1200px) {
  .messerkurs-galerie .kurs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .messerkurs-galerie .kurs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .messerkurs-galerie .kurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.messerkurs-galerie .kurs-item {
  text-decoration: none;
  color: inherit;
  display: block;
  outline: 0 !important;
}
.messerkurs-galerie .kurs-item .kurs-image-wrap {
  width: 100%;
  aspect-ratio: 0.75;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fff;
}
.messerkurs-galerie .kurs-item .kurs-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  /* Fix gegen Lazy-Loading Opacity 0 & Standard-Look */
  opacity: 1 !important;
  visibility: visible !important;
}
.messerkurs-galerie .kurs-item:hover .kurs-image-wrap img {
  opacity: 0.7 !important;
}
.messerkurs-galerie .kurs-item .kurs-title {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0;
  line-height: 1.2;
  text-align: left;
  font-size: 2.5rem;
  font-weight: 500;
  text-transform: none;
  color: #000;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .messerkurs-galerie .kurs-item .kurs-title {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
/* ==========================================================================
   FANCYBOX CUSTOM SETUP (v4/v5)
   ========================================================================== */
.fancybox__container {
  /* 1. Fokus & Layering */
  z-index: 99999 !important;
  /* 2. Variablen für Thumbnails und Abstände */
  --fancybox-thumbs-width: 100%;
  --fancybox-thumbs-height: 90px;
  /* 3. DER ABSTAND: 60px rundherum um das Bild */
  --fancybox-content-margin: 60px;
}
/* Fallback für das Padding (erzwingt den Abstand in allen Versionen) */
.fancybox__slide {
  padding: 60px !important;
}
/* FIX GEGEN DAS ZUCKEN: 
   Deaktiviert deine 0.8s Slider-Transition, während Fancybox animiert */
.fancybox__opening .feature-fancy-link img, .fancybox__closing .feature-fancy-link img, .is-opening .feature-fancy-link img, .is-closing .feature-fancy-link img {
  transition: none !important;
  transform: none !important;
}
/* Bild-Optimierung & Rendering */
.fancybox__content > .fancybox__image {
  backface-visibility: hidden;
  transform: translateZ(0);
}
/* Thumbnail-Leiste Styling */
.fancybox__thumbs {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.2);
}
/* Fullscreen-Icon entfernen (falls vorhanden) */
.fancybox__button--fullscreen {
  display: none !important;
}
/* ==========================================================================
   MOBILE ANPASSUNG (Für 1024px & Smartphones)
   ========================================================================== */
@media (max-width: 1024px) {
  .fancybox__container {
    /* Weniger Rand auf Mobile, damit das Bild sichtbar bleibt */
    --fancybox-content-margin: 20px;
    --fancybox-thumbs-height: 70px;
  }
  .fancybox__slide {
    padding: 20px !important;
  }
}
@media (max-width: 768px) {
  /* Speziell für sehr kleine Screens noch kompakter */
  .fancybox__container {
    --fancybox-content-margin: 10px;
  }
  .fancybox__slide {
    padding: 10px !important;
  }
}
/* ==========================================================================
   17. Chatbot (iOS Optimized + Inline Centered Privacy)
   ========================================================================== */
/* Scroll-Sperre Klasse - Optimiert für iOS */
body.chat-open {
  overflow: hidden !important;
  height: 100%;
}
/* --- Privacy Overlay --- */
.chat-privacy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
}
.chat-privacy-content {
  width: 100%;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chat-privacy-content h3 {
  font-family: inherit;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}
.chat-privacy-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 25px;
}
/* --- INLINE CHECKBOX: Alles im Textfluss zentriert --- */
.chat-privacy-overlay .checkbox-group {
  display: block;
  /* Ermöglicht Text-Zentrierung */
  text-align: center;
  margin-bottom: 25px;
  cursor: pointer;
}
/* Verstecke Standard-Checkbox */
.chat-privacy-overlay input[type="checkbox"] {
  display: none;
}
/* Die Box als Inline-Block innerhalb des Textes */
.chat-privacy-overlay .custom-checkbox {
  display: inline-block;
  vertical-align: middle;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #000;
  background: #fff;
  position: relative;
  margin-right: 6px;
  /* Abstand zum Text */
  margin-top: -2px;
  /* Optischer Ausgleich zur Textlinie */
}
/* Häkchen */
.chat-privacy-overlay .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.chat-privacy-overlay input[type="checkbox"]:checked + .custom-checkbox {
  background: #000;
}
.chat-privacy-overlay input[type="checkbox"]:checked + .custom-checkbox::after {
  display: block;
}
.chat-privacy-overlay .label-text {
  font-size: 13px;
  line-height: 1.6;
  color: #000;
  vertical-align: middle;
  display: inline;
  /* Lässt den Text direkt an der Box weiterlaufen */
}
.chat-privacy-overlay .label-text a {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}
/* --- Button Styling (btn-black) --- */
#start-chat-btn {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 12px 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  min-width: 180px;
}
#start-chat-btn:hover:not(:disabled) {
  background: #333;
  border-color: #333;
}
#start-chat-btn:disabled {
  background: #ccc;
  border-color: #ccc;
  color: #fff;
  cursor: not-allowed;
}
/* --- Trigger & Window Rest --- */
#chat-trigger {
  position: fixed;
  bottom: 60px;
  right: 60px;
  width: 60px;
  height: 60px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  #chat-trigger {
    bottom: 20px;
    right: 20px;
  }
}
#chat-trigger svg {
  width: 35px !important;
  fill: #ffffff !important;
}
#chat-window {
  position: fixed;
  bottom: 130px;
  right: 60px;
  width: 320px;
  height: 450px;
  background: #fff;
  border-radius: 15px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
#chat-window:not(.hidden) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.chat-header {
  padding: 20px 20px 15px 25px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#reset-chat {
  background: none;
  border: none;
  color: #999;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}
#chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.message {
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 85%;
  font-size: 14px;
}
.message.user {
  align-self: flex-end;
  background: #f0f0f0;
}
.message.bot {
  align-self: flex-start;
  background: #000;
  color: #fff;
}
.chat-input-area {
  display: flex;
  padding: 15px;
  border-top: 1px solid #eee;
}
#chat-input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}
#send-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 15px;
  margin-left: 8px;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #chat-window {
    bottom: 90px;
    right: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: 60vh;
    max-height: 500px;
  }
}
#contact-transfer-btn {
  display: none !important;
}
#configOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 999999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.config-container {
  width: 100vw;
}
.config-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.config-container h2 {
  font-size: 1.8rem;
  margin-bottom: 15px !important;
}
.config-container h3 {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}
.config-container button {
  font-size: 13px !important;
}
.config-grid {
  display: flex;
  width: 100%;
  min-height: 100vh;
}
.visualizer-space {
  flex: 1;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px;
  height: 100vh;
  position: sticky;
  top: 0;
}
.layer-stack {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#base-layer {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}
.knife-layer:not(#base-layer) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
#finish-layer {
  z-index: 10;
}
#vorne-layer {
  z-index: 20;
}
#einlage-layer {
  z-index: 30;
}
#hinten-layer {
  z-index: 40;
}
.config-controls {
  width: 450px;
  background: #ffffff;
  padding: 60px 40px;
  border-left: 1px solid #f0f0f0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.02);
}
.config-step {
  margin-bottom: 40px;
}
/* --- CHECKBOX STYLING (Korrigiert für Zentrierung & Funktion) --- */
.checkbox-group {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.checkbox-group label {
  display: inline-block;
  cursor: pointer;
  user-select: none;
}
.checkbox-group input[type="checkbox"] {
  display: none;
}
.checkbox-group .custom-checkbox {
  display: inline-block;
  vertical-align: middle;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #000;
  background: #fff;
  position: relative;
  margin-right: 8px;
  margin-top: -3px;
  transition: all 0.2s ease;
}
.checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-group input[type="checkbox"]:checked + .custom-checkbox {
  background: #000;
}
.checkbox-group input[type="checkbox"]:checked + .custom-checkbox::after {
  display: block;
}
.checkbox-group .label-text {
  font-size: 13px;
  line-height: 1.6;
  color: #000;
  vertical-align: middle;
  display: inline;
}
.checkbox-group .label-text a {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}
.btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-fields input {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-size: 14px;
  outline: none;
}
.config-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.config-step button {
  padding: 10px 10px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #555;
  cursor: pointer;
  transition: all 0.25s ease;
}
.config-step button:hover, .config-step button.active {
  border-color: #000;
  color: #000;
}
.config-step button.active {
  background: #000;
  color: #fff !important;
}
.close-btn {
  position: fixed;
  top: 45px;
  right: 480px;
  cursor: pointer;
  z-index: 10000;
  font-size: 3rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .config-grid {
    flex-direction: column;
  }
  .visualizer-space {
    height: auto;
    aspect-ratio: 1.7777777778;
    width: 100%;
    padding: 20px;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  .config-controls {
    width: 100%;
    padding: 40px 20px;
    border-left: none;
  }
  .close-btn {
    right: 20px;
    top: 20px;
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  .config-grid {
    flex-direction: column;
  }
  .visualizer-space {
    height: auto;
    aspect-ratio: 1.7777777778;
    min-height: 200px;
    width: 100%;
    padding: 20px;
    flex: none;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  .config-controls {
    width: 100%;
    height: auto;
    padding: 40px 20px;
    border-left: none;
    overflow-y: visible;
  }
  .close-btn {
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .config-container h1 {
    font-size: 2rem;
  }
  .config-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px !important;
  }
  .material-row .btn-group, .btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
  }
  .config-step button {
    padding: 10px 4px;
    font-size: 10px !important;
  }
}
@media (max-width: 600px) {
  .close-btn {
    top: 10px;
  }
  .material-row .btn-group, .btn-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .config-step button {
    font-size: 11px !important;
  }
}
@media (max-width: 480px) {
  .config-controls {
    padding-bottom: 100px;
    min-height: 60vh;
  }
  .material-row .btn-group, .btn-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .config-container h1 {
    font-size: 1.5rem;
  }
  .config-step button {
    padding: 12px 8px;
    font-size: 12px !important;
  }
}
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, visibility;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (min-width: 1025px) {
  .modal-backdrop {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}
.modal-backdrop.is-active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-backdrop.is-active .contact-modal {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}
@media (max-width: 1024px) {
  .modal-backdrop.is-active .contact-modal {
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 1024px) {
  .modal-backdrop {
    background: #ffffff;
    align-items: flex-start;
  }
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.contact-modal {
  background: #ffffff;
  width: 95%;
  max-width: 900px;
  padding: 60px 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.95);
  will-change: transform, opacity;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}
@media (max-width: 1024px) {
  .contact-modal {
    width: 100%;
    min-height: 100%;
    padding: 80px 25px 50px;
    box-shadow: none;
    transform: translate3d(0, 40px, 0);
  }
}
.contact-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  color: #000;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.contact-modal .close-btn:hover {
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .contact-modal .close-btn {
    position: fixed;
  }
}
.contact-content {
  text-align: center;
}
.contact-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.contact-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
  line-height: 1.6;
}
.dynamic-option-block {
  margin-bottom: 35px;
  text-align: center;
}
.dynamic-option-block .option-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
  color: #1b1b1b;
}
.dynamic-option-block .option-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.dynamic-option-block .option-grid .custom-selection {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
  cursor: pointer;
}
.dynamic-option-block .option-grid .custom-selection input {
  display: none;
}
.dynamic-option-block .option-grid .custom-selection .selection-box {
  display: block;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
  border-radius: 0;
}
.dynamic-option-block .option-grid .custom-selection:hover .selection-box {
  border-color: #1b1b1b;
  color: #1b1b1b;
}
.dynamic-option-block .option-grid .custom-selection input:checked + .selection-box {
  background: #1b1b1b;
  color: white !important;
  border-color: #1b1b1b;
}
.contact-fields .input-group {
  margin-bottom: 10px;
  text-align: left;
}
.contact-fields .input-group input, .contact-fields .input-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
  background: #fff;
}
.contact-fields .input-group input:focus, .contact-fields .input-group textarea:focus {
  border-color: #1b1b1b;
}
.contact-fields .input-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-fields .input-group .error-msg {
  display: none;
  color: #d93025;
  font-size: 11px;
  margin-top: 5px;
  font-weight: 500;
}
.contact-fields .checkbox-group {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.contact-fields .checkbox-group label {
  display: flex !important;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}
.contact-fields .checkbox-group input[type="checkbox"] {
  display: none !important;
}
.contact-fields .checkbox-group .custom-checkbox {
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #000;
  background: #fff;
  position: relative;
  margin-right: 12px;
  margin-top: 2px;
  transition: all 0.2s ease;
}
.contact-fields .checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-fields .checkbox-group input[type="checkbox"]:checked + .custom-checkbox {
  background: #000;
}
.contact-fields .checkbox-group input[type="checkbox"]:checked + .custom-checkbox::after {
  display: block;
}
.contact-fields .checkbox-group .label-text {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  display: block;
}
.contact-fields .checkbox-group .label-text a {
  color: #1b1b1b;
  text-decoration: underline;
  font-weight: 600;
}
.contact-fields .checkbox-group .error-msg {
  margin-left: 30px;
}
.contact-modal .config-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.contact-modal .config-footer button#sendContactRequest {
  position: relative;
  font-family: "Jost", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 15px 35px;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  transition: color 0.4s ease;
  border: 1px solid #1b1b1b;
  color: #1b1b1b !important;
}
.contact-modal .config-footer button#sendContactRequest::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #1b1b1b;
  z-index: -1;
  transition: height 0.4s ease;
}
.contact-modal .config-footer button#sendContactRequest:hover {
  color: #ffffff !important;
}
.contact-modal .config-footer button#sendContactRequest:hover::before {
  height: 100%;
}
/* ==========================================================================
   20. Technische Daten
   ========================================================================== */
.specs-section {
  padding: 100px 0;
  background-color: #fcfcfc;
  color: #1a1a1a;
}
.specs-container {
  max-width: 1000px;
  margin: 0 auto;
}
.specs-headline {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
/* --- NEU: Tab Navigation --- */
.specs-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}
.tab-link {
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  position: relative;
  top: 1px;
}
.tab-link:hover, .tab-link.active {
  color: #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
}
/* Tab Content Steuerung */
.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.tab-content.active {
  display: block;
  opacity: 1;
}
/* Tab Links (Unterstrich & Farbe ebenfalls snappier) */
.tab-link {
  transition: all 0.2s ease-in-out;
}
/* Dein bestehender Grid-Style, jetzt innerhalb der Tabs */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 100px;
  padding-top: 20px;
}
/* Für Tabs mit nur einer Liste (Bemaßung), damit es nicht zu breit wird */
.tab-content .specs-grid {
  max-width: 800px;
  margin: 0 auto;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}
.spec-row span:first-child {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
}
.spec-row span:last-child {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a1a;
  text-align: right;
  flex-basis: 60%;
}
.spec-fullwidth-row {
  display: block;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}
.spec-fullwidth-row span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 15px;
}
.spec-fullwidth-row p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 auto;
  max-width: 80%;
  line-height: 1.6;
}
.specs-delivery {
  margin-top: 80px;
  text-align: center;
}
.specs-delivery h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.specs-delivery p {
  font-size: 1.1rem;
  color: #444;
  max-width: 650px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .specs-tabs-nav {
    gap: 20px;
  }
  .tab-link {
    font-size: 0.75rem;
  }
  .spec-fullwidth-row p {
    max-width: 100%;
  }
}
/* ==========================================================================
   21. Messergalerie
   ========================================================================== */
.messergalerie {
  overflow: hidden;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 80px 0 40px 0;
  background: #fcfcfc;
}
@media (max-width: 1024px) {
  .messergalerie {
    margin-top: 0px;
    padding-bottom: 40px;
  }
}
@media (max-width: 580px) {
  .messergalerie {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
.messer-grid {
  width: 100%;
  display: grid;
  /* Erzeugt 5 Spalten am Desktop, bricht mobil automatisch um */
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .messer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .messer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
/* Item & Hover-Effekt */
.messer-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  transition: all 0.4s ease;
  /* Die versteckten Items */
}
.messer-item.is-hidden {
  display: none;
}
.messer-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.messer-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
.messer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.plus-icon {
  transform: scale(0.6);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.plus-icon svg {
  width: 40px;
  height: 40px;
  stroke: #ffffff;
}
/* Hover-Zustände */
.messer-item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
  cursor: pointer;
}
.messer-item:hover .messer-overlay {
  opacity: 1;
}
.messer-item:hover .plus-icon {
  transform: scale(1);
}
.load-more-wrapper {
  width: 100%;
  clear: both;
}
#svmVacationWrapper {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  z-index: 9999999 !important;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}
#svmVacationWrapper.active {
  display: flex !important;
}
#svmVacationWrapper .vacation-modal-content {
  background: #ffffff !important;
  color: #000000 !important;
  padding: 60px 40px !important;
  max-width: 500px;
  width: 85%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid #eee;
}
#svmVacationWrapper .vacation-modal-content .close-trigger {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #000;
  font-family: sans-serif;
}
#svmVacationWrapper .vacation-modal-content .close-trigger:hover {
  opacity: 0.6;
}
#svmVacationWrapper .vacation-modal-content .inner-payload .h1_style {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
#svmVacationWrapper .vacation-modal-content .inner-payload .text-group {
  margin: 20px 0 35px 0;
}
#svmVacationWrapper .vacation-modal-content .inner-payload .text-group .highlight-date {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
#svmVacationWrapper .vacation-modal-content .inner-payload .text-group .highlight-date strong {
  display: block;
  font-size: 1.7rem;
  margin-top: 10px;
  color: #000;
}
#svmVacationWrapper .vacation-modal-content .inner-payload .text-group .sub-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
#svmVacationWrapper .vacation-modal-content .inner-payload .text-group .regards {
  margin-top: 25px;
  font-weight: 600;
}
