/*
 Theme Name:   Twenty Twenty-One Apotheke
 Theme URI:    https://lehmanns-apotheke.de
 Description:  Child-Theme für Twenty Twenty-One fuer Lehmanns Apotheke
 Author:       Marco Meyer
 Template:     twentytwentyone
 Version:      1.0.0
 Text Domain:  twentytwentyone-apotheke
*/

@font-face {
    font-family: "myfontawesome";
    font-style: normal;
    font-weight: 900;
    src: url(fonts/fa-solid-900.eot);
    src: url(fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(fonts/fa-solid-900.woff2) format("woff2"),url(fonts/fa-solid-900.woff) format("woff"),url(fonts/fa-solid-900.ttf) format("truetype"),url(fonts/fa-solid-900.svg#fontawesome) format("svg")
}
@font-face {
    font-family: 'Noto Serif';
    src: url('fonts/NotoSerif-Bold.woff2') format('woff2'),
        url('fonts/NotoSerif-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Serif';
    src: url('fonts/NotoSerif.woff2') format('woff2'),
        url('fonts/NotoSerif.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
	padding-top: 100px;
	background-color: #ffffff;
	margin: 0;
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
	
	/*NEU3012*/
	display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

p {
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
	font-size: 16px;
	color: #000000;
	margin-bottom:10px !important;
}
ul, li {
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
	font-size: 16px;
	color: #000000;
	
}
ul.testwise {
	text-align: center !important;
	list-style-position: inside;
}
p.testwise {
	text-align: center !important;
}
h2.testwise, h3.testwise {
	text-align: center !important;
}
a {
	text-decoration: underline;
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
	color: #006633;
}
h1 {
	line-height: 130% !important;
	font-size: 36px;
	/*font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;*/
	/*color: #004810;*/
	font-family: 'Noto Serif', serif;
	font-weight: bold;
	color: #006633;
	margin-bottom: 30px !important;
	text-align: center !important;
}
h2 {
	font-family: 'Noto Serif', serif;
	font-weight: bold;
	color: #006633;
	font-size: 30px;
	margin-bottom: 30px !important;
	margin-top: 60px !important;
	text-align: center !important;
}
h3 {
	font-family: 'Noto Serif', serif;
	font-weight: bold;
	color: #006633;
	font-size: 25px;
	margin-bottom: 20px !important;
	margin-top: 60px !important;
	text-align: center !important;
}
.sidebar-content h3 {
	text-align: left !important;
}
h2 > a,
h3 > a {
	text-decoration: underline !important;
	color: #004810 !important;
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
}
.wp-block-list {
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 18px !important;
}

.abstand-davor {
	margin-top: 20px;
}
.abstand-danach {
	margin-bottom: 20px;
}

/* ---------- Header Grundzustand ---------- */
.site-header {
  width: 100%;           /* Header Hintergrund über volle Breite */
  left: 0;
  top: 0;
  position: fixed;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 100% !important;
  padding-left: 70px;
  padding-right: 80px;
  padding-top: 10px;
  padding-bottom: 1px;
	margin-bottom: 0 !important;
}

.inner-header {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  transition: padding 0.3s ease, transform 0.3s ease;
}

.inner-header .logo img {
  height: 50px;
  transition: height 0.3s ease;
}
.inner-header, .site-header {
  overflow: visible !important;
}

/* ---------- Menü ---------- */
.menu-toggle {
    display: none; 
}
.main-navigation .menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.menu-item a {
	color: #6d6d6d !important;
	font-size: 11pt;
	font-weight: 600;
}

.main-navigation .menu li {
  position: relative;
}

.main-navigation .menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}

.main-navigation .menu li a:hover {
  color: #0073aa;
}

/* ---------- Smooth Dropdown ---------- */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease-in-out;
  z-index: 999;
}

.main-navigation .menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu li a {
  padding: 10px 15px;
  white-space: nowrap;
}

/* ---------- Shrink + Slide beim Scrollen ---------- */
.site-header.scrolled {
  transform: translateY(-10px); /* Header leicht nach oben gleiten */
}

.site-header.scrolled .inner-header {
  padding: 10px 20px;           /* flacher */
}

.site-header.scrolled .inner-header .logo img {
  height: 40px;                 /* kleiner */
}

/* Pfeil nach unten bei Menüpunkten mit Untermenü */
.main-navigation .menu li.menu-item-has-children > a::after {
    content: '▼';       /* Kleiner Pfeil, du kannst auch ► oder ein Unicode-Symbol nehmen */
    display: inline-block;
    margin-left: 5px;
    font-size: 15px;   /* Größe des Pfeils anpassen */
    transition: transform 0.3s;
}

/* Optional: Pfeil dreht sich beim Hover/Öffnen des Untermenüs */
.main-navigation .menu li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}


/**********************************************************************
 * *************** SEITENAUFBAU MIT HERO BILD SECTION *****************
 * *******************************************************************/
#main-content {
	position: relative;
	margin-top: -28px;
	
	/*NEU3012*/
	flex: 1;
}
.container {
  /*position: relative; 
  width: 100%;
  min-height: 100%;   */
	
  /*NEU3012*/
	min-height: auto; /* Entferne feste Höhen */
    position: relative;
}

.wellenbild img {
	width: 100%;
	max-height: 600px; /* Maximale Höhe auf 600px setzen */
	object-fit: cover;
	display: block;
	clip-path: path('M0,500 C400,450 800,550 1200,500 C1600,450 1920,550 1920,500 L1920,0 L0,0 Z');
	z-index: 1;
}

.c-left {
	/*position: absolute;
	top: 450px; 
	left: 0;
	width: calc(100% - 330px);
	height: auto; 
	z-index: 1; /* oben, auf gleicher Ebene wie A 
	min-height: 2000px; 
	   */
	
	/*NEU3012*/
	position: relative;
    z-index: 1;
	max-width: calc(100% - 360px); /* 320px = Breite von c-right + Abstand */
    box-sizing: border-box;
	padding-left: 150px;
	padding-right: 150px;
	padding-bottom: 20px;
	
}
.c-right {
	position: absolute;
	top: 0;
	right: 0;
	width: 370px;
	height: auto; /* passt sich dem Inhalt an */
	background-color: #dddddd;
	z-index: 0; /* hinter A und B */
	min-height: 100%;
	padding: 20px;
}



/*************************************
 * FIXIERTE SEITENLEISTE   ***********
 * ***********************************/
/* Fixierte Leiste (Greifer) */
.floating-bar {
  position: fixed;
  right: 0;
  top: 30%;
  transform: translateY(-50%);
  background-color: #004811;
  width: 80px; /* Breite der Leiste */
  height: 150px; /* Höhe der Leiste */
  border-radius: 5px 0 0 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

/* Pfeil für den Greifer */
.arrow {
  width: 20px;
  height: 20px;
  margin-left: -20px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(225deg);
}

/* Box, die Icons enthält */
.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 10px;
  position: absolute;
  right: 60px; /* Position der Box relativ zur Leiste */
  top: 0;
  height: 100%;
  overflow: hidden;
  transition: right 0.3s ease;
}

/* Logos in der Box */
.boxlogo img {
  width: 40px;
  height: 40px;
  margin: 10px 0;
  animation: pulse 1s infinite ease-in-out;
}

/* Pulsierende Animation der Icons */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Ausgefahrene Box (wenn die Leiste gehovt wird) */
.floating-bar:hover .box {
  right: 0; /* Box wird vollständig sichtbar */
}

/* Eingeklappten Zustand der Box (nur ein Teil der Icons sichtbar) */
.floating-bar .box {
  right: -30px; /* Box ist ein Stück weit eingeklappt */
}

/* Hover-Effekt für die Leiste */
.floating-bar:hover {
  width: 100px; /* Leiste wird breiter, wenn der Benutzer mit der Maus darüber fährt */
}


.bgfull {
	background-color: #F2F2F2;
	padding: 20px;
	border-radius: 20px;
	margin-bottom: 40px;
}











/************************************
 * ******* SIDEBAR ******************
 * *********************************/
#sidebar {
	padding-top: 500px;
	padding-left: 10px;
	padding-right: 10px;
}
.sidebar-content {
	vertical-align: middle !important;
}
#sidebar > h2 {
	text-align: left !important;
}
#sidebar > a::hover {
	color: #ffffff !important;
}
.sidebar-title {
	margin-top: 0 !important;
}
.sidebar-title a {
	text-decoration: none !important;
}
.sidebar-thumb a img {
	border-radius: 15px;
}
.active-shop-link {
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
	color: #ffffff;
	background-color: #004810;
}


