pro#inhalt .tab-content@charset "UTF-8";


/*
Logos liegen hier:
/public/themen/OSBSport/osb-bilder

FoerderprojekteIcon.png
Antonius_Hauptlogo.png
sos-kinderdoerfer.jpg
Jugend-trainiert-Logo-horizontal.png
osblogo.png

OSB Blau:
background: #0D81BA;

Text blaugrau: color: #5f7285;
Menü: color: #5f7285;
Aktiv: background: #3f4c58;
*/


/* HTML */
/*body {
    color: #5f7285;
    font-family: "Nunito Sans", Helvetica, Arial, Lucida, sans-serif;
    padding-top: 0px !important;
    background-color: #fff;
    }

  
/*Beginn Logo*/
/*#logo {
	cursor: pointer;
	width: 100%;
	height: auto;
}

/* Für Tablets und größere Bildschirme */
@media (min-width: 768px) {
	#logo {
		width: 160px;
	}
}

@media (min-width: 1200px) {
	#logo {
		width: 200px;
	}
}

/*Ende Logo*/


html, body {
  color: #5f7285;
  font-family: "Nunito Sans", Helvetica, Arial, Lucida, sans-serif;
  background-color: #fff;
  margin: 0;
  overflow-x: hidden;
  /* max-width: 100vw; <--- RAUS DAMIT! */
}

body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 1px;
  height: 100vh;
  background-color: transparent;
  z-index: 99999;
  pointer-events: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1.2rem 1.5rem 0.5rem 1.5rem;
  flex-wrap: nowrap;
}
.navbar {
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  box-shadow: 0 6px 24px -8px rgba(40,80,180,0.12); 
}

.emote-color {
	border-top: none !important;
}

.navbar-header, .navbar-toggle {
  display: none;
}

/* Desktop-Logo */
.header-container .logo img {
  max-height: 60px;
}

#navigation {
  flex: 1;
}

#navigation .navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.4rem;
}

#navigation .navbar-nav li a {
  position: relative;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  height: 32px;
  padding: 4px 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}
/* Unterlinie beim Hover: */
#navigation .navbar-nav li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 12px;  /* Padding ausgleichen! */
  right: 12px; /* Padding ausgleichen! */
  bottom: 4px; /* Direkt unter dem Text */
  height: 3px;
  background: #007cba; /* DEIN BLAU */
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}

/* Beim Hover (und für active, falls du willst) */
#navigation .navbar-nav li a:hover::after,
#navigation .navbar-nav li.active a::after {
  transform: scaleX(1);
}

#navigation .navbar-nav .dropdown-menu li a:hover,
#navigation .navbar-nav .dropdown-menu li a:focus {
  background: #007cba !important;  /* DEIN BLAU */
  color: #fff !important;           /* Schrift weiß */
}

#navigation .navbar-nav li a:hover { color: #244f48; }
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#nav_warenkorb.active .cart-icon i {
  color: #007cba; 
}

.wishlist-icon {
   color: #007cba;
}


/*===============================
  Suche
=================================*/


nav#navigation {
  flex-grow: 1;
}

.navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

#nav_search {
  margin-left: auto;
  margin-right: 8px;
  position: relative;
}

/* Nur Lupe zeigen, zentriert und Touch-optimiert */
#nav_search .dropdown-toggle {
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 7px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#nav_search .dropdown-toggle i {
  color: #2074d4;
  font-size: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #c9e1fa;
  padding: 6px;
  transition: color 0.2s, background 0.2s;
}
#nav_search .dropdown-toggle:active i,
#nav_search .dropdown-toggle:focus i {
  color: #1253a2;
  background: #f4f8ff;
}

/*==============================
  Autocomplete Suche
================================*/
.autocomplete-list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(40,80,180,0.12);
  border: 1.5px solid #e1e6f0;
  z-index: 3400;
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}
.autocomplete-list li {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #e1e6f0;
  font-size: 1rem;
  font-weight: 500;
  color: #234;
  transition: background 0.14s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.autocomplete-list li:last-child { border-bottom: none; }
.autocomplete-list li:hover, .autocomplete-list li.active {
  background: #f0f8ff;
  color: #007cba;
}



/* Dropdown Suche - modern & responsive */
#nav_search .dropdown-menu {
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(40,80,180,0.11);
  border: none;
  min-width: 92vw;
  max-width: 380px;
  left: 50% !important;
  transform: translateX(-50%);
  margin-top: 13px;
  padding: 0.8rem 1rem 1.2rem 1rem;
}
@media (min-width: 600px) {
  #nav_search .dropdown-menu {
    min-width: 290px;
  }
}
@media (min-width: 1024px) {
  #nav_search .dropdown-menu {
    min-width: 320px;
  }
}

#nav_search .form-control.search {
  border-radius: 999px;
  border: 1.5px solid #e1e6f0;
  padding: 13px 18px;
  font-size: 1.1rem;
  width: 65vw;
  max-width: 200px;
  outline: none;
  box-shadow: none;
  transition: border 0.2s;
  background: #fafcff;
}
@media (min-width: 600px) {
  #nav_search .form-control.search {
    width: 180px;
    max-width: 230px;
  }
}
@media (min-width: 900px) {
  #nav_search .form-control.search {
    width: 200px;
    max-width: 280px;
  }
}

#nav_search .form-control.search:focus {
  border-color: #2074d4;
  background: #f4f8ff;
}
#nav_search .input-group-btn .btn {
  background: #2074d4;
  border: none;
  border-radius: 999px;
  padding: 9px 13px;
  margin-left: 7px;
  box-shadow: 0 2px 8px rgba(32,116,212,0.08);
  transition: background 0.18s;
}
#nav_search .input-group-btn .btn:active,
#nav_search .input-group-btn .btn:focus {
  background: #1253a2;
}
#nav_search .input-group-btn .btn i {
  color: #fff;
  font-size: 18px;
}

/* Navbar-Icons responsive Abstand */
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
}


@media (max-width: 768px) {
  .header-container {
    gap: 14px;
    padding: 0 6px;
  }
  .navbar-icons {
    gap: 9px;
    margin-left: 2px;
  }
  #nav_search {
    margin-right: 0;
  }
}

/* Optional: Suchfeld auf Handy fullscreen, wenn du möchtest
@media (max-width: 450px) {
  #nav_search .dropdown-menu {
    left: 0 !important;
    transform: none;
    right: 0 !important;
    min-width: 99vw;
    max-width: 99vw;
    border-radius: 0 0 18px 18px;
  }
  #nav_search .form-control.search {
    width: 92vw;
    max-width: none;
  }
}
*/

/* ========================================
   LOGINBOX DESKTOP
======================================== */
#login_formular_container {
  position: absolute;
  top: 100px;
  right: 90px;
  width: 320px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 10000;
  border-radius: 8px;
  transform: translateX(-100%);
}
#login_formular_container.hidden { display: none !important; }

/* Cursor Hand beim Login-Icon */
#anmelden_icon {
  cursor: pointer;
  color: #007cba;
}
.btn-primary {
  background-color: #007cba;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}
.btn-primary:hover { background-color: #007cba; }

input.form-control {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Burger-Button IMMER mit weißem Hintergrund, Linien schwarz */
.navbar-toggle {
  background: #fff !important;       /* Immer weiß, auch im Hover */
  border: 1.5px solid #bbb;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
  padding: 8px 12px;
  transition: background 0.15s, box-shadow 0.2s;
  outline: none;
}

/* Burger-Linien immer schwarz */
.icon-bar {
  background: #111 !important;      /* Schwarz! */
}

/* Optional: kleine Animation/Farbe beim Klicken */
.navbar-toggle:active,
.navbar-toggle:focus {
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
}

/* Optional: Abstand auf kleinen Geräten */
@media (max-width: 900px) {
  .navbar-toggle {
    margin-right: 8px;
  }
}


/* ==============================
   LOGINBOX TABLET & MOBILE
============================== */
@media (max-width: 1024px) {
  #login_formular_container {
    top: 90px;
    right: 5vw;
    left: auto;
    width: 96vw;
    max-width: 340px;
    min-width: 200px;
    padding: 16px;
    transform: none;
  }
}

/* ==============================
   BURGER & MOBILE NAVIGATION
============================== */
@media (max-width: 1024px) {

  .header-container { position: relative !important; }
  .navbar-header { position: relative !important; z-index: 10 !important; }
 
  .header-container .logo {
    flex: 0 0 auto !important;     /* Bleibt klein, kein Grow */
  }
  .header-container .logo img { 
    max-height: 55px !important; 
    display: block !important;
  }
  /* Wichtig: Burger-Menü sichtbar lassen */
  .navbar-toggle {
    display: block !important;
    margin-right: 8px !important;
    background: none !important;
    border: none !important;
    padding: 8px !important;
    font-size: 26px !important;
    cursor: pointer !important;
    outline: none !important;
  }

  /* Burger-Menü-Icon */
  .icon-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #244f48;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Navigation als absolut, direkt unter dem Burger-Button */
  #navigation .navbar-nav {
    display: none ;
    position: absolute !important;
    top: 100% !important;         /* Direkt unter .navbar-header */
    left: 0 !important;
    width: 100% !important;
    margin-top: 4px !important;   /* leichter Abstand */
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
    padding: 10px 0 !important;
    z-index: 999 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  #navigation .navbar-nav.open { display: flex; }

  /* Dropdown-Menü "Weiteres" wie gehabt */
  #navigation .navbar-nav .dropdown { position: relative; }
  #navigation .navbar-nav .dropdown-menu {
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    top: 100% !important;
    width: 160px !important;
    min-width: 110px !important;
    max-width: 85vw !important;
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10) !important; 
    z-index: 2000 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #navigation .navbar-nav .dropdown:hover > .dropdown-menu,
  #navigation .navbar-nav .dropdown:focus-within > .dropdown-menu {
    display: block !important;
  }

  #navigation .navbar-nav .dropdown > a,
  #navigation .navbar-nav .dropdown > a:hover,
  #navigation .navbar-nav .dropdown > a:focus,
  #navigation .navbar-nav .dropdown:hover > a,
  #navigation .navbar-nav .dropdown:focus > a {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
    border: none !important;
  }
  
}

/* ============ Extra für Handy ============ */
@media (max-width: 600px) {
  .header-container {
    display: flex !important;          /* Wichtig für Row-Layout! */
    flex-direction: row !important;    /* In eine Zeile, nicht wrap! */
    align-items: center !important;    /* Vertikal mittig */
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;      /* Kein Umbruch! */
    gap: 0.4rem !important;
    padding: 0.7rem 0.2rem 0.2rem 0.2rem !important;
  }
  .header-container .logo {
    flex: 0 0 auto !important;     /* Bleibt klein, kein Grow */
  }
  .header-container .logo img { 
    max-height: 55px !important; 
    display: block !important;
  }
  .navbar-icons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.7rem !important;
    margin-left: auto !important;      /* --> Icons nach ganz rechts! */
    margin-right: 0 !important;        /* Kein zusätzlicher Abstand rechts */
  }
  .topbar-content { 
    flex-direction: column !important; 
    padding: 0 2px !important;
  }
  .topbar .hotline { font-size: 11px; }
  #navigation .navbar-nav {
    top: calc(100% + 5px) !important;
    left: 0 !important;
    position: absolute !important;
    width: 93vw !important;
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 28px rgba(0,0,0,0.13) !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    z-index: 9999 !important;
  }

