:root {
	--blau:#005b9a;
	--gelb:#ffe78a;
	--pink:#f08c9a;
	--gruen:#89cbaa;
	--rot:#f94144;

	--blau-rgb:rgba (0, 91, 154, 1);
	--gelb-rgb:rgba (247, 231, 170, 1);
	--pink-rgb:rgba (240, 140, 154, 1);
	--gruen-rgb:rgba (137, 203, 170, 1);

	--dunkelblau:#213566;
	--dunkelgelb:#ffde60;
	--dunkelpink:#c15d6f;
	--dunkelgruen:#529d77;
	--dunkelrot:#be0003;

	--dunkelblau-rgb:rgba (33, 53, 102, 1);
	--dunkelgelb-rgb:rgba (255, 222, 96, 1);
	--dunkelpink-rgb:rgba (193, 93, 111, 1);
	--dunkelgruen-rgb:rgba (93, 155, 122, 1);
	
	--blau-verlauf:;
	--gelb-verlauf:;
	--pink-verlauf:;
	--gruen-verlauf:;

	--weiss:#ffffff;
	--hellgrau:#efefef;
	--grau:#a6a6a6;
	--dunkelgrau:#888888;

	--radius-s:5px;
	--radius-s-inner:3px;
	--radius-m:10px;
	--radius-m-inner:6px;
	--radius-l:20px;
	--radius-l-inner:16px;
	--radius-xl:60px;
	--radius-xl-inner:56px;

	--headline-1:;
	--headline-2:;
	--handwrite:;

	--shadow-hard:;
	--shadow-soft:;
}

::-moz-selection {
	background:var(--pink);
	color: #ffffff;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

::selection {
	background:var(--pink);
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

a:focus, button:focus, input:focus, select:focus, textarea:focus,
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: transparent;
  	-webkit-touch-callout: none;
	outline:none;
}

video::-internal-media-controls-download-button {
  display: none;
}

video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}

html {
	margin:0px;
	padding:0px;
}

body {
	width:100%;
	height:100%;
	padding:0px;
	background:var(--hellgrau);
	font-family:"Montserrat";
	font-size:14px;
	line-height:28px;
	color:var(--dunkelgrau);
	margin:0px;
}

		/********** MIN. 320px - MAX. 1024px **********/
        @media screen and (min-width: 320px) and (max-width: 1024px) {
			body {
				margin:120px 0px 0px 0px;
				font-size:12px;
				line-height:24px;
			}
			
			body.mbx-auth-body {
				margin:0px 0px 0px 0px;
			}
		}

h1,
h2 {
	color:var(--gruen);
	font-family:"Anton";
	font-size:50px;
	text-transform:uppercase;
	font-weight:normal;
	position:relative;	
}

h1 {
	line-height:50px;
}

h2 {
	font-size:30px;
}

h1 span.headline-highlight,
h2 span.headline-highlight {
	color:#e97791;
	font-size:25px;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.10);	
	font-family: "Yellowtail";
	text-transform:none;
	position:absolute;
	bottom:-15px;
	left:50%;
	transform: translateX(-50%);
	overflow: hidden; 
  	text-overflow: ellipsis;
  	white-space: nowrap;
}

h1 span.headline-highlight {
	font-size:30px;	
	bottom:-20px;
}

		/********** MIN. 320px - MAX. 768px **********/
		@media screen and (min-width:320px) and (max-width:768px) {
        }

/************************************************************************************************************************
************************************************************************************************************************
         INPUTS / FORMFIELDS STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
form .field {
	position:relative;
	margin-bottom:20px;
} 

form .field input {
	background:var(--hellgrau);
	border-radius:var(--radius-m);
	border:none;
	padding:15px;
	width:calc(100% - 30px);
	color:var(--dunkelgrau);
	font-family:"Montserrat";
	font-size:12px;
	font-family:"Montserrat";	
}

form .field label {
  	position:absolute;
  	top:9px;
  	left:15px;
  	color:var(--grau);
  	font-size:12px;
  	font-family:"Montserrat", sans-serif;
  	pointer-events:none;
	font-size:12px;
  	transition: all .15s ease;
}

form .field input:focus ~ label,
form .field input:not(:placeholder-shown) ~ label {
  	top:-10px;
  	left:8px;
  	color:var(--grau);
  	font-size:10px;
  	background:rgba(255,255,255,0.8);
  	border-radius: 10px;
  	padding:0px 10px;
	line-height:20px;
  	box-shadow: 2.5px 2.5px 2.5px rgba(0,0,0,0.025);
  	-webkit-backdrop-filter: blur(10px);
  	backdrop-filter: blur(10px);
}

form .field.field-password {
  	position: relative;
}

form .field.field-password .toggle-password {
  	position: absolute;
  	right: 12px;
  	top: 50%;
  	transform: translateY(-50%);
  	border: none;
  	background: transparent;
  	padding: 0;
  	cursor: pointer;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	color: #999;
}

form .field.field-password .toggle-password i {
  	font-size: 14px;
}

form .field label.remember {
	display:flex;
	align-items:center;
	gap:10px;
	line-height:20px;
	font-size:10px;
	cursor:pointer;    
	user-select:none;
	margin-bottom:20px;
}

form .submit,
a.btn,
.btn {
	width:100%;
	padding:15px 15px;
	text-align:center;
	background:var(--gruen);
	border:none;
	cursor:pointer;
	border-radius:10px;
	color:var(--weiss);
	font-family:"Montserrat";
	transition: all .15s ease;
	text-decoration:none;
}

form .submit:hover,
a.btn:hover,
.btn:hover {
	background:var(--dunkelgruen);
}


.wrapper {
	width: 100%;
  	max-width: 1200px;
  	margin-left: auto;
  	margin-right: auto;
  	padding-left: 20px;
  	padding-right: 20px;
  	box-sizing: border-box;
	position:relative;
} 

		/********** MIN. 320px - MAX. 480px **********/
        @media screen and (min-width: 320px) and (max-width: 480px) {		
			h2 {
				font-size:20px;
			}
			
			.wrapper {
				max-width: none; 
    			padding-left: 2.5%;
    			padding-right: 2.5%;
			}
		}

.floatLeft {
	float:left;
}

.floatRight {
	float:right;
}

.clear {
	clear:both;
}

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

.bg-gruen {
	background:var(--gruen);
	padding:50px 20px;
	margin:0px auto 0px auto;
	position:relative;
	width:calc(100% - 40px);
}

.bg-gruen h2 {
	color:var(--weiss);
	margin-top:0px;
	padding-top:0px;
}

.button-parent {
	text-align:center;	
}

button.button-go,
.button-go {
	background:var(--gruen);
    padding:25px 35px 25px 35px;
    color:var(--weiss);
    font-family:'Anton';
    font-size:25px;
	line-height:0px;
    text-decoration:none;
    text-transform:uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.15);
    border-radius:var(--radius-xl);
    position:relative;
	z-index:1;
	margin:0px auto 0px auto;
    width:auto;
    transition: all .5s ease-in;
    cursor:pointer;
	display: inline-flex;
  	align-items: center;
  	justify-content: space-between;
	gap:25px;
	border:none;
}

.button-go:after {
	width:calc(100% - 12px);
    height:calc(100% - 12px);
    border-radius:var(--radius-xl-inner);
    position:absolute;
    top:4px;
    left:4px;
    display:block;
    opacity:1;
    border:2px solid var(--weiss);
    content:""
}

.button-go:hover,
.button-go.white:hover {
	background:var(--pink);
}

.button-go.white:hover {
	color:var(--weiss);
}

.button-go.white {
	background:var(--weiss);
	color:var(--gruen);
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.button-go.white:after {
	border:2px solid var(--gruen);
}

.button-go.white:hover:after {
	border:2px solid var(--weiss);
	text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

.button-go i {
	background:var(--weiss);
	border-radius:100%;
	color:var(--gruen);
	flex: 0 0 auto; 
  	width: 25px;           
  	height: 25px;
  	object-fit: contain;  
  	pointer-events: none;
	margin:0px 0px 0px 25px;
    transition: all .5s ease-in-out;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.15);
	justify-content:center;
	align-items:center;
	display:flex;
	box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.15);
	font-size:14px;
}

.button-go:hover i {
	transform:scale(1.2);
	color:var(--pink);
}

.button-go.white i {
	background:var(--gruen);
	color:var(--weiss);
}

.button-go.white:hover i {
	background:var(--weiss);
	color:var(--pink);
}

#buttonFixed{
  	position: fixed;
  	left: 0;
  	right: 0;
  	bottom: 0; 
  	z-index: 999;
  	transform: translateY(120%);
  	opacity: 0;
  	pointer-events: none;
  	transition: transform .5s ease, opacity .5s ease;
  	background: linear-gradient(to bottom, rgba(239,239,239,0) 0%, #efefef 100%);
  	padding: 10px 0;      
  	padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

#buttonFixed.is-visible{
  	transform: translateY(0);
  	opacity: 1;
  	pointer-events: auto;
}

#buttonFixed .inside{
  	background: #fff;
  	border-radius: 10px;
  	margin: 0 auto;
  	max-width: 600px;
  	display: grid;
  	grid-template-columns: 60px 1fr auto;
  	gap: 10px;
  	align-items: center;
  	padding: 10px;
  	box-shadow: 0px -5px 10px rgba(0,0,0,0.05);
}

#buttonFixed .inside .image{
  	width: 60px;
  	aspect-ratio: 1 / 1;
  	border-radius: 5px;
  	overflow: hidden;
  	background: #f3f3f3;
}

#buttonFixed .inside .image img{
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
  	display: block;
}

#buttonFixed .inside .meta{
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	gap: 4px;
  	min-width: 0; 
}

#buttonFixed .inside .meta .articlename{
  	font-size: 12px;
  	line-height: 1.2;
  	display: -webkit-box;
  	-webkit-line-clamp: 2;
  	-webkit-box-orient: vertical;
  	overflow: hidden;
}

#buttonFixed .inside .meta .price{
  	font-size: 12px;
  	line-height: 1.1;
  	white-space: nowrap;
	font-weight:bold;
}

#buttonFixed .inside .meta .price del {
  	color: #d4d4d4;
  	border-right: 1px solid #d4d4d4;
	font-weight:normal;
  	padding-right: 10px;
  	margin-right: 5px;
}

#buttonFixed .inside .meta .price ins {
  	color:var(--dunkelrot);
  	text-decoration: none;
}

#buttonFixed .inside .button-parent{
  	justify-self: end;
  	display: flex;
}

#buttonFixed .button-go {
    padding:7px 15px 7px 10px;
    font-size:10px;
	font-family:"Montserrat";
	font-weight:bold;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.15);
	box-shadow:none;
    border-radius:var(--radius-xl);
	gap:10px;	
	background:rgba(137,203,170,1);
  	display: inline-flex;
  	align-items: center;
}

#buttonFixed .button-go:after {
	width:calc(100% - 6px);
    height:calc(100% - 6px);
	top:2px;
	left:2px;
    border-radius:var(--radius-xl-inner);
    border:1px solid var(--weiss);
	display:none;
}

#buttonFixed .button-go i {
	background:transparent;
	border-radius:0px;
	color:var(--weiss);
	flex: 0 0 auto; 
	margin:0px 0px 0px 0px;
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0);
	font-size:12px;
}	
	
#buttonFixed .button-go:hover {
	background:#529d77;
}

	@media (max-width: 768px){
  		#buttonFixed .inside{
    		grid-template-columns: 60px auto auto;
    		gap: 10px;
    		padding: 5px 10px 5px 5px;
	  		margin:0px 2.5%;
	  		max-width:calc(95% - 15px);
  		}
	}

span.close {
	width:30px;
	height:30px;
	background:var(--gruen);
	border-radius: 50%;
	position: relative;
	display: flex;
	justify-content:center;
	align-items:center;
	color:#fff;
	cursor: pointer;
	transition: all .25s linear .25s;
	outline: 1px solid #fff;
	outline-offset: -3px;
}
			
span.close:hover {
	background:var(--pink);
}

section .button-go {
	margin:50px 0px 0px 0px;
}

		/********** MIN. 320px - MAX. 1024px **********/
        @media screen and (min-width: 320px) and (max-width: 1024px) {		
			button.button-go,			
			.button-go {
				font-size:20px;
				padding:15px 25px;
			}
			
			.button-go.white {
				text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
			}
		}

		/********** MIN. 320px - 
        @media screen and (min-width: 320px) and (max-width: 2048px) {		
			#buttonFixed { 
				width:calc(100% + 0px);
                padding:10px 0px;
                position:fixed;
                bottom:0px;
			  	left:0px;
				transform:translateY(120%);
				opacity:0;
				transition: transform .5s ease, opacity .5s ease;
                height:200px;
                z-index:999;
                background: linear-gradient(to bottom, rgba(239,239,239,0) 0%, #efefef 100%);				
			}
			
			#buttonFixed.is-visible {
  				transform: translateY(0); 
  				opacity: 1;
  				pointer-events: auto;
			}
			
			#buttonFixed .button-go {
				width:calc(100% - 50px);
				max-width:300px;
			}
			
			#buttonFixed .button-go:hover {
				background:var(--pink);
			}
		}MAX. 2048px **********/

section {
	margin:100px auto 100px auto;	
}


/************************************************************************************************************************
************************************************************************************************************************
         TRUSTBAR STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/

.mb-topbar {
	position: relative;
  	width:calc(100% - 40px);
	margin:0px 20px 0px 20px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
  	background: #fff;
  	font-size: 11px;
  	color:#888888;
}

.mb-topbar__inner {
	max-width: 768px;
  	margin: 0 auto;
  	padding: 6px 16px;
  	display: flex;
  	align-items: center;
  	gap: 8px;
}

.mb-topbar__viewport {
	overflow: hidden;
  	flex: 1 1 auto;
}

.mb-topbar__track {
  	display: flex;
  	transition: transform 0.4s ease;
  	will-change: transform;
}

.mb-topbar__item {
  	flex: 0 0 100%;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	gap: 6px;
  	text-align: center;
}

.mb-topbar__icon {
  	font-size: 15px;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
}

.mb-topbar__text {
  	display: inline-block;
}

.mb-topbar__arrow {
  	border: none;
  	background: transparent;
  	font-size: 10px;
  	line-height: 1;
  	cursor: pointer;
  	padding: 4px 6px;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	color:#888888;
  	opacity: 0.7;
  	transition: opacity 0.15s ease, transform 0.15s ease;
}

.mb-topbar__arrow:hover {
  	opacity: 1;
  	transform: translateY(-1px);
}

.mb-topbar__arrow:focus-visible {
  	outline: 2px solid #2a2f35;
  	outline-offset: 2px;
}

/* MOBILE */
@media screen and (min-width: 320px) and (max-width: 1024px) {
	.mb-topbar {

		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
		
	
				width:calc(100% - 20px - 5%);
				margin:10px 2.5% 0px 2.5%;
				padding:0px 10px;
				position:fixed;
  				top:0px;
				left:0px;
  				z-index:9;
  				background: rgba(255,255,255,1);
  				backdrop-filter: blur(10px);
  				-webkit-backdrop-filter: blur(10px);
	}
	
  .mb-topbar__inner {
    padding-inline: 0px;
  }

  .mb-topbar__item {
    font-size: 10px;
  }

  .mb-topbar__arrow {
    font-size: 10px;
    padding: 2px 0px;
  }
}

/* OPTIONAL: sticky oben */
.mb-topbar--sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}	

/************************************************************************************************************************
************************************************************************************************************************
         POPUPS STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/

.popup {
	background:rgba(0,0,0,0.25);
	position:fixed; top:0px;
	left:0px;
	height:100%;
	width:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 9999;
	opacity:0;
	visibility: hidden;         
	pointer-events: none;       
}		
	
.popup.is-open {
	opacity:1;
	visibility:visible;
	pointer-events:auto;
}

.popup-content {
	width:calc(100% - 10%);
	margin:0px 5% 50px 5%;
	max-width:800px;
}

.popup-content .popup-content-inner {
	border-radius:20px;
	position:relative;
	box-shadow:0 0 10px rgba(0,0,0,.25);
	display:flex;
	overflow:visible;
}

.popup-content .popup-content-inner .close {
	position: absolute;
	top:-16.5px;
	left:50%;
	z-index:9999;
	transform: translateX(-50%);
	transition: all .3s ease-in;
	border:3px solid #fff;
	outline: 1px solid #fff;
	outline-offset: -6px;
}
	
.popup-content .popup-content-inner section {
	margin:0px;
}
	
.popup-content .popup-content-inner .popup-right {
	background:rgba(255,255,255,0.25);
	z-index:1;
	padding:30px 30px 30px 40px;
	margin-left:-30px;
	flex:1;
	display:flex;
	align-items:center;
	flex-direction:column;
	justify-content:center;
	text-align:center;
	box-sizing:border-box;
	border-radius:20px;
	color:#fff;
}

.popup-content .popup-content-inner .popup-right h2 {
	line-height:40px;
	color:var(--weiss);
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.popup-content-out {
	text-align:center;
	color:var(--weiss);
	font-size:14px;
	width:calc(100% - 10%);
	max-width:800px;
	margin:50px 5% 50px 5%;
}

.popup-content-out span.button {
	display:inline-block;
	border-radius:var(--radius-m);
	background:var(--gruen);
	color:var(--weiss);
	text-align:center;
	padding:10px 25px;
	font-size:12px;
	margin-top:25px;
	cursor:pointer;
	transition: all .15s ease;
}

.popup-content-out span.button:hover {
	background:var(--dunkelgruen);
}

#ajax-login-form.is-loading,
#ajax-reset-form.is-loading,
#ajax-register-form.is-loading {
  opacity: 0.6;
  pointer-events: none;
}


#ajax-login-form button.submit.is-busy,
#ajax-reset-form button.submit.is-busy,
#ajax-register-form button.submit.is-busy {
  position: relative;
  opacity: 0.8;
  cursor: wait;
}

#ajax-login-form button.submit.is-busy span,
#ajax-reset-form button.submit.is-busy span,
#ajax-register-form button.submit.is-busy span {
  opacity: 0.6;
}


#ajax-login-form button.submit.is-busy::after,
#ajax-reset-form button.submit.is-busy::after,
#ajax-register-form button.submit.is-busy::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  border-top-color: transparent;
  animation: mbx-spin 0.6s linear infinite;
}

@keyframes mbx-spin {to { transform: rotate(360deg); }}


/************************************************************************************************************************
************************************************************************************************************************
         STANDALONE STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/

.standalone-center {
  	width: 100%; 
  	max-width: 400px;
  	margin: 100px auto 100px auto; 
	text-align:center;
}

.standalone-center a img.logo {
	width:75px;
}

.standalone-center .content {
	box-sizing: border-box;
  	width: 100%; 
  	max-width: 400px;
  	margin: 100px auto 0px auto;  
  	border-radius: var(--radius-l);
  	background: var(--weiss);
  	padding: 40px 20px 20px 20px;
  	text-align: center;
  	position: relative;
}

.standalone-center .content a {
	color:var(--grau);
}

.standalone-center .content-out {
	margin-top:50px;
	padding:0px 20px 0px 20px;
}

		/********** MIN. 320px - MAX. 1024px **********/
        @media screen and (min-width: 320px) and (max-width: 1024px) {
			.standalone-center {
  				margin: 50px auto 50px auto; 
			}
			
			.standalone-center .content {
    			max-width: none;
    			width: calc(100% - 5%); 
    			margin:75px 2.5% 0px 2.5%;  
			}
		}

.standalone-center .content form {
	margin-top:20px;
}

.standalone-center .content a.btn i {
	margin-right:15px;
}

.standalone-center .content-out .btn {
	display:block;
	padding:10px 0px;
	text-decoration:none;
	background:var(--grau);
}
	
.standalone-center .content .form-actions {
	margin-top:30px;
	font-size:12px;
}

.standalone-center .content form .reg-bottom {
	text-align:left;
	background:#fafafa;
	border-radius:10px;
	padding:20px;
	font-size:11px;
	line-height:20px;
}

.standalone-center .content form .reg-bottom .mbx-auth-legal-hint {
	margin-top:20px;
}

.standalone-center .content form .reg-bottom .mbx-newsletter-optin {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.standalone-center .content form .reg-bottom .mbx-newsletter-optin input[type="checkbox"] {
  margin-top: 4px;       
  flex-shrink: 0;
}

.standalone-center .content form .reg-bottom .mbx-newsletter-optin__text {
  flex: 1;
}

.standalone-center .content form .reg-bottom .mbx-newsletter-optin__text label {
  cursor: pointer;
  display: block;
}

.standalone-center .content .form-actions .btn.secondary {
	cursor:pointer;
	display:block;
	border-radius:var(--radius-m);
	text-decoration:none;
	text-align:center;
	padding:10px 0px;
	margin-top:10px;
	background:#fafafa;
	transition: all .15s ease;
	color:var(--grau);
}
	
.standalone-center .content .form-actions .btn.secondary:hover {
	background:var(--hellgrau);
}

.standalone-center .content .form-msg ul{
  	font-size:12px;
	list-style:none;
	padding:0px;
	margin:0px 0px 20px 0px;
}

.standalone-center .content .form-msg--success {
	background:rgba(137,203,170,.15);
	color:#1d5f45;
}

.standalone-center .content.form-msg li.form-msg--error {
	background:rgba(240,140,154,0.25);
	color:rgba(193,93,111,1);
	border: 1px solid rgba(240,140,154,1);
	border-radius: var(--radius-m);
	padding: 10px;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 0;
	align-items:center;
	justify-items:start;
	line-height:20px;
}

.standalone-center .content .form-msg li.form-msg--error i {
	border-radius:20px;
	background:rgba(193,93,111,1);
	display:flex;
	justify-content:center;
	align-items:center;
	color:rgba(255,255,255,1);
	padding:5px;
	height:10px;
	width:10px;
}

.standalone-center .content i.icon {
	border-radius:var(--radius-xl);
	border:5px solid var(--weiss);
	background:var(--gruen);
	display:flex;
	align-items:center;
	justify-content:center;
	padding:10px;
	width:40px;
	height:40px;
	position:absolute;
	top:0px;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	color:var(--weiss);
	font-size:25px;
	font-weight:normal;
	margin-bottom:30px;
}

.standalone-center .content .links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
	margin-top:30px;
}