/*********************************************************
 *********** Einzelne Design-Elemente ********************
 * ******************************************************/
.bg-block-top {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background-color: #F2F2F2;
	padding: 20px;
	margin-bottom: 0px !important;
}
.bg-block-middle {
	background-color: #F2F2F2;
	padding: 20px;
}
.bg-block-bottom {
	background-color: #F2F2F2;
	padding: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	margin-bottom: 40px;
}
.custom-internallink-icon::before {
    font-family: myfontawesome; 
    font-weight: 900; 
    content: "\f360";
    display: inline-block;
	font-size:25px;
	padding-right:10px;
	color: #006633;
}
.custom-internallink-icon {
	font-size:14px;
	font-weight: 900;
}


/****************************************************************
 * ************   ONLINE-SHOP   *********************************
 * *************************************************************/
/* Grid für Kacheln */
        .shop-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        /* Kachel-Styling */
        .shop-card {
            background: white;
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            border: 2px solid transparent;
        }

        .shop-card.clickable:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(60, 177, 132, 0.25);
            border-color: #3cb184;
            cursor: pointer;
        }

        /* Buttons innerhalb der ersten Kachel */
        .filial-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .filial-button {
            display: block;
            background: #3cb184;
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .filial-button:hover {
            background: #2a9d6f;
            transform: translateX(5px);
        }

        .shop-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3cb184, #2a9d6f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .shop-card.special .shop-card-icon {
            background: linear-gradient(135deg, #d8efe5, #3cb184);
        }

        .shop-card h3 {
            color: #3cb184;
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .shop-card p {
            color: #777;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .shop-card-button {
            display: inline-block;
            background: #3cb184;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.3s ease;
            margin-top: 10px;
        }

        .shop-card:hover .shop-card-button {
            background: #2a9d6f;
        }




/************************************
 * ******* FOOTER ******************
 * *********************************/
#main-footer {
	background-color: #222222;
}

#footer-inf {
	background-color: #153520;
	color: #ffffff;
	font-size:12pt;
	padding-left:50px;
	padding-right: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
}
#customfooter {
	display: flex;
	justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
}
.footerspalte {
	width: 25%;
	 margin: 10px;
	 color: #ffffff;
}
.footerspalte h2 {
	font-family: Helvetica,Arial,Lucida,sans-serif;
	font-size: 12pt;
	color: #ffffff !important;
	margin-bottom: 5px;
	text-decoration: underline;
}
.footerspalte a {
	color: #ffffff !important;
	text-decoration: none !important;
}
.service-list {
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    gap: 10px; /* Abstand zwischen den Zeilen */
}