.topbar .hotline,
.topbar .hotline a,
.topbar .hotline a[href^="tel"] {
  color: #fff !important;
  /* Optional: Verhindert Unterstreichung */
  text-decoration: none !important;
}


  #navigation .navbar-nav,
  #navigation .navbar-nav .dropdown-menu {
    width: 93vw !important;
    min-width: 0 !important;
    max-width: 96vw !important;
    left: 0 !important;
    top: 100% !important;
  }
  .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
	border-color: #ffffff !important;
}
}
/* Navigation */
.navbar-inverse {
    background: none;
    background-color: #ffffff;
    border-color: #080808;
    }

.navbar-inverse .navbar-nav > li > a {
    color: #ccc;
    text-shadow: none;
    }

.navbar-nav > li {
    }

.navbar-nav > li > a {
    }

.navbar-nav > li#nav_warenkorb.warenkorb_voll > a {
    color: #fff;
    font-weight: bolder;
    text-shadow: none;
    padding-top: 10px;
    }

.navbar-nav > li#nav_warenkorb.warenkorb_voll > a:hover {
    color: #fff;
    }

.navbar-nav > li#nav_warenkorb.warenkorb_voll > a > span#warenkorb_anzahl {
    background-color: #999;
    color: #fff;
    padding: 5px;
    border-radius: 2em;
    display: inline-block;
    height: 2em;
    width: 2em;
    text-align: center;
    margin-left: 5px;
    }

.navbar-nav
    > li#nav_warenkorb.warenkorb_voll
    > a:hover
    > span#warenkorb_anzahl {
    background-color: #fff;
    color: #000;
    }

.navbar-fixed-bottom,
.navbar-fixed-top {
    position: absolute !important;
    }

div.kreis_gruen {
    width: 20px;
    height: 20px;
    border-radius: 20px / 20px;
    background-color: #63af57
    }
div.kreis_gelb {
    width: 20px;
    height: 20px;
    border-radius: 20px / 20px;
    background-color: #efbf2d
    }
div.kreis_rot {
    width: 20px;
    height: 20px;
    border-radius: 20px / 20px;
    background-color: #db0000
    }
div.kreis_grau {
    width: 20px;
    height: 20px;
    border-radius: 20px / 20px;
    background-color: #7e7e7e
    }

/* Navigation */
/* ==============================
   BURGER-Button und Layout (Tablet, Handy)
============================== */
@media (max-width: 900px) {
  .header-container {
    gap: 0.8rem !important;
    padding: 1rem 0.5rem 0.5rem 0.5rem !important;
  }
  .header-container .logo img { max-height: 42px !important; }
  .navbar-header, .navbar-toggle { display: block !important; }
}


#navigation .navbar-nav > li.dropdown.open > a,
#navigation .navbar-nav > li.dropdown.active > a,
#navigation .navbar-nav > li.dropdown:active > a,
#navigation .navbar-nav > li.dropdown:focus > a {
  background: #fff !important;   /* oder background: none; für transparent */
  color: #007cba !important;     /* Dein Blau, optional */
  box-shadow: 0 2px 9px rgba(40,80,180,0.08);
}

/* ==============================
   TOPBAR (Immer gleich)
============================== */
.topbar {
  background-color: #007cba;
  color: white;
  font-size: 13px;
  padding: 4px 0;
  width: 100%;
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.topbar .hotline {
  font-weight: 500;
  margin-left: 3.6rem;
  white-space: nowrap;
}
.topbar-links {
  display: flex;
  gap: 1.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 4rem;
  align-items: center;
}
.topbar-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}
.topbar-links li a:hover { text-decoration: underline; }
.topbar-links .dropdown { position: relative; }
.topbar-links .dropdown-menu {
  background-color: #007cba !important;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  display: none;
  min-width: 180px;
  z-index: 1000;
  border-radius: 2px;
}
.topbar-links .dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: white !important;
  text-decoration: none;
  white-space: nowrap;
}
.topbar-links .dropdown-menu li a:hover,
.topbar-links .dropdown-menu li a:focus {
  background: #007cba !important;   /* oder deine Wunschfarbe */
  color: #fff !important;
}

.topbar-links .dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 700px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 3px 0.5rem;
    gap: 2px;
  }
  .topbar .hotline {
    margin: 0 0 2px 0.3rem;
    font-size: 13px;
    white-space: normal;
    line-height: 1.15;
    font-weight: 400;
  }
  .topbar-links {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.4rem;
    font-size: 14px;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    background: none;
  }
  .topbar-links li {
    margin: 0;
    padding: 0;
  }
  .topbar-links li a {
    display: inline;
    background: none !important;
    color: #fff !important;
    padding: 3px 6px !important;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 400;
    box-shadow: none !important;
    border: none !important;
  }
  .topbar-links .dropdown-menu {
    min-width: 130px;
    border-radius: 2px;
    font-size: 14px;
    padding: 0.3rem 0;
  }
}
@media (max-width: 450px) {
  .topbar-content {
    padding: 2px 0.1rem;
  }
  .topbar .hotline {
    font-size: 12px;
    margin: 0 0 2px 0.1rem;
  }
  .topbar-links li a {
    font-size: 13px;
    padding: 2px 4px !important;
  }
}



/*==============================
   Topbar Ende
==============================*/



/*Artikel Anzahl ausgeblendet*/
.nummerierung {
 display: none;
}
/*Artikel Anzahl ausgeblendet*/

/*------------------------
  Überschriften-----------
-------------------------*/

h2 {
  font-size: 1.3em;
  margin-top: 1rem;
}

p {
  font-size:0.8em;
}

/*----------------------
   Startseite Slider
------------------------*/
/* Hauptcontainer Fullscreen erzwingen */
#carousel-slider.container {
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  margin-left: -50vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #fff !important;
  box-sizing: border-box !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 1000 !important;
}