.standalone-center .content .links a {
	display:block;
	background:var(--gruen);
	color:var(--weiss);
	text-decoration:none;
	text-align:center;
	border-radius:var(--radius-m);
	padding:10px 0px;
	font-size:13px;
}

.standalone-center .content .links a i {
	margin-right:10px;
}
	
		/********** MIN. 320px - MAX. 480px **********/
        @media screen and (min-width: 320px) and (max-width: 480px) {
			.popup-content-inner {
    			flex-direction:column; 
				width:calc(100% - 10%);
				margin:100px 5% 0px 5%;
  			}
  			.popup-right {
    			order: -1;  
    			margin-left: 0;
    			padding:35px 25px 40px 25px; 
    			border-radius:20px 20px 0 0;
  			}
			
			.popup-right h2 {
				padding-bottom:0px;
				margin-bottom:10px;
				line-height:0px;
			}

  			.popup-left {
    			order: 0;   
	  			margin-top:-20px;
    			padding:25px;
    			border-radius:20px; 
			}
		}

/************************************************************************************************************************
************************************************************************************************************************
         FLYCART & CHECKOUT STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/

.flycart {
	position: fixed;
  	inset: 0;
  	z-index: 10000;
  	opacity: 0;
  	pointer-events: none;
  	transition: opacity .25s ease;
}

.flycart[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
}

.flycart-overlay {
	position: absolute;
 	inset: 0;
  	background: rgba(0,0,0,.25);
  	-webkit-backdrop-filter: blur(5px);
  	backdrop-filter: blur(5px);
  	opacity: 0;
  	transition: opacity .25s ease;
}

.flycart[aria-hidden="false"] .flycart-overlay {
	opacity: 1;
}

.flycart-panel {
	width:calc(100% - 20px);
	max-width: 350px;
  	z-index: 999999;
  	position: fixed;
  	right: 10px;
  	top: 10px;
  	background: #fff;
  	height: calc(100vh - 20px);
  	box-shadow: 0 0 25px rgba(0,0,0,.25);
  	margin: 0 0 0 10px;
  	padding:0px;
  	border-radius: var(--radius-l);
  	transform: translateX(100%);
  	transition: transform .32s ease;
  	display: flex;
  	flex-direction: column;
  	gap: 0;
  	overflow: hidden; /* Panel selbst scrollt nicht */
}

.flycart[aria-hidden="false"] .flycart-panel {
	transform: translateX(0);
}


#flycart .flycart-header {
	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	gap: 2rem;
	padding:20px 20px 20px 20px;
}

#flycart .flycart-header h2 {
	font-size: 20px; margin: 0;
}

#flycart .flycart-panel .cart-footer {
	position:absolute;
	bottom:0px;
	width:100%;
}


/************************ FREESHIP ************************/

.flycart-panel .mbx-free-ship  {
	margin:0px 20px 0px 20px;
  	font-size: 11px;
  	background:#fafafa;
  	border-radius: 10px;
  	padding:10px 20px 20px 20px;
}

.flycart-panel .mbx-free-ship p {
	margin:0;
	text-align: center;
}

.flycart-panel .mbx-free-ship .mbx-free-ship__bar {
  	height: 10px;
	background:var(--hellgrau);
	border-radius: 999px;
	overflow: hidden;
	margin-top: 10px;
}

.flycart-panel .mbx-free-ship .mbx-free-ship__bar span {
  	display: block;
	height: 100%;
	width:0;
	background: var(--pink);
	transition: width .25s ease;
	border-radius: 999px;
}
.flycart-panel .mbx-free-ship .mbx-free-ship__bar span.bar.done {
	background: #5ab98e;
}

/************************ PRODUKT ************************/
.flycart-panel div.mbx-mini-cart ul {
	margin:0px 20px 0px 20px;
	padding:20px 0px 0px 0px;
	list-style:none;
}

.flycart-panel div.mbx-mini-cart ul li {
  	border-bottom: 1px dotted var(--grau);
  	padding: 20px 0;
  	position: relative;
  	display: grid;
  	grid-template-columns: 60px 1fr 1fr;
	gap:10px;	
	align-items:stretch;
}

.flycart-panel div.mbx-mini-cart ul li:last-child {
	border-bottom:none;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-thumb {
	position:relative;
	height:60px;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-thumb img {
	width:60px;
	height:60px;
	border-radius:var(--radius-m);
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-thumb button.mbx-remove {
	border:2px solid #fff;
	background:var(--hellgrau);
	color:var(--grau);
	border-radius:var(--radius-l);
	display:flex;
	justify-content:center;
	align-items:center;
	padding:11px 10px 9px 10px;
	cursor:pointer;
	width:10px;
	height:10px;
	position:absolute;
	top:-10px;
	left:-10px;
	box-shadow:3px 3px 3px rgba(0,0,0,0.1);
	transition: all 0.5s ease;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-thumb button.mbx-remove:hover {
	background:var(--pink);
	color:var(--weiss);
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info,
.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-meta {
  display: flex;
  flex-direction: column;
  min-height: 60px;        
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info a {
	color:var(--grau);
	text-decoration:none;
	padding:0px 0px 5px 0px;
	display:block;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info .mbx-mini-controls {
	display: flex;
  	align-items: stretch;  
  	border: 1px solid var(--hellgrau);
  	border-radius: 20px;
	background:#fafafa;
  	overflow: hidden; 
  	width: fit-content;	
	margin-top:auto;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info .mbx-mini-controls > * {
	height: 2em;
	line-height: 2em;	
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info .mbx-mini-controls button.mbx-qty {
	background:none;
  	border:none;
  	width: 20px;
	height:100%;
	margin:0px;
	padding:0px 10px 0px 10px;
  	font-size: 11px;
  	cursor: pointer;
  	transition: background 0.2s ease;
  	display: flex;
  	align-items: center;
  	justify-content: center;
	color:var(--grau);	
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info .mbx-mini-controls input.mbx-qty-input {
	width: 30px;
  	text-align: center;
  	border: none;  
  	font-size: 11px;
  	appearance: textfield;    
  	-moz-appearance: textfield;
	background:none;
	color:var(--grau);
	margin:0px;
	padding:0px;	
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info .mbx-mini-controls input.mbx-qty-input::-webkit-inner-spin-button,
.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-info .mbx-mini-controls input.mbx-qty-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
  	margin:0;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-meta {
	text-align:right;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-meta span.price {
	display: inline-flex;
	align-self:flex-end;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-meta span.price del.regular-price {
	display:inline-block;
	color:var(--grau);
	font-size:10px;
	text-align:right;
	margin-right:10px;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-meta span.price ins.sale-price {
	display:inline-block;	
	color:var(--grau);
	text-decoration:none;
	font-weight:bold;
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-meta bdi {
	color:var(--grau);
}

.flycart-panel div.mbx-mini-cart ul li div.mbx-mini-meta div.mbx-save-note {
	display:inline-block;
	border:1px solid rgba(137,203,170,0.9);
	background:rgba(137,203,170,0.25);
	color:var(--dunkelgruen);
	padding:0px 10px;
	border-radius:20px;
	font-size:10px;	
	white-space:nowrap;
	align-self:flex-end;
	margin-top:auto;
}

/************************ RABATTCODE ************************/
.flycart-panel div.mbx-mini-cart div.coupon-wrapper {
	border-top:1px dotted var(--grau);
	border-bottom:1px dotted var(--grau);
	padding:10px 20px;
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper.is-open {
	-webkit-box-shadow: 0px -5px 10px 5px rgba(0,0,0,0.05); 
	box-shadow: 0px -5px 10px 5px rgba(0,0,0,0.05);
}


.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.coupon-header {
	display:flex;
	align-items:center;
	justify-content:space-between;
  	cursor:pointer;
	user-select:none;
  	padding:0px;	
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.coupon-header span.show {
	height: 20px;
    width: 20px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 100%;
    border: 1px solid var(--grau);
	transform: rotate(0deg);
	transition: transform .2s ease;
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper.is-open div.coupon-header span.show {
	transform: rotate(180deg);
	transition: transform .2s ease;	
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.mbx-coupon {
  display:none;	
} 

.flycart-panel div.mbx-mini-cart div.coupon-wrapper.is-open div.mbx-coupon {
	display:block;
	display: grid;
	grid-template-columns: minmax(0, 70%) minmax(0, 30%);
  	grid-template-rows: 1fr;
  	column-gap: 20px;
  	row-gap: 0;
	padding:20px 0px 10px 0px;
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.mbx-coupon input.input-text {
	padding:15px;
	background:var(--hellgrau);
	color:#fff;
	border:none;
	border-radius:10px;
	font-family:"Montserrat";
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.mbx-coupon input.input-text::placeholder {
	color:var(--grau);
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.mbx-coupon button.button {
	border:none;
	border-radius:10px;
	background:var(--gruen);
	color:#fff;
	font-family:"Montserrat";
	font-size:12px;
	cursor:pointer;	
	transition: background-color .15s ease;
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.mbx-coupon button.button:hover {
	background: var(--dunkelgruen);
}

.flycart-panel div.mbx-mini-cart div.coupon-wrapper div.mbx-coupon div.mbx-coupon-msg {
	
}

/************************ TOTALS ************************/

.flycart-panel div.mbx-mini-cart .mbx-totals {
	background:#fafafa;
	margin:0px 0px 0px 0px;
	padding:10px 0px;
	width:calc(100% - 0px);
}

.flycart-panel div.mbx-mini-cart .mbx-totals p {
	margin:5px 0px;
	padding:0px 20px;
}

.flycart-panel div.mbx-mini-cart p.mini-subtotal {
	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	gap: 2rem;
}

.flycart-panel div.mbx-mini-cart .mbx-totals p.mini-coupon {
	display: flex;
  	justify-content: space-between;
  	align-items: center;
	color:var(--dunkelgruen);
  	gap: 2rem;
}

.flycart-panel div.mbx-mini-cart .mbx-totals p.mini-coupon .label {
	border:1px dotted var(--dunkelgruen);
	border-radius:20px;
	font-size:9px;
	padding:0px 3px 0px 10px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.flycart-panel div.mbx-mini-cart .mbx-totals p.mini-coupon .label a {
	background:var(--dunkelgruen);
	color:var(--weiss);
	text-decoration:none;
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:50%;
	width:19px;
	height:19px;
	margin-left:10px;
}

.flycart-paneldiv.mbx-mini-cart .mbx-totals p.mini-coupon .value {
	color:var(--dunkelgruen);
}

.flycart-panel div.mbx-mini-cart .mbx-totals p.mini-shipping {
	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	gap: 2rem;
}
.flycart-panel div.mbx-mini-cart .mbx-totals p.mini-total {
	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	gap: 2rem;
	font-weight:bold;
}

.flycart-panel div.mbx-mini-cart .mbx-mini-actions a {
	background:var(--gruen);
	text-align:center;
	color:var(--weiss);
	border-radius:var(--radius-m);
	text-decoration:none;
	display:block;
	width:calc(100% - 40px);
	margin:20px;
	padding:15px 0px;
	font-family:"Montserrat";
	transition: background-color .15s ease;
}

.flycart-panel div.mbx-mini-cart .mbx-mini-actions a:hover {
	background:var(--dunkelgruen);
}

/************************************************************************************************************************
************************************************************************************************************************
         ORDER COMPLETE STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
div.order-complete {
	width:100%;
}

div.order-complete .full-width.header,
div.order-complete .full-width.status,
div.order-complete .full-width {
	width:calc(100% - 80px);
	padding:0px 20px 20px 20px;
	margin:50px 20px 50px 20px;
	border-radius:var(--radius-l);
	background:var(--weiss);
	text-align:center;
}

div.order-complete .full-width.status {
	padding:0px;
	width:calc(100% - 40px);
}

div.order-complete .full-width.status.pending {
	background:rgba(255,192,0,0.20);
	border:1px solid rgba(255,192,0,1);
	color:rgba(255,192,0,1);
}

div.order-complete .full-width.status.cancelled  {
	background:rgba(190,0,3,0.20);
	border:1px solid rgba(190,0,3,1);
	color:rgba(190,0,3,1);
}


div.order-complete .full-width.status .left {
	width:50px;
    min-width: 50px;
    background: rgba(255,192,0,1);
    display: flex;
    align-items: center; 
    justify-content: center; 
	border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
	
}

div.order-complete .full-width.status .right {
padding:60px 0px 20px 0px;
 display:block;
}

div.order-complete .full-width.status .right a.button {	
	padding:15px 15px;
	text-align:center;
	border:none;
	cursor:pointer;
	border-radius:10px;
	font-family:"Montserrat";
	transition: all .15s ease;
	text-decoration:none;
	font-weight:normal;
	position:relative;
}

div.order-complete .full-width.status .right a.button:after {
	position:absolute;
	top:3px;
	left:3px;
	width:calc(100% - 8px);
	height:calc(100% - 8px);
	border-radius:var(--radius-m-inner);
	content:"";
}

div.order-complete .full-width.status.pending .right a.button {	
	background:var(--weiss);
	color:rgba(255,192,0,1);
}

div.order-complete .full-width.status.pending .right a.button:after {
	border:1px solid rgba(255,192,0,0.25);
}

div.order-complete .full-width.status.pending .right a.button:hover {
	background:rgba(255,192,0,1);
	color:var(--weiss);
}

div.order-complete .full-width.status.pending .right a.button:hover:after {
	border:1px solid rgba(255,255,255,0.5);
}

div.order-complete .full-width.status.cancelled .right a.button {	
	background:var(--weiss);
	color:rgba(190,0,3,1);
}

div.order-complete .full-width.status.cancelled .right a.button:after {
	border:1px solid rgba(190,0,3,0.25);
}

div.order-complete .full-width.status.cancelled .right a.button:hover {
	background:rgba(190,0,3,1);
	color:var(--weiss);
}

div.order-complete .full-width.status.cancelled .right a.button:hover:after {
	border:1px solid rgba(255,255,255,0.5);
}

div.order-complete .full-width.status .right a.button i {
	margin-left:15px;
}

div.order-complete .full-width.status .right h3 {
	margin:0px;
	padding:0px;
	text-transform:uppercase;
	font-family:"Anton";
	font-size:20px;
font-weight:normal;
}

div.order-complete .full-width.status .left i {
  width: 66px;
  height: 66px;
  position: absolute;
	top:-35px;
	left:50%;
	transform:translatex(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:0px;
	background:rgba(190,0,3,1);
	color:rgba(255,255,255,0.5);
border-radius:50%;
	font-size:30px;
	font-weight:normal;
}

div.order-complete .full-width.status .left i:after {
	content:"";
	position:absolute;
	top:3px;
	left:3px;
	width:calc(100% - 10px);
	height:calc(100% - 10px);
	border:2px solid rgba(255,255,255,0.5);
	border-radius:50%;
}

div.order-complete .full-width.header i {
	background:var(--gruen);
	color:var(--weiss);
	border-radius:50%;
	width:50px;
	height:50px;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:25px;
	position:absolute;
	top:0%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	border:5px solid var(--weiss);
}

div.order-complete .full-width.header h2 {
	padding-top:50px;
	line-height:40px;
}

div.order-complete .full-width {
	text-align:left;
	padding:10px 20px 20px 20px;
}

div.order-complete .bestelluebersicht-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 100px;
	grid-row-gap: 0px;		
}


.order-date {
	float:right;
	font-size:10px;
	text-align:right;
	line-height:15px;
	font-family:"Montserrat";
	color:var(--grau);
}

.paymethod {
	border:1px solid var(--hellgrau);
	background:#fafafa;
	border-radius:10px;
	padding:10px 20px;
}

div.order-complete .bestelluebersicht-content h3 {
	font-family:"Anton";
	font-weight:normal;
	color:var(--grau);
	font-size:23px;
	text-transform:uppercase;
}

		/* Bis 480px: einspaltig */
		@media (max-width: 768px) {
			div.order-complete .full-width.header,
			div.order-complete .full-width {
				width:calc(100% - 40px - 5%);
				margin:50px 2.5% 50px 2.5%;
			}			
			
  			div.order-complete .bestelluebersicht-content {
    			grid-template-columns: 1fr;
    			grid-row-gap: 16px;      /* etwas vertikaler Abstand zwischen den Blöcken */
  			}
	
			div.order-complete .bestelluebersicht-content h3 {
				font-size:16px;
			}
	
			.bestelluebersicht-payment {
				border-bottom:1px dotted var(--grau);
				border-top:1px dotted var(--grau);
				padding:20px 0px 30px 0px;
			}
		}

div.order-complete .bestelluebersicht-content ul {
	list-style:none;
	padding:0px;
	margin:0px;
}

div.order-complete .bestelluebersicht-content ul.contact {
	margin:20px 0px;
}

div.order-complete .bestelluebersicht-content .bestelluebersicht-order-summary ul li {
	display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 20px;
grid-row-gap: 0px;
}

div.order-complete .bestelluebersicht-content .bestelluebersicht-order-summary ul li .right {
	text-align:right;
}

div.order-complete .bestelluebersicht-content .bestelluebersicht-order-summary ul li.discount {
	border-top:1px dotted var(--grau);
	border-bottom:1px dotted var(--grau);
	padding:5px 0px 10px 0px;
}

div.order-complete .bestelluebersicht-content .bestelluebersicht-order-summary ul li span.coupon {
	font-size:10px;
	background:var(--hellgrau);
	padding:5px 10px;
	border-radius:20px;
	
}

div.order-complete .bestelluebersicht-content .bestelluebersicht-order-summary ul li:last-child {
	font-weight:bold;
}

ul.order-list {
	padding:0px;
	margin:0px;
	list-style:none;
}

ul.order-list li {
  	border-bottom: 1px dotted var(--grau);
  	padding: 20px 0;
  	position: relative;
  	display: grid;
  	grid-template-columns: 60px 1fr 1fr;
	gap:10px;	
	align-items:stretch;
}

ul.order-list li:last-child {
	border-bottom:none;
}

ul.order-list li div.order-list-thumb {
	position:relative;
	height:60px;
}

ul.order-list li div.order-list-thumb img {
	width:60px;
	height:60px;
	border-radius:var(--radius-m);
}

ul.order-list li div.order-list-thumb span {
	border:2px solid #fff;
	background:var(--hellgrau);
	color:var(--grau);
	border-radius:var(--radius-l);
	display:flex;
	justify-content:center;
	align-items:center;
	padding:6px 5px 4px 5px;
	cursor:pointer;
	width:10px;
	height:10px;
	position:absolute;
	top:-10px;
	left:-10px;
	box-shadow:3px 3px 3px rgba(0,0,0,0.1);
	transition: all 0.5s ease;
	font-size:10px;
}

ul.order-list li div.order-list-info,
ul.order-list li div.order-list-meta {
  display: flex;
  flex-direction: column;
  min-height: 60px;        
}

ul.order-list li div.order-list-info a {
	color:var(--grau);
	text-decoration:none;
	padding:0px 0px 5px 0px;
	display:block;
}


ul.order-list li div.order-list-meta {
	text-align:right;
}

ul.order-list li div.order-list-meta div.einzelpreis del.altpreis {
	display:inline-block;
	font-size:10px;
	text-align:right;
	margin-right:10px;
}

ul.order-list li div.order-list-meta div.einzelpreis ins.neu {
	display:inline-block;	
	color:var(--dunkelgruen);
	text-decoration:none;
	font-weight:bold;
}

ul.order-list li div.order-list-meta span.savings {
	display:inline-block;
	border:1px solid rgba(93, 155, 122, 1);
	background:rgba(137, 203, 170, 0.25);
	color:var(--dunkelgruen);
	padding:0px 10px;
	border-radius:20px;
	font-size:10px;	
	white-space:nowrap;
	align-self:flex-end;
	margin-top:auto;
}

/************************************************************************************************************************
************************************************************************************************************************
         EIGENSCHAFTEN SLIDER STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/

/********** SLIDER GENERAL **********/
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slickify{ visibility: hidden; }
.slickify.slick-initialized{ visibility: visible; }

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
    top: 0px;
    left: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
    content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-prev,
.slick-next {
	font-size: 0!important;
    line-height: 0!important;
    position: absolute!important;
    top: 50%!important;
    z-index:10!important;
    display: flex!important;
    padding: 0!important;
    transform: translate(0, -50%)!important;
    cursor: pointer!important;
    color: transparent!important;
    outline: none!important;
    background: #efefef!important;
	justify-content:center!important;
	align-items:center!important;
	transition: all .4s ease-in;
	border:none!important;
	border-radius:50%!important;
	width: 35px!important;
    height: 35px!important;
}

.slick-prev {
	left:10px!important;
}

.slick-next {
	right:10px!important;
}

.slick-prev:before,
.slick-next:before {
	opacity:1!important;
	color:#a6a6a6!important;
	font-size:25px!important;
	display: flex!important;
	justify-content:center!important;
	align-items:center!important;
	font-family:"Font Awesome 6 Sharp"!important;	
	transition: all .4s ease-in;
}

.slick-prev:before {
	content:"\f137"!important;
}

.slick-next:before {
	content:"\f138"!important;
}

.slick-prev:hover:before,
.slick-next:hover:before {
	color:#89cbaa!important;
}

ul.slick-dots {
	display:block;
	margin:0px 0px 20px 0px;
	padding:0px;
	list-style:none;
	display:flex;
	align-items:center;
	justify-content:center;
	height:20px;
}

ul.slick-dots li {
	float:left;
	width:10px;
	height:10px;
	border-radius:100%;
	background:#e4e4e4;
	margin:0px 5px 0px 5px;
    transition: all .5s ease-in;
}

ul.slick-dots li.slick-active {
	background:#e97791;
	width:15px;
	height:15px;
}

ul.slick-dots li button {
	display:none;
}

		/********** MIN. 320px - MAX. 480px **********/
        @media screen and (min-width:320px) and (max-width:480px) {
			.slick-prev,
            .slick-prev:hover {
				left: -35px;
             }

			.slick-next,
            .slick-next:hover {
				right: -35px;
             }
         }

/************************************************************************************************************************
************************************************************************************************************************
         HEADER & NAVIGATION STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
section#navigation {
  	width:calc(100% - 60px);
	margin:0px 10px 0px 10px;
	padding:20px;
  	display:grid;
  	grid-template-columns: repeat(3, 1fr);
  	align-items:center;  
	z-index:99;
	position:relative;
}

section#navigation.is-sticky {
	position:fixed;
  	top:0; left:0; right:0;
  	z-index: 1000;
  	background: rgba(255,255,255,.5);
  	backdrop-filter: blur(12px);
  	-webkit-backdrop-filter: blur(12px);
  	box-shadow: 0 0 25px rgba(0,0,0,.2);
  	transform: translateY(-110%);
  	transition: transform .95s ease, box-shadow .2s ease;
  	will-change: transform; 
  	border-radius: var(--radius-l);
}

section#navigation.is-sticky.is-visible {
  	transform: translateY(0);
}

section#navigation #first,
section#navigation #second,
section#navigation #third {
  	display:flex;
  	align-items:center;
}

section#navigation #second {
	justify-content:center;
}

section#navigation #first img {
	width:75px;
}

section#navigation #first .navOpenBtn {
	display:none;
}

section#navigation #second img {
	display:none;
}

section#navigation #second nav ul,
section#navigation #third ul {
  	margin:0px;
  	padding:0px;
  	list-style:none;
  	display:flex;
  	justify-content:center;       
  	gap:1rem;
}

section#navigation #second nav ul li {
	position:relative;
}

section#navigation #second nav ul li:first-child {
	display:none;
}

section#navigation #second nav ul li.logged-in {
	display:none;
}

section#navigation #second nav ul.navHidden li.bestsellers {
	display:none;
}

section#navigation #second nav ul li.sale a {
	color:var(--weiss);	
	text-shadow:1px 1px 0px rgba(0, 0, 0, 0.5);
	font-weight:bold;
	background: linear-gradient(120deg,rgba(249, 65, 68, 1) 0%, rgba(190, 0, 3, 1) 100%);
	border-radius:var(--radius-l);
	padding:10px 15px 10px 15px;
	position:relative;
	transition: all .3s ease-in;
}

section#navigation #second nav ul li.sale a:after {
	position:absolute;
	top:2px;
	left:2px;
	width:calc(100% - 6px);
	height:calc(100% - 6px);
	border-radius:var(--radius-l-inner);
	border:1px solid #fff;
	content:"";
}

section#navigation #second nav ul li.sale a:hover {
	background: linear-gradient(120deg,rgba(249, 65, 68, 1) 0%, rgba(190, 0, 3, 1) 100%);
}

section#navigation #second nav ul li.sale .countdown {
	display:none;
}

section#navigation #second nav ul li a {
	color:var(--weiss);
	text-decoration:none;
	text-transform:uppercase;
	font-family:"Montserrat";
	font-size:12px;
	line-height:14px;
	display:block;
	padding:10px 7.5px 10px 7.5px;
}

section#navigation #second nav ul li a.active {
	font-weight:bold;
}

header.site-header.header--none section#navigation #second nav ul li a {
	color:var(--grau);
}

header.site-header.header--none section#navigation #second nav ul li.sale a {
	color:var(--weiss);
}

section#navigation #third {
  	justify-content: flex-end;    
}

section#navigation #third li {
	position:relative;
}

section#navigation #third li a {
	position: relative;
	border:1px solid var(--weiss);
	border-radius:var(--radius-l);
	width:30px;
	height:30px;
	display:flex;
	align-items:center;
	justify-content:center;
	transition: all .3s ease-in;
	color:var(--weiss);
	text-decoration:none;
}

section#navigation #third li a:hover {
	border:1px solid var(--gruen);
	color:var(--gruen);
}

header.site-header.header--none section#navigation #third li a {
	color:var(--grau);
	border:1px solid var(--grau);
}

section#navigation #third .counter{
  	position: absolute;
  	top:-10px;
  	right:-10px;
	width:20px;
	height:20px;
  	border-radius: 9999px;
  	font-size: 12px;
	line-height:none;
  	text-align: center;
  	display:flex;
	align-items:center;
	justify-content:center;
	background:var(--gruen);
	color:var(--weiss);
	font-weight:bold;
	font-family:"Montserrat";
	font-size:10px;
	text-shadow:1px 1px 0px rgba(0, 0, 0, 0.5);
	border:2px solid #fff;
}

section#navigation #third .counter[data-count="0"] {
	display:none;
}

section#navigation #second nav ul li ul,
section#navigation #second nav ul li span.show,
section#navigation #third ul li.logged-in ul li span.show,
section#navigation #third ul li.logged-in ul li ul.my-account-menu {
	display:none;
}

section#navigation #second nav ul li:hover ul,
section#navigation #third ul li.logged-in ul li ul.my-account-menu.is-open {
	display:flex;
	position:absolute;
	top:35px;
	left:calc(50% - 0px);
	width:300px;
	transform: translateX(-50%);
	background:var(--weiss);
	border-radius:var(--radius-m);
	box-shadow:0px 0px 25px rgba(0,0,0,0.1);
	z-index:999;
}

section#navigation #third ul li.logged-in ul li ul.my-account-menu.is-open {
	display:block;
}

section#navigation #second nav ul.navHidden > li:hover > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 5px;
}

section#navigation #second nav ul.navHidden > li:hover > ul > li {
    flex: 0 0 calc(33.333% - 10px);
    box-sizing: border-box;
}

section#navigation #second nav ul.navHidden li ul li:first-child {
	display: flex;
}

section#navigation #second nav ul.navHidden > li:hover > ul > li > a {
    background:#efefef;
    border-radius: var(--radius-m);
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
	padding:0px;
	color:#888;
}

section#navigation #second nav ul li:hover ul:after,
section#navigation #third ul li.logged-in ul li ul:after {
	position:absolute;
	content:"";
	top:-10px;
	left:calc(50% - 10px);
	transform: translateX(-50%);
	z-index:999;
	width:0px;
   	height:0px;
   	border-style:solid;
   	border-width:0 10px 10px 10px;
   	border-color:transparent transparent #FFFFFF transparent;
   	transform:rotate(0deg);	
}

section#navigation #third ul li.logged-in ul li ul div.account-header {
	border-radius:10px;
	background:var(--hellgrau);
	margin:10px;
	padding:10px 20px;
	font-size:12px;
}

section#navigation #third ul li.logged-in ul li ul div.account-header .welcome {
	line-height:20px;
}

section#navigation #third ul li.logged-in ul li ul div.account-header .email {
	font-size:10px;
}

section#navigation #third ul li.logged-in ul li ul div.account-header .links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	margin:10px 0px;
}

section#navigation #third ul li.logged-in ul li ul div.account-header .links .left {
  justify-self: start;
}

section#navigation #third ul li.logged-in ul li ul div.account-header .links .right {
  justify-self: end; 
}

section#navigation #third ul li.logged-in ul li ul div.account-header a {
	padding:5px 10px;
	margin:0px;
	border:1px solid rgba(166,166,166,0.5);
	border-radius:var(--radius-l);
	width:auto;
	height:auto;
	display:inline;
	color:var(--grau);
	font-size:11px;
	background:rgba(200,200,200,0.15);
}

section#navigation #third ul li.logged-in ul li ul div.account-header a i {
	margin-right:5px;
}

section#navigation #third ul li.logged-in ul li ul li {
	border-bottom:1px solid #efefef;
}

section#navigation #third ul li.logged-in ul li ul li:first-child {
	display:block;
}

section#navigation #third ul li.logged-in ul li ul li:last-child {
	border-bottom:none;
}

section#navigation #third ul li.logged-in ul li ul li a {
	display:block;
	text-align:center;
	padding:15px 0px;
	font-size:12px;
	color:var(--grau);
}

section#navigation #third ul li.logged-in ul li ul li a {
	border:none;
	border-radius:0px;
	width:auto;
	height:auto;
	padding:10px 0px;
}

section#navigation #third ul li.logged-in ul li ul li a:hover {
	background:var(--hellgrau);
	border:none;
	border-radius:0px;
}

section#navigation #third ul li.logged-in ul li ul li:first-child a:hover {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

section#navigation #third ul li.logged-in ul li ul li:last-child a:hover {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

section#navigation #third ul li.logged-in ul li ul li a i {
	margin-right:10px;
	font-size:15px;
}


		/********** MIN. 320px - MAX. 1024px **********/
        @media screen and (min-width: 320px) and (max-width: 1024px) {
			
			section#navigation {
				width:calc(100% - 20px - 5%);
				margin:45px 2.5% 0px 2.5%;
				padding:0px 10px 10px 10px;
				position:fixed!important;
  				top:0px;
				left:0px;
  				z-index:999;
				line-height:20px;
  				background: rgba(255,255,255,1);
  				backdrop-filter: blur(10px);
  				-webkit-backdrop-filter: blur(10px);
  				box-shadow: 0px 5px 5px rgba(0,0,0,0.05);
				border-bottom-right-radius: 10px;
				border-bottom-left-radius: 10px;
			}	
			
			section#navigation #first img {
				display:none;
			}
			
			section#navigation #first .navOpenBtn {
				display:block;
				background:var(--gruen);
				border-radius:var(--radius-xl);
				width:30px;
				height:30px;
				position:relative;
				transition: all .5s ease-in;
				cursor:pointer;
				display:flex;
				justify-content:center;
			}
			
			section#navigation #first .navOpenBtn:hover {
            	background:var(--pink);
			}

            section#navigation #first .navOpenBtn span {
                position: relative;
                top:10px;
                display: inline-block;
                width: 50%;
                height: 6px;
                border-top: 2px solid #fff;
                border-bottom: 2px solid #fff;
			}

			section#navigation #first .navOpenBtn span:before {
				content: "";
				position: absolute;
				top: 2px;
				left: 0px;
				width: 100%;
				border-top: 2px solid #fff;
			}
			
			section#navigation #second img {
				display:inline-block;
				width:50px;
			}
			
section#navigation #second nav{
	position: relative;
}

section#navigation #second nav::after{
	content: "";
	position: fixed;
	top:-50px!important;
	left:-20px!important;
	height:calc(100vh + 40px);
	width:calc(100vw + 40px);
	inset: 0;
	background: rgba(0,0,0,0.25);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s ease;
	z-index: 999998;
}

section#navigation #second nav ul.navHidden{
	width: 300px;
	position: fixed;
	left: -360px;
	top: -35px;
	height: calc(100vh - 20px);
	margin: 0 0 0 10px;
	padding: 0 10px;
	background: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.25);
	border-radius: var(--radius-l);
	overflow-y: auto;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0rem;
	transition: left .25s ease-out;
	z-index: 999999;
}

/* offen */
section#navigation #second nav.is-visible::after{
	opacity: 1;
	pointer-events: auto;
}
			
section#navigation #second nav::after {
  pointer-events: none !important;
  opacity: 0 !important;
}			

section#navigation #second nav.is-visible ul.navHidden{
	left: 0;
}
			
			section#navigation #second nav ul li.close {
				display:flex;
				justify-content:center;
				align-items:center;				
				padding:20px 20px 10px 20px;
				background:none;
			}
			
			section#navigation #second nav ul li {
				background:#efefef;
				border-radius:var(--radius-m);
				margin-bottom:10px;
				transition: all .25s ease-in;
				position:relative;
			}			
								
			section#navigation #second nav ul li.logged-in,
 			section#navigation #second nav ul li.logged-in ul li:first-child {
				display:block!important;
			}
			
			section#navigation #second nav ul li:not(.bestsellers) > a {
				color:#888;
				text-align:left;
				padding:5px;
				transition: all .25s ease-in;
				position:relative;
				border-radius:var(--radius-m);
				display: flex;
    			align-items: center;
			}		
			
			section#navigation #second nav ul li a:hover,
			section#navigation #second nav ul.navHidden li.open,
			section#navigation #second nav ul.navHidden li.open ul {
				background:#dadada;
				border-radius:var(--radius-m);
			}
			
			section#navigation #second nav ul li:last-child a {
				border-bottom:0px;
			}
			
			section#navigation #second nav ul li a img {
				margin-right:20px;
				border-radius:5px;
			}
			
			section#navigation #second nav ul li a i.icon {
				margin-right:20px;
			}
			
			section#navigation #second nav ul li.sale a {
				border-radius:var(--radius-m);
				padding:20px 5px 5px 5px;
				border:none;	
				text-align:center;
				display: block;    
    			text-align: center;
				color:#fff;
				font-family:"Anton";
				font-weight:normal;
				font-size:16px;
			}
			
			section#navigation #second nav ul li.sale a:after {
				border-radius:0px!important;
				display:none;
			}
				
			section#navigation #second nav ul li.sale .countdown {
				display:flex;
				justify-content:center;
				align-content:center;
				display: grid;
  				grid-template-columns: repeat(4, minmax(20px, 1fr));
  				gap: 5px;
				border-radius:var(--radius-m);
				padding:20px 0px 0px 0px;
			}
			
			section#navigation #second nav ul li.sale .countdown .cd-box {
				background:rgba(255,255,255,0.25);
				border-radius:var(--radius-s);
				color:var(--weiss);
				font-family:"Montserrat";
				font-weight:normal;
				font-size:10px;			
				aspect-ratio: 1 / 1;  
  				display: flex;
  				flex-direction: column;
  				align-items: center;
  				justify-content: center;
				text-shadow:1px 1px 0px rgba(0,0,0,0.25);
			}
			
			section#navigation #second nav ul li.sale .countdown .cd-box .cd-value {
				font-size:20px;
			}
			
			/* SUBNAV */		
			section#navigation #second nav ul.navHidden li > a > span {
         		position:absolute;
         		right:0px;
         		top:0px;
         		height:100%;
         		width:50px;
         		cursor:pointer;
         		justify-content:center;
         		align-items: center;
         		display:flex;
			}

			section#navigation #second nav ul.navHidden li > a > span i {
				border:1px solid var(--grau);
				border-radius:var(--radius-xl);
				width:20px;
				height:20px;
				justify-content:center;
         		align-items: center;
         		display:flex;
				transition: transform 0.25s ease;
			}
			
			section#navigation #second nav ul.navHidden li > a > span.hide i {
         		transform: rotate(180deg);
			}
			
			section#navigation #second nav ul.navHidden li ul,
			section#navigation #second nav ul.navHidden li:hover ul {
				display:none;
				flex-wrap: wrap;
      			gap: 5px;
      			position: relative;
      			top: 0px;
      			left: 0px;
      			width: calc(100% - 5px);
      			transform: none;
      			box-shadow: 0 0 0 rgba(0,0,0,0);
      			margin: 0 0 0px 0;
      			padding:5px 2px 0px 3px;
      			height: auto;
      			list-style: none;
			}

			section#navigation #second nav ul.navHidden li.open ul {
      			display: grid;
				justify-content:center;
				align-items:center;
				padding:10px 2px 5px 3px;
			}	
			
			section#navigation #second nav ul li:hover ul:after {
				display:none;
			}
			
			section#navigation #second nav ul.navHidden li.open ul li {
      			flex: 0 0 calc(33.333333333% - 5px);
      			box-sizing: border-box;
      			padding: 0px;
      			margin: 0px;
      			list-style: none;
      			float: none;
      			display: block;
			}

			section#navigation #second nav ul.navHidden li.open ul li a {
      			background: #fff;
      			border-radius: var(--radius-s);
      			aspect-ratio: 1 / 1;
      			display: flex;
      			align-items: center;
      			justify-content: center;
      			text-align: center;
      			padding: 0;
      			margin: 0;
      			color: #888;
      			text-decoration: none;
			}			
					
			section#navigation #second nav ul.navHidden li.open ul li:last-child {
				border-bottom:none;
			}
			