.service-item {
    display: flex;
    align-items: center; /* Bild und Text vertikal mittig ausrichten */
}

.service-item img {
    margin-right: 8px; /* Abstand zwischen Bild und Text */
}

.service-item a {
    display: flex;
    align-items: center; /* Sicherstellen, dass der Link auch flexibel bleibt */
    color: #ffffff;
    text-decoration: none;
}

.service-item span {
    color: #ffffff;
}
#customfooter2 {
	display: flex;
	justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #5c5a5a;
	padding:15px;
}
.footerspalte2 {
	width: 200px;
	color: #ffffff;
}
.footerspalte2 p {
	color: #ffffff;
}
.footerspalte3 {
	width: 120px;
	margin-left: 50px;
	color: #ffffff;
}


/************************************
 * ******* BLOG    ******************
 * *********************************/
img.blog-article-hero {
	width: 350px !important;
	border-radius: 15px !important;
}

/*********  Bilder grundsätzlich *************/
img {
	border-radius: 20px;
}



/*************************************************
 * Pflegehilfsmittelshop   ***********************
 * ************************************************/
#pflegekasse,
#plzort {
	width: 300px;
}

#eigenleistung {
	/*display: inline !important;
	float: left;*/
}
.ed-wrapper {
	width: 100% !important;
}