/* Eltern-Wrapper ebenfalls 100vw und raus aus evtl. Containern */
.slider-area {
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  margin-left: -50vw !important;
  position: relative !important;
  background: #fff !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Innere Slider-Elemente: Bild immer fullscreen */
.slider-area .carousel-inner,
.slider-area .carousel-item {
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  height: 500px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
}

.slider-area .carousel-inner img {
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  height: 600px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
}

/* Mobile: Slider komplett ausblenden */
@media screen and (max-width: 768px) {
  .slider-area {
    display: none !important;
  }
}

/*----------------------
   Startseite Button--
------------------------*/
.button-wrapper {
  display: inline-block;
}

.carousel-link {
  margin-bottom: 16px; 
  display: inline-block;
  background: rgba(255, 255, 255, 0.38); /* halbtransparentes Weiß */
  color: #ffffff;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #ffffff;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
}

.carousel-link:hover,
.carousel-link:focus {
  background: rgba(255,255,255,0.92); /* noch weißer beim Hover */
  color: #ffffff;
  border: 2.5px solid #ffffff;
}

/* Link-Farben vereinheitlichen */
.carousel-link:link,
.carousel-link:visited,
.carousel-link:hover,
.carousel-link:active {
  color: #ffffff;
}


/*----------------------
   Startseite Text Oben-
------------------------*/
 .section-goldcenter {
  max-width: 950px;
  margin: 0 auto 38px auto;
  text-align: center;
  padding: 56px 12px 0 12px;
}

.section-eyebrow {
  color: #b9af90;
  font-size: 1.22rem;     /* Größer! */
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 0px;
}

.section-headline-gold {
  font-size: 2.44rem;     /* Deutlich größer */
  font-weight: 500;
  color:#8d9192;
  margin: 0 0 9px 0;
  letter-spacing: 0.01em;
  line-height: 1.13;
  text-transform: none;
}

.section-subline {
  font-size: 1.12rem;     /* Größer */
  color: #8d9192;
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: 0px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-gold-divider {
  height: 2px;
  width: 370px;
  margin: 0 auto 25px auto;
  background: linear-gradient(90deg, #fff 0%, #c8a13e 53%, #fff 100%);
  border-radius: 2px;
}

.section-text {
  color: #38444f;
  font-size: 1.25rem;     /* Deutlich größer */
  line-height: 1.62;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* Responsive für Mobil/Tablet */
@media (max-width: 900px) {
  .section-gold-divider { width: 70vw; }
  .section-headline-gold { font-size: 1.32rem; }
  .section-eyebrow { font-size: 1rem; }
  .section-subline { font-size: 1rem; }
  .section-text { font-size: 1rem; }
}


/* CONTAINER */
.osb-masonry {
  max-width: 1180px;
  margin: 60px auto;
  padding: 0 20px;
}

.masonry-grid {
  column-count: 2;
  column-gap: 18px;
}

.masonry-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 18px;
  background: #000;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* PRODUKT OVERLAY */
.product .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #fff;
}

.overlay h3 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: #fff;
}

.overlay .price {
  font-size: 13px;
  font-weight: 600;
}

.overlay .btn {
  margin-top: 8px;
  padding: 6px 14px;
  border: 1px solid #fff;
  width: fit-content;
  font-size: 12px;
}

.btn:hover {
 color: #b1acac;
}

/* Farben */
.red    .overlay { background: linear-gradient(to top, rgba(140,0,0,.8), transparent); }
.yellow .overlay { background: linear-gradient(to top, rgba(210,178,0,.85), transparent); }
.orange  .overlay { background: linear-gradient(to top, rgba(197, 75, 19, 0.85), transparent); }

/* Hover */
.product:hover .overlay {
  background: rgba(0,0,0,.35);
}
/* zusätzliche Farbvariante für Kunstdrucke */
.light .overlay {
  background: linear-gradient(to top, rgba(255,255,255,.9), transparent 65%);
  color: #5a5a5a;
}

.dark-text .btn {
  border-color: #111;
  color: #111;
}

/* CTA Button – Blau Outline */
.cta-block .osb-news-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 26px;
  border: 2px solid #1f4fa3;   /* Blau */
  color: #1f4fa3;              /* Schrift blau */
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

/* Hover */
.cta-block .osb-news-btn:hover {
  color: #1f4fa3;              /* Schrift bleibt blau */
  background: rgba(31, 79, 163, 0.08); /* dezenter blauer Hover */
}


/* Mobile */
@media (max-width: 768px) {
  .masonry-grid {
    column-count: 1;
  }
}


/*--------------------------
   Startseite Kontaktbanner
---------------------------*/

.beratung-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0d81ba;
  color: white;
  padding: 0px 20px;
  font-family: "Arial", sans-serif;
}

.beratung-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.beratung-text {
  flex: 1 1 50%;
  min-width: 280px;
}

.beratung-text h2 {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.beratung-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.beratung-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background: white;
  color: #007ad3;
}

.beratung-image {
  flex: 1 1 40%;
  text-align: right;
  min-width: 260px;
}

.beratung-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  /*border: 4px solid white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease;
}

.beratung-image img:hover {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .beratung-content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .beratung-text h2 {
    font-size: 22px;
  }

  .beratung-image {
    text-align: center;
    margin-bottom: 20px;
  }

  .beratung-image img {
    max-width: 90%;
    height: auto;
  }
}
@media (max-width: 600px) {
  /* Bild bündig oben */
  .beratung-banner {
    padding: 0 4vw 18px 4vw !important;
  }
  .beratung-image {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .beratung-image img {
    display: block;
    width: 100%;
    max-width: 100vw;
    height: auto;
    margin: 0 auto;
    border-radius: 0 !important;  /* Bild ohne Rundungen oben */
  }

  /* Überschrift & Text */
  .beratung-text {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    padding: 0 !important;
  }
  .beratung-text h2 {
    font-size: 1.18rem !important;
    letter-spacing: 1px;
    margin-bottom: 7px;
    margin-top: 10px;
  }
  .beratung-text p {
    font-size: 1.03rem !important;
    margin-bottom: 13px;
  }

  /* Buttons – mehr Abstand links, größere Schrift */
  .beratung-buttons {
    flex-direction: column !important;
    gap: 9px !important;
    width: 100%;
    align-items: stretch !important;
    margin-top: 7px;
  }
  .btn-outline {
    width: 100% !important;
    padding: 13px 0 13px 18px !important;  /* Oben, Unten, LINKS */
    font-size: 1.13rem !important;
    text-align: left !important;
    box-sizing: border-box;
  }
}


/*-------------------------------
   Ende Startseite Kontaktbanner
---------------------------------*/

/*=====================================
  Beginn Style Unterseite Hilfe/Support
======================================*/

/* Header mit Hintergrundbild über gesamte Breite */
.hero-header {
  width: 100vw;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  margin-bottom: 2vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.hero-bg {
  width: 100vw;
  height: 350px;
  object-fit: cover;
  object-position: 60% 20%;
  display: block;
  filter: brightness(0.94);
  background: #e7eaed;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-title {
  text-align: center;
  background: rgba(255,255,255,0.97);
  border-radius: 2rem;
  padding: 2.2rem 3.5rem 1.6rem 3.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  margin-top: 3vw;
  font-size: 2.8rem;
  line-height: 1.13;
  z-index: 2;
  pointer-events: all;
}
.hero-title .gold {
  color: #c4a146;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 2.1rem;
}
.hero-title .gray {
  color: #7a868e;
  font-weight: 400;
  font-size: 2.05rem;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .hero-title { font-size: 1.4rem; padding: 1.2rem 1vw;}
  .hero-bg { height: 180px;}
}
@media (max-width: 600px) {
  .hero-title { font-size: 0.99rem; padding: 0.6rem 2vw;}
  .hero-bg { height: 120px;}
}

/* Firmenkonditionen */
.firmenkonditionen {
  width: 100%;
  background: #fff;
  padding: 3vw 0 2vw 0;
  display: flex;
  justify-content: center;
  margin-top: -3rem;
}
.firmenkonditionen-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.firmenkonditionen-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #7a868e;
  letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
  margin-top: 0.1rem;
  line-height: 1.14;
}
.firmenkonditionen-title .title-gold {
  font-weight: 700;
  color: #c4a146;
  font-size: 2.6rem;
  letter-spacing: 0.01em;
}
.firmenkonditionen-title .subtitle {
  font-size: 1.25rem;
  color: #7a868e;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.firmenkonditionen-title hr {
  width: 55%;
  border: none;
  border-top: 2px solid #e5dec2;
  margin: 0.9rem auto 1rem auto;
}

.firmenkonditionen-text {
  font-size: 1.8rem;
  color: #444f65;
  line-height: 1.38;
  letter-spacing: 0.01em;
  max-width: 590px;
  margin: 0 auto;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 0.4em;         /* Abstand zwischen Absätzen */
}

.firmenkonditionen-text p {
  margin: 0.1em 0;
  padding: 0;
}

.firmenkonditionen-text strong, .firmenkonditionen-text b {
  color: #b59b4c;
  font-weight: 700;
}

.firmenkonditionen-text b {
  color: #406090;
  font-weight: 700;
}


/* ===================== GROßE FEATURE-KACHELN & SCHRIFT ===================== */
.feature-section {
  max-width: 1380px;   /* oder nach Wunsch größer */
  margin: 0 auto 3rem auto;
  padding: 0 2vw;
}
.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  margin: 2rem auto 4rem auto;      /* mittig + Abstand */
  background: #fafbfc;
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
  padding: 4vw 3vw;
  min-height: 420px;
  max-width: 1100px;                /* <--- hier zentrieren */
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-img-wrap {
  flex: 1 1 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 340px;
  max-width: 500px;
}
.feature-img-wrap img {
  width: 100%;
  max-width: 520px;
  border-radius: 1.7rem;
  object-fit: contain;
}
.feature-txt {
  flex: 1.3 1 600px;
  text-align: left;
  padding: 2vw 2vw 2vw 2vw;
  min-width: 320px;
  max-width: 650px;
}
.feature-h {
  font-size: 2.6rem;
  font-weight: 800;
  color: #b59b4c;
  margin-bottom: 0.2em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.feature-h.gold { color: #c4a146;}
.feature-sub {
  font-size: 1.45rem;
  color: #b59b4c;
  margin-bottom: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.feature-p {
  color: #444f65;
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 500;
  max-width: 600px;
}

.cta-block {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  text-align: center;
  background: #ffffff;
}

.cta-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #c4a146 !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 0.6rem !important;
}

.cta-divider {
  width: 120px;
  height: 1px;
  border: none;
  background: #d9d1b3;
  margin: 0 auto 1.6rem auto;
}

.cta-text {
  max-width: 520px !important;
  margin: 0 auto 1.4rem auto !important;
  font-size: 1.6rem !important;
  line-height: 1.55 !important;
  color: #4a5a70 !important;
}

.cta-phone {
  font-size: 2.3rem !important;
  font-weight: 700 !important;
  color: #4a5a70 !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 1200px) {
  .feature-section { max-width: 99vw; }
  .feature-row, .feature-row.reverse {
    max-width: 98vw;
    gap: 2vw;
    padding: 2vw 1vw;
    min-height: 340px;
  }
  .feature-h { font-size: 1.5rem;}
  .feature-sub { font-size: 1.1rem;}
  .feature-img-wrap img { max-width: 90vw; }
  .feature-img-wrap, .feature-txt { min-width: 0;}
}

/* ===================== MOBILE FIX: HERO AUS, BILDER OBEN ===================== */
@media (max-width: 768px) {

  /* 1. HERO KOMPLETT AUSBLENDEN */
  .hero-header {
    display: none !important;
  }

.feature-section {
	margin-top: 5rem;
}
  /* 2. Firmenkonditionen weiter nach oben ziehen */
  .firmenkonditionen {
    margin-top: 3rem !important;
    padding-top: 1rem !important;
  }

  .firmenkonditionen-inner {
    margin-top: 0 !important;
  }

  .firmenkonditionen-text {
    margin-top: 0.5rem;
  }

  /* 3. FEATURE-CARDS: IMMER BILD OBEN */
  .feature-row,
  .feature-row.reverse {
    flex-direction: column !important;
  }

  /* 4. Bild vor Text – ABSTAND HIER DEFINIERT */
 .feature-img-wrap {
    flex: none !important;          /* 🔥 FLEX AUS */
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    align-items: flex-start;        /* kein Stretch */
    margin: 0 0 0.25rem 0 !important;
  }

  .feature-txt {
    order: 2;
    padding-top: 0 !important;
    margin: 0 !important;
  }

  /* 5. CARD-INNENABSTAND */
  .feature-row,
  .feature-row.reverse {
    display: block !important;   /* 🔥 DAS ist der Gamechanger */
    padding: 1rem !important;
    margin-bottom: 0.6rem !important;
    height: auto !important;
  }
  /* 6. TEXT: KEINE EXTRA-MARGINS */
  .feature-h,
  .feature-sub,
  .feature-p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* 7. Bilder kompakter */
  .feature-img-wrap img {
    margin: 0 !important;
    max-height: 220px;
    object-fit: contain;
    display: block;
  }
  .firmenkonditionen-inner { max-width: 97vw; }
  .firmenkonditionen-title { font-size: 1.4rem;  line-height: 2.4rem; }
  .firmenkonditionen-title .title-gold { font-size: 1.70rem;}
  .firmenkonditionen-title .subtitle { font-size: 1.5rem; }
  .firmenkonditionen-text { font-size: 1.7rem;}

}

  .cta-block {
    width: 100%;
    max-width: 100%;
    margin: 0 auto !important;     /* 🔥 zentriert den Block */
    padding: 1.5rem 1rem !important;
    text-align: center;            /* 🔥 Text mittig */
    box-sizing: border-box;
  }

  .cta-divider {
    margin: 0.8rem auto !important;
  }

  .cta-phone {
    display: block;
    margin-top: 0.6rem;
    font-weight: 700;
  }

 .cta-block {
    margin: 2rem auto;
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 1.4rem !important;
  }

  .cta-phone {
    font-size: 1.5rem;
  }
/*=====================================
  Ende Style Unterseite Hilfe/Support
======================================*/

/*-------------------------------
   Beginn Startseite Themenwelt
---------------------------------*/
.themenwelten-gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  margin-top: 4.5rem;   /* Abstand nach oben */
}

.themenwelten-headline-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.7rem;
  margin-left: 0;
}

.themenwelten-headline-accent {
  width: 6px;
  height: 28px;
  border-radius: 4px;
  background: #8d9192;
  margin-right: 13px;
  display: inline-block;
}

.themenwelten-headline {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #8d9192;
  text-align: left;
  margin: 0;
  padding: 0;
}

.themenwelten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  width: 100%;
}

.themenwelten-item {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 6px 26px 0 rgba(30,30,65,0.10);
  transition: transform .18s cubic-bezier(.5,.1,.15,1);
  background: #fff;
}

.themenwelten-item:hover {
  transform: scale(1.022) translateY(-2px);
  z-index: 2;
}

.themenwelten-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  transition: filter .22s, transform .23s;
  filter: brightness(0.89) saturate(1.07);
}

.themenwelten-item:hover img {
  filter: brightness(0.78) saturate(1.19) blur(.7px);
  transform: scale(1.04) rotate(-.3deg);
}

.themenwelten-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-size: 1.3rem;                  /* Kleiner, bleibt 1-zeilig */
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 10px 32px;
  background: rgba(255,255,255,0.97);
  color: #133058;
  box-shadow: 0 2px 16px 0 #fff7, 0 1px 0 #fff8;
  text-shadow: 0 2px 10px #fff, 0 1px 0 #fff8;
  border: none;
  pointer-events: none;
  transition: background .14s, color .10s, box-shadow .14s;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;                 /* Immer einzeilig! */
  overflow: hidden;
  text-overflow: ellipsis;
}

.themenwelten-item:hover .themenwelten-caption {
  background: rgba(255,255,255,1);
  color: #0d81ba;
  box-shadow: 0 4px 22px 0 #fff7, 0 1px 0 #fff8;
}

/* Tablet: 2 Spalten */
@media (min-width: 650px) {
  .themenwelten-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Desktop: 3 Spalten */
@media (min-width: 1050px) {
  .themenwelten-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.1rem;
  }
}

@media (max-width: 500px) {
  .themenwelten-headline {
    font-size: 1.02rem;
  }
  .themenwelten-caption {
    font-size: 0.98rem;
    padding: 8px 9px;
    bottom: 8px;
  }
  .themenwelten-grid {
    gap: 0.7rem;
  }
}

/*-------------------------------
   Ende Startseite Themenwelt
---------------------------------*/


/*-------------------------------
   Beginn Startseite NEWS Banner
---------------------------------*/

.osb-news-banner {
  width: 100vw;
  max-width: 100vw;
  min-height: 250px;
  height: 15vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin: 3rem 0 0 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  /* Desktop: Bild+Farbe */
  background: #ea551b url('/r50/obility/public/themen/OSBSport/osb-bilder/news_banner_startseite.png') center center/cover no-repeat;
  margin-top: 5rem;
}