section#navigation #second nav ul.navHidden li.bestsellers {
  display: block;
  padding: 5px;
	margin-bottom:20px;
}
section#navigation #second nav ul.navHidden li.bestsellers h3 {
  text-align: center;
  font-family: "Anton";
  font-weight: normal;
  font-size: 16px;
  text-transform: uppercase;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide {
  padding: 5px;
  border-radius: 10px;
  background: #fff;
  margin: 0px 2.5px;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide.slick-initialized .slick-slide {
  padding: 0 5px;
  box-sizing: border-box;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide.slick-initialized .slick-list {
  margin: 0 -5px;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide > div > a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
	padding:0px;
	margin:0px;
}

section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide > div > a:hover {
	background:transparent;
			}

section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide .image {
  width: 50px;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  overflow: hidden;
  background: #f3f3f3;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide .meta {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  width: auto; /* Auto-Width statt 100%, um nicht am rechten Rand zu kleben */
  padding-right: 10px; /* Optional: Abstand zum rechten Rand, anpassen */
	color:#888;
	font-size:10px;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide .meta span.articlename {
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
	text-transform:none;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide .meta span.price {
  line-height: 1.1;
  white-space: nowrap;
	font-weight:bold;
}
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide .meta span.price del {
  padding-right: 8px;
  margin-right: 6px;
	font-weight:normal;
	border-right:1px solid #d4d4d4;
	color:#d4d4d4;
}
		
section#navigation #second nav ul.navHidden li.bestsellers div.bestseller-slider div.bestseller-slide .meta span.price ins {
	color:var(--dunkelrot);
	text-decoration:none;
			}			
						
			
			
			section#navigation #second nav ul.navHidden li.nav-bottom {
				margin:auto 0px 0px 0px;
				padding:0px 0px 0px 0px;
				background:none;
			}
			
			section#navigation #second nav ul.navHidden li.nav-bottom ul,
			section#navigation #second nav ul.navHidden li.nav-bottom:hover ul {
  				display: block !important; 
  				flex-wrap: nowrap;
  				gap: 0px;
  				padding: 0px 0px 0px 0px;
				margin:0px 0px 0px 0px;
				width:100%;
			}

			section#navigation #second nav ul.navHidden li.nav-bottom ul li {
  				flex: none !important;
  				width: 100% !important;
  				display: block;
				margin-top:0px;
			}

			section#navigation #second nav ul.navHidden li.nav-bottom ul li a {
  				aspect-ratio: auto !important;
  				display: block !important;
  				align-items: initial;
  				justify-content: initial;
  				text-align: left;
  				padding: 20px 20px !important; 
				width:calc(100% - 40px);
			}
			
			section#navigation #second nav ul.navHidden li.nav-bottom ul li a:hover {
				background:#dadada;
			}
			
			section#navigation #third li.logged-in {
				display:none;
			}
			
			section#navigation #third li a {
				width:30px;
				height:30px;
				border:1px solid var(--gruen);
				color:var(--gruen);
			}			
		}

/************************************************************************************************************************
************************************************************************************************************************
         KATEGORIEN STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
section#kategorien {
	text-align:center;
}

section#kategorien ul {
	list-style:none;
	margin:0px;
	padding:0px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 0px;
}

section#kategorien ul li a {
	display:block;
	text-decoration:none;
	aspect-ratio : 1 / 1;
	border-radius:var(--radius-l);
	background:var(--grau);
	color:var(--weiss);
	font-family:"Anton";
	font-size:20px;
	font-weight:normal;
	transition: all .5s ease-in;
	display:flex;
	align-items:center;
	justify-content:center;
	text-transform:uppercase;
	font-weight:normal;
}

section#kategorien ul li a:hover {
	
}

section#kategorien ul li:nth-child(1) a { background: var(--pink); }
section#kategorien ul li:nth-child(2) a { background: var(--gelb); }
section#kategorien ul li:nth-child(3) a { background: var(--blau); }


/************************************************************************************************************************
************************************************************************************************************************
         ATTRIBUTES STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
ul#attributes {
	width:100%;
	margin:0px;
	padding:0px;
}

ul#attributes .slick-list .slick-slide   {
	transition: all 0.2s ease;
	filter:blur(5px);
	transform: scale(0.75);
	opacity:0.75;
	width: 100%;
	transition: all 0.5s;
	list-style:none;
	padding:0px;
	margin:0px 0px 30px 0px;
}

ul#attributes .slick-list .slick-slide.slick-current {
	float:left;
	width:calc(100% - 0px); 
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	filter:blur(0px);
	opacity:1;
	transform: scale(1.0);
    max-width: initial;
}

ul#attributes .slick-list .slick-slide li .slideContentInner .text {
	background:var(--weiss);
    border-radius: var(--radius-l);
    padding:60px 25px 25px 25px;
    text-align:center;
	position:relative;
	top:-55px;
}

ul#attributes .slick-list .slick-slide li .slideContentInner .text h3 {
	line-height:30px;
	font-size:20px;
	font-family:"Anton";
	font-weight:200;
	color:var(--grau);
	text-shadow:none;
}

ul#attributes .slick-list .slick-slide li .slideContentInner .icon {
	border:10px solid var(--hellgrau);
    border-radius:100%;
    background:var(--weiss);
    position:relative;
    top:-50px;
    left:calc(50% - 55px);
	z-index:9999;
    width:90px;
    height:90px;
    display:flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease-out 0s;
}

ul#attributes .slick-list .slick-slide.slick-current li .slideContentInner .icon {
	position:relative;
    top:0px;
    left:calc(50% - 55px);
    opacity: 1;
	z-index:9999;
    transition: all 0.5s ease-out 0.3s;
}

ul#attributes .slick-list .slick-slide.slick-current li .slideContentInner .icon:after {
	position:absolute;
	top:2px;
	left:2px;
	width:82px;
	height:82px;
	border:2px solid var(--hellgrau);
	content:" ";
	border-radius:100%;
}

ul#attributes .slick-list .slick-slide li .slideContentInner .icon img {
	position:relative;
	bottom:-100px;
	opacity: 0;
    transition: all 0.5s ease-out 0s;
}

ul#attributes .slick-list .slick-slide.slick-current li .slideContentInner .icon img  {
	opacity: 1;
	width:60px;
    bottom:0px;
    transition: all 0.5s ease-out 0.3s;
}
		/********** MIN. 320px - MAX. 768px **********/
		@media screen and (min-width:320px) and (max-width:768px) {		
			ul#attributes .slick-list .slick-slide li .slideContentInner .text {
				padding:40px 15px 15px 15px;
				top:-41px;
			}

			ul#attributes .slick-list .slick-slide li .slideContentInner .text h3 {
				line-height:15px;
				font-size:15px;
			}

			ul#attributes .slick-list .slick-slide li .slideContentInner .icon {
				border:6px solid var(--hellgrau);
				top:-41px;
				left:calc(50% - 41px);
				width:70px;
				height:70px;
			}

			ul#attributes .slick-list .slick-slide.slick-current li .slideContentInner .icon {
				left:calc(50% - 41px);
				top:0px;
			}

			ul#attributes .slick-list .slick-slide.slick-current li .slideContentInner .icon:after {
				top:2px;
				left:2px;
				width:64px;
				height:64px;
				border:1px solid var(--hellgrau);
			}

			ul#attributes .slick-list .slick-slide li .slideContentInner .icon img {
				bottom:-70px;
			}

			ul#attributes .slick-list .slick-slide.slick-current li .slideContentInner .icon img  {
				width:50px;
			}
        }