.phm-block-title {
	text-align: left !important;
	font-size:20px !important;
	display: inline-block; 
    position: relative;
}

.tooltip {
  position: absolute;
  display: inline !important; /* Inline, um keine Box zu erzeugen */
  cursor: pointer !important;
  top: 0; /* Oben ausrichten */
    right: -30px; /* Rechts neben der H2 */
  margin: 0 10px !important;
  padding: 0 !important; /* Kein zusätzlicher Abstand */
  border: none !important; /* Kein Rahmen */
  background: transparent !important; /* Kein Hintergrund */
  visibility: visible !important;
  width: auto !important; /* Keine feste Breite */
  height: auto !important; /* Keine feste Höhe */
}

.tooltip-icon {
  background-color: #004811 !important; /* Grüner Kreis */
  color: white !important; /* Weißes Fragezeichen */
  border-radius: 50% !important; /* Kreisform */
  width: 12px !important; /* Breite des Kreises */
  height: 12px !important; /* Höhe des Kreises */
  display: flex !important; /* Flexbox für Zentrierung */
  align-items: center !important; /* Vertikale Zentrierung */
  justify-content: center !important; /* Horizontale Zentrierung */
  font-weight: bold !important;
  font-family: Arial, sans-serif !important;
  font-size: 12px !important; /* Größe des Fragezeichens */
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1000 !important;
  border: none !important;
  text-decoration: none !important;
}

.tooltip-text {
  visibility: hidden !important;
  width: 520px;
  font-size: 16px;
  background-color: #004811;
  color: #fff !important;
  text-align: left;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1001 !important;
  bottom: 125%; /* Tooltip oberhalb des Icons */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0 !important;
  transition: opacity 0.3s;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%; /* Pfeil nach unten */
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #004811 transparent transparent transparent;
}

/* Anzeige bei Hover oder Fokus */
.tooltip:hover .tooltip-text,
.tooltip:focus-within .tooltip-text {
  visibility: visible !important;
  opacity: 1 !important;
}


h2.abstand-oben {
	margin-top: 30px;
}
.abweichenderBestellerBlock {
	display: none;
}
.abweichenderBestellerBlock.show {
	display: block;
}
.auchBettschutzBlock {
	display: none;
}
.auchBettschutzBlock.show {
	display: block;
	padding: 20px !important;
}
#shop-welcome {
	width: 100% !important;
	display: flex;
	align-items: left;
	flex-direction: row;
	height:100%;
}
#shop-welcome1 {
	display: flex;
	justify-content: left;
	width: 80%;
	align-items: stretch;
	height: 100%;
}
#shop-welcome2 {
	display: flex;
	justify-content: center;
	width: 20%;
	align-items: stretch;
	height: 100%;
}
.shop-button{
	background-color: #004810;
	color: #ffffff;
}
.phm_prozess {
	border-width: 0;
}
.phm_prozess td {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #084810;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #084810;
}
.phm_tabelle_links {
	float: left;
	width:50%;
}
.product-container-frame {
    display: flex;
}
.product-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
	width:60%;
	height: 400px;
	max-height: 400px !important; /* Maximale Höhe des div */
	overflow-y: scroll;
	/*border: 1px solid #ccc;*/
	border-radius: 5px;
	box-sizing: border-box; /* Padding in Höhe einbeziehen */
	scrollbar-width: auto;     /* Für Firefox */
    scrollbar-color: #888 #f1f1f1; /* Thumb & Track Farben für Firefox */
	padding: 10px;
	background-color: #e8f1ec;
}
.simplebar-placeholder {
    display: none !important; /* nur wenn recalc nicht hilft */
}

.auchBettschutzBlock {
	background-color: #e8f1ec;
	padding: 20px !important;
}
/* Webkit (Chrome, Safari, Edge) */
.product-container::-webkit-scrollbar {
    width: 16px; /* Dicke des Scrollbalkens */
}

