/* Fonts */
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/Lexend-Light.ttf') format('truetype');
}
/* lexend-regular */
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/Lexend-Regular.ttf') format('truetype');
}
/* lexend-500 */
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/Lexend-Medium.ttf') format('truetype');
}
/* lexend-600 */
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/Lexend-SemiBold.ttf') format('truetype');
}
/* lexend-700 */
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/Lexend-Bold.ttf') format('truetype');
}
/* lexend-800 */
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/Lexend-ExtraBold.ttf') format('truetype');
}
/* lexend-900 */
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/Lexend-Black.ttf') format('truetype');
}
/* FontAwesome */
@font-face {
	font-display: swap;
	font-family: 'Font Awesome 4';
	src: url('../fonts/fontawesome-webfont.woff2') format('woff2'),
		 url('../fonts/fontawesome-webfont.woff') format('woff'),
		 url('../fonts/fontawesome-webfont.ttf') format('truetype');
}
body {
	font-family: "Lexend", sans-serif;
	color: var(--text-dark);
}

/* Variable colors as classes */
/* Text */
.text-dark {
	color: var(--text-dark) !important;
}
.text-light {
	color: var(--text-light) !important;
}
.text-main-accent {
	color: var(--text-main-accent);
}
.text-sub-accent {
	color: var(--text-sub-accent);
}
.text-greyed-out {
	color: var(--text-greyed-out)
}
.text-footer {
	color: var(--text-footer)
}
.text-sale {
	color: var(--sale-text);
}
.sr-only {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	top: auto;
	overflow: hidden;
}
.text-background-detail {
	color: var(--background-detail);
}
/* Backgrounds */
.bg-body {
	background-color: var(--background-body);
}
.bg-light {
	background-color: var(--text-light) !important;
}
.bg-dark {
	background-color: var(--text-dark) !important;
}
.bg-text-accent {
	background-color: var(--text-main-accent);
}
.bg-accent {
	background-color: var(--background-accent);
}
.bg-special {
	background-color: var(--background-special);
}
.bg-detail {
	background-color: var(--background-detail);
}
.bg-sale {
	background-color: var(--sale-background);
}
.bg-sekundaer {
	background-color: var(--background-accent);
}
/* radius */
.input-radius {
	border-radius: var(--corner-button-radius);
}
.container-radius {
	border-radius: var(--corner-radius);
}
/* Other */
.border-white {
	border-color: var(--border-white);
}
.w-fit {
	width: fit-content;
}
a {
	transition: all 250ms ease;
	text-underline-offset: 2px;
}
footer a.text-greyed-out:hover {
	text-decoration: underline !important;
	color: color-mix(in srgb, 40% var(--text-greyed-out), 80% #fff);
	text-underline-offset: 4px;
}
footer a.text-footer:hover {
	text-decoration: underline !important;
	color: color-mix(in srgb, 40% var(--text-footer), 80% #fff);
	text-underline-offset: 4px;
}
p > a.text-light:hover {
	text-decoration: underline !important;
	color: color-mix(in srgb, 20% var(--text-light), 80% #000);
	text-underline-offset: 4px;
}

.button.primary,
.button-primary {
	background-color: var(--main-accent);
	color: var(--text-light);
	border: none;
	transition: all 250ms ease;
}
.button.light,
.button-light {
	background-color: var(--bg-light);
	color: var(--text-dark);
	border: none;
	transition: all 250ms ease;
}
.button.dark,
.button-dark {
	background-color: var(--text-dark);
	color: var(--text-light);
	border: none;
	transition: all 350ms ease;
}
.button.primary:hover,
.button-primary:hover {
	background-color: color-mix(in srgb, var(--main-accent) 40%, #000 60%);
}
.button.light:hover,
.button-light:hover {
	background-color: color-mix(in srgb, var(--bg-light) 40%, #000 60%);

}
.button.dark:hover,
.button-dark:hover {
	background-color: color-mix(in srgb, var(--text-dark) 40%, #fff 60%);
}
.button.disabled {
	cursor: default;
	background-color: var(--text-greyed-out);
	touch-action: none;
}

input {
	border: solid 1px var(--border-white);
	border-radius: var(--corner-button-radius);
	padding: 4px 4px 4px 24px;
}
input:active {
	border-color: var(--border-white);
}
input:focus {
	border-color: var(--border-white);
}
input:focus-visible {
	border-color: var(--border-white) !important;
}

.small-divider {
	width: 1px;
	height: 20px;
	background-color: var(--background-detail);
}
.hor-divider {
	width: 100%;
	height: 1px;
	background-color: var(--background-detail);
}


.fs-70 {
	font-size: 70px !important;
}
.fs-60 {
	font-size: 60px !important;
}
.fs-50 {
	font-size: 50px !important;
}
.fs-40 {
	font-size: 40px !important;
}
.fs-28 {
	font-size: 28px !important;
}
.fs-26 {
	font-size: 26px !important;
}
.fs-24 {
	font-size: 24px !important;
}
.fs-22 {
	font-size: 22px !important;
}
.fs-20 {
	font-size: 20px !important;
}
.fs-18 {
	font-size: 18px !important;
}
.fs-16 {
	font-size: 16px !important;
}
.fs-14 {
	font-size: 14px !important;
}
.fs-12 {
	font-size: 12px !important;
}
.fs-10 {
	font-size: 10px !important;
}

h1,
.h1 {
	font-size: 50px;
}
h2,
.h2 {
	font-size: 42px;
}
h3,
.h3 {
	font-size: 32px;
}
h4,
.h4 {
	font-size: 24px;
}
h5,
.h5 {
	font-size: 16px;
}

.abstandOben-klein {
	padding-top: 25px;
}
.abstandOben-mittel {
	padding-top: 75px;
}
.abstandOben-gross {
	padding-top: 135px;
}
.abstandUnten-klein {
	padding-bottom: 25px;
}
.abstandUnten-mittel {
	padding-bottom: 75px;
}
.abstandUnten-gross {
	padding-bottom: 135px;
}

.cursor-pointer {
	cursor: pointer;
}

/* Header */
header {
	background-color: var(--background-body);
	padding-top: env(safe-area-inset-top, 0px);
	top: 0px;
	width: 100%;
	position: fixed;
    z-index: 9999;
    height: auto; 
}
header .search .rounded-pill {
	width: 48px;
	height: 48px;
}
header .bagCountContainer {
	width: 16px;
	height: 16px;
	left: 11px;
	bottom: 2px;
}
header .hasDropdown::after {
	content: "\f078";
	color: var(--text-dark);
	font-family: 'Font Awesome 4';
	font-weight: 100;
	width: 12px;
	height: 12px;
	margin-left: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .checkbox-wrapper .toggleCheckbox {
	appearance: none;
	background-color: #dfe1e4;
	border-radius: 72px;
	border-style: none;
	flex-shrink: 0;
	height: 20px;
	margin: 0;
	position: relative;
	width: 30px;
}

header .checkbox-wrapper .toggleCheckbox::before {
	bottom: -6px;
	content: "";
	left: -6px;
	position: absolute;
	right: -6px;
	top: -6px;
}

header .checkbox-wrapper .toggleCheckbox,
header .checkbox-wrapper .toggleCheckbox::after {
	transition: all 100ms ease-out;
}

header .checkbox-wrapper .toggleCheckbox::after {
	background-color: #fff;
	border-radius: 50%;
	content: "";
	height: 14px;
	left: 3px;
	position: absolute;
	top: 3px;
	width: 14px;
}

header .checkbox-wrapper input[type=checkbox] {
	cursor: default;
}

header .checkbox-wrapper .toggleCheckbox:hover {
	background-color: #c9cbcd;
	transition-duration: 0s;
}

header .checkbox-wrapper .toggleCheckbox:checked {
	background-color: var(--text-main-accent);
}

header .checkbox-wrapper .toggleCheckbox:checked::after {
	background-color: #fff;
	left: 13px;
}

header .checkbox-wrapper :focus:not(.focus-visible) {
	outline: 0;
}

header .checkbox-wrapper .toggleCheckbox:checked:hover {
	background-color: var(--text-main-accent);
}

header .header-menue.mobile .hasDropdown:not(.collapsed)::after {
	content: "\f078";
	color: var(--text-dark);
	width: 12px;
	height: 12px;
	margin-left: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 250ms ease;
}
header .header-menue.mobile .hasDropdown.collapsed::after {
	content: "\f078";
	color: var(--text-dark);
	rotate: -90deg;
	width: 12px;
	height: 12px;
	margin-left: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 250ms ease;

}
header .rightElement {
	left: 100%;
	width: 100%;
	background-color: var(--header-selected);
}
header .bottomElements.desktop .rightElement.collapse.show ~ .subMenue-entry {
	background-color: var(--header-deep-selected) !important;
}
header .rightElement .nav-link:hover {
	background-color: var(--header-deep-selected) !important;
	transition: all 250ms;
}
header .nav-item.hasDropdown ~ .header-dropdown-lvl-1 {
	z-index: 100;
	position: absolute;
	top: 62px;
	width: 144%;
	max-width: 265px;
}

header .desktop .nav-item.nav-item.hasDropdown:not(.collapsed),
header .desktop .nav-item:hover {
	background-color: var(--header-selected);
	color: var(--text-main-accent);
}
header .header-menue .nav-item.nav-item.hasDropdown:not(.collapsed) .nav-link,
header .header-menue .nav-item:hover .nav-link {
	color: var(--text-main-accent) !important;
}
/* Header active */
header .header-menue.mobile .nav-link.active{
	color: var(--text-main-accent) !important;
}
header .header-menue.mobile .nav-item:has(~ .navbar-collapse .nav-link.active) .nav-link {
	color: var(--text-main-accent) !important;
}

header .header-menue.mobile .nav-link.fs-20{
	font-size: 20px !important;
}
header :not(.header-menue) .nav-item.hasDropdown ~ .header-dropdown-lvl-1 .subMenue-entry {
	background-color: var(--header-selected);
}
header .nav-item.hasDropdown ~ .header-dropdown-lvl-1 .subMenue-entry.hasDropdown::after {
	content: "\f078";
	rotate: -90deg;
	margin-right: 5px;
}
header .nav-item.hasDropdown ~ .header-dropdown-lvl-1 .subMenue-entry:hover {
	cursor: pointer;
	background-color: var(--header-deep-selected);
}
header .burger-menue {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: space-between;
}
header .burger-menue .burger-line {
	margin: 2px 0;
	height: 3px;
	width: 25px;
	background-color: var(--background-special);
}
header .header-menue .inner {
	height: 90%;
}
header .header-menue {
	height: 100vh;
	width: 100%;
	left: 0;
	top: 131px;
}

/* content */
#content {
	padding-top: 142px;
}

/* banner */
.tmplBannerSlider .entry {
	height: 720px;
}
.tmplBannerSlider .entry > div{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.tmplBannerSlider .entry .headline {
	font-size: 114px;
	font-weight: 600;
}
.tmplBannerSlider .entry :is(.headline, .subline) {
	position: relative;
	left: -6px;
}
.tmplBannerSlider .entry .subline {
	font-size: 45px;
	font-weight: 600;
	max-width: 50%;
}
.tmplBannerSlider .entry .topline {
	letter-spacing: 2px;
}
.tmplBannerSlider .entry .button {
	font-size: 30px;
}


/* CategorySelect */
.tmplCategorySelect .entries:not(.unfixHeight) {
	min-height: 400px;
}
.tmplCategorySelect .subEntry {
	height: 48%;
}
.tmplCategorySelect .text {
	line-height: 65px;
}
.tmplCategorySelect .imgEntry {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 155px;
}
.tmplCategorySelect .imgEntry.minHeight250 {
	min-height: 250px;
}
.tmplCategorySelect .imgEntry:not(.subEntry) {
	height: 100%;
}
.tmplSalesTimer p {
	padding: 0;
	margin: 0;
}
.article-item {
	min-height: 408px;
	padding-bottom: 20px;
	transition: all 200ms ease-out;
}
.article-item .stoerer .inner {
	border-bottom-right-radius: var(--corner-articleImg-radius);
}
.wishlist-quantity {
	right: -4px;
	width: 14px;
	height: 14px;
}
.article-item .img {
	overflow: hidden;
	border-radius: var(--corner-articleImg-radius);
}
.article-item .saleTag {
	border-radius: var(--corner-articleImg-radius);
	margin: 0 auto;
}
.article-item .noStock {
	background: color-mix(in srgb, var(--text-main-accent) 40%, #00000000 100%);
	backdrop-filter: blur(10px);
	color: var(--text-light);
}
.article-item .noStockContainer {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 65%;
	text-align: center;
}
.article-item:hover {
	filter: saturate(1.25) brightness(1.12);
}

.product-details-content .delivery-time > div {
	background-color: var(--background-del-time);
	width: fit-content;
} 
.product-details-img .stoerer {
	z-index: 500;
}
.product-details-img .stoerer .inner {
	border-radius: var(--corner-radius) 0 var(--corner-radius) 0;
}
.cart-plus-minus .menge {
	width: 4ch;
	border: none;
	background-color: var(--border-white);
	border-radius: calc(var(--corner-articleImg-radius) / 2);
	text-align: center;
}
.product-details-img .shop-details-tab img {
	width: 64px !important;
	height: 64px !important;
	object-fit: cover;
	border: 2px transparent solid;
	border-radius: var(--corner-radius);
	margin: 0 7px;
}
.product-details-img .slick-track {
	display: flex;
	justify-content: center;
}
.product-details-img .shop-details-tab img.slick-current {
	border: 2px solid var(--text-main-accent);
}
.tab-content .tab-pane img {
	width: 570px !important;
	height: 530px !important;
	object-fit: contain;
	border-radius: var(--corner-radius);
	margin-bottom: 15px;
}
.cart-plus-minus :is(.changeButton, .menge) {
	width: 36px;
	height: 36px;
}
.cart-plus-minus .changeButton {
	cursor: pointer;
}
.cart-plus-minus .border-container {
	border: 1px solid var(--border-white);
	border-radius: var(--corner-articleImg-radius);
	width: fit-content;
}
.product-details-content .bottomArea .tab {
	border: 1px solid var(--border-white);
	border-radius: var(--corner-button-radius);
	transition: 250ms ease;
	cursor: pointer;
}
.product-details-content .bottomArea .tab.active {
	border: 1px solid var(--main-accent);
	border-radius: var(--corner-button-radius);
	background-color: var(--background-accent);
	color: var(--text-main-accent);
}

a {
	color: var(--text-main-accent);
	text-decoration: none;	
}
p a:hover,
.link:hover {
	text-decoration: underline !important;
	color: color-mix(in srgb, 40% var(--text-greyed-out), 80% #fff);
	text-underline-offset: 4px;
}

.wkBezahlen .entry {
	border: 2px solid transparent;
	transition: 250ms ease;
	padding: 15px;
	cursor: pointer;
}
.wkBezahlen .entry.active {
	border: 2px solid var(--text-main-accent);
	color: var(--text-main-accent);
}

.tmplCategorieVerweis .imgEntry {
	height: 225px;
	border: 1px solid var(--bs-gray-800);
}
.tmplCategorieVerweis .imgEntry .text {
	text-shadow: 2px 2px 7px var(--bs-black);
}
.addArtikelWL i {
	top: 10px;
	right: 10px;
	z-index: 750;
}
.tmplSuche .sortSelect,
.tmplArtikelList .sortSelect {
	border: none;
	outline: none;
}
.tmplSuche .sortSelect:hover,
.tmplArtikelList .sortSelect:hover {
	border: none;
	outline: none;
}
.tmplSuche .sortSelect:focus,
.tmplArtikelList .sortSelect:focus {
	border: none;
	outline: none;
}
/* Footer */
footer {
	padding-top: 80px;
	background: var(--background-special);
	background-image: linear-gradient(180deg, 10% var(--background-special), color-mix(in srgb, var(--background-special) 20%, #000 100%));
}

footer .entry .inner {
	margin: 7px 0;
}

footer a {
	color: var(--text-footer);
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=checkbox] {
	padding: 0 !important;

}
.forgotPassword {
	cursor: pointer;
}

/* Firefox */
input[type=number] {
	appearance: textfield;
	-moz-appearance: textfield;
}


@media (max-width: 991px) {
	h1, .h1 {
		font-size: 40px;
	}
	h2, .h2 {
		font-size: 34px;
	}
	h3, .h3 {
		font-size: 26px;
	}
	h4, .h4 {
		font-size: 18px;
	}
	h5, .h5 {
		font-size: 14px;
	}
}


.dynSyretaDiv {
	display: none;
}
.tmplSalesTimer {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}
.skip-link {
	position: absolute;
	top: -40px;
	left: 10px;
	background: #000;
	color: #fff;
	padding: 8px;
	text-decoration: none;
	z-index: -1;
}
.skip-link:focus {
	top: 10px;
	z-index: 1050;
}
.text-shadow {
	text-shadow: 2px 3px 7px var(--text-dark);
}

[data-bs-dismiss] {
	cursor: pointer;
}

.tmplFourIcons .h3 {
	overflow-wrap: break-word;
}

/* =========================
   UNIVERSAL TILE HOVER FX
   ========================= */

.imgEntry {
	position: relative;
	overflow: hidden;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	transform: translateZ(0);
	transition: transform 0.6s ease,
				box-shadow 0.6s ease,
				filter 0.6s ease;
}

/* Mindesthoehe nur falls noetig */
.imgEntry {
	min-height: 260px;
}

/* Dunkles Overlay */
.imgEntry::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0);
	transition: background 0.45s ease;
	z-index: 1;
}

/* Subtiles Premium-Light */
.imgEntry::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 50% 35%,
		rgba(255,255,255,0.12),
		rgba(255,255,255,0.0) 55%
	);
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: 1;
}

/* Text immer Ueber allem */
.imgEntry .text {
	position: relative;
	z-index: 2;

	transform: scale(1);
	opacity: 0.95;
	transition: transform 0.45s ease,
				opacity 0.45s ease,
				letter-spacing 0.45s ease;
}

/* ðŸ”¥ HOVER-EFFEKT */
.imgEntry:hover {
	transform: scale(1.03);
	box-shadow: 0 18px 45px rgba(0,0,0,0.35);
	filter: saturate(1.05) contrast(1.05);
}

.imgEntry:hover::before {
	background: rgba(0,0,0,0.38);
}

.imgEntry:hover::after {
	opacity: 1;
}

.imgEntry:hover .text {
	transform: scale(1.08);
	opacity: 1;
	letter-spacing: 0.5px;
}

/* Touch-Geraete: kein sticky hover */
@media (hover: none) {
	.imgEntry:hover {
		transform: none;
		box-shadow: none;
		filter: none;
	}

	.imgEntry:hover::before,
	.imgEntry:hover::after {
		opacity: 0;
		background: rgba(0,0,0,0);
	}

	.imgEntry:hover .text {
		transform: none;
		letter-spacing: 0;
	}
}

.filterEntry div.inner.men::after {
	content: "\f078";
	color: var(--text-dark);
	font-family: 'Font Awesome 4';
	font-weight: 100;
	font-size: 16px;
	width: 12px;
	height: 12px;
	justify-content: center;
	align-items: center;
}

.tmplMKBestellugen .mkBestellungTable {
	min-width: 540px;
}

body {
	background-color: white;
}