/************************************************************************************************************************
************************************************************************************************************************
         REVIEWS STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
#reviews {
	width:100%;
    height:733px;
    background:url('img/green_bg.svg') no-repeat center center;
    position:relative;
    top:0px;
    margin:100px auto 100px auto;
    z-index:2;
    text-align:center;
}

#reviews ul.reviewSlider {
	margin:200px auto 0px auto;
    padding:0px;
    list-style:none;
    max-width:1200px;

}

#reviews ul.reviewSlider .slick-prev,
#reviews ul.reviewSlider .slick-next {
	top:50%;
	background:#fff;
}

#reviews ul.reviewSlider li.slideContent {
	height:100%;
	margin:0px 10px;
	padding:25px;
	background:var(--weiss);
	border-radius:var(--radius-l);
	text-align:center;
}

#reviews .reviewSlider .slideContent .text .name {
	font-weight:bold;
}

/************************************************************************************************************************
************************************************************************************************************************
         PRODUCT STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/

ul.products,
ul.products.bestseller{
  	width: 100%;
  	max-width: 1200px;
  	margin-left: auto;
  	margin-right: auto;
  	padding-left: 20px;
  	padding-right: 20px;
  	box-sizing: border-box;
  	list-style:none;
  	display:grid;
  	gap:10px;
  	grid-template-columns:repeat(4, minmax(0, 1fr));
}

ul.products.bestseller {
  	display:block;
}

section#bestseller {
	text-align:center;
}

li.product {
	position:relative;	
	display:block;	
	background:#fff;
	border-radius:10px;
	padding:10px;
}

ul.products.bestseller div.slick-slide {
	display:flex;
	justify-content:center;
	align-items:center;
	margin:0px 10px;
}

ul.products.bestseller li.product {
	text-align:left;
}

li.product .image {
	position:relative;
	top:0px;
	display: inline-block;
	overflow: hidden;
	border-radius:10px;
}

li.product .image img {
	border-radius:10px;
	position:relative;
	transition: all .9s ease;
    vertical-align: middle;
    width:100%;
    height:100%;
    top:0px;
}

li.product:hover .image img {
	transform:scale(1.2);
}

li.product span.onsale,
li.product span.soldout {
	z-index:1;
	position:absolute;
	top:20px;
	left:20px;
	color:#fff;
	background:var(--dunkelrot);
	border-radius: 5px;
	font-size:9px;
	text-transform:uppercase;
	padding:0px 10px 0px 10px;
}

li.product span.onsale i {
	margin-right:5px;
}

li.product ul.actions {
	list-style:none;
	margin:0px;
	padding:0px;
	position:relative;
}

li.product ul.actions a.single_add_to_cart_button {
	border-radius:50%;
	background:var(--gruen);
	width:40px;
	height:40px;
	color:#fff;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0px;
	position:absolute;
	top:-35px;
	right:10px;
	border:5px solid #fff;
	transition: all .25s;
}

li.product ul.actions a.single_add_to_cart_button:hover {
	top:-40px;
	box-shadow:0px 10px 10px rgba(137,203,170,0.5);
	background:var(--dunkelgruen);
}

li.product ul.label {
	list-style:none;
	margin:0px;
	padding:0px;
	font-size:12px;
	line-height:20px;
	color:#a6a6a6;
}

li.product ul.label span.price {
	font-weight:bold;
}

li.product ul.label span.price del {
	color:#d4d4d4;
	border-right:1px solid #d4d4d4;
	padding-right:10px;
	margin-right:5px;
	font-weight:normal;
}

li.product ul.label span.price ins {
	text-decoration:none;
	color:var(--dunkelrot);
}

li.product ul.label span.sale-percent {
	background:var(--dunkelrot);
	color:#fff;
	padding:2px 8px;
	border-radius:5px;
	font-size:10px;
	font-weight:bold;
	margin-left:10px;
	float:right;
}

ul.products.bestseller.is-switching {
  opacity: 0;
  pointer-events: none;
}

ul.products.bestseller.slick-initialized {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .15s ease;
}

.slickify { visibility: visible; }         
.slickify:not(.is-ready) { opacity: 0; }    
.slickify.is-ready { opacity: 1; transition:.2s; }

	@media screen and (min-width: 320px) and (max-width: 1024px) {
  		ul.products{
    		max-width: none;
    		padding-left: 2.5%;
    		padding-right: 2.5%;
    		grid-template-columns:repeat(2, minmax(0, 1fr));
    		gap:10px;
  		}

  		ul.products.bestseller {
    		max-width: none; 
    		padding-left: 2.5%;
    		padding-right: 2.5%;
    		display:block;  
  		}
		/*
		ul.products.bestseller:after,
		ul.products.bestseller:before {
			content:"";
			background: linear-gradient(90deg,rgba(239, 239, 239, 1) 0%, rgba(239, 239, 239, 0) 100%);
			height:100%;
			width:50px;
			z-index:1000;
			position:absolute;
			left:0px;
			top:0px;
		}
		
		ul.products.bestseller:before {
			background: linear-gradient(90deg,rgba(239, 239, 239, 0) 0%, rgba(239, 239, 239, 1) 100%);
			right:0px;
		}		
		*/
		ul.products.bestseller li.product {
			position:relative;	
			float:left;	
		}		
		
		li.product {
			position:relative;
			width:calc(100% - 10px);
			border-radius:10px;
			padding:5px;
		}
		
		ul.products.bestseller li.product {
			max-width:300px;
		}
		
		li.product img { 
			border-radius:5px;
		}
		
		li.product span.onsale,
		li.product span.soldout {
			top:10px;
			left:10px;
			font-size:8px;
			padding:0px 10px;
		}
		
		li.product ul.actions a.single_add_to_cart_button {
			border:3px solid #fff;
			width:36px;
			height:36px;
			top:-30px;
			right:10px;
			font-size:14px;
		}
		
		li.product ul.label {
			font-size:10px;
			line-height:15px;
			padding:5px 0px 5px 5px;
		}
		
		li.product ul.label span.sale-percent {
			font-size:9px;
		}
	}

/************************************************************************************************************************
************************************************************************************************************************
         SINGLE PRODUCT STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/


/* ================================================================================
01. PRODUCT HERO GALLERY
================================================================================ */
html.mbx-lightbox-open,
body.mbx-lightbox-open{
  overflow:hidden;
}

.mbx-gallery{
  width:100%;
}

.mbx-gallery__viewport{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-l);
  background:#f4f4f4;
  touch-action:pan-y;
  outline:none;
}

.mbx-gallery__viewport:focus-visible{
  box-shadow:0 0 0 3px rgba(0,0,0,.18);
}

.mbx-gallery__track{
  display:flex;
  will-change:transform;
}

.mbx-gallery__track.is-animating{
  transition:transform .45s cubic-bezier(.22,.61,.36,1);
}

.mbx-gallery__slide{
  min-width:100%;
  position:relative;
  flex:0 0 100%;
}

.mbx-gallery__media{
  position:relative;
  aspect-ratio:1 / 1;
  overflow:hidden;
}

.mbx-gallery__image-wrap{
  width:100%;
  height:100%;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  border:none;
  background:none;
  padding:0;
  margin:0;
  display:block;
}

.mbx-gallery__image-wrap:focus-visible,
.mbx-gallery__info-btn:focus-visible,
.mbx-gallery__lightbox-btn:focus-visible,
.mbx-gallery__arrow:focus-visible,
.mbx-gallery__thumb:focus-visible,
.mbx-gallery__info-close:focus-visible,
.mbx-lightbox__close:focus-visible,
.mbx-lightbox__arrow:focus-visible{
  outline:2px solid #111;
  outline-offset:2px;
}

.mbx-gallery__image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.mbx-gallery__video-wrap{
  width:100%;
  height:100%;
  position:relative;
}

.mbx-gallery__video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:#e4e4e4;
}

.mbx-gallery__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mbx-gallery__arrow--prev{
  left:12px;
}

.mbx-gallery__arrow--next{
  right:12px;
}

.mbx-gallery__thumbs{
  display:flex;
  gap:10px;
  margin-top:10px;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:4px;
  scrollbar-width:none;
  cursor:grab;
  user-select:none;
  -webkit-user-select:none;
}

.mbx-gallery__thumbs.is-dragging{
  cursor:grabbing;
}

.mbx-gallery__thumbs::-webkit-scrollbar{
  display:none;
}

.mbx-gallery__thumb{
  flex:0 0 72px;
  width:72px;
  height:72px;
  border:none;
  border-radius:10px;
  overflow:hidden;
  padding:0;
  background:#f0f0f0;
  cursor:pointer;
  opacity:.5;
  transition:opacity .25s ease, transform .25s ease;
}

.mbx-gallery__thumb.is-active{
  opacity:1;
}

.mbx-gallery__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.mbx-gallery__thumb span{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:#666;
}

.mbx-gallery__meta{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:4;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-radius:14px;
  padding:10px 12px;
  color:#444;
}

.mbx-gallery__meta strong{
  display:block;
  font-size:14px;
  line-height:1.2;
}

.mbx-gallery__meta span{
  display:block;
  margin-top:4px;
  font-size:12px;
  line-height:1.35;
}

.mbx-gallery__info-btn{
  position:absolute;
  top:12px;
  right:12px;
  z-index:6;
  width:32px;
  height:32px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  cursor:pointer;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mbx-gallery__lightbox-btn{
  position:absolute;
  bottom:12px;
  right:12px;
  z-index:6;
  width:36px;
  height:36px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mbx-gallery__viewport.is-pointer-down{
  cursor:grabbing;
}

.mbx-gallery__viewport.is-dragging .mbx-gallery__image-wrap{
  cursor:grabbing;
}

/* Info Layer */
.mbx-gallery__info-layer{
  position:fixed;
  inset:0;
  z-index:9998;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.mbx-gallery__info-layer[hidden]{
  display:none !important;
}

.mbx-gallery__info-inner{
  position:relative;
  width:min(600px, 100%);
  max-height:min(85vh, 900px);
  overflow:auto;
  background:#fff;
  border-radius:20px;
  padding:28px 24px 24px;
  box-shadow:0 20px 60px rgba(0,0,0,.22);
  outline:none;
}

.mbx-gallery__info-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:#f2f2f2;
  cursor:pointer;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mbx-gallery__info-body h3{
  margin:0 0 14px;
}

.mbx-gallery__info-content > *:first-child{
  margin-top:0;
}

.mbx-gallery__info-content > *:last-child{
  margin-bottom:0;
}

.mbx-gallery__info-content img,
.mbx-gallery__info-content video,
.mbx-gallery__info-content iframe{
  max-width:100%;
  height:auto;
  display:block;
}

/* Lightbox */
.mbx-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}

.mbx-lightbox[hidden]{
  display:none !important;
}

.mbx-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.92);
}

.mbx-lightbox__inner{
  position:relative;
  width:min(1200px, 100%);
  max-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:2;
}

.mbx-lightbox__media{
  width:100%;
  max-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  touch-action:pan-y;
  user-select:none;
  -webkit-user-select:none;
}

.mbx-lightbox__media.is-dragging{
  cursor:grabbing;
}

.mbx-lightbox__media img,
.mbx-lightbox__media video{
  max-width:100%;
  max-height:82vh;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
}

.mbx-lightbox__caption{
  width:100%;
  max-width:900px;
  margin-top:14px;
  color:#fff;
  text-align:center;
}

.mbx-lightbox__caption strong{
  display:block;
}

.mbx-lightbox__caption span{
  display:block;
  margin-top:4px;
  opacity:.85;
}

.mbx-lightbox__close{
  position:absolute;
  top:-10px;
  right:-10px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:#fff;
  cursor:pointer;
  font-size:28px;
  line-height:1;
  z-index:2;
}

.mbx-lightbox__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.mbx-lightbox__arrow--prev{
  left:-60px;
}

.mbx-lightbox__arrow--next{
  right:-60px;
}

@media (prefers-reduced-motion: reduce){
  .mbx-gallery__track.is-animating,
  .mbx-gallery__thumb{
    transition:none !important;
  }
}

@media (max-width:768px){
  .mbx-gallery__viewport{
    border-radius:var(--radius-m);
  }

  .mbx-gallery__arrow{
    width:36px;
    height:36px;
  }

  .mbx-gallery__thumb{
    flex:0 0 60px;
    width:60px;
    height:60px;
  }

  .mbx-gallery__meta{
    left:10px;
    right:10px;
    bottom:10px;
    border-radius:12px;
    padding:8px 10px;
  }

  .mbx-gallery__meta strong{
    font-size:12px;
  }

  .mbx-gallery__meta span{
    font-size:10px;
  }

  .mbx-gallery__info-layer{
    padding:12px;
  }

  .mbx-gallery__info-inner{
    width:100%;
    max-height:88vh;
    border-radius:16px;
    padding:22px 16px 16px;
  }

  .mbx-gallery__info-close{
    width:38px;
    height:38px;
    font-size:24px;
  }

  .mbx-lightbox{
    padding:12px;
  }

  .mbx-lightbox__close{
    top:10px;
    right:10px;
    width:40px;
    height:40px;
  }

  .mbx-lightbox__arrow{
    width:40px;
    height:40px;
  }

  .mbx-lightbox__arrow--prev{
    left:10px;
  }

  .mbx-lightbox__arrow--next{
    right:10px;
  }

  .mbx-lightbox__media img,
  .mbx-lightbox__media video{
    max-height:74vh;
  }

  .mbx-lightbox__caption{
    margin-top:10px;
    font-size:12px;
  }
}

.single-product .product-hero {
	display: flex;
  	gap: 50px;
  	width: 100%;
}

.single-product .product-hero > * {
  	flex: 1 1 0;
  	min-width: 0;
}

.single-product .product-hero .woo-variation-gallery-container{
  	box-sizing: border-box;
  	width: 100%;
  	padding: 10px;
  	background: #fff;
  	border-radius: 20px;
}

.single-product .product-hero .product-gallery img{
  	border-radius: 10px;
}

	@media (max-width: 768px){
  		.single-product .product-hero{
    		flex-direction: column;
    		gap: 20px;
  		}
		.single-product .product-hero .woo-variation-gallery-container {
			padding:5px;
			border-radius:10px;
		}
		.single-product .product-hero .product-gallery img {
			border-radius:5px;
		}
	}

.single-product .product-hero .product-gallery img {
	border-radius:10px;
}

.single-product .product-hero .product-summary .product-badge {
  	display: flex;
  	align-items: center;
  	justify-content: space-between; 
  	gap: 15px;
  	width: 100%;
  	margin-bottom: 50px;
}

.single-product .product-hero .product-summary .product-badge .badge-text,
.single-product .product-hero .product-summary .product-badge .countdown .cd-part {
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	min-height: 30px;  
  	padding: 0 10px;
  	border-radius: 5px;
  	background: var(--dunkelpink);
  	color: #fff;
  	text-transform: uppercase;
	font-size:10px;
}

.single-product .product-hero .product-summary .product-badge .countdown {
  	display: flex;
  	gap: 3px;     
  	margin-left: auto;     
}

.single-product .product-hero .product-summary .product-badge .countdown .cd-part {
  	flex-direction: column;
  	min-width: 35px;
  	text-align: center;
  	font-size: 10px;
  	line-height: 1;
}

.single-product .product-hero .product-summary .product-badge .countdown .cd-part i {
  	font-style: normal;
  	font-weight: 600;
  	font-size: 12px;
  	line-height: 1;
  	padding: 0;
}

.single-product .product-hero .product-summary .hero-rating {
  	display: flex;
  	align-items: center;
  	justify-content: space-between; 
  	gap: 15px;
  	width: 100%;
}

.single-product .product-hero .product-summary .hero-rating .product-ratings-hint,
.single-product .product-hero .product-summary .hero-rating .product-sales-hint {
  	display: flex;
  	align-items: center;
  	justify-content: center; 
	font-size:11px;color:var(--dunkelgruen);
}

.single-product .product-hero .product-summary .hero-rating .product-sales-hint i {
	margin-right:10px;
	font-size:14px;
}

.single-product .product-hero .product-summary .hero-rating .product-sales-hint span {
	margin:0px 5px;
	font-weight:bold;
}

.single-product .product-hero .product-summary .product-title h1 {
	line-height:1px;
	margin-bottom:50px;
}

	@media (max-width: 768px) {
		.single-product .product-hero .product-summary .product-title h1 {
			font-size:30px;
		}
		
		.single-product .product-hero .product-summary .product-badge .countdown .cd-part {
  			min-width: 25px;
  			font-size: 9px;
		}

		.single-product .product-hero .product-summary .product-badge .countdown .cd-part i {
  			font-size: 10px;
		}
	}

.single-product .product-hero .product-summary .product-usp {
	border-bottom:1px solid #dadada;
	border-top:1px solid #dadada;
	margin-bottom:20px;
}

.single-product .product-hero .product-summary .product-usp ul {
  	list-style: none;
  	margin: 0;
  	padding:10px 0px 15px 10px;
  	display: grid;
  	gap: 0px; 
}

.single-product .product-hero .product-summary .product-usp li {
  	display: flex;
  	align-items: center;  
  	gap: 15px;
	font-size:12px;
}

.single-product .product-hero .product-summary .product-usp li .icon {
  	flex: 0 0 30px;  
  	width: 30px;
  	height: 30px;   
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

.single-product .product-hero .product-summary .product-usp li .icon img {
  	width: 30px;        
  	height: 30px;
  	object-fit: contain;
  	display: block;
}

.single-product .product-hero .product-summary .product-price {
	border-bottom:1px solid #dadada;
	margin-bottom:20px;
	padding-bottom:20px;
}

.single-product .product-hero .product-summary .product-price .woocommerce-Price-amount {
	font-family:"Anton";
	font-size:30px;
	font-weight:normal;
}

.single-product .product-hero .product-summary .product-price del {
	opacity:0.25;
	margin-right:10px;
	position:relative;
	display: inline-block; 
}

.single-product .product-hero .product-summary .product-price del:after {
	content: "";
  	position: absolute;
  	left: -6px;
  	bottom: 12px;
  	width: 130%;
  	height: 1px;               
  	background: var(--dunkelgrau);   
	opacity:1;
  	transform: rotate(-20deg);  
  	transform-origin: left bottom;
  	pointer-events: none;
}

.single-product .product-hero .product-summary .product-price del:before {
	content: "";
  	position: absolute;
  	left: -5px;
  	bottom: 9px;
  	width: 130%;
  	height: 7px;              
  	background: var(--hellgrau);   
  	transform: rotate(-20deg);  
  	transform-origin: left bottom;
  	pointer-events: none;	
}

.single-product .product-hero .product-summary .product-price del,
.single-product .product-hero .product-summary .product-price ins{
	text-decoration:none!important;
}

.single-product .product-hero .product-summary .product-price ins {
	color:var(--dunkelrot);
}

.single-product .product-hero .product-summary .product-price span.sale-percent {
    border: 1px solid rgba(190, 0, 3, 1);
    background: rgba(190, 0, 3, 0.25);
    color:var(--dunkelrot);
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 10px;
	float:right;
	font-weight:bold;
}

.single-product .product-hero .product-summary .price-hint {
	font-size:10px;
	line-height:10px;
}

.single-product .product-hero .product-summary .price-hint a {
	text-decoration:none;
	color:#888;
}

.single-product .product-hero .product-summary .product-views span {
	display:block;
	font-size:11px;
	padding:0px;
	margin:0px;
	line-height:20px;
}

.single-product .product-hero .product-summary .product-views span i {
	margin-right:10px;
}

.single-product .product-hero .product-summary .product-views span.fewleft {
	color:var(--dunkelgelb);
}

.single-product .product-hero .product-summary .product-views span.soldout {
	color:var(--dunkelpink);
}

.single-product .product-hero .product-summary .product-views span.instock {
	color:var(--dunkelgruen);
}

.single-product .product-hero .product-summary .product-cta button {
	background:var(--gruen);
    padding:35px 0px 35px 0px;
    color:var(--weiss);
    font-family:'Anton';
    font-size:25px;
	line-height:0px;
    text-decoration:none;
    text-transform:uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.15);
    border-radius:var(--radius-l);
    position:relative;
	z-index:1;
	margin:20px auto 20px auto;
    width:calc(100% - 0px);
    transition: all .5s ease-in;
    cursor:pointer;
	text-align:center;
	display:block;
	border:none;
}

.single-product .product-hero .product-summary .product-cta button:after {
	width:calc(100% - 12px);
    height:calc(100% - 12px);
    border-radius:var(--radius-l-inner);
    position:absolute;
    top:4px;
    left:4px;
    display:block;
    opacity:1;
    border:2px solid var(--weiss);
    content:""
}

.single-product .product-hero .product-summary .product-cta button:hover {
	background:var(--pink);
}

.single-product .product-hero .product-summary .soldout-related-suggestions {
  	margin: 25px 0px 15px 0px;
	background:var(--grau);
	border-radius:10px;
	padding:10px;
}

.single-product .product-hero .product-summary .soldout-related-suggestions .title {
	text-align:center;
	color:#fff;
	font-size:12px;
}