.product-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 4px solid #f1f1f1; /* Padding um Thumb */
}

.product-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.product,
.warenkorb-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.product-name {
	display: flex;
	width: 80%;
	padding: 3px;
	font-size: 14px !important;
}
.product-name > .name {
	font-weight: bold;
}
.product-cockpit {
	display: flex;
	width: 20%;
	align-items: center;
}
button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
}
button.increment, button.decrement {
    background-color: #153520;
    color: #000000 !important;
    cursor: pointer;
}

button.increment.disabled, button.decrement.disabled {
    background-color: #e4e4e4;
    color: #ffffff;
    cursor: not-allowed;
}
button:hover {
    background-color: #e0e0e0;
}
.quantity {
	font-size: 14px !important;
}
.product.has-quantity {
    background-color: #e0ffe0; /* Heller Grünton */
    transition: background-color 0.3s ease;
}
.scrollable-div {
      max-height: 300px; /* Maximale Höhe des div */
      overflow-y: auto; /* Vertikales Scrollen bei Überschreitung */
      background-color: #f4f4f4;
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box; /* Padding in Höhe einbeziehen */
    }
.summary {
	margin-left: 13px;
	width: 25%;
    padding: 10px;
    /*border: 1px solid #ccc;*/
	border-radius: 5px;
	background-color: #e8f1ec;
}

/* CSS für das Unterschriftsfeld */
#signature-pad {
	border: 2px solid #000;
	width: 50%;
	height: 200px;
	touch-action: none; /* Verhindert das Scrollen beim Zeichnen auf Touchscreens */
}
.buttons {
	margin-top: 10px;
}

#passwortvergabe table {
	width: 600px;
	border: none;
}

#passwortvergabe table td {
	width: 300px;
	border: none;
}

/* PHM MOBILE RESPONSIVE   *****************************************************/
@media (max-width: 992px) {
	.product-container-frame {display: block;}
	.product-container {display: block;width:100%;}
	.summary {width: 100%;margin-left: 0; margin-top:20px;}
	.kundenseite-div {width: 100%;}
	.login-hinweis {width: 100%;}
}


 /* PHM TABLET RESPONSIVE   *****************************************************/
@media (min-width: 993px) and (max-width: 1070px) {
	.product-container-frame {display: block;}
	.product-container {display: block;width:100%;}
	.summary {width: 100%;margin-left: 0; margin-top:20px;}
	.kundenseite-div {width: 100%;}
	.login-hinweis {width: 100%;}
}

.login-hinweis-oben {
	width:85%;
	padding: 20px;
	text-align: center;
}


.login-hinweis {
	/*border: 1px solid #ccc;*/
	border-radius: 5px;
	width:86%;
	padding: 20px;
	background-color: #e8f1ec;
}



.login-hinweis select,
.login-hinweis input {
	margin-bottom: 10px;
}

.et_post_meta_wrapper img {
	border-radius: 30px;
}
.et_pb_widget a {
	color: #004811 !important;
}
input,
textarea, 
select {
	border-color: #BBBBBB !important;
	border-width: 1px !important;
	border-style: solid !important;
	font-size: 12px !important;
}

input[type="submit"] {
  margin-top: 30px;
  background-color: #2e7d32;   /* Grünton für ruhigen Look */
  color: white;                /* weiße Schrift */
  padding: 10px 20px;          /* Luft um den Text */
  border: none;                /* kein Standardrahmen */
  border-radius: 6px;          /* abgerundete Ecken */
  font-size: 16px;             /* gut lesbar */
  cursor: pointer;             /* zeigt Hand-Cursor */
  transition: background-color 0.3s ease; /* sanfter Hover-Effekt */
}

input[type="submit"]:hover {
  background-color: #1b5e20;   /* dunkleres Grün beim Hover */
}

.kundenseite-div {
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 40%;
	padding: 10px;
}
p.bezugstermin {
	color: #005d00;
	font-weight: bold;
}