/* Textblock Desktop: links eingerückt */
.osb-news-banner-content {
  max-width: 680px;
  margin-left: 19vw;
  margin-right: auto;
  padding: 3vw 20px;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.osb-news-title {
  font-size: 2rem;
  letter-spacing: 1.2rem;
  font-weight: 400;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  color: #fff;
}

.osb-news-text {
  font-size: 2rem;
  line-height: 1.18;
  margin: 0 0 32px 0;
  color: #fff;
  font-weight: 400;
  max-width: 100%;
}

.osb-news-btn {
  display: inline-block;
  font-size: 1.22rem;
  text-transform: uppercase;
  color: #fff;
  border: 3px solid #fff;
  padding: 11px 30px 9px 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: background .13s, color .12s, border-color .12s;
  font-weight: 400;
}
.osb-news-btn:hover {
  background: #fff;
  color: #ea551b;
  border-color: #fff;
}

/* TABLET & KLEINER: Bild ausblenden, alles mittig/orange */
@media (max-width: 1000px) {
  .osb-news-banner {
    background: #ea551b;
    height: auto;
    min-height: 160px;
    margin-top: 2rem;
  }
  .osb-news-banner-content {
    max-width: 95vw;
    margin: 0 auto;
    padding: 6vw 6vw;
    align-items: center;
    text-align: center;
  }
  .osb-news-title {
    font-size: 1.7rem;
    letter-spacing: .5rem;
    margin-bottom: 12px;
  }
  .osb-news-text {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .osb-news-btn {
    font-size: 1rem;
    padding: 9px 24px 8px 24px;
  }
}

/* SMARTPHONE: alles mittig, Text kleiner */
@media (max-width: 600px) {
  .osb-news-banner {
    min-height: 90px;
  }
  .osb-news-banner-content {
    max-width: 99vw;
    padding: 9vw 3vw 8vw 3vw;
  }
  .osb-news-title {
    font-size: 1rem;
    letter-spacing: 0.22rem;
    margin-bottom: 10px;
  }
  .osb-news-text {
    font-size: 1.01rem;
    margin-bottom: 14px;
  }
  .osb-news-btn {
    font-size: 0.94rem;
    padding: 7px 9vw 6px 9vw;
  }
}


/*-------------------------------
   Ende Startseite NEWS Banner
---------------------------------*/
/*=======================
  Beginn Header Über uns    
  =======================*/
.hero-new {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #e0e7ff 0%, #f0f5fc 100%);
  padding: 3.5rem 1rem 2rem 1rem;
  text-align: center;
}
.hero-bg-wave {
  position: absolute; inset: 0; z-index: 0;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="140" viewBox="0 0 1440 320" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23a5b4fc" fill-opacity="0.13" d="M0,160L60,149.3C120,139,240,117,360,133.3C480,149,600,203,720,202.7C840,203,960,149,1080,128C1200,107,1320,117,1380,122.7L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.7;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1; max-width: 650px; margin: 0 auto;
}
.hero-logo {
  width: 74px; height: 74px; border-radius: 18px;
  margin-bottom: 1.3rem; object-fit: cover; box-shadow: 0 4px 32px #2563eb25;
}
.hero-headline {
  font-size: 2.5rem; font-weight: 900; margin-bottom: .6rem;
}
.hero-gradient-text {
  background: linear-gradient(90deg, #2563eb 10%, #38bdf8 90%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: #64748b; font-size: 1.22rem; margin-bottom: 1.4rem;}
.hero-btn {
  display: inline-block; margin-bottom: 2.1rem; padding: 0.85em 2.1em;
  background: linear-gradient(90deg, #2563eb 10%, #38bdf8 90%);
  color: #fff; border-radius: 999px; font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 8px 36px #2563eb16; text-decoration: none; border: none; cursor: pointer;
  transition: transform .17s, background .27s;
}
.hero-btn:hover, .hero-btn:focus { 
  transform: scale(1.06); 
  background: linear-gradient(90deg,#38bdf8 0%,#2563eb 100%,);
  color: #fff;
}
.hero-video-glass {
  margin: 0 auto; max-width: 540px;
  border-radius: 1.8rem; overflow: hidden;
  background: rgba(255,255,255,0.19);
  box-shadow: 0 4px 32px #2563eb11;
  backdrop-filter: blur(8px);
}
.hero-video-glass video { width: 100%; display: block; aspect-ratio: 16/9; background: #18181b; border: none; }

/*======================
   Ende Header Über uns    
========================*/

/*=========================
    Beginn Inhalt Über uns
==========================*/
:root {
  --gold: #c6a24b;
  --text-main: #2b2b2b;
  --text-muted: #6b6b6b;
}

.feature-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: #6b6b6b;
  margin-bottom: 0.4rem;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;

  margin: 2rem auto 4rem auto;   /* Zentrierung + Abstand */
  padding: 4vw 3vw;             /* Innenabstand (Card-Padding) */

  background: #fafbfc;           /* ⬅️ helle Card-Fläche */
  border-radius: 2rem;           /* ⬅️ abgerundete Ecken */
  box-shadow: 0 4px 32px rgba(0,0,0,0.09); /* ⬅️ Schatten */

  min-height: 220px;
  max-width: 1300px;             /* ⬅️ begrenzt die Card-Breite */
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.feature-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.feature-txt {
  max-width: 720px;
}

.gold {
  color: var(--gold);
}

.gold-divider {
  width: 90px;
  height: 2px;
  background-color: var(--gold);
  margin: 1.2rem 0 1.8rem;
}

.gold-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.gold-link:hover {
  border-bottom-color: var(--gold);
  opacity: 0.85;
}

/*=================
  Tabelle- Über uns
==================*/

:root {
  --gold: #c6a24b;
  --blue-dark: #5f6f82;
  --row-alt: #f3f3f3;
  --text-main: #2b2b2b;
}

/* Head */
.options-head {
  text-align: center;
  margin-bottom: 6rem;
  line-height: 2rem;

}

.options-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: #6b6b6b;
}

.options-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-top: 0.4rem;
}

.options-title span {
  display: block;
}

.gold {
  color: var(--gold);
}

.gold-divider.center {
  margin: 1.4rem auto 0;
  width: 80px;
  height: 2px;
  background: var(--gold);
}

/* Table */
.table-wrap {
  overflow-x: auto;
}

.options-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
  font-size: 0.95rem;
}

.options-table th {
  background: var(--blue-dark);
  color: #fff;
  padding: 0.9rem 0.6rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.options-table th:first-child {
  text-align: left;
}

.options-table td {
  padding: 0.7rem 0.6rem;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
}

.options-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #4f6b8f;
}

.options-table tbody tr:nth-child(odd) {
  background: var(--row-alt);
}
@media (max-width: 1024px) {
  .options-table {
    font-size: 0.9rem;
    min-width: 900px;
  }

  .options-table th,
  .options-table td {
    padding: 0.6rem 0.5rem;
  }
}
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-txt {
    max-width: none;
  }

  .feature-img-wrap img {
    max-width: 100%;
  }
}


/*=========================
    Ende Inhalt - Über uns
==========================*/

/*----------------------
   Beginn Login Fenster
-----------------------*/
 .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #fff;
      border-bottom: 4px solid #bfa999;
    }
    .logo img {
      max-height: 50px;
    }
    .icon-btn {
      cursor: pointer;
      margin-left: 15px;
      font-size: 22px;
    }
    .login-box {
      position: absolute;
      top: 60px;
      right: 20px;
      background: white;
      border: 1px solid #ccc;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      padding: 20px;
      width: 260px;
      z-index: 1000;
      display: none;
    }
    .login-box input[type="text"],
    .login-box input[type="password"] {
      width: 100%;
      padding: 8px;
      margin: 5px 0 10px;
      box-sizing: border-box;
    }
    .login-box button {
      width: 100%;
      padding: 10px;
      background-color: #2f4f42;
      color: white;
      border: none;
      cursor: pointer;
    }
    .login-box .links {
      margin-top: 10px;
      display: flex;
      justify-content: space-between;
      font-size: 0.9em;
    }
    .login-box .links a {
      color: #006666;
      text-decoration: none;
    }

/*------------------
  Beginn gute Gründe
--------------------*/
   .gallery-section {
      max-width: 1200px;
      margin: 48px auto;
      padding: 0 20px;
    }
    .gallery-card-row {
      display: flex;
      align-items: center;
      background: #fff;
      box-shadow: 0 6px 30px rgba(0,0,0,0.11);
      padding: 40px 42px;
      gap: 46px;
      margin-bottom: 48px;
    }
    .gallery-card-row.reverse {
      flex-direction: row-reverse;
    }
    .gallery-image {
      flex: 0 0 320px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .gallery-image img {
      width: 350px;       /* vorher: 250px */
      height: 420px;      /* vorher: 320px */
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.09);
    }

    .gallery-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 18px;
    }
    .gallery-content h3 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 22px;
    }
    .gallery-content.orange h3 { color: #f59c00; }
    .gallery-content.blue h3   { color: #007db8; }
    .gallery-content.green h3  { color: #6bae44; }
    .gallery-content p {
      font-size: 16px;
      color: #222;
      margin-bottom: 26px;
      line-height: 1.6;
    }
    .gallery-content strong {
      font-weight: 600;
    }
    /* Button Style: nur noch 50% Breite, mittig */
    .gallery-content a {
      font-size: 16px;
      line-height: 1.2;
      padding: 14px 0;
      border-radius: 7px;
      font-weight: 600;
      display: inline-block;
      text-align: center;
      width: 50%;         /* bleibt gleich, kannst du auch 180px setzen für Fixbreite */
      min-width: 130px;
      max-width: 240px;
      margin: 0;          /* entfernt das automatische Zentrieren */
      text-decoration: none;
      transition: background 0.18s, color 0.18s;
      border: 2px solid;
      background: transparent;
    }

    /* Button Farben */
    .gallery-content.orange a {
      color: #f59c00;
      border-color: #f59c00;
    }
    .gallery-content.orange a:hover {
      background: #f59c00;
      color: #fff;
    }
    .gallery-content.blue a {
      color: #007db8;
      border-color: #007db8;
    }
    .gallery-content.blue a:hover {
      background: #007db8;
      color: #fff;
    }
    .gallery-content.green a {
      color: #6bae44;
      border-color: #6bae44;
    }
    .gallery-content.green a:hover {
      background: #6bae44;
      color: #fff;
    }
    .icon-head {
     width: 54px;
     height: 54px;
     margin-right: 9px;
     margin-bottom: 2rem;
     vertical-align: middle;
     display: inline-block;
    }
    /*=====================
      Header-Teaser
    =======================*/
    .grunde-section-intro {
      max-width: 900px;
      margin: 0 auto 30px auto;
      text-align: center;
      padding: 32px 10px 10px 10px;
    }
    
    .grunde-section-eyebrow {
      color: #b5a97d;
      font-size: 1.15rem;
      letter-spacing: 0.12em;
      font-weight: 400;
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    
    .grunde-section-headline {
      font-size: 2.5rem;
      font-weight: 700;
      color: #c8a13e;
      margin: 0;
      line-height: 1.13;
      letter-spacing: 0.01em;
    }
    
    .grunde-section-subline {
      color: #7c8389;
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 13px;
      margin-top: 5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    
    .grunde-section-divider {
      height: 2px;
      width: 260px;
      margin: 0 auto 26px auto;
      background: linear-gradient(90deg, #e5dfc6 0%, #c8a13e 45%, #e5dfc6 100%);
      border-radius: 2px;
    }
    
    .grunde-section-text {
      color: #374151;
      font-size: 1.2rem;
      line-height: 1.54;
      max-width: 710px;
      margin: 0 auto;
      font-weight: 400;
    }
    
    /* Responsive */
    @media (max-width: 700px) {
      .grunde-section-intro { padding-top: 14px; }
      .grunde-section-headline { font-size: 1.22rem; }
      .grunde-section-subline { font-size: .97rem; }
      .grunde-section-divider { width: 90vw; }
      .grunde-section-eyebrow { font-size: .93rem; }
    }

    

    @media (max-width: 900px) {
      .gallery-card-row,
      .gallery-card-row.reverse {
        flex-direction: column;
        padding: 24px 10px;
        gap: 18px;
        align-items: stretch;
      }
      .gallery-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
      }
      .gallery-content {
        padding: 0 2px;
      }

      .icon-head {
        width: 28px;
        height: 28px;
        margin-bottom: -4px;
    }
    }

/*------------------
  Ende gute Gründe
--------------------*/

/*----------------------------
  Beginn Artikelübersicht-----
-----------------------------*/

.custom-narrow {
    margin-bottom: 2rem;
    max-width: 350px;
    flex: 0 0 350px;
  }
  
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem;
    width: 100%;
  }
  
.post-view {
    padding: 3rem;
    border: 1px solid #dadae5;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    height: 100%;
  }
.post-view:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

.product_preview {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
}
/* Die Lösung: */
.product_preview img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: auto;
    aspect-ratio: 1 / 1; /* ja, direkt am <img> für iOS! */
}

.product-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
.product-title {
    font-size: 1.5rem;
    font-weight: normal;
    color: #222;
  }
.product-desc {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
  }
.product-price,
.product-price input[name="var_te7"] {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
  }
.product-price input[name="var_te7"] {
    border: none;
    background: none;
    pointer-events: none;
    width: auto;
  }
.product-price::after {
    content: attr(data-value);
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }
.product-price:empty::after {
    content: "Preis auf Anfrage";
    font-weight: 400;
   
  }
.product-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
  }
.btn-primary {
    font-weight: 700;
    padding: 1.25rem 2.75rem;
    font-size: 1.375rem;
    border-radius: 0;
    width: 100%;
    text-align: center;
  }
.add-to-favorites-article {
    cursor: pointer;
    font-size: 1.5rem;
    color: #888;
  }

.add-to-favorites-article {
  cursor: pointer;
  font-size: 1.8rem;
  color: #888;
  transition: color 0.2s ease;
}
.add-to-favorites-article.favorited,
.fa-heart.favorited {
  color: #007bff !important;
}
  .add-to-favorites-article:hover::after {
    content: attr(data-hover-text);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 9999;
    margin-top: 4px;
  }

  .toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-size: 14px;
    z-index: 9999;
    animation: fadeInOut 3s forwards;
  }
/***********************************
  Beginn Kontaktformular
************************************/
.contact-wrapper {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin: 2rem 0 1.5rem 0;
    width: 100%;
    justify-content: flex-start;
}

.contact-info-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 6px 32px rgba(60, 85, 120, 0.07), 0 1.5px 7px rgba(0,0,0,0.03);
    padding: 2.5rem 2rem 2rem 2rem;
    width: 340px;
    min-width: 260px;
    margin-left: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.contact-form-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 6px 32px rgba(60, 85, 120, 0.07), 0 1.5px 7px rgba(0,0,0,0.03);
    padding: 3.7rem 3.2rem 2.7rem 3.2rem;
    width: 100%;
    min-width: 350px;
    max-width: 800px;
    box-sizing: border-box;
}