.single-product .product-hero .product-summary .products-related {
  	list-style: none;
  	padding: 0;
  	margin: 10px 0 0 0;
  	display: grid;
  	gap: 10px;
}

.single-product .product-hero .product-summary .product-related {
  	margin: 0;
}

.single-product .product-hero .product-summary .product-related-min__link {
  	display: grid;
  	grid-template-columns: 64px 1fr;
  	gap: 10px;
  	align-items: center;
  	width: calc(100% - 20px);
  	padding: 5px;
  	background: #fff;
  	border-radius: 12px;
  	text-decoration: none;
  	color: inherit;
  	transition: transform .15s ease, box-shadow .15s ease;
}

.single-product .product-hero .product-summary .product-related-min__img img {
  	width: 64px;
  	height: 64px;
  	object-fit: cover;
  	border-radius: 10px;
  	display: block;
}

.single-product .product-hero .product-summary .product-related-min__meta {
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	gap: 3px;
  	min-width: 0;
}

.single-product .product-hero .product-summary .product-related-min__title {
  	font-size: 12px;
  	line-height: 1.2;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	white-space: nowrap;
}

.single-product .product-hero .product-summary .product-related-min__price {
  	font-size: 12px;
  	line-height: 1.2;
  	opacity: .85;
}

.single-product .product-hero .product-summary .product-related-min__price del {opacity:0.6; margin-right:5px;}
.single-product .product-hero .product-summary .product-related-min__price ins {text-decoration: none;}

.single-product .product-hero .product-summary .products-related .product-related-min__price,
.single-product .product-hero .product-summary .products-related .product-related-min__price * {
  	white-space: nowrap !important;
  	word-break: keep-all !important;
  	overflow-wrap: normal !important;
	font-weight:bold;
}

.single-product .product-hero .product-summary .products-related .product-related-min__price bdi,
.single-product .product-hero .product-summary .products-related .product-related-min__price .woocommerce-Price-amount,
.single-product .product-hero .product-summary .products-related .product-related-min__price .woocommerce-Price-currencySymbol,
.single-product .product-hero .product-summary .products-related .product-related-min__price ins,
.single-product .product-hero .product-summary .products-related .product-related-min__price del {
  	display: inline !important;
}

.single-product .product-hero .product-summary .products-related .product-related-min__price del {
  	color: #d4d4d4;
  	border-right: 1px solid #d4d4d4;
  	padding-right: 10px;
  	margin-right: 5px;
}

.single-product .product-hero .product-summary .products-related .product-related-min__price ins {
  	color:var(--dunkelrot);
  	text-decoration: none;
}

.single-product .product-hero .product-summary .products-related .product-related-min__price br {
  	display: none !important;
}

.single-product .product-hero .product-summary .products-related .product-related-min__price span.sale-percent {
    border: 1px solid rgba(190, 0, 3, 1);
    background: rgba(190, 0, 3, 0.25);
    color:var(--dunkelrot);
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 10px;
	float:right;
	font-weight:bold;
}

.single-product .product-hero .product-summary .product-payments {
    margin: 20px 0;
}

.single-product .product-hero .product-summary .product-payments ul {
    display: flex;
    justify-content: center;    
    align-items: center;        
    gap: 20px;                   
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;     
}

.single-product .product-hero .product-summary .product-payments li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .product-hero .product-summary .product-payments img {
    height: 26px;              
    width: auto;
    opacity: 0.75;            
    transition: opacity .2s ease;
}

.single-product .product-hero .product-summary .product-payments img:hover {
    opacity: 1;
}

.single-product .product-hero .product-summary .product-trust ul {
	background:#ffffff;
	padding:5px;
	margin:0px;
	list-style:none;
	border-radius:10px;	
}

.single-product .product-hero .product-summary .product-trust li {
  	display: grid;
  	grid-template-columns: 50px 1fr;
  	gap: 10px;
  	align-items: stretch;
  	margin-bottom: 0px;
  	font-size: 10px;
}

.single-product .product-hero .product-summary .product-trust .icon {
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	background: #fafafa; 
  	border-radius: 5px;
	aspect-ratio:1/1;	
	font-size:15px;
}

.single-product .product-hero .product-summary .product-trust .text {
	line-height:15px;
	display: flex;
  	flex-direction: column;
  	justify-content: center;  
}

.single-product .product-hero .product-summary .product-trust li b {
  	display: block; 
  	margin-bottom: 0px;	
}

/* ================================================================================
02. PRODUCT VIDEO
================================================================================ */		
.product-tests{
  text-align:center;
}

.product-tests .test-player{
  text-align:left;
  border-radius: var(--radius-l);
  overflow:hidden;
  background:var(--hellgrau);
}

.product-tests .test-player .test-player__media{
  position:relative;
  background:red;
}

.product-tests .test-player .test-player__video{
  width:100%;
  display:block;
  aspect-ratio:16 / 9;
  object-fit:cover;
  background:var(--grau);
}

.product-tests .test-player__video--placeholder{
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:var(--radius-l);
  background:#e4e4e4;
  color:#666;
  text-align:center;
  padding:20px;
}

.product-tests .test-player .test-player__caption{
  background:#fff;
  padding:20px 20px;
}

.product-tests .test-player .test-player__caption .test-player__kicker{
  display:inline-block;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:0 10px;
  line-height:20px;
  margin:0 0 5px 0;
  border-radius:5px;
  background:var(--hellgrau);
  width:fit-content;
}

.product-tests .test-player .test-player__caption .test-player__title{
  margin:0 0 10px 0;
  font-family:"Anton";
  font-weight:normal;
  text-transform:uppercase;
  font-size:20px;
}

.product-tests .test-player .test-player__caption .test-player__desc{
  line-height:1.4;
  margin:0;
}

/* =========================
   THUMBS
   ========================= */
.product-tests .test-thumbs{
  margin-top:10px;
  text-align:left;
	-webkit-user-select:none;
  user-select:none;
}


/* Desktop Grid */
@media (min-width: 1025px){
  .product-tests .test-thumbs{
    display:grid;
    gap:10px;
  }

  .product-tests .test-thumbs.test-thumbs--2{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .product-tests .test-thumbs.test-thumbs--3{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .product-tests .test-thumbs.test-thumbs--4{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

/* Ab kleinerem Desktop direkt Slider */
@media (max-width: 1024px){
  .product-tests .test-thumbs{
    display:flex;
    gap:10px;
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:6px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    cursor:grab;
    user-select:none;
  }

  .product-tests .test-thumbs::-webkit-scrollbar{
    display:none;
  }

  .product-tests .test-thumbs.is-dragging{
    cursor:grabbing;
	  scroll-snap-type:none;
  }

  .product-tests .test-thumbs .test-thumb{
    flex:0 0 48%;
    min-width:48%;
    scroll-snap-align:start;
  }

  .product-tests .test-thumbs.test-thumbs--3 .test-thumb,
  .product-tests .test-thumbs.test-thumbs--4 .test-thumb{
    flex:0 0 48%;
    min-width:48%;
  }
}

.product-tests .test-thumb{
  border:0;
  background:rgba(255,255,255,1);
  opacity:.35;
  border-radius:var(--radius-m);
  padding:10px;
  cursor:pointer;
  display:grid;
  grid-template-columns:50px 1fr;
  gap:10px;
  align-items:center;
  text-align:left;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}

.product-tests .test-thumb.is-active{
  opacity:1;
}

.product-tests .test-thumbs .test-thumb__img{
  width:50px;
  aspect-ratio:1 / 1;
  border-radius:5px;
  overflow:hidden;
  background:#f2f2f2;
  display:block;
}

.product-tests .test-thumbs .test-thumb__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-tests .test-thumbs .test-thumb__title{
  display:block;
  font-family:"Anton";
  font-weight:normal;
  text-transform:uppercase;
  font-size:14px;
  color:#888;
}

.product-tests .test-thumbs .test-thumb__desc{
  display:block;
  font-size:12px;
  color:#888;
  font-family:"Montserrat";
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Mobile */
@media (max-width: 768px){
  .product-tests--switcher{
    margin:80px 0;
  }

  .product-tests .test-player{
    border-radius:var(--radius-m);
  }

  .product-tests .test-player .test-player__caption{
    padding:10px 10px 15px 10px;
  }

  .product-tests .test-player .test-player__caption .test-player__kicker{
    font-size:8px;
  }

  .product-tests .test-player .test-player__caption .test-player__title{
    margin:0 0 3px 0;
    font-size:16px;
  }

  .product-tests .test-player .test-player__caption .test-player__desc{
    line-height:1.4;
    font-size:10px;
    margin:0;
  }

  .product-tests .test-thumbs .test-thumb{
    flex:0 0 70%;
    min-width:70%;
    padding:5px;
  }

  .product-tests .test-thumbs .test-thumb__title{
    font-size:12px;
  }

  .product-tests .test-thumbs .test-thumb__desc{
    font-size:10px;
  }
}

/* ================================================================================
03. HOTSPOTS
================================================================================ */
:root{
  /* Layout */
  --hs-pad: 20px;
  --hs-gap: 18px;
  --hs-radius: var(--radius-l);
  --hs-media-minh: 520px;

  /* Arrows */
  --hs-arrow-size: 44px;
  --hs-arrow-inset: 14px;

  /* Card */
  --hs-card-radius: 20px;
  --hs-card-pad: 20px;

  /* Animation (premium) */
  --hs-anim-dur: .56s;
  --hs-anim-ease: cubic-bezier(.22, 1, .36, 1);

  /* Exit distance must exceed centered content to reach section edge */
  --hs-anim-exit: clamp(260px, 52vw, 680px);

  /* subtle scale for premium feel */
  --hs-anim-scale-out: .985;
  --hs-anim-scale-in: .99;
}

/* ---------------------------------------------------------
   Section / Theme
   --------------------------------------------------------- */

.product-hotspots{
  position: relative;
  width: calc(100% - 80px);
  margin: 100px 20px;
  padding: var(--hs-pad) var(--hs-pad) 0;
  border-radius: var(--hs-radius);
  text-align: center;
}

/* Background themes */
.product-hotspots.theme-blue{
  background: linear-gradient(120deg, rgba(0, 91, 154, 1) 0%, rgba(33, 53, 102, 1) 100%);
}
.product-hotspots.theme-pink{
  background: linear-gradient(120deg, rgba(234, 84, 146, 1) 0%, rgba(167, 55, 115, 1) 100%);
}
.product-hotspots.theme-yellow{
  background: linear-gradient(120deg, rgba(255, 208, 64, 1) 0%, rgba(255, 160, 0, 1) 100%);
}
.product-hotspots.theme-green{
  background: linear-gradient(120deg, rgba(137, 203, 170, 1) 0%, rgba(36, 124, 95, 1) 100%);
}
.product-hotspots.theme-white{ background:#fff; }
.product-hotspots.theme-gray{ background:#f3f4f6; }

/* Head */
.product-hotspots .hotspots-head{
  margin: 0 0 18px;
  text-align: center;
}
.product-hotspots .hotspots-head p{
  margin: 8px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,0.78);
}
.product-hotspots.theme-white .hotspots-head p,
.product-hotspots.theme-gray  .hotspots-head p{
  color: rgba(0,0,0,0.62);
}

/* ---------------------------------------------------------
   Arrows (outside wrapper, inside section)
   --------------------------------------------------------- */

.hs-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--hs-arrow-size);
  height: var(--hs-arrow-size);
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.22),
    0 2px 10px rgba(0,0,0,0.10);
  transition:
    transform .18s ease,
    background .18s ease,
    opacity .18s ease;
}
.hs-arrow:hover{ transform: translateY(-50%) scale(1.06); }
.hs-arrow:active{ transform: translateY(-50%) scale(0.98); }
.hs-arrow[hidden]{ display:none !important; }
.hs-arrow--prev{ left: var(--hs-arrow-inset); }
.hs-arrow--next{ right: var(--hs-arrow-inset); }

/* ---------------------------------------------------------
   Full-bleed viewport clip (KEY FIX)
   Problem: viewport was inside .wrapper -> overflow hidden clipped at wrapper width
   Solution: make .hs-viewport full-bleed to the section edge, while content stays centered
   --------------------------------------------------------- */

#product-hotspots .wrapper{ overflow: visible; }

/* Make the clip container span the full colored area */
#product-hotspots .hs-viewport{
  position: relative;
  overflow: hidden;
  border-radius: var(--hs-radius);

  /* full-bleed technique */
  width: calc(100vw - 40px);                    /* viewport width minus body-ish gutters */
  margin-left: calc(50% - 50vw + 20px);         /* pull to the left edge inside section */
  margin-right: calc(50% - 50vw + 20px);        /* pull to the right edge inside section */
}

/* ---------------------------------------------------------
   Track / Slide
   --------------------------------------------------------- */

.hs-track{
  display: flex;
  width: 100%;
  will-change: transform;
}

.hs-slide{
  flex: 0 0 100%;
  padding: 0;
  box-sizing: border-box;

  /* Centered content (like your wrapper: max 1200 + 20/20 padding) */
  padding-left: 20px;
  padding-right: 20px;
}

/* Layout inside each slide (centered) */
.hs-layout{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--hs-gap);
  align-items: center;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------
   Media
   --------------------------------------------------------- */

.hs-media{
  position: relative;
  overflow: hidden;
  min-height: var(--hs-media-minh);
  transform: translateX(0) scale(1);
  opacity: 1;
  will-change: transform, opacity;
}

.hs-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------------------------------------------------------
   Hotspots
   --------------------------------------------------------- */

.hotspot{
  position:absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%,-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.hotspot .dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background:var(--hellgrau);
}

.hotspot.is-active{
  transform: translate(-50%,-50%) scale(1.08);
  background: var(--gruen);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}
.hotspot.is-active .dot{ background: #fff; }

/* ---------------------------------------------------------
   Panel / Card
   --------------------------------------------------------- */

.hs-panel{
  display:flex;
  justify-content:center;
  align-items:center;
  transform: translateX(0) scale(1);
  opacity: 1;
  will-change: transform, opacity;
}

.hs-card{
  width: 100%;
  max-width: 520px;
  padding: var(--hs-card-pad);
  border-radius: var(--hs-card-radius);
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(6px);
  text-align:left;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.14),
    0 2px 14px rgba(0,0,0,0.10);
}
.hs-card[hidden]{ display:none; }

.hs-card .kicker{
  display:inline-block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 0 10px;
  line-height: 22px;
  border-radius: 6px;
  background: var(--hellgrau);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hs-card h3{
  margin: 0 0 10px;
  font-family: "Anton";
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.1;
}

.hs-card p{
  margin: 0 0 12px;
  color:#111;
  opacity: .78;
  line-height:1.5;
}

.hs-card .bullets{
  margin: 0;
  padding: 0 0 0 16px;
  color:#111;
  opacity:.72;
}
.hs-card .bullets li{ margin: 6px 0; }

/* ---------------------------------------------------------
   Premium Slide Transition (always same direction)
   - Image leaves to LEFT, panel leaves to RIGHT
   - New image enters from LEFT, new panel from RIGHT
   - Exit distance is stage-based (not wrapper-based)
   --------------------------------------------------------- */

@keyframes mbxHsMediaOut{
  0%   { transform: translateX(0) scale(1); opacity: 1; filter: blur(0px); }
  100% { transform: translateX(calc(var(--hs-anim-exit) * -1)) scale(var(--hs-anim-scale-out)); opacity: 0; filter: blur(1.5px); }
}
@keyframes mbxHsPanelOut{
  0%   { transform: translateX(0) scale(1); opacity: 1; filter: blur(0px); }
  100% { transform: translateX(var(--hs-anim-exit)) scale(var(--hs-anim-scale-out)); opacity: 0; filter: blur(1.5px); }
}
@keyframes mbxHsMediaIn{
  0%   { transform: translateX(calc(var(--hs-anim-exit) * -1)) scale(var(--hs-anim-scale-in)); opacity: 0; filter: blur(2px); }
  100% { transform: translateX(0) scale(1); opacity: 1; filter: blur(0px); }
}
@keyframes mbxHsPanelIn{
  0%   { transform: translateX(var(--hs-anim-exit)) scale(var(--hs-anim-scale-in)); opacity: 0; filter: blur(2px); }
  100% { transform: translateX(0) scale(1); opacity: 1; filter: blur(0px); }
}

.hs-slide.is-leaving .hs-media{
  animation: mbxHsMediaOut var(--hs-anim-dur) var(--hs-anim-ease) forwards;
}
.hs-slide.is-leaving .hs-panel{
  animation: mbxHsPanelOut var(--hs-anim-dur) var(--hs-anim-ease) forwards;
}

.hs-slide.is-entering .hs-media{
  animation: mbxHsMediaIn var(--hs-anim-dur) var(--hs-anim-ease) both;
}
.hs-slide.is-entering .hs-panel{
  animation: mbxHsPanelIn var(--hs-anim-dur) var(--hs-anim-ease) both;
}

/* While animating, prevent accidental clicks */
#product-hotspots.is-animating{ pointer-events:none; }

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

@media (max-width: 768px){

  :root{
    --hs-pad: 10px;
    --hs-gap: 14px;
    --hs-radius: var(--radius-m);
    --hs-media-minh: 420px;
    --hs-card-radius: 10px;

    --hs-arrow-inset: 10px;

    /* Mobile timing */
    --hs-anim-dur: .52s;

    /* Vertical exit distance (tuned for mobile height) */
    --hs-anim-exit-v: clamp(160px, 28vh, 320px);
  }

  .product-hotspots{
    width: calc(95% - 20px);
    margin: 100px 2.5%;
    display: flex;
    flex-direction: column;
  }

  /* keep full-bleed clip correct on small screens */
  #product-hotspots .hs-viewport{
    width: calc(100vw - 20px);
    margin-left: calc(50% - 50vw + 10px);
    margin-right: calc(50% - 50vw + 10px);
    border-radius: var(--hs-radius);
  }

  /* IMPORTANT:
     Your desktop CSS centers content via .hs-layout { max-width:1200px; margin:auto; }.
     On mobile we want full width, so we remove that constraint.
  */
  #product-hotspots .hs-layout{
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr; /* harmless, but keeps intent */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    gap: var(--hs-gap);
    min-height: 100%;
  }

  /* remove slide side padding -> card can be truly 100% */
  #product-hotspots .hs-slide{
    padding-left: 0;
    padding-right: 0;
  }

  /* Bild oben */
  #product-hotspots .hs-media{
    min-height: var(--hs-media-minh);
    flex: 0 0 auto;
  }

  /* Panel nimmt Resthöhe und klebt unten */
  #product-hotspots .hs-panel{
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
  }

  /* Card: FULL WIDTH */
  #product-hotspots .hs-card{
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: var(--hs-card-radius);
    backdrop-filter: blur(7px);
  }

  /* ===== Mobile: vertical direction animations ===== */

  @keyframes mbxHsMediaOutV{
    0%   { transform: translateY(0) scale(1); opacity: 1; filter: blur(0px); }
    100% { transform: translateY(calc(var(--hs-anim-exit-v) * -1)) scale(var(--hs-anim-scale-out)); opacity: 0; filter: blur(1.5px); }
  }
  @keyframes mbxHsPanelOutV{
    0%   { transform: translateY(0) scale(1); opacity: 1; filter: blur(0px); }
    100% { transform: translateY(var(--hs-anim-exit-v)) scale(var(--hs-anim-scale-out)); opacity: 0; filter: blur(1.5px); }
  }
  @keyframes mbxHsMediaInV{
    0%   { transform: translateY(calc(var(--hs-anim-exit-v) * -1)) scale(var(--hs-anim-scale-in)); opacity: 0; filter: blur(2px); }
    100% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0px); }
  }
  @keyframes mbxHsPanelInV{
    0%   { transform: translateY(var(--hs-anim-exit-v)) scale(var(--hs-anim-scale-in)); opacity: 0; filter: blur(2px); }
    100% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0px); }
  }

  /* Override desktop horizontal animations on mobile */
  #product-hotspots .hs-slide.is-leaving .hs-media{
    animation: mbxHsMediaOutV var(--hs-anim-dur) var(--hs-anim-ease) forwards;
  }
  #product-hotspots .hs-slide.is-leaving .hs-panel{
    animation: mbxHsPanelOutV var(--hs-anim-dur) var(--hs-anim-ease) forwards;
  }

  #product-hotspots .hs-slide.is-entering .hs-media{
    animation: mbxHsMediaInV var(--hs-anim-dur) var(--hs-anim-ease) both;
  }
  #product-hotspots .hs-slide.is-entering .hs-panel{
    animation: mbxHsPanelInV var(--hs-anim-dur) var(--hs-anim-ease) both;
  }
}

/* ================================================================================
04. SOLUTION
================================================================================ */

/* ================================================================================
05. USE CASES
================================================================================ */
.use-cases{ margin: 90px 0; }
.use-cases-head{ text-align:center; margin-bottom:20px; }

/* SCROLL CONTAINER */
.usecase-rail{
  --wrapper-max: 1200px;
  --side-pad: 20px;
  --gap: 20px;

  --wrapper-width: min(var(--wrapper-max), calc(100vw - (2 * var(--side-pad))));
  --inset: calc((100vw - var(--wrapper-width)) / 2 + var(--side-pad));

  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  scroll-padding-left: var(--inset);
  scroll-padding-right: var(--inset);
	
	cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.usecase-rail::-webkit-scrollbar{ display:none; }

/* TRACK */
.usecase-track{
  display: flex;
  gap: var(--gap);
  box-sizing: border-box;
}

.usecase-rail.is-dragging{
  cursor: grabbing;
  scroll-snap-type: none;
}

/* Spacer links + rechts */
.usecase-track::before,
.usecase-track::after{
  content:"";
  flex: 0 0 calc(var(--inset) - (var(--gap) / 2));
}

/* SLIDE */
.usecase-slide{
  flex: 0 0 var(--wrapper-width);
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 520px;
  scroll-snap-align: center;
}

/* Bild */
.usecase-media{ position:absolute; inset:0; }
.usecase-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: left center;
  display:block;
}

/* Overlay */
.usecase-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:#e4e4e4;
  pointer-events:none;
}

/* Textbox */
.usecase-overlay{
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 520px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding: 20px;
}