p.blockabsatz {
	 text-align: justify !important;
}
.centerdiv {
	width: 100%;
	text-align: center;
}
h2.wp-block-heading, 
h3.wp-block-heading {
	margin-bottom: 20px;
}



/******************************************************
 * ENDE Pflegehilfsmittelshop   ***********************
 * ****************************************************/











/**********************************************************
 * ******* NEU LLM OPTIMIERTER INHALT    ******************
 * *******************************************************/
/* === GLOBAL: INHALTSBEREICH === */
    .content-wrapper {
      font-family: 'Open Sans', sans-serif;
      color: #1a1a1a;
      line-height: 1.65;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
      text-align: left;
    }

    .block {
      background: #fff;
      border-radius: 14px;
      padding: 2rem;
      margin-bottom: 2.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      border: 1px solid #eee;
    }

    /* === ÜBERSCHRIFTEN: ZENTRIERT === */
    .block h1, .block h2 {
      text-align: center !important;
      /*font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: #007A5A;*/
      margin: 0 0 1.5rem;
      position: relative;
    }
    .block h1 {
      font-size: 2.4rem;
    }
    .block h2 {
      font-size: 1.85rem;
      padding-bottom: 0.5rem;
    }
    .block h2::after {
      content: '';
      position: absolute;
      left: 50%; transform: translateX(-50%);
      bottom: 0;
      width: 60px; height: 3px;
      background: #007A5A;
      border-radius: 2px;
    }

    /* === H3 & FLIESSTEXT: LINKSBÜNDIG === */
    .block h3, .block p, .block li, .block td, .focus-card, .contact-info {
      text-align: left !important;
    }

    /* === HERO === */
    .hero {
      background: linear-gradient(135deg, #f8fcf9 0%, #f0f7f4 100%);
    }
    .hero p {
      max-width: 800px;
      margin: 1rem auto;
      font-size: 1.1rem;
      text-align: left;
    }
    .hero .btn-group {
      text-align: center;
      margin-top: 1.5rem;
    }

    /* === BUTTONS === */
    .btn {
      display: inline-block;
      background: #007A5A;
      color: #fff !important;
      padding: 0.75rem 1.8rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      margin: 0.5rem;
      transition: all 0.2s;
    }
    .btn:hover { background: #006144; transform: translateY(-2px); }

    /* === GRIDS === */
	/*
    .focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem; background: #f8f8f8; padding: 1.5rem; border-radius: 12px; }
	*/

    @media (max-width: 768px) {
      /*.focus-grid, .contact-grid { grid-template-columns: 1fr; }*/
      .hero p { margin: 1rem 0; }
    }

    /* === KARTEN === */
    .focus-card {
      background: #f8f8f8;
      padding: 1.5rem;
      border-radius: 12px;
      border-left: 4px solid #007A5A;
    }
    .service-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 12px;
      text-align: center;
      border: 1px solid #eee;
      transition: all 0.2s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,122,90,0.1);
      border-color: #007A5A;
    }
    .service-card h4 { color: #007A5A; margin: 0.75rem 0 0.5rem; font-size: 1.1rem; }
	.service-card p {text-align: center !important;}

    /* === TEAM === */
    .team-card { text-align: center; }
    .team-card img {
      width: 110px; height: 110px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #007A5A;
      margin-bottom: 0.75rem;
    }

    /* === ACCORDION === */
    details { margin-top: 1rem; font-size: 0.95rem; }
    summary { cursor: pointer; font-weight: 600; color: #007A5A; }

    /* === KONTAKT === */
    .contact-info table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
    .contact-info td { padding: 0.35rem 0; border-bottom: 1px dotted #ddd; }
    .contact-info td:first-child { font-weight: 600; width: 35%; }
    .map-placeholder {
      background: #ddd; height: 250px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #666; font-style: italic;
    }
/* === KONTAKT BLOCK OPTIMIERT === */
.contact-block h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  color: #007A5A;
}

.contact-grid {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 2rem;
  align-items: start;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
}

.contact-info {
  text-align: left;
  font-size: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info strong {
  min-width: 60px;
  color: #007A5A;
  font-weight: 600;
}

.opening-hours p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.map-container {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-grid {
    /*grid-template-columns: 1fr;*/
    gap: 1.5rem;
  }
  .map-container {
    height: 250px;
  }
  .contact-info p {
    flex-direction: column;
  }
  .contact-info strong {
    margin-bottom: 0.2rem;
  }
}



/******************************************************************************
 ************************    MOBILE RESPONSIVE   ******************************
 * ***************************************************************************/
@media (max-width: 992px) {
	select {width: 100% !important;}
	.site-header {padding-left:0;}
	.inner-header .logo img {height: 30px;transition: height 0.3s ease;}
	.floating-bar {display: none;}
	.menu-toggle {display: block; font-size: 18px;background-color: #004811 !important;border: none;cursor: pointer; margin-left:60px !important;}
	.main-navigation .menu {display: none;flex-direction: column;gap: 0;background: #fff;position: absolute;top: 100%;left: 0;width: 100%;border-top: 1px solid #ddd;}
    .main-navigation .menu.active {display: flex;}
    .main-navigation .menu li a {padding: 15px;border-bottom: 1px solid #eee;}
    .main-navigation .menu li.menu-item-has-children > .sub-menu {position: relative;opacity: 1;visibility: visible;transform: translateY(0);border: none;display: none;}
    .main-navigation .menu li.menu-item-has-children.active > .sub-menu {display: block;}
    .main-navigation .menu li.menu-item-has-children > a::after {float: right;transition: transform 0.3s;}
    .main-navigation .menu li.menu-item-has-children.active > a::after {transform: rotate(180deg);}
	.wellenbild img {clip-path: none; width: 100%; max-height:300px;}
	.container {position: relative;	display: flex;flex-direction: column;}
	.c-left, .c-right {position: relative;max-width:100%;width: 100%;top: auto;left: auto;right: auto;padding: 20px;}
	.wellenbild {order: 1 !important;}
	.c-left {order: 2 !important;}
	.c-right {order: 3 !important;background-color: #dddddd;margin-top: 20px;}
	#sidebar {padding-top: 20px;}
	.carousel {display:none;}
	.mobile-faq {display: block;}
	.mobile-faq-question {width: 100%;text-align: left;background-color: #004811 !important;color: #fff;padding: 1rem;font-size: 1.1rem;font-weight: bold;border: none;border-radius: 3px;cursor: pointer;margin-top: 1rem;transition: background 0.3s ease;}
	.mobile-faq-question::after {content: "+";float: right;font-weight: bold;}
	.mobile-faq-question.active::after {content: "-";}
	.mobile-faq-answer {display: none;background: #f9f9f9;border-left: 4px solid #D0AC62;padding: 1rem;margin-bottom: 0.5rem;}
	.mobile-faq-answer p {margin: 0;}
	.service-list {display: block;}
	.service-item {display: flex;align-items: center; /* Bild und Text vertikal mittig ausrichten */}
	.service-item img {margin-right: 8px; margin-bottom: 8px;}
	.service-item a {display: flex;align-items: center; color: #ffffff;text-decoration: none;}
	.service-item span {color: #ffffff;}
	#customfooter {display: block;}
	#customfooter2 {display: block;}
	.footerspalte3 {margin-left: 0;}
	.footerspalte {width: 100%;margin: 10px;color: #ffffff;padding:8px !important;}
	.footerspalte h2 {display: block; font-family: Helvetica,Arial,Lucida,sans-serif;font-size: 12pt;color: #ffffff !important;margin-bottom: 5px;margin-top: 15px !important;text-decoration: underline;}
	.footerspalte a {color: #ffffff !important;text-decoration: none !important;}
    .shop-grid {grid-template-columns: 1fr;gap: 20px;}
	.shop-card {padding: 25px 20px;}
	.shop-card h3 {font-size: 1.2rem;}
	.shop-card p {font-size: 0.95rem;}
    .filial-button, .shop-card-button {font-size: 1rem;padding: 12px 20px;}
	
	.services-container {justify-content: center;flex-direction: column;}
    .service-block {flex: 1 1 100%;}
    

  
}