.contact-form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 2rem; 
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    flex: 1 1 0;   /* Gleichmäßig aufteilen */
    min-width: 180px;
    max-width: 100%;
    position: relative;
}

.form-group label {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: #384257;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {

    font-size: 1.5rem;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    border: 1.5px solid #cdd6e2;
    background: #fafbfc;
    font-family: inherit;
    outline: none;
    margin-bottom: 0.1rem;
    transition: border-color 0.13s;
    box-sizing: border-box;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: #2876de;
    background: #fff;
}

.contact-form-card textarea {
    min-height: 110px;
    resize: vertical;
}

.form-group.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 1rem;

    gap: 0.6rem;
}

.form-group.checkbox-group label,
.form-group.checkbox-group a {
    font-size: 1.13rem;
}

.form-group.checkbox-group label {
    font-weight: 400;
    color: #46516c;
    cursor: pointer;
}

.form-group.checkbox-group a {
    color: #245c9e;
    text-decoration: underline;
}

.contact-form-card button[type="submit"] {
    background: linear-gradient(90deg, #2665b6 0%, #368ee0 100%);
    color: #fff;
    font-size: 1.19rem;
    font-weight: 700;
    padding: 1rem 0;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: background 0.18s, transform 0.1s;
    margin-top: 0.2rem;
    width: 100%;
    box-shadow: 0 1.5px 4px rgba(36,92,158,0.10);
}

.contact-form-card button[type="submit"]:hover {
    background: linear-gradient(90deg, #235aa0 0%, #2665b6 100%);
    transform: translateY(-2px) scale(1.01);
}

.error-message {
    color: #c00;
    font-size: 1rem;
    height: 1.1em;
    margin-top: 0.1em;
    position: absolute;
    bottom: -1.15em;
    left: 0;
    font-weight: 400;
}

.form-feedback {
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}

.kommentar {
    margin-top: 0.7em;
    font-size: 1.08em;
    color: #586070;
}

/***********************************
 * RESPONSIVE
 ***********************************/

/* Guter Abstand zum Rand bei kleinen Screens */
@media (max-width: 1100px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0 0.7rem;
    }
    .contact-info-card,
    .contact-form-card {
        max-width: 100%;
        width: 100%;
        padding-left: 1.3rem;
        padding-right: 1.3rem;
        margin-left: 0;
        border-radius: 0.7rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0.1rem;
    }
}

/* Mobile: Kleinere Schrift und kompaktere Felder, Abstand zum Rand */
@media (max-width: 650px) {
    .contact-info-card,
    .contact-form-card {
        padding: 1rem 0.6rem;
        border-radius: 0.5rem;
    }
    .contact-form-card h2 {
        font-size: 1.18rem;
    }
    .contact-form-card label {
        font-size: 1rem;
    }
    .contact-form-card input,
    .contact-form-card select,
    .contact-form-card textarea {
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
    }
    .form-group {
        margin-bottom: 0.5rem;
    }
}
/*---------------------
  Ende Kontaktformular
----------------------*/
/*---------------------
  Newsletter Layout
----------------------*/

.contact-wrapper{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:2rem;
}

.contact-info-card{
  flex:0 0 340px;      /* linke Box fix */
  max-width:360px;
  background:#fff;
  border-radius:1.25rem;
  box-shadow:0 6px 32px rgba(60,85,120,0.07), 0 1.5px 7px rgba(0,0,0,0.03);
  padding:1.6rem;
}

.newsletter-form-card {
  flex:1 1 0;          /* nimmt Rest */
  max-width:none;      /* darf so breit wie möglich */
  background:#fff;
  border-radius:1.25rem;
  box-shadow:0 6px 32px rgba(60,85,120,0.07), 0 1.5px 7px rgba(0,0,0,0.03);
  padding:2.7rem 3.2rem 2.7rem 3.2rem;
}

.newsletter-form-card h2 {
  font-size:2rem;
  margin-bottom:1.3rem;
}

.form-group {
  display:flex;
  flex-direction:column;
  margin-bottom:1rem;
}

.form-row {
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
}

.form-group label {
  font-size:1.5rem;
  font-weight:500;
  margin-bottom:0.36rem;
  color:#384257;
}

.newsletter-form-card input,
.newsletter-form-card select {
  font-size:1.5rem;
  padding:1.1rem 1rem;
  border-radius:0.65rem;
  border:1.4px solid #cdd6e2;
  background:#fafbfc;
  font-family:inherit;
  outline:none;
  transition:border-color 0.14s;
  box-sizing:border-box;
}

.newsletter-form-card input:focus,
.newsletter-form-card select:focus {
  border-color:#2876de;
  background:#fff;
}

.checkbox-group {
  flex-direction:row;
  align-items:flex-start;
  gap:0.85rem;
}

.checkbox-group label {
  max-width:93%;
  font-size:1.05rem;
  color:#46516c;
  line-height:1.35;
}

.newsletter-form-card button[type="submit"] {
  background:linear-gradient(90deg,#2665b6 0%,#368ee0 100%);
  color:#fff;
  font-size:1.5rem;
  font-weight:700;
  padding:1rem 0;
  border:none;
  border-radius:0.6rem;
  cursor:pointer;
  transition:background 0.17s, transform 0.1s;
  width:100%;
  margin-top:0.3rem;
  box-shadow:0 1.5px 4px rgba(36,92,158,0.10);
}
.newsletter-form-card button[type="submit"]:hover {
  background:linear-gradient(90deg,#235aa0 0%,#2665b6 100%);
  transform:translateY(-2px) scale(1.01);
}

.kommentar {
  margin-top:0.7em;
  font-size:0.99em;
  color:#586070;
}

.recaptcha { min-height:84px; }

/* Mobile */
@media (max-width:900px){
  .contact-wrapper{ flex-direction:column; }
  .contact-info-card,
  .newsletter-form-card{ flex:1 1 100%; max-width:100%; }
}



/*--------------------------
  Newsletter Footer Formular
----------------------------*/
/* --- Newsletter Footer Styles (leichtgewichtig) --- */
/* Zeile kompakt halten */
.nl-row{display:flex;gap:8px;align-items:center;margin:0}

/* Einheitliche Höhe & Look */
.nl-row input[type="email"],
.newsletter-btn{
  height:34px;            /* gleiche Höhe */
  border-radius:6px;
  font-size:13px;
}

/* Button optimiert */
.newsletter-btn{
  padding:0 12px;         /* kompakt */
  border:0;
  background:#0071b3;     /* deine Primärfarbe */
  color:#fff;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;     /* kein Zeilenumbruch */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.newsletter-btn:hover{ opacity:.9 }
.newsletter-btn:focus{
  outline:0;
  box-shadow:0 0 0 2px rgba(0,113,179,.2);
}

/* Label-Varianten (lang/kurz) für kleine Screens */
.newsletter-btn .lbl-short{ display:none; }
@media (max-width:480px){
  .newsletter-btn .lbl-long{ display:none; }
  .newsletter-btn .lbl-short{ display:inline; }
}

/* Optional: Input-Optik angleichen */
.nl-row input[type="email"]{
  flex:1 1 auto;
  padding:0 10px;
  border:1px solid #cbd5e1;
}
.nl-row input[type="email"]:focus{
  outline:0;border-color:#0071b3;
  box-shadow:0 0 0 2px rgba(0,113,179,.15);
}
}
/*--------------------------
  Ende Newsletter Footer Formular
----------------------------*/

/*Preis Sternchen*/
.price-hint {
  font-size: 0.85rem;
  color: #666;
}
/*Preis Sternchen*/

 @keyframes fadeInOut {
   0% { opacity: 0; transform: translateY(20px); }
   10% { opacity: 1; transform: translateY(0); }
   90% { opacity: 1; }
   100% { opacity: 0; transform: translateY(20px); }
 }

  /* Responsive breakpoints at end */
@media (max-width: 1400px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
@media (max-width: 992px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
@media (max-width: 576px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
  }

@media (max-width: 600px) {
  .custom-narrow, .post-view {
    width: auto !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 5mm !important;
    padding-right: 5mm !important;
    box-sizing: border-box;
    background: #fff;
  }
}


/*--------------------------
  Ende Artikelübersicht
  -------------------------*/  


/*==============================================
  Startseiten-Produktkacheln
==============================================*/

@media (max-width: 600px) {
  .rand.product {
    width: auto !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 5mm !important;
    padding-right: 5mm !important;
    box-sizing: border-box;
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
  }
  .rand.product .product_title {
    font-size: 1.8rem;
    min-height: 32px;
    padding: 0.6rem 0 0 0;
  }
  .rand.product .product_preview {
    aspect-ratio: 1 / 1;
    max-width: 95vw;
    min-height: 180px;
  }
}

/*-------------------------
  Beginn Hilfe und Support
---------------------------*/

.support-container {
  margin-left: 350px; /* Passe an den Logo-Abstand an */
  margin-top: 38px;
  max-width: 1100px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 40px 0 #e6edf6;
  padding-bottom: 36px;
  padding-top: 14px;
}

.support-container > h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  padding: 38px 0 0 38px;
  color: #183356;
  line-height: 1.18;
}

/* --- Flex-Layout: Sidebar bündig mit Überschrift --- */
.support-flex-wrapper {
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  overflow: visible;
  margin-top: 6px;
  padding-left: 38px; /* GLEICH wie h1-Padding */
}

/* --- Sidebar als Card mit Linie und ordentlicher Schrift --- */
.support-sidebar {
  background: #fff;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  box-shadow: 0 2px 12px #e6ecf0;
  padding: 22px 18px 18px 22px;
  min-width: 260px;
  max-width: 320px;
  margin-right: 54px;
  margin-top: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}

.support-sidebar h2 {
  margin: 0 0 13px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222d3c;
  line-height: 1.17;
  padding: 0;
  position: relative;
  letter-spacing: 0.02em;
}

.support-sidebar h2::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #d4dde4;
  margin-top: 10px;
  margin-bottom: 12px;
}

/* Linkliste */
.support-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.support-sidebar ul li {
  margin-bottom: 15px;
}
.support-sidebar ul li a {
  color: #344050;
  font-size: 1.3rem;   /* Größere Sidebar-Schrift */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
  padding-left: 0;
}
.support-sidebar ul li.active a,
.support-sidebar ul li a:hover {
  color: #037ac5;
  font-weight: 700;
}

/* --- Rechte Seite --- */
.support-main-content {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.support-main-content h2 {
  font-size: 2.0rem;
  font-weight: 700;
  color: #1976d2;
  margin: 0 0 9px 0;
  line-height: 1.22;
  padding-top: 0;
}
.support-desc {
  color: #495363;
  font-size: 1.40rem;
  line-height: 1.46;
  margin-bottom: 21px;
}
.support-contact-card {
  background: #f3f8fd;
  border-radius: 20px;
  box-shadow: 0 2px 20px #e3e9f026;
  padding: 26px 38px 16px 38px;
  max-width: 390px;
  margin-bottom: 17px;
}
.support-phone {
  font-size: 2.34rem;
  font-weight: 800;
  color: #1976d2;
  letter-spacing: 2px;
  display: block;
  line-height: 1.20;
}
.support-hours {
  font-size: 1.06rem;
  color: #34587a;
  display: block;
  margin-top: 7px;
  line-height: 1.20;
}
.support-email-hint {
  margin-top: 17px;
  font-size: 1.25rem;
  color: #34587a;
  line-height: 1.38;
}
.support-email-hint a {
  color: #1976d2;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.12s;
}
/* --- LAPTOP & TABLET OPTIMIERUNG --- */
@media (max-width: 1500px) and (min-width: 800px) {
.support-container {
  margin: 0 auto;
  max-width: 1100px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 40px 0 #e6edf6;
  padding: 36px 32px 36px 32px; /* 32px links/rechts – sieht immer harmonisch aus */
}
  .support-flex-wrapper {
    gap: 24px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .versand-inhalt {
    max-width: 600px;
    padding-left: 12px;
    padding-right: 14px;
  }
}
@media (max-width: 900px) {
  .support-container {
    margin: 0 auto !important;
    max-width: 100vw;   /* Nimmt ganze mobile Breite */
    width: 100%;
    padding: 0 10px 36px 10px;  /* Links und rechts gleich */
    border-radius: 0;
    box-sizing: border-box;
  }
  .support-flex-wrapper {
    flex-direction: column;
    padding-left: 0 !important;   /* GANZ WICHTIG: Kein Padding mehr! */
    padding-right: 0 !important;
    align-items: center;
  }
  .support-sidebar {
    margin: 0 auto 24px auto;
    padding: 18px 12px 16px 12px;
    width: 100%;
    max-width: 340px;   /* Sidebar ist mittig und nicht zu breit */
    box-sizing: border-box;
    border-radius: 18px;
  }
  .support-main-content {
    padding: 22px 8px 14px 8px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; /* Jetzt wird alles mittig! */
  }
  .support-main-content h2,
  .support-desc,
  .support-email-hint {
    width: 100%;
    max-width: 340px;   /* Optional: nicht zu breit auf großen Phones */
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------------
  Ende Hilfe und Support
---------------------------*/

/*----------------
  Beginn Rückgabe
-----------------*/
.rueckgabe-form {
    max-width: 700px;
    margin: 30px auto;
    background: #fff;
    padding: 30px 25px 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(50,50,93,0.07);
    font-family: 'Inter', Arial, sans-serif;
}

#inhalt h1 {
  color: #2367bd;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}

p.subtitle {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #2c3440;
}


.rueckgabe-form input,
.rueckgabe-form select,
.rueckgabe-form textarea {
    width: 100%;
    padding: 15px 12px;
    margin-top: 2px;
    border: 1.5px solid #e2e7ef;
    border-radius: 8px;
    background: #f7f8fa;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.rueckgabe-form input:focus,
.rueckgabe-form select:focus,
.rueckgabe-form textarea:focus {
    border-color: #2b64d6;
    background: #fff;
}

.rueckgabe-form textarea {
    min-height: 90px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 6px;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 0.96rem;
    color: #444;
}

.rueckgabe-form button[type="submit"] {
    width: 100%;
    background: #2b64d6;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    margin-top: 8px;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 rgba(43,100,214,0.09);
    transition: background 0.17s;
}

.rueckgabe-form button[type="submit"]:hover {
    background: #174db2;
}

.kommentar {
    font-size: 0.95rem;
    color: #b0b8c9;
    margin: 15px 0 0 0;
}

.error-message {
    color: #e52c3c;
    font-size: 0.92em;
    display: block;
    min-height: 19px;
}

/*--------------
  Ende Rückgabe
---------------*/
/*----------------------------
  Beginn Versand und Zahlung
-----------------------------*/
.versand-inhalt {
  font-size: 1.6rem;
  line-height: 1.65;
  padding: 0px 38px 32px 38px;
  color: #223344;
  max-width: 100%;
  box-sizing: border-box;
  background: transparent;
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
  padding-right: 32px;
  padding-left: 38px;
}

.versand-inhalt h2 {
  color: #2367bd;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}

.versand-bold {
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #183356;
  font-size: 1.09em;
}

.versand-inhalt .highlight {
  color: #5f7285;
  background: #eaf8f1;
  padding: 1px 5px;
  border-radius: 5px;
  font-weight: 700;
}

.versand-checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5em;
}
.versand-checklist li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.7em;
  color: #223344;
  font-size: 0.9em;
}
.versand-checklist li::before {
  content: "✔";
  color: #23b163;
  font-size: 1.15em;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.09em;
  line-height: 1;
}

/* Abstand zwischen Sidebar und Content */
.support-flex-wrapper {
  gap: 42px; /* Desktop: angenehm viel Abstand */
}

/* --- LAPTOP & TABLET OPTIMIERUNG --- */
@media (max-width: 1500px) and (min-width: 800px) {
.support-container {
  margin: 0 auto;
  max-width: 1100px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 40px 0 #e6edf6;
  padding: 36px 32px 36px 32px; /* 32px links/rechts – sieht immer harmonisch aus */
}
  .support-flex-wrapper {
    gap: 24px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .versand-inhalt {
    max-width: 600px;
    padding-left: 12px;
    padding-right: 14px;
  }
}

/* Tablet quer & kleines Notebook: noch mehr Flexibilität */
@media (max-width: 900px) and (min-width: 600px) {
  .versand-inhalt {
    max-width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.2rem;
  }
}

/* Smartphone/Tablet hochkant: fast volle Breite, lesbar! */
@media (max-width: 600px) {
  .versand-inhalt {
    font-size: 1.3rem;
    padding: 18px 4vw 18px 4vw;
    max-width: 99vw;
  }
  .versand-inhalt h2 {
    font-size: 1.3rem;
  }
}

/*----------------------------
  Ende Versand und Zahlung
-----------------------------*/


/*------------------------
  Label Tipp!
------------------------*/
.label-top {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #fff;
  font-size: 1.0rem;
  padding: 10px 15px;
  border-radius: 2px;                      /* leichte Abrundung */
  font-weight: 600;
  
  /* Text- und Box-Schatten für bessere Lesbarkeit und Tiefe */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/*------------------------
  Ende Label Tipp!
------------------------*/


/* -------------------------
   Beginn Produktdetailseite
--------------------------- */
.Produktdetail-H1 {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 800px;
  margin-left: 4rem;
  font-size: 2.5rem;
}


/* Layout Row Hauptstruktur */
.produktdetailseite > .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
}

/* Spaltenstruktur */
.produktdetailseite .col-sm-4,
.produktdetailseite .col-sm-5,
.produktdetailseite .col-sm-3 {
  box-sizing: border-box;
}

.produktdetailseite .col-sm-4 {
  flex: 0 0 40%;
  max-width: 40%;
}

.produktdetailseite .col-sm-5 {
  flex: 0 0 40%;
  max-width: 40%;
}

.produktdetailseite .col-sm-3 {
  flex: 0 0 20%;
  max-width: 20%;
}

/* Extra spacing to fix the 'zu wenig Abstand nach unten' */
.produktdetailseite .col-sm-3,
.produktdetailseite .col-sm-4,
.produktdetailseite .col-sm-5 {
  margin-bottom: 40px;
}


/* Tabs Styling */

.produktdetail-tabs {
  width: 100%;
  margin-top: 60px;
  padding-left: calc(4.5% + 15px); /* Etwas kleiner als col-sm-1 (~8.333%) */
  padding-right: 15px;
  box-sizing: border-box;
}

.produktdetail-tabs .col-sm-12 {
  padding: 0;
}

.produktdetail-tabs .tabs {
  max-width: 100%;
  margin: 0;
}


#inhalt .tab-content {
  font-size: 16px;
  line-height: 1.8;
}

.tabs {
  margin-top: 20px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 15px;
}

.tab-buttons button {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  color: #333;
  transition: background-color 0.2s ease;
}

.tab-buttons button.active {
  background: #fff;
  font-weight: bold;
  border-bottom: 3px solid #007bff;
  color: #007bff;
}

.tab-content {
  display: none;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.tab-content.active {
  display: block;
}

.trusted-stars-service-widget{
  margin-right: 15px;
}
@media (max-width: 768px) {
  #inhalt .tabs {
    padding: 0 10px;
  }
  
  #inhalt .tab-content {
    font-size: 12px;
    line-height: 1.5;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-buttons button {
    width: 100%;
    text-align: left;
  }
}


/*Button*/
.btn-zur-gestaltung {
  background-color: #265a88;
  border-color: #265a88;
  color: white;
}

.btn-zur-gestaltung:hover {
  background-color: #245580;
  border-color: #245580;
  color: white;
}

/* Förderhinweis */
.foerder-hinweis {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  
}
.foerder-hinweis .icon i {
  font-size: 28px;
  color: #88c20d;
}
.foerder-hinweis .text {
  font-size: 14px;
  color: #88c20d;
  line-height: 1.4;
}
.foerder-hinweis .text a {
  color: #88c20d;
  font-weight: bold;
  text-decoration: underline;

}
.icon-small {
  height: 0.8em;
  width: auto;
  display: inline-block;
  vertical-align: text-bottom;
  margin: 0 0.3em 0 1.2em; /* Abstand rechts + links */
}

/* Verkaufsbenefit*/
.verkaufs-benefits {
  display: flex;
  justify-content: space-between;
  margin-top:10px; /* Abstand nach oben vergrößert */
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  gap: 20px;
  cursor: pointer;
}

.benefit-box {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.benefit-box i {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  color: #265a88; /* Farbe passend zum Warenkorb-Button */
}

.benefit-box p {
  margin: 0;
  line-height: 1.4;
}

.benefit-box strong {
  display: block;
  font-weight: bold;
}


/* Galerie Thumbnails */

.image-gallery {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.image-gallery img {
  width: 60px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: border 0.2s;
}

.image-gallery img:hover {
  border-color: #007bff;
}

/* Produktbild Container */
.product-image-container {
  background: rgba(255, 255, 255, 1);
  padding:20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  max-width: 100%;
  height: 550px; /* Feste Höhe für Bildbereich */
  overflow: hidden;
}

/* Wrapper nur für das Bild */
.image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bild selbst */
.product-image-container img#main-product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-image-container img#main-product-image:hover {
  transform: scale(1.01);
}
.product_image_small {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
  border: 1px solid #ddd;
  margin: 4px;
  padding: 4px;
  background: #fff;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.product_image_small:hover {
  transform: scale(1.05);
  border-color: #aaa;
  cursor: pointer;
}


/* Lightbox*/
.lb-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  border-radius: 8px;
  max-width: none !important;
  max-height: none !important;
}

/* Container erhält feste Größe */
.lb-outerContainer {
  width: 90vw !important;
  height: 90vh !important;
  max-width: 90vw !important;
  max-height: 90vh !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Bildrahmen-Zentrierung */
.lb-container {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lb-close {
  position: absolute;
  cursor: pointer;
  z-index: 1050;
  font-size: 36px !important;
  color: #fff !important;
  top: 20px !important;
  right: 30px !important;
  text-shadow: none;
}

.lightboxOverlay {
    background: rgba(0, 0, 0, 0.95) !important;
}

.lb-prev, .lb-next {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%);
  font-size: 48px !important;
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 12px 18px;
  border-radius: 50%;
  z-index: 1060;
  opacity: 1 !important;
  display: block !important;
}

/* Linke Seite */
.lb-prev {
  left: 30px !important;
}

/* Rechte Seite */
.lb-next {
  right: 30px !important;
}

/* Bestseller Badge */
.badge-bestseller {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffc107;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 11;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Navigationspfeile */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.nav-arrow i {
  font-size: 18px;
  color: #333;
}

/* Preisblock */

.compact-form {
  font-family: "Helvetica Neue", sans-serif;
  background: #fff;
  border-radius: 12px;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.07);*/
  padding: 1rem;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-horizontal {
  margin: 0;
  padding: 0;
  list-style: none;
}

.control-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.menge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  background: transparent;
  border: none;
  justify-content: flex-start;
  padding-left: 1.8rem;
}

.menge-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.menge-btn:hover {
  background: #f4f4f4;
}

.menge-input {
  width: 70px;
  height: 32px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  padding: 0 6px;
}

/* Standard: Desktop = Block */
.li_stueckzahl.form-group {
  display: block;
  margin-bottom: 0.5rem;
}

.li_stueckzahl .control-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #333;
  text-align: left;
  padding-left: 1.9rem; 
}

.product_merken {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

/* Feinere Trennlinien mit engerem Abstand */
.section-divider {
  border-top: 1px solid #e2e2e2;
  width: 100%;
  margin: 0.6rem 0;
}

/* Hinweistext: noch etwas kompakter und dezenter */
.verfuegbar-hinweis {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.2rem 0;
  margin: 0;
}

/* Linie unter Preisbereich mit kürzerem Abstand */
.preis-container + .section-divider {
  margin-top: 1rem;
}

/* Verfügbarkeitsanzeigen weiterhin ausgeblendet */
.verfuegbarkeit-wrapper,
.verfuegbarkeit-wrapper.error {
  display: none;
}

.preis-container {
  padding-right: 0.01rem;
  text-align: left;
  margin-top: 0.5rem;
}

.preis-zeile {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
}

.preis-info-zeile {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.2rem;
  padding-left: 0.75rem;  /* 🔧 schieb die MwSt ein wenig nach rechts */
}

.preis-label {
  display: none;
}

.kostenstelle input {
  width: 100%;
  max-width: 250px;
}

.download-section {
  text-align: right;
}

/* Zusätzliche Buttons unten */
#bestellen_button {
  margin-top: 0.5rem; 
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#bestellen_button .btn-zur-gestaltung {
  background-color: #265a88;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  display: inline-block;
  margin-top: 20px;
}

#bestellen_button .btn-zur-gestaltung:hover {
  background-color: #245580;
}

#bestellen_button .full-width-btn {
  background: transparent;
  color: #007bb5;
  border: 2px solid #007bb5;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  text-align: center;
  transition: all 0.2s;
  width: 100%;
  cursor: pointer;
}

#bestellen_button .full-width-btn:hover {
  color: #005f8d;
  border-color: #005f8d;
}

.extra-info{
  margin-top: 1rem;
}

/*Fotografen Bezeichnung*/

.photographer-credit {
  text-align: left;
  margin: 10px auto 10px 17px;
  max-width: 300px; /* Gleiche Breite wie das Bild */
}

/*---------------------
  Zuletzt angesehen---
  ------------------- */
.empfehlung-tab-box {
  margin-top: 40px;
  max-width: 1140px; /* passt zu gängigen Grid-Systemen wie Bootstrap */
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.empfehlung-tab-header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003865;
  margin-bottom: 20px;
  padding-left: 45px;
  text-align: left;
}

/* --- Scrollbare Produktleiste --- */
.empfehlung-scroll-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.empfehlung-tab-content {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 0 40px;
  flex: 1;
}

/* --- Navigation mit Pfeilen --- */
.scroll-btn {
  background: white;
  border: 1px solid #ccc;
  color: #00558c;
  font-size: 1.5rem;
  width: 40px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }

/* --- Kachel-Design --- */

/* --- Kachelcontainer --- */
.empfehlung-card {
  flex: 0 0 280px;
  max-width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: visible;  
}

/* --- Bildbereich --- */
.empfehlung-card .product_preview {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  overflow: visible;
  text-align: center;
}

.empfehlung-card .empfehlung-bild {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


.empfehlung-card .product_preview img {
  vertical-align: middle;
}

@supports (aspect-ratio: 3 / 4) {
  .empfehlung-card .product_preview {
    aspect-ratio: 3 / 4;
    padding-top: 0;
  }

  .empfehlung-card .empfehlung-bild {
    position: static;
    transform: none;
    display: block;
    margin: 0 auto;
  }
}

/* --- Text & Preis --- */
.empf-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  min-height: 50px;
  margin: 10px 10px 6px;
  line-height: 1.3;
  color: #003865;
}

.empf-preis {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 12px;
}

/* --- Button --- */
.empf-actions {
  text-align: center;
}

.empf-btn {
  background-color: #265a88;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.empf-btn:hover {
  background-color: #245580;
}

/* --- Scroll-Leiste ausblenden (sichtbar scrollbar verhindern) --- */
.empfehlung-tab-content {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 0 40px;
  flex: 1;
  scrollbar-width: none;           /* Firefox */
}

.empfehlung-tab-content::-webkit-scrollbar {
  display: none;                   /* Chrome, Safari */
}
/*--------------------------
  Ende Zuletzt angesehen 
---------------------------*/

/*-------------------------
  Beschreibung Tabelle     
--------------------------*/
table {
    width: 60%;
    border-collapse: collapse;
    margin-left: 0; /* Statt "margin: auto;" */
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
caption {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}
th, td {
    border: 0px solid #ccc;
    padding: 12px 18px;
    text-align: left;
}

td {
    color: #333;
    font-size: 1.2em;
}

/*--------------------------
  Ende Beschreibung Tabelle
---------------------------*/

.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-title {
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  min-height: 40px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.product-actions {
  text-align: center;
}

.product-actions .btn {
  width: 100%;
  padding: 12px;
  font-size: 1.5rem;
  background-color: #00558c;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}


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

/* ========== RESPONSIVE LAYOUT ANPASSUNGEN ========== */
/* === ab max-width: 992px (Tablet & kleiner) === */



@media (max-width: 992px) {
  .produktdetailseite .col-sm-4,
  .produktdetailseite .col-sm-5,
  .produktdetailseite .col-sm-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .Produktdetail-H1 {
    width: auto;
    font-size: 2rem;
    margin: 0 1rem;
    text-align: center;
  }

  .produktdetail-tabs {
    padding: 0 15px;
  }

  .product-image-container {
    padding: 20px;
  }

  .product-image-container img#main-product-image {
    max-width: 70%;
    height: auto;
  }

  .preis-container {
    padding: 0;
    text-align: center;
  }

  .preis-zeile,
  .preis-info-zeile {
    margin: 0;
    text-align: center;
  }
}

/* === ab max-width: 768px (Mobilgeräte quer) === */
@media (max-width: 768px) {
  .menge-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 0.25rem;
  }

  .menge-btn, .menge-input {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .menge-input {
    width: 60px;
  }

.verkaufs-benefits {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .benefit-box {
    width: 90%;
    max-width: 300px;
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .benefit-box:last-child {
    border-bottom: none;
  }

  #bestellen_button .btn-zur-gestaltung,
  #bestellen_button .full-width-btn {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 1rem;
  }

  .badge-bestseller {
    font-size: 11px;
    padding: 4px 8px;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-buttons button {
    width: 100%;
    text-align: left;
  }

  .foerder-hinweis {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 0;
  }

  .li_stueckzahl.form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
  }

  .li_stueckzahl .control-label {
    text-align: center;
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .benefit-box {
    flex: 1 1 100%;
  }
}

@media (min-width: 501px) and (max-width: 767px) {
  .benefit-box {
    flex: 1 1 45%;
  }
}

@media (min-width: 768px) {
  .benefit-box {
    flex: 1 1 30%;
  }
}

@media (max-width: 768px) {
 /* --- Standard-Desktop-Layout --- */
.empfehlung-tab-box {
  margin-top: 40px;
  padding-left: 1.5rem;
}

.empfehlung-tab-header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003865;
  margin-bottom: 20px;
  padding-left: 45px;
  text-align: left;
}

.empfehlung-scroll-container {
  position: relative;
  display: flex;
  align-items: center;
}

.empfehlung-tab-content {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 0 40px;
  flex: 1;
  scrollbar-width: none; /* Firefox */
}

.empfehlung-tab-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.scroll-btn {
  background: white;
  border: 1px solid #ccc;
  color: #00558c;
  font-size: 1.5rem;
  width: 40px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }

.empfehlung-card {
  flex: 0 0 280px;
  max-width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.95rem;
}

.empfehlung-card .product_preview {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.empfehlung-card .empfehlung-bild {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.empf-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  min-height: 50px;
  margin: 10px 10px 6px;
  line-height: 1.3;
  color: #003865;
}

.empf-preis {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 12px;
}

.empf-actions {
  text-align: center;
}

.empf-btn {
  background-color: #265a88;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.empf-btn:hover {
  background-color: #245580;
}

/* --- Mobile (Smartphone) Darstellung --- */
@media (max-width: 768px) {
  .empfehlung-scroll-container {
    overflow: hidden;
    position: relative;
  }

  .empfehlung-tab-content {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0;
    margin: 0;
    gap: 0;
    scrollbar-width: none;
  }

  .empfehlung-tab-content::-webkit-scrollbar {
    display: none;
  }

  .empfehlung-card {
    flex: 0 0 90vw;
    max-width: 90vw;
    scroll-snap-align: center;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .empfehlung-card .product_preview {
    height: 220px;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .empfehlung-card .empfehlung-bild {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .scroll-btn {
    top: 40%;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    z-index: 9;
  }

  .empf-title {
    font-size: 1.1rem;
    padding: 0 8px;
    text-align: center;
  }

  .empf-preis {
    font-size: 1.3rem;
    text-align: center;
    margin: 10px 0;
  }

  .empf-btn {
    width: 90%;
    margin: 10px auto 15px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .empfehlung-scroll-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    box-sizing: border-box;
  }

  .empfehlung-tab-content {
    display: flex;
    width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .empfehlung-card {
    flex: 0 0 100vw;
    max-width: 100vw;
    scroll-snap-align: center;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product_preview {
    width: 100%;
    max-width: 300px;
    height: auto;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
  }

  .empfehlung-bild {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    display: block;
  }

  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    color: #00558c;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .scroll-btn.left {
    left: 10px;
  }

  .scroll-btn.right {
    right: 10px;
  }

  .empf-title {
    font-size: 1.2rem;
    text-align: center;
    margin: 10px;
    color: #003865;
  }

  .empf-preis {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
    text-align: center;
  }

  .empf-btn {
    background-color: #265a88;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    width: auto;
    text-align: center;
    cursor: pointer;
    margin: 10px auto 0 auto;
    display: inline-block;
  }

  .empf-btn:hover {
    background-color: #245580;
  }
}

/* === ab max-width: 576px (Mobil hochkant) === */
@media (max-width: 576px) {
  .compact-form {
    padding: 1rem;
  }

  .image-gallery img {
    width: 50px;
  }

  .Produktdetail-H1 {
    font-size: 1.6rem;
  }

  .yellow-hint {
    font-size: 1rem;
    margin-left: 0;
    text-align: center;
  }

  .download-section {
    text-align: center;
  }

  .product-image-container img#main-product-image {
    max-width: 100%;
  }

  .menge-zeile {
    flex-direction: column;
    gap: 0.4rem;
  }

  .menge-label {
    font-size: 0.95rem;
  }

  .li_stueckzahl.form-group {
    flex-direction: column;
    align-items: center;
  }

  .li_stueckzahl .control-label {
    text-align: center;
  }
}


/*---------------------
  Beginn Staffelpreise
-----------------------*/

.staffelpreise-accordion {
  max-width: 520px;
  margin: 20px auto 0 auto;
  font-family: inherit;
}

/* Neutraler Outline-Button */
.staffelpreise-toggle {
  width: 100%;
  background: transparent;
  border: 1.5px solid #e0e3ea;
  color: #23272b;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 11px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: space-between;
  box-shadow: none;
  transition: border 0.18s, background 0.18s;
  outline: none;
}

.staffelpreise-toggle:hover,
.staffelpreise-toggle:focus {
  border: 1.5px solid #265a88;
  background: #f6faff;
}

.staffelpreise-label {
  flex: 1;
  text-align: left;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.1px;
  color: #23272b;
}

.staffelpreise-arrow {
  margin-left: 14px;
  transition: transform 0.23s;
  font-size: 1.08em;
  color: #8c96a4;
  display: flex;
  align-items: center;
}

/* Pfeil dreht sich bei offenem Accordion */
.staffelpreise-content.open ~ .staffelpreise-toggle .staffelpreise-arrow,
.staffelpreise-toggle.open .staffelpreise-arrow {
  transform: rotate(180deg);
}

/* Accordion-Inhalt */
.staffelpreise-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: none;
  margin-top: 0;
  transition: max-height 0.35s cubic-bezier(.45,1.6,.41,.99), padding 0.19s;
  padding: 0 2px;
}

.staffelpreise-content.open {
  max-height: 700px;
  padding: 18px 2px 6px 2px;
  transition: max-height 0.5s cubic-bezier(.45,1.6,.41,.99), padding 0.21s;
}

.staffelpreise-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #265a88;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0 6px 9px 6px;
  border-bottom: 2px solid #e7f0fa;
  margin-bottom: 0.6em;
  letter-spacing: 0.2px;
}

/* Preisliste modern */
ul.staffelpreise-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.staffelpreise-liste li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 7px;
  border-bottom: 1px solid #f2f5f8;
  font-size: 1.01rem;
  background: #f9fbfc;
  border-radius: 7px;
  margin-bottom: 2px;
}
ul.staffelpreise-liste li span {
  display: inline-block;
  min-width: 60px;
}
ul.staffelpreise-liste li:nth-child(even) {
  background: #fff;
}
ul.staffelpreise-liste li:first-child {
  background: #e7f0fa;
  color: #265a88;
  font-weight: 700;
}
ul.staffelpreise-liste li:last-child {
  border-bottom: none;
}
ul.staffelpreise-liste li:hover {
  background: #e0eefd;
}

@media (max-width: 520px) {
  .staffelpreise-accordion { padding: 0 2vw; }
  .staffelpreise-header { font-size: 0.98rem; }
  ul.staffelpreise-liste li { font-size: 0.93rem; padding: 7px 2px; }
}
/*--------------------
  Ende Staffelpreise
----------------------*/

/*------------------------
  Beginn Footer Links
------------------------*/
/* === Footer Gesamtlayout === */
.container.footerstyle {
    background-color: #ffffff !important;
    padding: 40px 20px 20px 20px !important;
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
    border-top: none !important;
}

/* === Logos unter dem Footer === */
.footer-logos {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 60px !important;
    padding: 30px 0 40px 0 !important;
    border-top: 1px solid #ddd !important;
    background-color: #fff !important;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 50px !important;
    max-width: 160px !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.footer-logos img:hover {
    transform: scale(1.05) !important;
}

/* === Flexibles 4-Spalten-Layout === */
.container.footerstyle .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.container.footerstyle .col-md-3,
.container.footerstyle .col-md-4,
.container.footerstyle .col-md-6,
.container.footerstyle .col-sm-6,
.container.footerstyle .col-sx-12,
.container.footerstyle .newsletter-column {
    flex: 1 1 25% !important;
    min-width: 220px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    padding: 0 10px !important;
}

/* === Überschriften bündig mit Inhalt === */
.container.footerstyle h3,
.newsletter-column label {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #0071b3 !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    padding: 0 !important;
}

/* === Text unterhalb der Überschriften bündig halten === */
.col-md-3 p,
.newsletter-column p {
    margin-top: 0 !important;
    padding: 0 !important;
}

/* === Standard-Linkliste === */
.container.footerstyle ul.vlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
}

.container.footerstyle ul.vlist li {
    margin-bottom: 6px !important;
}

.container.footerstyle ul.vlist li a {
    text-decoration: none !important;
}

.container.footerstyle ul.vlist li a:hover {
    text-decoration: underline !important;
}

/* === Hotline === */
.hotline-number {
    font-weight: bold !important;
    font-size: 16px !important;
    color: #005b9f !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-top: 10px !important;
}

.hotline-number i {
    margin-right: 0px !important;
}

.hotline-time {
    font-size: 13px !important;
    color: #666 !important;
    margin-top: 4px !important;
}

/* === Newsletter Formular in eigener Spalte === */
.newsletter-column {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex: 1 1 25% !important;
    min-width: 220px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.newsletter-column small {
    display: block !important;
    margin-top: 10px !important;
    font-size: 12px !important;
    color: #666 !important;
    line-height: 1.4;
}

.newsletter-column small a {
    text-decoration: underline;
    color: #005b9f !important;
}

.newsletter-row {
    display: flex !important;
    width: 100% !important;
    max-width: 260px !important;
    gap: 6px;
    margin-top: 6px;
}

.newsletter-row input[type="email"] {
    flex: 1;
    padding: 8px 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    transition: box-shadow 0.2s ease-in-out !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.newsletter-row input[type="email"]:focus {
    outline: none !important;
    box-shadow: 0 0 3px #0071b3 !important;
    border-color: #0071b3 !important;
}

.newsletter-row button[type="submit"] {
    background-color: #0071b3 !important;
    color: white !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 8px 10px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease !important;
}

.newsletter-row button[type="submit"]:hover {
    background-color: #005b9f !important;
    transform: scale(1.05) !important;
}

.newsletter-row button[type="submit"] i {
    font-size: 16px;
}

/* === Responsive Darstellung === */
@media (max-width: 1024px) {
    .container.footerstyle .row {
        flex-wrap: wrap !important;
    }
    .footer-logos {
        flex-wrap: wrap !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .container.footerstyle .row {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .container.footerstyle .col-md-3,
    .container.footerstyle .col-md-4,
    .container.footerstyle .col-md-6,
    .container.footerstyle .newsletter-column {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .newsletter-row {
        flex-direction: column !important;
    }
    .newsletter-row button {
        width: 100% !important;
    }
    .footer-logos img {
        height: 30px !important;
        max-width: 100px !important;
    }
}

/*------------------------
  Ende Footer Links
------------------------*/

#sitemap {
    font-size: 11px;
    }
#sitemap h3 {
    font-size: 11px;
    }
#sitemap > ul > li {
    float: left;
    width: 196px;
    padding: 0 20px 0 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    margin: 0 0 10px;
    }
#sitemap > ul > li:nth-child(5n),
#sitemap > ul > li.sp4 {
    padding: 0;
    }
#sitemap ul ul {
    }
#sitemap ul ul li {
    }
.fuss_container #sitemap ul ul {
    margin: 5px 0 0;
    float: left;
    }
#sitemap .clear {
    float: left;
    width: 100%;
    }
#sitemap h3 {
    margin: 0;
    }
#fuss_nav_service {
    float: left;
    text-align: left;
    margin: 0 20px 0 0;
    }
#fuss_nav_impressum {
    float: left;
    }

#fuss_werbeanzeige {
    float: left;
    width: 230px;
    }
#fuss_werbeanzeige img {
    float: right;
    }
.credits {
    clear: both;
    color:#fff;
    font-size: 11px;
    height: 20px;
    line-height: 20px;
    margin: 10px 0 20px;
    text-align: center;
    width: 100%;
    }

#fuss h3 {
    background: #fff;
    color: #0D81BA;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 20px;
    padding: 7px 12px;
    text-transform: none;
    }
    
#fuss p,
#fuss ul {
    padding-left: 10px;
    }

    /* Ende fuss*/