.usecase-card{
  background: rgba(255,255,255,1);
  border-radius: var(--radius-l);
  padding: 20px 20px 15px 20px;
  width: min(420px, 92%);
  backdrop-filter: blur(5px);
}

.usecase-card .usecase-kicker{
  display:inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0px 10px;
  line-height:20px;
  margin:0px 0px 5px 0px;
  border-radius: 5px;
  background: var(--hellgrau);
  width: fit-content;
}

.usecase-card h3{
  font-family:"Anton";
  font-weight:normal;
  font-size:16px;
  text-transform:uppercase;
  margin:0px;
  padding:0px;
}

/* ===== Usecase Nav ===== */
.usecase-nav{
  margin-top: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}

/* Play/Pause Button */
.usecase-toggle{
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  border:none;
  color:#888;
}
.usecase-toggle i{ font-size: 14px; }

/* Pills */
.usecase-pills{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  justify-content:center;
  align-items:center;
  padding: 0 0px;
}

/* Base */
.usecase-pill{
  position: relative;
  overflow: hidden;
  appearance:none;
  border:none;
  cursor:pointer;

  height: 25px;
  max-width: 25px;
  padding: 0;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background:#e4e4e4;
  color: #fff;

  font-family:"Montserrat";

  transition:
    max-width .9s cubic-bezier(.2,.8,.2,1),
    padding   .9s cubic-bezier(.2,.8,.2,1),
    background .9s ease,
    transform .9s ease;
}

/* Text default hidden */
.usecase-pill > span{
  opacity: 0;
  transform: translateY(0px);
  transition: opacity .18s ease, transform .18s ease;
  white-space: nowrap;
  font-size: 12px;
  pointer-events: none;
}

/* Active */
.usecase-pill[aria-selected="true"]{
  max-width: 220px;
  padding: 10px 15px;
  background: var(--gruen);
  justify-content: flex-start;
}

.usecase-pill[aria-selected="true"] > span{
  opacity: 1;
  transform: translateY(0);
}

.usecase-pill[aria-selected="true"]{
  transform: translateY(-1px);
}

/* Progress Fill */
.usecase-pill::after{
  content:"";
  position:absolute;
  inset:0;
  background: var(--dunkelgruen);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  z-index: 0;
}

/* Text über Fill */
.usecase-pill > span{
  position: relative;
  z-index: 1;
}

.usecase-pills.is-playing .usecase-pill[aria-selected="true"]::after{
  opacity: 1;
  animation: usecaseProgress var(--usecase-dur, 6000ms) linear forwards;
}

@keyframes usecaseProgress{
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (max-width: 768px){
  .usecase-rail{
    --side-pad: 2.5%;
    --gap: 2.5%;

    --wrapper-width: min(var(--wrapper-max), calc(100vw - (2 * var(--side-pad))));
    --inset: calc((100vw - var(--wrapper-width)) / 2 + var(--side-pad));

    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-left: var(--inset);
    scroll-padding-right: var(--inset);
  }

  .usecase-overlay{
    height: 420px;
    align-items:end;
    padding: 10px;
  }

  .usecase-card{
    border-radius: var(--radius-m);
    padding: 10px 10px 10px 10px;
    width:100%;
  }
}

/* ================================================================================
06. PRODUCT COMPARE
================================================================================ */
.mbx-compare{
  width: calc(100% - 40px);
  margin: 100px 20px;
}

.mbx-compare__inner{
}

.mbx-compare__intro{
  max-width: 820px;
  margin-bottom: 28px;
}

.mbx-compare__intro h2{
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.mbx-compare__intro p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  opacity: .82;
}

/* TABLE */
.mbx-compare-table{
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.mbx-compare-table__row{
  display: grid;
  grid-template-columns: minmax(240px, 1.8fr) minmax(170px, 190px) minmax(170px, 190px);
  gap: 0;
  align-items: stretch;
  position: relative;
}

.mbx-compare-table__row--head{
  margin-bottom: 0;
}

.mbx-compare-table__cell{
  min-height: 68px;
  padding: 16px 18px;
  background: rgba(255,255,255,1);
  border-bottom: 1px dotted #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* letzte Zeile: untere Border komplett weg */
.mbx-compare-table__body .mbx-compare-table__row:last-child .mbx-compare-table__cell{
  border-bottom: none;
}

.mbx-compare-table__cell--label{
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  line-height: 1.45;
}

.mbx-compare-table__cell--brand{
  font-weight: 700;
  text-align: center;
}

/* äußere Ecken links/rechts */
.mbx-compare-table__row--head > .mbx-compare-table__cell:first-child{
  border-top-left-radius: 10px;
}

.mbx-compare-table__row--head > .mbx-compare-table__cell:last-child{
  border-top-right-radius: 10px;
}

.mbx-compare-table__body .mbx-compare-table__row:last-child > .mbx-compare-table__cell:first-child{
  border-bottom-left-radius: 10px;
}

.mbx-compare-table__body .mbx-compare-table__row:last-child > .mbx-compare-table__cell:last-child{
  border-bottom-right-radius: 10px;
}

/* MAMPFBOX-SPALTE KOMPLETT HERVORHEBEN */
.mbx-compare-table__row > .mbx-compare-table__cell:nth-child(2){
  background: rgba(137, 203, 170, .16);
  border: 1px solid #89cbaa;
  border-bottom: 1px dotted #89cbaa;
  border-top: none;
  position: relative;
  z-index: 2;
}

/* letzte mittlere Zelle: keine dotted border mehr unten */
.mbx-compare-table__body .mbx-compare-table__row:last-child > .mbx-compare-table__cell:nth-child(2){
  border-bottom: 1px solid #89cbaa;
}

/* Kopfzelle Mitte: oben etwas größer + Radius */
.mbx-compare-table__row--head > .mbx-compare-table__cell:nth-child(2){
  min-height: 78px;
  margin-top: -20px;
  border-top: 1px solid #89cbaa;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #163228;
  font-weight: 800;
}

/* alle mittleren Zellen in der Body-Spalte */
.mbx-compare-table__body .mbx-compare-table__row > .mbx-compare-table__cell:nth-child(2){
  min-height: 72px;
}

/* letzte Zelle unten in der Mitte: unten etwas größer + Radius */
.mbx-compare-table__body .mbx-compare-table__row:last-child > .mbx-compare-table__cell:nth-child(2){
  min-height: 78px;
  margin-bottom: -20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: 1px solid #89cbaa;
}

/* rechte/linke Spalten neutraler */
.mbx-compare-table__cell--icon{
  background: rgba(255,255,255,.92);
}

/* BADGES / ICONS */
.mbx-compare-badge{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 18px;
}

.mbx-compare-badge.is-check{
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  background: var(--dunkelgruen);
  color: #fff;
}

.mbx-compare-badge.is-x{
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  background: var(--dunkelrot);
  color: #fff;
}

.mbx-compare-badge.is-minus{
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  background: var(--dunkelgelb);
  color: #fff;
}

/* MAMPFBOX-Icons in der grünen Spalte leicht stärker */
.mbx-compare-table__row > .mbx-compare-table__cell:nth-child(2) .mbx-compare-badge{
  box-shadow: inset 0 0 0 1px rgba(137,203,170,.25);
}

/* MOBILE */
@media (max-width: 980px){
  .mbx-compare__inner{
    padding: 22px;
  }

  .mbx-compare-table{
    max-width: 100%;
    gap: 0;
  }

  .mbx-compare-table__row{
    grid-template-columns: minmax(0, 1.45fr) 82px 82px;
    gap: 0;
  }

  .mbx-compare-table__cell{
    min-height: 60px;
    padding: 12px 10px;
  }

  .mbx-compare-table__cell--label{
    font-size: 14px;
    line-height: 1.35;
  }

  .mbx-compare-table__cell--brand{
    font-size: 12px;
    padding: 10px 6px;
  }

  .mbx-compare-table__row--head > .mbx-compare-table__cell:nth-child(2){
    min-height: 68px;
    margin-top: -4px;
  }

  .mbx-compare-table__body .mbx-compare-table__row > .mbx-compare-table__cell:nth-child(2){
    min-height: 64px;
  }

  .mbx-compare-table__body .mbx-compare-table__row:last-child > .mbx-compare-table__cell:nth-child(2){
    min-height: 68px;
    margin-bottom: -4px;
  }

  .mbx-compare-badge{
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}

/* ================================================================================
07. PRODUCT USP CARDS
================================================================================ */
.product-usps {
  	background: #e4e4e4;
  	padding: 20px;
  	width: calc(100% - 80px);
  	margin: 100px 20px;
  	border-radius: var(--radius-l);
  	text-align: center;
}

.product-usps .product-usps-grid {
  	display: grid;
  	margin-top: 75px;
  	gap: 15px;
  	justify-content: center;
  	grid-template-columns: repeat(auto-fit, minmax(180px, 200px));
}

.product-usps .product-usps-grid .usp-card {
  	background: #fff;
  	border-radius: var(--radius-l);
  	padding: 65px 10px 10px 10px;
  	box-sizing: border-box;
  	position: relative;
  	aspect-ratio: 1 / 1;
  	width: 100%;
  	max-width: 200px;
  	overflow: visible; 
}

.product-usps .product-usps-grid .usp-icon {
  	border: 5px solid #e4e4e4;
  	border-radius: 100%;
  	background: #fff;
  	position: absolute;
  	top: -40px;
  	left: 50%;
  	transform: translateX(-50%);
  	width: 70px;
  	height: 70px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	z-index: 2;
}

.product-usps .product-usps-grid .usp-icon:after {
  	position: absolute;
  	top: 4px;
  	left: 4px;
  	width: 60px;
  	height: 60px;
  	border: 1px solid #efefef;
  	content: "";
  	border-radius: 100%;
}

.product-usps .product-usps-grid .usp-icon img {
  	max-width: 50px;
  	height: auto;
  	display: block;
}

.product-usps .product-usps-grid .usp-title {
  	font-family: "Anton";
  	font-size: 16px;
  	line-height: 1.1;
  	color: #888;
  	margin: 0 0 10px 0;
  	text-transform: uppercase;
}

.product-usps .product-usps-grid .usp-desc {
  	font-size: 12px;
  	line-height: 1.4;
  	color: #888;
}

.product-usps .product-usps-grid .usp-desc p {
  	margin: 0;
}

	@media (max-width: 768px) {
		.product-usps {
    		padding: 10px;
   	 		width:calc(95% - 20px);
    		margin: 100px 2.5%;
    		border-radius: var(--radius-m); 
  		}

  		.product-usps div.wrapper { margin: 0; padding: 0; }

  		.product-usps .product-usps-grid {
    		margin: 0;              
    		gap: 10px;
    		justify-content: stretch;  
    		grid-template-columns: 1fr;
  		}

  		.product-usps .product-usps-grid .usp-card {
    		padding: 0;
    		max-width: 100%;
    		width: 100%;
    		aspect-ratio: auto;
    		display: grid;
    		grid-template-columns: 58px 1fr;
    		column-gap: 12px;
    		align-items: stretch;
    		border-radius: var(--radius-m);
    		overflow: hidden;
	  		text-align:left;
  		}

  		.product-usps .usp-body{ margin: 15px 10px 15px 0; }

  		.product-usps .product-usps-grid .usp-icon {
    		position: relative;
    		top: auto;
    		left: auto;
    		transform: none;
    		width: 58px;
    		height: auto;
    		min-height: 100%;
    		border: none;
    		border-right: 1px solid #efefef;
    		border-radius: 0;
    		background: transparent;
    		z-index: 1;
  		}

  		.product-usps .product-usps-grid .usp-icon:after { display: none; }

  		.product-usps .product-usps-grid .usp-icon img{
    		width: 40px;
    		max-width: none;
  		}

  		.product-usps .product-usps-grid .usp-title{
    		font-size: 14px;
    		margin: 0 0 5px 0;
  		}

  		.product-usps .product-usps-grid .usp-desc { font-size: 11px; }
	}

	@media (max-width: 480px){
  		.product-usps { margin: 60px auto; }

  		.product-usps .product-usps-grid .usp-card {
    		grid-template-columns: 52px 1fr;
    		column-gap: 10px;
  		}

  		.product-usps .product-usps-grid .usp-icon { width: 50px; }
  		.product-usps .product-usps-grid .usp-icon img {width: 36px;}
	}


/* ================================================================================
08. PRODUCT DETAILS
================================================================================ */
section.product-features {
  	margin: 100px 0;
}

section.product-features .intro {
  	text-align:center;
}

section.product-features .feature-list {
  	display: grid;
  	gap: 20px;
	margin:25px 0px 0px 0px;
}

section.product-features .feature-list .feature {
  	background:#fff;
  	border-radius: var(--radius-l);
  	overflow:hidden;
  	position: relative;
}

section.product-features .feature-list .feature--split {
  	display:grid;
  	grid-template-columns: 65% 35%;
  	min-height: 420px;
}

section.product-features .feature-list .feature--reverse {
  	grid-template-columns: 35% 65%;
}

section.product-features .feature-list .feature--reverse .feature-media {order:2;}
section.product-features .feature-list .feature--reverse .feature-copy {order:1;}

section.product-features .feature-list .feature-media {
  	position: relative;
  	background: #f3f3f3;
}

.feature-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

section.product-features .feature-list .feature .feature-media img {
  	width:100%;
  	height:100%;
  	object-fit: cover;
  	display:block;
}

section.product-features .feature-list .feature .feature-copy {
  	padding: 26px;
  	display:flex;
  	flex-direction:column;
  	justify-content:center;
  	gap: 10px;
}
section.product-features .feature-list .feature .feature-copy .feature-kicker {
	display:inline-block;
  	font-size: 10px;
  	text-transform: uppercase;
  	letter-spacing: .08em;
  	padding: 0px 10px;
	line-height:20px;
	margin:0px 0px 5px 0px;
  	border-radius: 5px;
  	background: var(--hellgrau);
	width: fit-content;
}

section.product-features .feature-list .feature .feature-copy h3 {
  	margin:0;
  	font-family:"Anton";
  	font-weight:normal;
  	text-transform:uppercase;
  	line-height:1.1;
}

section.product-features .feature-list .feature .feature-copy p {margin:0;}

section.product-features .feature-list .feature .feature-copy .feature-bullets{
  	margin: 6px 0 0 0;
  	padding: 0 0 0 16px;
}

section.product-features .feature-list .feature .feature-copy .feature-bullets li{
  	margin: 6px 0;
}

section.product-features .feature-list .feature--full{
  	min-height: 520px;
}

section.product-features .feature-list .feature--full .feature-media {
  	height: 520px;
}

section.product-features .feature-list .feature-copy--overlay--right {
  	position:absolute;
  	right: 20px;
  	bottom: 20px;
  	width: min(460px, calc(100% - 36px));
  	background: rgba(255,255,255,.92);
  	border-radius: var(--radius-l);
}

section.product-features .feature-list .feature-copy--overlay--left {
  	position:absolute;
  	left: 20px;
  	bottom: 20px;
  	width: min(460px, calc(100% - 36px));
  	background: rgba(255,255,255,.92);
  	border-radius: var(--radius-l);
}

	@media (max-width: 768px){
  		section.product-features .feature-list .feature--split,
  		section.product-features .feature-list .feature--reverse {
    		grid-template-columns: 1fr;
    		min-height: unset;
  		}
	
		section.product-features .feature-list .feature .feature-copy .feature-kicker {font-size:8px;}

  		section.product-features .feature-list .feature-media {
    		position: relative;    
    		height: 520px;         
  		}

  		section.product-features .feature-list .feature--full .feature-media {height: 520px;}

  		section.product-features .feature-list .feature .feature-media img{
    		width: 100%;
    		height: 100%;
    		object-fit: cover;
  		}

  		section.product-features .feature-list .feature-media::after{
    		content:"";
    		position:absolute;
    		left:0; right:0; bottom:0;
    		height: 55%;
    		background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
    		pointer-events:none;
  		}

  		section.product-features .feature-list .feature .feature-copy{
    		position: absolute;
    		left: 10px;
    		right: 10px;
    		bottom: 10px; 
    		z-index: 2;
    		padding: 10px;
    		border-radius: var(--radius-m);
    		background: rgba(255,255,255,0.5);
    		backdrop-filter: blur(6px);
    		-webkit-backdrop-filter: blur(6px);
    		gap: 8px;
  		}

  		section.product-features .feature-list .feature .feature-copy .feature-bullets li{
    		margin:0px;
	  		padding:0px;
  		}

  		section.product-features .feature-list .feature-copy--overlay--right,
  		section.product-features .feature-list .feature-copy--overlay--left{
    		left: 10px !important;
    		right: 10px !important;
   			bottom: 10px !important;
    		width: auto !important;
  		}

  		section.product-features .feature-list .feature--split .feature-copy,
  		section.product-features .feature-list .feature--reverse .feature-copy{
    		position: absolute;
  		}

  		section.product-features .feature-list .feature-media{
    		height: 520px;
  		}
	}

/* ================================================================================
09. Reviews
================================================================================ */

/* ================================================================================
10. PRODUCT BUY TOGETHER / UPSELLING
================================================================================ */
section.mbx-bt {
  	padding: 20px;
  	width: calc(100% - 80px);
  	margin: 100px 20px;
  	border-radius: var(--radius-l);
  	text-align: center;
}

section.mbx-bt.mbx-bt--blau{
  background: linear-gradient(120deg, rgba(0, 91, 154, 1) 0%, rgba(33, 53, 102, 1) 100%);
}
section.mbx-bt.mbx-bt--pink{
  background: linear-gradient(120deg, rgba(234, 84, 146, 1) 0%, rgba(167, 55, 115, 1) 100%);
}
section.mbx-bt.mbx-bt--gelb{
  background: linear-gradient(120deg, rgba(255, 208, 64, 1) 0%, rgba(255, 160, 0, 1) 100%);
}
section.mbx-bt.mbx-bt--gruen{
  background: linear-gradient(120deg, rgba(137, 203, 170, 1) 0%, rgba(36, 124, 95, 1) 100%);
}

section.mbx-bt.mbx-bt--grau{background: #e4e4e4;}

section.mbx-bt .mbx-bt__intro {
	max-width:600px;
	margin:0px auto 0px auto;
}

section.mbx-bt .mbx-bt__cards {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center; 
  	align-items: stretch;
  	gap: 10px;
	margin-top:30px;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card {
  	position: relative;
  	display: block;
  	background: #fff;
  	border-radius: 10px;
  	padding: 10px;
  	width: 100%;
  	max-width: 200px; 
  	cursor: pointer;
  	user-select: none;
  	transition: box-shadow .25s, transform .08s, background .12s, border-color .12s;
  	border: 1px solid transparent; 
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card:focus {outline: none;}
section.mbx-bt .mbx-bt__cards .mbx-bt-card:focus-visible {border-color: var(--gruen);}

section.mbx-bt .mbx-bt__cards .mbx-bt-card.is-parent.is-selected{
  	background:#d4e6dd;
  	border-color: var(--dunkelgruen);
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card.is-selected:not(.is-parent){
  	background:#d4e6dd;
  	border-color: var(--dunkelgruen);
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__badge {
  	position: absolute;
  	bottom: 10px;
  	right: 10px;
  	z-index: 1;
  	background: var(--dunkelrot, #b00020);
  	color: #fff;
  	padding: 0px 5px;
  	border-radius: 5px;
  	font-size: 10px;
  	font-weight: bold;
	line-height:20px;
  	text-transform: uppercase;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__img {
  	position: relative;
  	top: 0;
  	display: inline-block;
  	overflow: hidden;
  	border-radius: 5px;
  	width: 100%;
  	height:200px;
  	aspect-ratio: 1 / 1;
  	background: #f3f3f3;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__img img {
  	border-radius: 5px;
  	position: relative;
  	transition: all .9s ease;
  	vertical-align: middle;
  	width: 100%;
  	height: 100%;
  	top: 0;
  	object-fit: cover;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card:hover .mbx-bt-card__img img {
  	transform: scale(1.2);
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body {
  	margin-top: 0px;
  	min-width: 0;
	text-align:left;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__name {
  	font-size: 12px;
	line-height:15px;
  	display: -webkit-box;
  	-webkit-line-clamp: 2;
  	-webkit-box-orient: vertical;
  	overflow: hidden;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price {
  	margin-top: 5px;
  	font-size: 12px;
  	line-height: 1.1;
  	white-space: nowrap;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price .mbx-bt-card__price-old{
  	color: #d4d4d4;
  	border-right: 1px solid #d4d4d4;
  	padding-right: 10px;
  	margin-right: 5px;
  	font-weight: normal;
  	text-decoration: line-through;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price .mbx-bt-card__price-new{
  	text-decoration: none;
  	color: var(--dunkelrot);
  	font-weight: bold;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card.is-parent .mbx-bt-card__body .mbx-bt-card__price-old{
  	display: none;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card.is-parent .mbx-bt-card__body .mbx-bt-card__price-new{
  	color: inherit;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price del {
	color: var(--gruen);
  	border-right: 1px solid var(--gruen);
  	padding-right: 10px;
  	margin-right: 5px;
  	font-weight: normal;
  	text-decoration: line-through;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price ins {
	text-decoration:none;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price {
	color:var(--dunkelgruen);
	font-weight:bold;
}

section.mbx-bt .mbx-bt__cards .mbx-bt-card.is-selected .mbx-bt-card__body .mbx-bt-card__name {
	color:var(--dunkelgruen);
}

section.mbx-bt .mbx-bt__totals{
  	display: flex;
  	gap: 20px;
  	flex-wrap: wrap;
  	align-items: center;
	justify-content:center;
	margin-top:25px;
}

section.mbx-bt .mbx-bt__total,
section.mbx-bt .mbx-bt__save{font-size: 12px; line-height: 1.2;}
section.mbx-bt .mbx-bt__save strong{color: var(--dunkelgruen);}
section.mbx-bt .mbx-bt__summary .button-go {margin:25px auto 15px auto;}

	@media (max-width: 768px){
		section.mbx-bt {
    		padding: 10px;
   	 		width:calc(95% - 20px);
    		margin: 100px 2.5%;
    		border-radius: var(--radius-m); 
  		}
	
		section.mbx-bt .wrapper {margin:0px;padding:0px;}
	
	  	section.mbx-bt .mbx-bt__cards {
    		display: grid;
    		grid-template-columns: 1fr;
    		gap: 10px;
    		justify-content: stretch;
  		}
		
		section.mbx-bt .mbx-bt__cards .mbx-bt-card {
    		padding: 5px;
	      	display: grid;
    		grid-template-columns: 50px 1fr;
   		 	gap: 10px;
    		align-items: center;
	  		max-width:none;
	  		width:calc(100% - 10px);
  		}

		section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__img {
    		width: 50px;
	  		height:50px;
    		aspect-ratio: 1 / 1;
    		border-radius: 5px;
    		overflow: hidden;
    		background: #f3f3f3;
  		}	

  		section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__img img{
    		width: 100%;
    		height: 100%;
    		object-fit: cover;
    		border-radius: 0;
    		display: block;
  		}

  		section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body {
    		margin-top: 0;
    		display: flex;
    		flex-direction: column;
    		justify-content: center;
    		gap: 6px;
    		min-width: 0;
  		}

   		section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__name{
    		font-size: 12px;
    		line-height: 1.2;
  		}

   		section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price{
    		margin-top: 0;
    		font-size: 12px;
    		line-height: 1.1;
  		}

   		section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__body .mbx-bt-card__price .mbx-bt-card__price-old{
    		padding-right: 8px;
    		margin-right: 6px;
  		}

  		section.mbx-bt .mbx-bt__cards .mbx-bt-card .mbx-bt-card__badge{
    		font-size: 8px;
    		padding: 0 5px;
	  		bottom:5px;
	  		right:5px;
    		border-radius: 5px;
  		}

  		.mbx-bt-card.is-selected::after{
    		top: 8px;
    		right: 8px;
    		width: 24px;
    		height: 24px;
    		font-size: 13px;
  		}
	
	}

/* =========================================================
   Toast
   ======================================================= */
.mbx-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.mbx-toast.is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* ================================================================================
11. COMPATIBILITY
================================================================================ */
.mbx-compat{
  margin: 100px 0;
}

.mbx-compat__inner{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0px;
}

.mbx-compat__head{
  margin-bottom: 18px;
}

.mbx-compat__title{
  text-align: center;
  margin: 0 0 8px;
}

.mbx-compat__intro{
  margin: 0;
  text-align: center;
  opacity: .85;
}

/* Default: Grid 4 → 2 → 1 */
.mbx-compat__slider{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* Center grid when fewer cards (<4) */
.mbx-compat__slider.mbx-compat__slider--center{
  grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
  justify-content: center;
}

@media (max-width: 1024px){
  .mbx-compat__slider{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .mbx-compat__slider{
    grid-template-columns: 1fr;
  }
}

/* Card */
.mbx-compat__card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-width: 0;

  border-radius: 20px;
  background: #e4e4e4;
  padding: 0;
  padding-bottom: 20px;

  overflow: hidden;
}

a.mbx-compat__card{
  color: inherit;
  text-decoration: none;
}

/* Verlaufsebene */
.mbx-compat__card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;

  background: linear-gradient(
    120deg,
    rgba(137,203,170,1) 0%,
    rgba(36,124,95,1) 100%
  );
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 0;
}

/* Inhalt über dem Verlauf halten */
.mbx-compat__card > *{
  position: relative;
  z-index: 1;
}

/* Bild-Container */
.mbx-compat__media{
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

/* Bild */
.mbx-compat__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;

  transform: scale(1);
  transition: transform .55s cubic-bezier(.22,.61,.36,1), filter .4s ease;
  will-change: transform;
}

@media (hover:hover){
	
	a.mbx-compat__card:hover {color:#fff;}

  a.mbx-compat__card:hover::before{
    opacity: 1;
  }

  a.mbx-compat__card:hover .mbx-compat__media img{
    transform: scale(1.08);
    filter: brightness(1.04);
  }

}

/* Media stable */
.mbx-compat__media{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.mbx-compat__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mbx-compat__placeholder{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.06);
}

.mbx-compat__info{
  padding: 10px;
  text-align: center;
}

.mbx-compat__filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:0 0 24px;
}

.mbx-compat__filter{
  border:0;
  background:#e4e4e4;
  color:#888;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
	font-family:"Montserrat";
  line-height:1;
  transition:all .15s ease;
}

.mbx-compat__filter:hover{
  background:#d8d8d8;
}

.mbx-compat__filter.is-active{
  background:#89cbaa;
  color:#fff;
}

/* Dynamisch zentrierte Cards nach Filter */
.mbx-compat__slider.mbx-compat__slider--dynamic-center{
  display: flex !important;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Wenn Slick aktiv ist, soll Slick wieder übernehmen */
.mbx-compat__slider.slick-initialized.mbx-compat__slider--dynamic-center{
  display: block !important;
}

.mbx-compat__slider.mbx-compat__slider--dynamic-center{
  display: flex !important;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mbx-compat__slider.mbx-compat__slider--dynamic-center .mbx-compat__card{
  width: 100%;
  max-width: 260px;
}

.mbx-compat__slider.slick-initialized.mbx-compat__slider--dynamic-center{
  display: block !important;
}

.mbx-compat__brand{
  font-weight: normal;
  font-family: "Anton";
  font-size: 16px;
  text-transform: uppercase;
}

.mbx-compat__model-row{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px auto 0;
  text-align: center;
}

.mbx-compat__model{
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  opacity: .9;
}

/* Status Badge */
.mbx-compat__badge{
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.mbx-compat__badge--fits{
  background: var(--dunkelgruen);
  color: #fff;
}
.mbx-compat__badge--conditional{
  background: var(--dunkelgelb);
  color: #fff;
}
.mbx-compat__badge--no{
  background: var(--dunkelrot);
  color: #fff;
}

.mbx-compat__badge i{
  pointer-events: none;
}

/* Bullets */
.mbx-compat__bullets{
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 13px;
}
.mbx-compat__bullets li{
  margin: 0;
}

/* ------------------------------------------------------------
   Slick mode (activated by JS)
   ------------------------------------------------------------ */

.mbx-compat__slider.mbx-compat__slider--slick{
  opacity: 0;
  transition: opacity .14s ease;
}
.mbx-compat__slider.mbx-compat__slider--slick.is-ready{
  opacity: 1;
}

.mbx-compat__slider.slick-initialized{
  display: block; /* slick controls layout */
}

/* spacing like grid gap 20px */
.mbx-compat__slider.slick-initialized .slick-slide{
  padding: 0 10px;
  box-sizing: border-box;
}
.mbx-compat__slider.slick-initialized .slick-list{
  margin: 0 0px; /* 0 -10px führt zu fehler im mobile */
}

.mbx-compat .slick-dots{ display: none !important; }

/* arrows (desktop only) */
.mbx-compat .slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.92);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  font-size: 0;
  cursor: pointer;
}

.mbx-compat .slick-prev{ left: -12px; }
.mbx-compat .slick-next{ right: -12px; }

.mbx-compat .slick-prev:before,
.mbx-compat .slick-next:before{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,0,0,.65);
  border-bottom: 2px solid rgba(0,0,0,.65);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.mbx-compat .slick-next:before{
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 768px){
  .mbx-compat{ margin: 60px 0; }
  .mbx-compat .slick-prev{ left: -6px; }
  .mbx-compat .slick-next{ right: -6px; }
	
	.mbx-compat__card{
  border-radius: 10px;
}

.mbx-compat__card::before{
  border-radius: 10px;
}
	
}

/* ================================================================================
12. PRODUCT LIEFERUMFANG
================================================================================ */
section.product-lieferumfang{
	text-align:center;
	background:var(--weiss);
	padding:20px;
	width:calc(100% - 80px);
	margin:100px 20px;
	border-radius:var(--radius-l);
}

section.product-lieferumfang .wrapper{
	margin:0 auto;
	padding:0;
}

@media (max-width: 768px){
	section.product-lieferumfang{
		padding:10px;
		width:calc(95% - 20px);
		margin:50px 2.5%;
		border-radius:var(--radius-m);
	}
}

section.product-lieferumfang .liefer-grid{
	display:grid;
	gap:1px;
	column-gap:1px;
	align-items:start;
	grid-auto-rows:minmax(0, 1fr);
	justify-content:center;
}

section.product-lieferumfang .liefer-item{
	position:relative;
	overflow:hidden;
	transition:transform 0.3s;
	aspect-ratio:1/1;
}

section.product-lieferumfang .liefer-item img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

section.product-lieferumfang .liefer-overlay{
	position:absolute;
	bottom:10px;
	left:10px;
	background:rgba(255,255,255,0.75);
	color:#888;
	padding:5px 15px;
	font-size:12px;
	cursor:pointer;
	border-radius:9999px;
	border:none;
	font:inherit;
}

section.product-lieferumfang .liefer-toggle-icon{
	margin-right:5px;
	font-size:14px;
}

section.product-lieferumfang .liefer-desc{
	max-height:0;
	overflow:hidden;
	transition:max-height 0.3s ease, padding 0.3s ease;
	background:rgba(255,255,255,0.9);
	color:#333;
	padding:0 10px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	z-index:2;
	margin:0;
}

section.product-lieferumfang .liefer-item.open .liefer-desc{
	max-height:200px;
	padding:10px;
}

/* 1 */
.liefer-grid--1{
	grid-template-columns:minmax(260px, 570px);
}
.liefer-grid--1 .liefer-item{
	border-radius:12px;
}

/* 2 */
.liefer-grid--2{
	grid-template-columns:repeat(2, 1fr);
}
.liefer-grid--2 .liefer-item:first-child{
	border-top-left-radius:12px;
	border-bottom-left-radius:12px;
}
.liefer-grid--2 .liefer-item:nth-child(2){
	border-top-right-radius:12px;
	border-bottom-right-radius:12px;
}

/* 3 */
.liefer-grid--3{
	grid-template-columns:2fr 1fr;
	grid-template-rows:1fr 1fr;
}
.liefer-grid--3 .liefer-item:first-child{
	grid-row:span 2;
	border-top-left-radius:12px;
	border-bottom-left-radius:12px;
}
.liefer-grid--3 .liefer-item:nth-child(2){
	grid-column:2;
	border-top-right-radius:12px;
}
.liefer-grid--3 .liefer-item:nth-child(3){
	grid-column:2;
	border-bottom-right-radius:12px;
}

/* 4 */
.liefer-grid--4{
	grid-template-columns:repeat(4, 1fr);
}
.liefer-grid--4 .liefer-item:first-child{
	border-top-left-radius:12px;
	border-bottom-left-radius:12px;
}
.liefer-grid--4 .liefer-item:nth-child(4){
	border-top-right-radius:12px;
	border-bottom-right-radius:12px;
}

/* 5 */
.liefer-grid--5{
	grid-template-columns:2fr 1fr 1fr;
	grid-template-rows:1fr 1fr;
}
.liefer-grid--5 .liefer-item:first-child{
	grid-row:span 2;
	border-top-left-radius:12px;
	border-bottom-left-radius:12px;
}
.liefer-grid--5 .liefer-item:nth-child(2){
	grid-column:2;
	border-radius:0;
}
.liefer-grid--5 .liefer-item:nth-child(3){
	grid-column:3;
	border-top-right-radius:12px;
}
.liefer-grid--5 .liefer-item:nth-child(4){
	grid-column:2;
	border-radius:0;
}
.liefer-grid--5 .liefer-item:nth-child(5){
	grid-column:3;
	border-bottom-right-radius:12px;
}

/* 6 */
.liefer-grid--6{
	grid-template-columns:repeat(3, 1fr);
	grid-template-rows:repeat(2, 1fr);
}
.liefer-grid--6 .liefer-item:nth-child(1){
	border-top-left-radius:12px;
}
.liefer-grid--6 .liefer-item:nth-child(3){
	border-top-right-radius:12px;
}
.liefer-grid--6 .liefer-item:nth-child(4){
	border-bottom-left-radius:12px;
}
.liefer-grid--6 .liefer-item:nth-child(6){
	border-bottom-right-radius:12px;
}

/* Fallback */
.liefer-grid--default{
	grid-template-columns:repeat(3, 1fr);
}

/* Mobile: Slider */
@media (max-width: 768px){
	section.product-lieferumfang .liefer-grid{
		display:flex;
		overflow-x:auto;
		scroll-snap-type:x mandatory;
		gap:1px;
		padding:0;
		justify-content:flex-start;
	}

	section.product-lieferumfang .liefer-item{
		flex:0 0 80%;
		scroll-snap-align:start;
		aspect-ratio:1/1;
		border-radius:12px !important;
	}

	.liefer-grid--1 .liefer-item{
		flex:0 0 100%;
	}
}

/* ================================================================================
13. PRODUCT TECH SPECS
================================================================================ */
section.product-specs {
  	margin: 100px 0;
  	text-align:center;
}

section.product-specs .spec-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:0 0 24px;
}

section.product-specs .spec-tabs .spec-tab{
  border:0;
  background:#e4e4e4;
  color:#888;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
	font-family:"Montserrat";
  line-height:1;
  transition:all .15s ease;
}

section.product-specs .spec-tabs .spec-tab:hover{
  background:#d8d8d8;
}

section.product-specs .spec-tabs .spec-tab.is-active{
  background:#89cbaa;
  color:#fff;
}

.spec-panel{ display:block; }
.spec-panel[hidden]{ display:none; }

section.product-specs .spec-panel ul.spec-grid {
	padding:0px;
	margin:0px;
	list-style:none;
	display:grid;
  	grid-template-columns: repeat(2, minmax(0, 1fr));
  	gap: 10px;
  	text-align:left;
}

section.product-specs .spec-panel ul.spec-grid li.spec-item {
  	display: grid;
  	grid-template-columns: 50px 1fr;
  	gap: 10px;
  	align-items: stretch;
  	margin-bottom: 0px;
  	font-size: 12px;
	background:#fff;
	padding:10px;
	border-radius:var(--radius-m);
}

section.product-specs .spec-panel ul.spec-grid li.spec-item .spec-icon {
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	background: #fafafa; 
  	border-radius: 5px;
	aspect-ratio:1/1;	
	font-size:15px;
}

section.product-specs .spec-panel ul.spec-grid li.spec-item .spec-icon img {
	width:40px;
}

section.product-specs .spec-panel ul.spec-grid li.spec-item span.text {
	line-height:15px;
	display: flex;
  	flex-direction: column;
  	justify-content: center;  
}

section.product-specs .spec-panel ul.spec-grid li.spec-item span.text b {
  	display: block; 
  	margin-bottom: 0px;	
}

	@media (max-width:768px){
		section.product-specs .spec-tabs{
  			margin:20px 0;
		}

		section.product-specs .spec-tabs .spec-tab {
  			padding:10px 15px;
  			font-size:12px;
		}
		
  		section.product-specs .spec-panel ul.spec-grid{
    		grid-template-columns:1fr;
			gap:5px;
  		}
		
		section.product-specs .spec-panel ul.spec-grid li.spec-item {
			border-radius:var(--radius-m);
			padding:5px;
			font-size:10px;
		}
	}

/* ================================================================================
14. PRODUCT FAQ
================================================================================ */

/* ================================================================================
15. SEO CONTENT
================================================================================ */
.mbx-seo-content{
  	width: calc(100% - 40px);
  	margin: 100px 20px;
  	border-radius: var(--radius-l);
  	background: #fff;
  	overflow: hidden;
}

.mbx-seo-content__toggle{
  	width: 100%;
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	gap: 16px;
  	padding: 22px 24px;
  	background: transparent;
  	border: 0;
  	cursor: pointer;
  	text-align: left;
	color:#888;
}
	
.mbx-seo-content__toggle:hover,
.mbx-seo-content.is-open .mbx-seo-content__toggle {
	background: linear-gradient(
    120deg,
    rgba(137,203,170,1) 0%,
    rgba(36,124,95,1) 100%
  	);
	color:#fff;
	position:relative;
}
	
.mbx-seo-content__toggle:hover .mbx-seo-content__icon::before,
.mbx-seo-content__toggle:hover .mbx-seo-content__icon::after {
	background:#fff;
}
	
.mbx-seo-content.is-open .mbx-seo-content__toggle::after {
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:30%;
	background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	display:none;
	content:"";
}

.mbx-seo-content__title{
  	font-size: 20px;
	font-family:"Anton";
	font-weight:normal;
	text-transform:uppercase;
}

.mbx-seo-content__icon{
  	position: relative;
  	width: 18px;
  	height: 18px;
  	flex: 0 0 18px;
}

.mbx-seo-content__icon::before,
.mbx-seo-content__icon::after{
  	content: "";
  	position: absolute;
  	left: 50%;
  	top: 50%;
  	width: 18px;
  	height: 2px;
  	transform: translate(-50%, -50%);
  	transition: transform .25s ease, opacity .25s ease;background:#888;
}

.mbx-seo-content__icon::after{
  	transform: translate(-50%, -50%) rotate(90deg);
}

.mbx-seo-content.is-open .mbx-seo-content__icon::after{
  	opacity: 0;
}

.mbx-seo-content__body{
  	display: grid;
  	grid-template-rows: 0fr;
  	transition: grid-template-rows .35s ease;
}

.mbx-seo-content.is-open .mbx-seo-content__body{
  	grid-template-rows: 1fr;
}

.mbx-seo-content__inner{
  	overflow: hidden;
  	padding: 0 24px 0;
}

.mbx-seo-content.is-open .mbx-seo-content__inner{
  	padding: 0 24px 24px;
}

.mbx-seo-content__inner h2{
  	margin: 8px 0 14px;
  	font-size: 30px;
  	line-height: 1.1;
}

.mbx-seo-content__inner h3{
  	margin: 24px 0 10px;
  	font-size: 22px;
  	line-height: 1.2;
}

.mbx-seo-content__inner p{
  	margin: 0 0 14px;
  	line-height: 1.7;
}

.mbx-seo-content__inner strong{
  	font-weight: 700;
}

.mbx-seo-content__inner a{
  	text-decoration: underline;
  	text-underline-offset: 2px;
}

.mbx-seo-content__inner ul,
.mbx-seo-content__inner ol{
  	margin: 0 0 16px 20px;
  	padding: 0;
}

.mbx-seo-content__inner li{
  	margin-bottom: 8px;
}

	@media (max-width: 768px){
  		.mbx-seo-content{
    		width: calc(100% - 20px);
    		margin: 60px 10px;
    		border-radius: var(--radius-m);
  		}

  		.mbx-seo-content__toggle{
    		padding: 18px 16px;
  		}

  		.mbx-seo-content__title{
    		font-size: 16px;
  		}

  		.mbx-seo-content.is-open .mbx-seo-content__inner{
    		padding: 0 16px 18px;
  		}

  		.mbx-seo-content__inner h2{
    		font-size: 24px;
  		}

  		.mbx-seo-content__inner h3{
    		font-size: 19px;
  		}
	}


/* ================================================================================
16. PRODUCT RELATED PRODUCTS / PAGE END
================================================================================ */
section.product-related {
	background:var(--gruen);
	padding:20px;
	width:calc(100% - 80px);
	margin:100px 20px;
	border-radius:var(--radius-l);
}

section.product-related h2 {
  	color: var(--weiss);
  	text-align: center;
  	margin: 0 0 15px 0;
}

section.product-related ul.products-related {
  	list-style: none;
  	padding: 0;
  	margin: 0 auto;
}

section.product-related ul.products-related:not(.slick-initialized) {
  	display: grid;
  	grid-template-columns: repeat(4, minmax(0, 1fr));
  	gap: 20px;
}

	@media (max-width: 768px) {
  		section.product-related ul.products-related:not(.slick-initialized) {
    		grid-template-columns: repeat(2, minmax(0, 1fr));
    		gap: 10px;
  		}
	}

section.product-related ul.products-related.slick-initialized {
  	display: block !important;
  	gap: 0 !important;
}

section.product-related 
ul.products-related.slick-initialized 
.slick-slide {
  	padding: 0 10px; 
  	box-sizing: border-box;
}

section.product-related 
ul.products-related.slick-initialized 
.slick-list {
  	margin: 0 -10px; 
}

section.product-related ul.products-related li.product {
  	margin: 0; 
  	background: #fff;
  	border-radius: 10px;
  	padding: 10px;
  	position: relative;
}

section.product-related li.product a {
  	text-decoration: none;
  	font-size: 12px;
  	display: block;
  	color: inherit;
}

section.product-related .image img {
  	width: 100%;
  	height: auto;
  	display: block;
  	border-radius: 10px;
}

section.product-related .meta {
  	color: #888;
  	margin-top: 10px;
}

section.product-related .meta span.articlename {
  	display: block;
  	line-height: 1.2; 
}

section.product-related .meta span.price {
  	font-weight: bold;
  	display: block;
  	white-space: nowrap;  
}

section.product-related .meta span.price del {
  	color: #d4d4d4;
  	border-right: 1px solid #d4d4d4;
  	padding-right: 10px;
  	margin-right: 5px;
	font-weight:normal;
}

section.product-related .meta span.price ins {
  	color:var(--dunkelrot);
  	text-decoration: none;
}

section.product-related .meta span.price span.sale-percent {
    background:var(--dunkelrot);
    color:#fff;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 10px;
	color:#fff;
	float:right;
	font-weight:bold;
}

	@media (max-width: 768px) {
  		section.product-related ul.products-related {
    		grid-template-columns: repeat(2, minmax(0, 1fr));
    		gap: 10px;
  		}
	}

	@media (max-width: 480px) {	
		section.product-related {
			background:var(--gruen);
			padding:10px;
			width:calc(95% - 20px);
			margin:50px 2.5%;
			border-radius:var(--radius-m);
		}	
	
		section.product-related ul.products-related {
			width:calc(100% - 10px);
			margin:0px 5px;
		}

  		section.product-related ul.products-related li.product {
    		padding: 5px;
    		border-radius: 10px;
  		}
	
		section.product-related 
		ul.products-related.slick-initialized 
		.slick-slide {
  			padding: 0 5px; 
  			box-sizing: border-box;
		}

		section.product-related 
		ul.products-related.slick-initialized 
		.slick-list {
  			margin: 0 -5px;
		}

  		section.product-related ul.products-related li.product > a {
    		display: grid;
    		grid-template-columns: 78px 1fr; 
    		gap: 10px;
    		align-items: center;
  		}
		
  		section.product-related ul.products-related li.product .image {
    		width: 78px;
    		aspect-ratio: 1 / 1;
    		border-radius: 5px;
    		overflow: hidden;
    		background: #f3f3f3;
  		}

  		section.product-related ul.products-related li.product .image img {
    		width: 100%;
    		height: 100%;
    		object-fit: cover;
    		border-radius: 0; 
    		display: block;
  		}

  		section.product-related ul.products-related li.product .meta {
    		margin-top: 0;    
    		display: flex;
    		flex-direction: column;
    		justify-content: center;
    		gap: 6px;
    		min-width: 0;      
  		}

  		section.product-related ul.products-related li.product .meta span.articlename {
    		font-size: 12px;
    		line-height: 1.2;
    		display: -webkit-box;
    		-webkit-line-clamp: 2;
    		-webkit-box-orient: vertical;
    		overflow: hidden;
  		}

  		section.product-related ul.products-related li.product .meta span.price {
    		font-size: 12px;
    		line-height: 1.1;
    		white-space: nowrap;
  		}

  		section.product-related ul.products-related li.product .meta span.price del {
    		padding-right: 8px;
    		margin-right: 6px;
  		}

  		section.product-related ul.products-related li.product span.onsale,
  		section.product-related ul.products-related li.product span.soldout {
    		top: 10px;
    		left: 10px;
    		font-size: 8px;
    		padding: 0 5px;
    		border-radius: 5px;
  		}
	}

/* ================================================================================
17. SHAREBOX
================================================================================ */
.product-share {
	text-align: center;
	background: var(--weiss);
    padding: 20px;
    width: calc(100% - 80px);
    margin: 100px 20px;
    border-radius: var(--radius-l);
}

.product-share .wrapper {
	margin:0px auto;
	padding:0px;
}

.product-share .share-box{
  	display: grid;
  	grid-template-columns: 1fr auto;
  	gap: 15px;
  	align-items: center;
}
.product-share .share-text{
  	margin: 0px;
  	line-height: 1.4;
  	font-size: 12px;
	display: flex;
  	align-items: center;
	height:100%;
	text-align:left;
}

.product-share .share-actions{
  	display:flex;
  	gap: 10px;
  	align-items:center;
  	justify-content:flex-end;
}

.product-share .share-btn{
  	width: 40px;
  	height: 40px;
  	border-radius: 999px;
  	border: 1px solid rgba(0,0,0,0.10);
  	background: #fff;
  	display:flex;
  	align-items:center;
  	justify-content:center;
  	cursor:pointer;
  	text-decoration:none;
  	color:#888;
  	transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.product-share .share-btn i{
  	font-size: 16px;
}

.product-share .share-btn:hover{
  	transform: translateY(-5px);
  	background: rgba(0,0,0,0.03);
  	border-color: rgba(0,0,0,0.14);
}

.product-share .share-btn:focus-visible{
  	outline: 2px solid rgba(0,0,0,0.25);
  	outline-offset: 2px;
}

	@media (max-width: 768px){
  		.product-share .share-box {
    		grid-template-columns: 1fr;
    		gap: 15px;
  		}
		
  		.product-share .share-actions {
    		justify-content:flex-start;
  		}
	
	    .product-share {
        	padding: 15px 0px 0px 0px;
        	width: calc(100% - 20px);
        	margin: 50px 2.5%;
        	border-radius: var(--radius-m);
    	}

    	.product-share .share-text {
        	text-align: center;
			justify-content:center;
    	}
		
    	.product-share .share-actions {
        	display: flex;
        	justify-content: space-between;
        	gap: 0; 
			border-top:1px solid  rgba(0,0,0,0.1);
    	}
		
    	.product-share .share-btn {
        	width: 25%;
        	height: auto;
			min-height:50px;
			background:transparent;
			border:0px;
        	border-right: 1px solid rgba(0,0,0,0.1); 
        	border-radius: 0;
        	display: flex;
        	align-items: center;
        	justify-content: center;
    	}
		
    	.product-share .share-btn:last-child {
        	border-right: none; 
    	}
	
		.product-share .share-btn:hover{
  			transform: translateY(0px);
  			background: rgba(0,0,0,0.0);
		}
		
		.product-share .share-btn:focus-visible{
  			outline: 0px solid rgba(0,0,0,0.0);
  			outline-offset: 0px;
		}
	}

/* ================================================================================
18. PRODUCT VARIANTS
================================================================================ */
.mbx-variants{
  	margin: 100px 0;
}

.mbx-variants__inner{
  	width: 100%;
  	max-width: 1280px;
  	margin: 0 auto;
  	padding: 0;
}

.mbx-variants__head{
  	margin-bottom: 18px;
}

.mbx-variants__title{
  	text-align: center;
  	margin: 0 0 8px;
}

.mbx-variants__slider{
  	position: relative;
  	width: 100%;
  	display: grid;
  	grid-template-columns: repeat(4, minmax(0, 1fr));
  	gap: 20px;
}


.mbx-variants__slider.mbx-variants__slider--center{
  	grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
  	justify-content: center;
}

	@media (max-width: 1024px){
  		.mbx-variants__slider {
    		grid-template-columns: repeat(2, minmax(0, 1fr));
  		}
	}

	@media (max-width: 640px){
  		.mbx-variants__slider{
    		grid-template-columns: 1fr;
  		}
	}


.mbx-variants__card{
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	gap: 10px;
  	height: 100%;
  	min-width: 0;
  	border-radius: 20px;
  	background: #e4e4e4;
  	padding: 0;
  	padding-bottom: 10px;
  	overflow: hidden;
}

.mbx-variants__card::before{
  	content: "";
  	position: absolute;
  	inset: 0;
  	border-radius: 20px;
  	background: linear-gradient(
    120deg,
    rgba(137,203,170,1) 0%,
    rgba(36,124,95,1) 100%
  );
  	opacity: 0;
  	transition: opacity .6s ease;
  	z-index: 0;
}

.mbx-variants__card > *{
  	position: relative;
  	z-index: 1;
}

a.mbx-variants__card-link{
  	color: inherit;
  	text-decoration: none;
  	display: block;
}

.mbx-variants__media{
  	position: relative;
  	width: 100%;
  	aspect-ratio: 1 / 1;
  	overflow: hidden;
  	border-radius: 20px 20px 0 0;
}

.mbx-variants__img{
  	width: 100%;
  	height: 100%;
  	display: block;
  	object-fit: contain;
  	transform: scale(1);
  	transition: transform .55s cubic-bezier(.22,.61,.36,1), filter .4s ease;
  	will-change: transform;
}

	@media (hover:hover){
  		a.mbx-variants__card-link:hover{
    		color: inherit;
  		}
	
	  	a.mbx-variants__card-link:hover .mbx-variants__badge{
    		background:var(--pink);
			transition: background .6s ease;
  		}
	
  		.mbx-variants__card:hover::before{
    		opacity: 1;
  		}

  		.mbx-variants__card:hover .mbx-variants__img{
    		transform: scale(1.08);
    		filter: brightness(1.04);
  		}

  		.mbx-variants__card:hover .mbx-variants__name,
  		.mbx-variants__card:hover .mbx-variants__subtitle{
    		color: #fff;
  		}
	}

.mbx-variants__badge{
  	position: absolute;
  	top: 10px;
  	left: 10px;
  	z-index: 3;
  	display: inline-flex;
  	align-items: center;
  	min-height: 30px;
  	max-width: calc(100% - 24px);
  	padding: 3px 15px 2px 15px;
  	border-radius: 10px;
  	background:var(--gruen);
  	color: #ffffff;
  	text-transform:uppercase;
  	font-size: 10px;
  	box-sizing: border-box;
 	text-align: center;
}

.mbx-variants__info{
  	padding: 10px;
  	text-align: center;
}

.mbx-variants__name{
  	font-weight: normal;
  	font-family: "Anton";
  	font-size: 16px;
  	text-transform: uppercase;
  	transition: color .25s ease;
}

.mbx-variants__subtitle{
  	font-weight: 600;
  	font-size: 12px;
  	line-height: 1.2;
  	opacity: .9;
  	margin-top: 6px;
  	transition: color .25s ease;
}

.mbx-variants__cart{
  	padding: 0 10px;
  	margin-top: auto;
}
	
.mbx-variants__cart .added_to_cart{
  	display: none !important;
}

.mbx-variants__atc{
  	width: 100%;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	min-height: 42px;
  	padding: 10px 14px;
  	border-radius: 10px;
  	border: 0;
  	background: #fff;
  	color: #888;
	font-family:"Montserrat";
  	font-size: 12px;
  	font-weight: 600;
  	text-decoration: none;
  	text-align: center;
  	box-sizing: border-box;
  	transition: all .2s ease;
}

.mbx-variants__atc:hover{
  	background: #f2f2f2;
  	color: #888;
}

	@media (hover:hover){
  		.mbx-variants__card:hover .mbx-variants__atc{
    		background: rgba(255,255,255,.96);
    		color: #888;
  		}
	}

.mbx-variants__slider.mbx-variants__slider--dynamic-center{
  	display: flex !important;
  	justify-content: center;
  	gap: 20px;
  	flex-wrap: wrap;
}

.mbx-variants__slider.mbx-variants__slider--dynamic-center .mbx-variants__card{
  	width: 100%;
  	max-width: 260px;
}

.mbx-variants__slider.slick-initialized.mbx-variants__slider--dynamic-center{
  	display: block !important;
}

.mbx-variants__slider.mbx-variants__slider--slick{
  	opacity: 0;
  	transition: opacity .14s ease;
}

.mbx-variants__slider.mbx-variants__slider--slick.is-ready{
  	opacity: 1;
}

.mbx-variants__slider.slick-initialized{
  	display: block;
}

.mbx-variants__slider.slick-initialized .slick-slide{
  	padding: 0 10px;
  	box-sizing: border-box;
}

.mbx-variants__slider.slick-initialized .slick-list{
  	margin: 0 0px; /* 0 -10px führt zu fehler im mobile */
}

.mbx-variants .slick-dots{
  	display: none !important;
}

.mbx-variants .slick-arrow{
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	z-index: 3;
  	width: 40px;
  	height: 40px;
  	border-radius: 999px;
  	border: 0;
  	background: rgba(255,255,255,.92);
  	box-shadow: 0 6px 18px rgba(0,0,0,.12);
  	font-size: 0;
  	cursor: pointer;
}

.mbx-variants .slick-prev{
  	left: -12px;
}

.mbx-variants .slick-next{
  	right: -12px;
}

.mbx-variants .slick-prev:before,
.mbx-variants .slick-next:before{
  	content: "";
  	display: inline-block;
  	width: 10px;
  	height: 10px;
  	border-right: 2px solid rgba(0,0,0,.65);
  	border-bottom: 2px solid rgba(0,0,0,.65);
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%) rotate(135deg);
}

.mbx-variants .slick-next:before{
  	transform: translate(-50%, -50%) rotate(-45deg);
}

	@media (max-width: 768px){
  		.mbx-variants{
    		margin: 60px 0;
  		}

  		.mbx-variants .slick-prev{
    		left: -6px;
  		}

  		.mbx-variants .slick-next{
    		right: -6px;
  		}
	
		.mbx-variants__card{
  			border-radius: 10px;
  			padding-bottom: 5px;
		}
	
		.mbx-variants__card::before{
  			border-radius: 10px;
		}
	
		.mbx-variants__media{
  			border-radius: 10px 10px 0 0;
		}
	
		.mbx-variants__badge{
			top:5px;
			left:5px;
			border-radius:5px;
  			padding: 0px 7px 0px 7px;
  			font-size: 8px;
			line-height:1;
		}
		
		.mbx-variants__cart {
    		padding: 0 5px;
		}
	
		.mbx-variants__atc{
  			width: 100%;
  			padding: 10px 0px;
  			border-radius: 5px;
  			font-size: 10px;
  			font-weight: 600;
		}
	}

/************************************************************************************************************************
************************************************************************************************************************
         FAQ STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
section#faq{
	width:100%;
	max-width:768px;
	margin:100px auto 100px auto;
	text-align:center;
}

section#faq .faq-intro-top,
section#faq .faq-intro-bottom{
	width:100%;
	max-width:768px;
	margin:0 auto;
}

section#faq .faq-intro-top p,
section#faq .faq-intro-bottom p{
	margin:0 0 20px 0;
}

section#faq .faq-intro-top p:last-child,
section#faq .faq-intro-bottom p:last-child{
	margin-bottom:0;
}

ul.accordion{
	list-style:none;
	padding:0;
	max-width:570px;
	text-align:left;
	margin:25px auto 25px auto;
}

ul.accordion li.accordion-item{
	background:rgba(255,255,255,1);
	backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);
	color:#888888;
	border:none;
	display:block;
	font-family:'Montserrat';
	text-transform:none;
	font-weight:400;
	font-size:14px;
	margin:0 0 1px 0;
	padding:20px;
	border-radius:var(--radius-l);
	position:relative;
	transition:background .35s ease, color .35s ease, margin .35s ease;
}

ul.accordion li.accordion-item.is-open{
	background:rgba(137, 203, 170, 1);
	background:linear-gradient(
		120deg,
		rgba(137,203,170,1) 0%,
		rgba(36,124,95,1) 100%
	);
	color:#fff;
	margin:0 0 10px 0;
}

ul.accordion li.accordion-item .question{
	display:block;
	width:100%;
	background:none;
	border:none;
	padding:0;
	margin:0;
	text-align:left;
	color:inherit;
	font:inherit;
	cursor:pointer;
}

ul.accordion li.accordion-item .question > span{
	display:block;
}

ul.accordion li.accordion-item .question span.number{
	margin-right:10px;
	font-weight:600;
}

ul.accordion li.accordion-item.is-open .question{
	font-weight:600;
}

ul.accordion li.accordion-item .question .ui-accordion-header-icon{
	display:none;
}

ul.accordion li.accordion-item .answer{
	height:0;
	overflow:hidden;
	transition:height 400ms ease;
}

ul.accordion li.accordion-item .answer-inner{
	color:#fff;
	border:none;
	background:none;
	font-family:"Montserrat";
	font-size:14px;
	line-height:28px;
}

ul.accordion li.accordion-item.is-open .answer-inner {
	padding-top:15px;
}

ul.accordion li.accordion-item:not(.is-open) .answer-inner{
	color:#888888;
}

ul.accordion li.accordion-item .answer-inner > *:first-child{
	margin-top:0;
}

ul.accordion li.accordion-item .answer-inner > *:last-child{
	margin-bottom:0;
}

ul.accordion li.accordion-item .answer-inner a{
	color:inherit;
	text-decoration:underline;
}

ul.accordion li.accordion-item .answer-inner img,
ul.accordion li.accordion-item .answer-inner video,
ul.accordion li.accordion-item .answer-inner iframe{
	max-width:100%;
	height:auto;
	display:block;
	border-radius:var(--radius-m);
	margin:15px 0;
}

/********** MIN. 320px - MAX. 768px **********/
@media screen and (min-width:320px) and (max-width:768px){
	section#faq{
		max-width:100%;
		width:calc(100% - 0%);
		margin:0 0 0 0;
	}

	ul.accordion{
		width:100%;
	}

	ul.accordion li.accordion-item{
		border-radius:var(--radius-m);
		padding:15px;
	}

	ul.accordion li.accordion-item .question{
		font-size:11px;
	}

	ul.accordion li.accordion-item .answer-inner{
		padding-top:15px;
		padding-bottom:5px;
		font-size:11px;
		line-height:20px;
	}
}

/************************************************************************************************************************
************************************************************************************************************************
         NEWSLETTER STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
section#newsletter {
	width:calc(100% - 80px);
	margin:100px 20px;
	border-radius:var(--radius-l);
	color:var(--weiss);
	text-align:center;
}

section#newsletter .badge {
	background:var(--pink);
	display:inline-block;
	border-radius:100%;
	width:75px;
	height:75px;
	position:absolute;
	top:-90px;
	left:70%;
	color:#fff;
	line-height:0px;
	font-size:40px;
	text-shadow:3px 3px 0px rgba(0,0,0, 0.25);
	font-family:"Anton";
	font-weight:normal;
	text-transform:uppercase;
	display:flex;
	justify-content:center;
	align-items:center;
	border:5px solid #fff;
    box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.25);
	transform: rotate(12.5deg);
}

section#newsletter form div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;	
	margin-top:25px;
}

		/********** MIN. 320px - MAX. 768px **********/
        @media screen and (min-width:320px) and (max-width:768px) {	
			section#newsletter {
				width:calc(100% - 40px - 5%);
				margin:100px 2.5%;
			}
			
			section#newsletter form div {
				display: grid;
				grid-template-columns: repeat(1, 1fr);
				grid-template-rows: 1fr;
				grid-column-gap: 0px;
				grid-row-gap: 0px;
			}	
			
			section#newsletter form div input {
				margin-bottom:10px;
			}
		}

/************************************************************************************************************************
************************************************************************************************************************
         FOOTER STARTS HERE
************************************************************************************************************************
************************************************************************************************************************/
footer {
	width:calc(100% - 40px);
    margin:100px 20px 20px 20px;
	clear:both;
	bottom:0px;
	background:var(--weiss);
	color:var(--grau);
	font-size:12px;
	line-height:20px;
    text-align:center;
    padding:40px 0px 40px 0px;
    border-radius:var(--radius-l);
	position:relative;
}

footer img.logo {
	animation: logo 6s ease-in-out infinite;
	position:absolute;
	top:-20px;
	left:50%;
	width:50px;
}

@keyframes logo {
	0%   { transform: translateX(-50%) translateY(0); }
  	50%  { transform: translateX(-50%) translateY(-10px); }
  	100% { transform: translateX(-50%) translateY(0); } 
}

footer #footerShadow{
	animation: shadow 6s ease-in-out infinite;
	position:absolute;
	top:10px;
	left:50%;
	transform:translateX(-50%);
	width:60px;
}

@keyframes shadow { 
	0% {opacity:1;} 
	50% {opacity:0.5;} 
	100% {opacity:1;}
}

footer h4 {
	font-family:"Anton";
	font-weight:normal;
	text-transform:uppercase;
	font-size:16px;
	margin:0px;
	padding:0px;
	display:block;
}

footer #footerFirst,
footer #footerSecond,
footer #footerThird {
	border-bottom:1px solid var(--hellgrau);
	padding:40px 0px;
}

footer #footerFirst ul {
	list-style:none;
	margin:0px;
	padding:0px 0px 0px 0px;
}

footer #footerFirst ul li {	
	position:relative;
	justify-content:center;
	align-items:center;
	margin:0px 20px 0px 20px;
}

footer #footerFirst ul li:hover {
	cursor:pointer;
}

footer #footerFirst ul li img {
	position:relative;
	top:0px;
	left:50%;
	transform:translateX(-50%);
}

footer #footerSecond ul,
footer #footerThird ul {
	margin:20px 0px 0px 0px;
	padding:0px;
	list-style:none;
	display:flex;
	justify-content:center;
}

footer #footerSecond ul li {
	padding:0px;
	margin:0px;
}

footer div.box h4 span.show {display:none;}

footer #footerSecond ul li a {
	text-decoration:none;
	color:var(--grau);
	padding:10px 20px;
	position:relative;
	border-radius:var(--radius-l);
	transition: all .3s ease-in;
}

footer #footerSecond ul li a:hover {
	background:var(--gruen);
	border-radius:var(--radius-l);
	color:var(--weiss);
}

footer #footerSecond ul li a:hover:after {
	position:absolute;
	top:3px;
	left:3px;
	border:1px solid var(--weiss);
	border-radius:var(--radius-l-inner);
	width:calc(100% - 8px);
	height:calc(100% - 8px);
	content:"";
}

footer #footerThird {
	margin-bottom:40px;
}

footer #footerThird ul li {
	padding:0px;
	margin:0px 20px;
}

footer #footerFourth {
	font-size:10px;
}

		/********** MIN. 320px - MAX. 768px **********/
        @media screen and (min-width: 320px) and (max-width: 768px) {
			footer #footerFirst {
				padding:40px 0px 20px 0px;
			}
			
			footer #footerThird {margin-bottom:20px;}
			footer #footerSecond {
				border-top:0px;
				margin:0px auto 0px auto;
			}
			
			footer #footerSecond ul {
				display:block;
				justify-content:center;
				width:calc(100% - 40px);
				margin:20px 20px 0px 20px;
			}
			
			footer #footerSecond ul li a {
				background:#efefef;
				display:block;
				margin-bottom:1px;
				padding:10px 0px;
				border-radius:0px;
			}	
			
			footer #footerSecond ul li a:hover,
			footer #footerSecond ul li a:hover:after {
				border-radius:0px;
			}
			
			footer #footerThird ul {
				display: grid;
				grid-template-columns: repeat(5, 1fr);
				grid-template-rows: ;
				grid-column-gap: 20px;
				grid-row-gap: 0px;
				padding:0px 20px;
			}
			
			footer #footerThird ul li {
				margin:0px;
			}		
		}

		/********** MIN. 320px - MAX. 1024px **********/
        @media screen and (min-width: 320px) and (max-width: 1024px) {
			footer {
				width:calc(100% - 5%);
    			margin:100px 2.5% 20px 2.5%;
				padding:0px 0px 20px 0px;
				font-size:10px;
			}
			
			footer #footerSecond,
			footer #footerThird {
				padding:20px 0px;
			}
			
			footer div.box {
				position:relative;
			}
			
			footer div.box h4 span.show {
         		position:absolute;
         		right:20px;
         		top:0px;
         		height:20px;
         		width:20px;
         		border-radius: 100%;
         		border:1px solid var(--grau);
         		cursor:pointer;
         		justify-content:center;
         		align-items: center;
         		display:flex;
			}

			footer div.box span.show.hide {
         		transform: rotate(180deg);
			}

			footer div.box div.box-inner {
				display:none;
			} 
			
			footer div.box.open div.box-inner {
				display:block;
			}		
		}


