body.thps-design-v2 {
	margin: 0;
	color: var(--thps-v2-ink);
	background: var(--thps-v2-cream);
	font-family: var(--thps-v2-font-body);
}

body.thps-design-v2.thps-v2-menu-open {
	overflow: hidden;
}

body.thps-design-v2 .thps-v2-shell-width {
	width: var(--thps-v2-shell-width);
	max-width: none;
	margin-inline: auto;
}

body.thps-design-v2 #masthead:not(.thps-v2-site-header),
body.thps-design-v2 .site-header:not(.thps-v2-site-header),
body.thps-design-v2 header.site-header:not(.thps-v2-site-header),
body.thps-design-v2 #colophon:not(.thps-v2-site-footer),
body.thps-design-v2 .site-footer:not(.thps-v2-site-footer),
body.thps-design-v2 footer.site-footer:not(.thps-v2-site-footer) {
	display: none !important;
}

.thps-v2-screen-reader,
.thps-v2-skip-link:not(:focus) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.thps-v2-skip-link:focus {
	position: fixed;
	top: calc(var(--thps-v2-admin-offset) + 10px);
	left: 12px;
	z-index: 1000005;
	padding: 12px 18px;
	background: var(--thps-v2-orange);
	color: var(--thps-v2-white);
	font: 700 15px/1.2 var(--thps-v2-font-body);
	text-decoration: none;
}

.thps-v2-site-header,
.thps-v2-site-header * {
	box-sizing: border-box;
}

.thps-v2-site-header {
	position: sticky;
	top: var(--thps-v2-admin-offset);
	z-index: 100000;
	width: 100%;
	background: rgba(255, 254, 248, 0.98);
	box-shadow: var(--thps-v2-shadow-sm);
	color: var(--thps-v2-forest);
	font-family: var(--thps-v2-font-body);
	backdrop-filter: blur(12px);
}

.thps-v2-advice-line {
	position: relative;
	display: flex;
	max-height: 38px;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 7px 20px;
	overflow: hidden;
	background: var(--thps-v2-forest);
	color: var(--thps-v2-white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-align: center;
	transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.2s ease;
}

.thps-v2-store-status {
	display: inline-flex;
	min-height: 24px;
	align-items: center;
	gap: 7px;
	padding: 3px 9px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 999px;
	color: var(--thps-v2-white);
	font-size: 11px;
	letter-spacing: 0.025em;
	text-decoration: none;
	white-space: nowrap;
}

.thps-v2-store-status i {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #9ca692;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.thps-v2-store-status.is-open i {
	background: #70d37b;
	box-shadow: 0 0 0 3px rgba(112, 211, 123, 0.18);
	transform-origin: center;
	animation: thps-v2-store-open-pulse 2.2s ease-in-out infinite;
}

.thps-v2-store-status.is-closed i {
	background: #f0a06a;
	animation: none;
	transform: none;
}

@keyframes thps-v2-store-open-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(112, 211, 123, 0.16);
		transform: scale(0.94);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(112, 211, 123, 0.07);
		transform: scale(1.08);
	}
}

/* The shell also owns search and navigation on V2 public routes, where the
 * legacy site-fixes stylesheet is intentionally dequeued. Keep the shared
 * product status fully visible there as well. */
body.thps-design-v2 .thps-availability {
	display: inline-flex;
	max-width: 100%;
	align-items: center;
	gap: 0.48rem;
	color: var(--thps-v2-forest);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
}

body.thps-design-v2 .thps-availability__dot {
	display: block;
	width: 0.58rem;
	height: 0.58rem;
	flex: 0 0 0.58rem;
	border-radius: 50%;
	background: var(--thps-v2-orange);
	box-shadow: 0 0 0 0.22rem rgba(196, 93, 34, 0.12);
}

body.thps-design-v2 .thps-availability--available .thps-availability__dot {
	background: #3f8b4a;
	box-shadow: 0 0 0 0.2rem rgba(63, 139, 74, 0.14);
	animation: thps-availability-pulse 2.4s ease-in-out infinite;
}

body.thps-design-v2 .thps-availability--request .thps-availability__dot,
body.thps-design-v2 .thps-availability--unavailable .thps-availability__dot {
	background: var(--thps-v2-orange);
	animation: none;
}

body.thps-design-v2 .thps-availability--request .thps-availability__label,
body.thps-design-v2 .thps-availability--unavailable .thps-availability__label {
	color: #a84c1b;
}

@keyframes thps-availability-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0.18rem rgba(63, 139, 74, 0.14);
		transform: scale(0.94);
	}

	50% {
		box-shadow: 0 0 0 0.4rem rgba(63, 139, 74, 0.07);
		transform: scale(1.1);
	}
}

.thps-v2-store-status:hover,
.thps-v2-store-status:focus-visible {
	border-color: var(--thps-v2-orange);
	color: #fff;
}

.thps-v2-masthead {
	display: grid;
	grid-template-columns: 112px minmax(300px, 660px) 1fr;
	min-height: 110px;
	align-items: center;
	gap: clamp(22px, 3vw, 46px);
	transition: min-height 0.25s ease, gap 0.25s ease, padding 0.25s ease;
}

.thps-v2-brandmark {
	display: inline-flex;
	width: max-content;
	align-items: center;
	justify-content: center;
}

.thps-v2-brandmark img {
	display: block;
	width: 92px;
	height: 92px;
	object-fit: contain;
	transition: width 0.25s ease, height 0.25s ease;
}

.thps-v2-search {
	display: flex;
	min-width: 0;
	margin: 0;
	box-shadow: var(--thps-v2-shadow-sm);
}

.thps-v2-search input[type="search"] {
	width: 100%;
	min-width: 0;
	min-height: 52px;
	padding: 12px 18px;
	border: 1px solid var(--thps-v2-line);
	border-radius: 0;
	background: var(--thps-v2-white);
	box-shadow: none;
	color: var(--thps-v2-ink);
	font: 400 16px/1.3 var(--thps-v2-font-body);
	-webkit-appearance: none;
	appearance: none;
}

.thps-v2-search input[type="search"]:focus {
	border-color: var(--thps-v2-orange);
	outline: 2px solid color-mix(in srgb, var(--thps-v2-orange) 25%, transparent);
	outline-offset: 0;
}

.thps-v2-search button {
	display: grid;
	flex: 0 0 58px;
	min-height: 52px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--thps-v2-orange);
	border-radius: 0;
	background: var(--thps-v2-orange);
	box-shadow: none;
	color: var(--thps-v2-white);
	cursor: pointer;
}

.thps-v2-search button:hover,
.thps-v2-search button:focus-visible {
	border-color: var(--thps-v2-orange-dark);
	background: var(--thps-v2-orange-dark);
}

.thps-v2-search svg,
.thps-v2-mast-actions svg,
.thps-v2-instagram-link svg,
.thps-v2-footer-instagram-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.thps-v2-mast-actions {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(12px, 1.8vw, 28px);
}

.thps-v2-mast-actions a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 7px;
	color: var(--thps-v2-forest);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.015em;
	text-decoration: none;
	text-transform: uppercase;
}

.thps-v2-mast-actions a:hover,
.thps-v2-mast-actions a:focus-visible {
	color: var(--thps-v2-orange);
}

.thps-v2-action-icon {
	display: block;
	width: 30px;
	height: 23px;
	flex: 0 0 auto;
	object-fit: contain;
}

.thps-v2-cart-count {
	display: inline-grid;
	min-width: 26px;
	height: 26px;
	place-items: center;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--thps-v2-green);
	color: var(--thps-v2-white);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.thps-v2-menu-toggle,
.thps-v2-mobile-cart,
.thps-v2-mobile-nav-head,
.thps-v2-search--mobile,
.thps-v2-mobile-account-links,
.thps-v2-nav-backdrop {
	display: none;
}

.thps-v2-mobile-cart svg,
.thps-v2-mobile-account-links svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.thps-v2-nav-layer {
	border-top: 1px solid var(--thps-v2-line);
}

.thps-v2-primary-nav {
	width: 100%;
}

.thps-v2-primary-nav__list {
	display: flex;
	width: var(--thps-v2-shell-width);
	max-width: none;
	align-items: stretch;
	justify-content: center;
	gap: 0;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.thps-v2-primary-nav__list > li {
	position: relative;
	margin: 0;
	padding: 0;
}

.thps-v2-primary-nav__list a {
	display: flex;
	min-height: 50px;
	align-items: center;
	padding: 12px clamp(9px, 1.15vw, 21px);
	color: var(--thps-v2-forest);
	font-size: 15px;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: padding 0.25s ease, background-color 0.2s ease, color 0.2s ease;
}

.thps-v2-primary-nav__list a > .thps-v2-menu-icon {
	display: block;
	width: 28px;
	height: 21px;
	flex: 0 0 auto;
	object-fit: contain;
}

.thps-v2-primary-nav__list a:has(> .thps-v2-menu-icon) {
	gap: 0.35rem;
}

/* Keep the multi-colour target recognisable. Treating it like the restrained
 * rectangular navigation illustrations made its dark rings disappear. */
.thps-v2-primary-nav__list a > .thps-v2-menu-icon--volltreffer {
	width: 24px;
	height: 24px;
	aspect-ratio: 1;
	filter: drop-shadow(0 1px 2px rgba(8, 20, 7, 0.28));
}

.thps-v2-menu-volltreffer > a {
	display: inline-flex !important;
	align-items: center;
	gap: 0.42rem;
}

.thps-v2-menu-volltreffer > a img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex: 0 0 auto;
}

.thps-v2-primary-nav__list a:hover,
.thps-v2-primary-nav__list a:focus-visible,
.thps-v2-primary-nav__list .current-menu-item > a,
.thps-v2-primary-nav__list .current-menu-ancestor > a {
	background: #efe8d7;
	box-shadow: inset 0 -3px var(--thps-v2-orange);
	color: var(--thps-v2-orange);
}

.thps-v2-primary-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 4;
	display: none;
	min-width: 240px;
	margin: 0;
	padding: 8px;
	border-top: 3px solid var(--thps-v2-orange);
	background: var(--thps-v2-paper);
	box-shadow: var(--thps-v2-shadow-lg);
	list-style: none;
}

.thps-v2-primary-nav__list li:hover > .sub-menu,
.thps-v2-primary-nav__list li:focus-within > .sub-menu {
	display: block;
}

.thps-v2-primary-nav__list .sub-menu a {
	min-height: 42px;
	padding: 9px 12px;
	white-space: normal;
}

/* Approved grouped navigation. One semantic details structure becomes a
 * desktop mega menu and the mobile accordion, so both variants share URLs. */
.thps-v2-nav-icon-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.thps-v2-primary-nav {
	position: relative;
}

.thps-v2-grouped-nav {
	display: flex;
	width: var(--thps-v2-shell-width);
	min-width: 0;
	align-items: stretch;
	margin-inline: auto;
}

.thps-v2-grouped-nav__groups {
	display: flex;
	min-width: 0;
	align-items: stretch;
}

.thps-v2-nav-group {
	position: static;
	margin: 0;
}

.thps-v2-nav-group > summary {
	display: flex;
	min-height: 52px;
	align-items: center;
	gap: clamp(4px, 0.45vw, 8px);
	padding: 12px clamp(5px, 0.65vw, 12px);
	color: var(--thps-v2-forest);
	cursor: pointer;
	font-size: clamp(14px, 1.05vw, 16px);
	font-weight: 700;
	line-height: 1.2;
	list-style: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.thps-v2-nav-group > summary::-webkit-details-marker {
	display: none;
}

.thps-v2-nav-group > summary::marker {
	content: "";
}

.thps-v2-nav-group__label {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: inherit;
}

.thps-v2-nav-icon {
	display: block;
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.thps-v2-nav-group__label .thps-v2-nav-icon {
	color: #5e7159;
}

.thps-v2-nav-group__chevron {
	width: 10px;
	height: 7px;
	flex: 0 0 auto;
	fill: none;
	stroke: var(--thps-v2-orange-dark);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	transition: transform 0.2s ease;
}

.thps-v2-nav-group[open] > summary,
.thps-v2-nav-group > summary:hover,
.thps-v2-nav-group > summary:focus-visible {
	background: var(--thps-v2-cream);
	color: var(--thps-v2-orange-dark);
	outline: none;
}

.thps-v2-nav-group > summary:focus-visible {
	box-shadow: inset 0 0 0 3px var(--thps-v2-orange-dark);
}

.thps-v2-nav-group[open] > summary .thps-v2-nav-icon,
.thps-v2-nav-group > summary:hover .thps-v2-nav-icon,
.thps-v2-nav-group > summary:focus-visible .thps-v2-nav-icon {
	color: currentColor;
}

.thps-v2-nav-group[open] > summary .thps-v2-nav-group__chevron {
	transform: rotate(180deg);
}

.thps-v2-mega-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 5;
	display: grid;
	width: var(--thps-v2-shell-width);
	max-width: none;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	border-top: 4px solid var(--thps-v2-orange-dark);
	background: var(--thps-v2-line);
	box-shadow: var(--thps-v2-shadow-lg);
	transform: translateX(-50%);
}

.thps-v2-mega-menu--3 {
	width: min(66rem, var(--thps-v2-shell-width));
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.thps-v2-mega-menu--2 {
	width: min(46rem, var(--thps-v2-shell-width));
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.thps-v2-mega-menu__section {
	min-width: 0;
	padding: clamp(22px, 2.1vw, 34px);
	background: var(--thps-v2-white);
}

.thps-v2-mega-menu__section h2 {
	margin: 0 0 13px;
	color: var(--thps-v2-forest);
	font: 700 19px/1.2 var(--thps-v2-font-display);
}

.thps-v2-mega-menu__section p {
	margin: 0 0 12px;
	color: var(--thps-v2-muted);
	font-size: 14px;
	line-height: 1.5;
}

.thps-v2-mega-menu__section ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.thps-v2-mega-menu__section li {
	margin: 0;
}

.thps-v2-mega-menu__section a {
	display: block;
	padding: 7px 0;
	color: #42503f;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
}

.thps-v2-mega-menu__section a:hover,
.thps-v2-mega-menu__section a:focus-visible {
	color: var(--thps-v2-orange-dark);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.thps-v2-mega-menu__section a:focus-visible {
	outline: 2px solid var(--thps-v2-orange-dark);
	outline-offset: 3px;
}

.thps-v2-mega-menu__section--feature {
	background: var(--thps-v2-forest-deep);
	color: var(--thps-v2-white);
}

.thps-v2-mega-menu__section--feature h2,
.thps-v2-mega-menu__section--feature p {
	color: var(--thps-v2-white);
}

.thps-v2-mega-menu__section--feature a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	margin-top: 5px;
	padding: 10px 14px;
	background: var(--thps-v2-orange-dark);
	color: var(--thps-v2-white);
	font-weight: 700;
}

.thps-v2-mega-menu__section--feature a:hover,
.thps-v2-mega-menu__section--feature a:focus-visible {
	background: var(--thps-v2-white);
	color: var(--thps-v2-forest-deep);
}

.thps-v2-volltreffer-cta {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	align-self: center;
	gap: 8px;
	margin-left: auto;
	padding: 10px 14px;
	border: 1px solid var(--thps-v2-orange-dark);
	background: var(--thps-v2-orange-dark);
	box-shadow: 0 8px 22px rgba(169, 71, 22, 0.24);
	color: var(--thps-v2-white);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.thps-v2-volltreffer-cta .thps-v2-nav-icon {
	width: 21px;
	height: 21px;
	flex-basis: 21px;
}

.thps-v2-volltreffer-cta:hover,
.thps-v2-volltreffer-cta:focus-visible {
	border-color: var(--thps-v2-forest-deep);
	background: var(--thps-v2-forest-deep);
	box-shadow: 0 10px 26px rgba(20, 39, 18, 0.28);
	color: var(--thps-v2-white);
	outline: 3px solid var(--thps-v2-orange-dark);
	outline-offset: 2px;
	transform: translateY(-1px);
}

.thps-v2-volltreffer-cta__mobile {
	display: none;
}

.thps-v2-site-header.thps-v2-is-compact .thps-v2-nav-group > summary {
	min-height: 44px;
	padding-block: 9px;
}

.thps-v2-site-header.thps-v2-is-compact .thps-v2-advice-line {
	max-height: 0;
	padding-block: 0;
	opacity: 0;
}

.thps-v2-site-header.thps-v2-is-compact .thps-v2-masthead {
	min-height: 72px;
}

.thps-v2-site-header.thps-v2-is-compact .thps-v2-brandmark img {
	width: 58px;
	height: 58px;
}

.thps-v2-site-header.thps-v2-is-compact .thps-v2-primary-nav__list a {
	min-height: 44px;
	padding-block: 9px;
}

.thps-v2-site-footer,
.thps-v2-site-footer * {
	box-sizing: border-box;
}

.thps-v2-site-footer {
	position: relative;
	z-index: 2;
	width: 100%;
	color: #f7f4e7;
	font-family: var(--thps-v2-font-body);
}

.thps-v2-footer-main {
	position: relative;
	isolation: isolate;
	padding: clamp(56px, 7vw, 96px) 0;
	overflow: hidden;
	background-color: #43532e;
	background-image: linear-gradient(90deg, rgba(37, 53, 28, 0.68), rgba(55, 67, 36, 0.58)), url("../../../assets/th-swarovski-z6i-hochsitz.jpg");
	background-position: 55% 20%;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
}

@media (max-width: 767px) {
	.thps-v2-footer-main {
		background-image: linear-gradient(90deg, rgba(37, 53, 28, 0.68), rgba(55, 67, 36, 0.58)), url("../../../assets/th-swarovski-z6i-hochsitz.jpg");
	}
}

.thps-v2-footer-columns {
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1fr) minmax(320px, 1.15fr);
	gap: clamp(42px, 7vw, 110px);
}

.thps-v2-footer-columns section {
	min-width: 0;
}

.thps-v2-footer-rule {
	display: block;
	width: 28px;
	height: 3px;
	margin-bottom: 15px;
	background: var(--thps-v2-green);
}

.thps-v2-footer-columns h2 {
	margin: 0 0 20px;
	color: var(--thps-v2-white);
	font: 700 clamp(22px, 2vw, 29px)/1.1 var(--thps-v2-font-display);
}

.thps-v2-footer-columns ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.thps-v2-footer-columns li + li {
	margin-top: 6px;
}

.thps-v2-footer-columns a {
	color: #faf7ec;
	text-decoration: none;
}

.thps-v2-footer-columns a:has(.thps-v2-footer-link-icon) {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.thps-v2-footer-link-icon {
	display: block;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(94%) sepia(18%) saturate(308%) hue-rotate(350deg) brightness(103%) contrast(91%) drop-shadow(0 1px 1px rgba(8, 20, 7, 0.35));
}

.thps-v2-footer-link-icon--volltreffer {
	width: 24px;
	height: 24px;
	flex-basis: 24px;
	border-radius: 50%;
	filter: drop-shadow(0 1px 2px rgba(8, 20, 7, 0.48));
}

.thps-v2-footer-columns a:hover .thps-v2-footer-link-icon,
.thps-v2-footer-columns a:focus-visible .thps-v2-footer-link-icon {
	filter: brightness(0) saturate(100%) invert(68%) sepia(36%) saturate(1006%) hue-rotate(334deg) brightness(100%) contrast(91%);
}

.thps-v2-footer-columns a:hover .thps-v2-footer-link-icon--volltreffer,
.thps-v2-footer-columns a:focus-visible .thps-v2-footer-link-icon--volltreffer {
	filter: drop-shadow(0 1px 2px rgba(8, 20, 7, 0.48));
}

.thps-v2-footer-columns a:hover,
.thps-v2-footer-columns a:focus-visible {
	color: #f4a674;
}

.thps-v2-footer-columns address {
	display: grid;
	gap: 9px;
	font-style: normal;
}

.thps-v2-footer-contact-line {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 8px;
	align-items: center;
}

.thps-v2-footer-contact-line img {
	display: block;
	width: 28px;
	height: 22px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(94%) sepia(18%) saturate(308%) hue-rotate(350deg) brightness(103%) contrast(91%);
}

.thps-v2-footer-columns p {
	max-width: 560px;
	margin: 0 0 18px;
	color: #f4f0e0;
	font-size: 17px;
	line-height: 1.55;
}

.thps-v2-instagram-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.thps-v2-instagram-link svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.thps-v2-footer-credit-row {
	display: flex;
	justify-content: flex-end;
	padding-top: clamp(28px, 4vw, 48px);
}

.thps-v2-footer-brand {
	background: var(--thps-v2-forest);
}

.thps-v2-footer-brand__inner {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr) minmax(170px, auto);
	min-height: 150px;
	align-items: center;
	gap: 30px;
}

.thps-v2-footer-brand img {
	display: block;
	width: 92px;
	height: 92px;
	object-fit: contain;
}

.thps-v2-footer-brand__inner > div {
	display: grid;
	gap: 4px;
	text-align: center;
}

.thps-v2-footer-brand__inner strong {
	font-size: 15px;
	letter-spacing: 0.02em;
}

.thps-v2-footer-brand__inner span {
	color: #d9dacb;
	font-size: 13px;
}

.thps-v2-ankerweb-credit {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #ececdd;
	text-decoration: none;
	opacity: 0.88;
	transition: opacity 160ms ease, color 160ms ease;
}

.thps-v2-ankerweb-credit img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.thps-v2-ankerweb-credit span {
	color: inherit;
	font-size: 11px;
	letter-spacing: 0.025em;
}

.thps-v2-ankerweb-credit b {
	color: #e56839;
	font-size: 13px;
}

.thps-v2-ankerweb-credit:hover,
.thps-v2-ankerweb-credit:focus-visible {
	color: #fff;
	opacity: 1;
}

.thps-v2-footer-instagram-icon {
	display: inline-flex;
	justify-self: end;
	min-height: 48px;
	align-items: center;
	gap: 10px;
	color: var(--thps-v2-white);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.thps-v2-footer-instagram-icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.thps-v2-footer-instagram-icon:hover,
.thps-v2-footer-instagram-icon:focus-visible {
	color: #f4a674;
}

.thps-v2-footer-legal {
	border-top: 1px solid rgba(245, 241, 223, 0.14);
	background: var(--thps-v2-forest-deep);
}

.thps-v2-footer-legal nav {
	display: flex;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px 20px;
	padding-block: 12px;
}

.thps-v2-report-error-link {
	min-height: 36px;
	padding: 7px 11px;
	border: 1px solid var(--thps-v2-orange);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #fff;
	font: 700 13px/1.2 var(--thps-v2-font-body);
	cursor: pointer;
}

.thps-v2-report-error-link:hover,
.thps-v2-report-error-link:focus-visible {
	background: var(--thps-v2-orange);
	color: #fff;
}

.thps-v2-report-dialog {
	width: min(620px, calc(100% - 28px));
	max-width: none;
	max-height: min(820px, calc(100dvh - 28px));
	padding: 0;
	border: 0;
	background: var(--thps-v2-paper);
	box-shadow: var(--thps-v2-shadow-lg);
	color: var(--thps-v2-ink);
}

.thps-v2-report-dialog::backdrop {
	background: rgba(12, 24, 11, 0.68);
	backdrop-filter: blur(3px);
}

.thps-v2-report-dialog form {
	display: grid;
	gap: 18px;
	padding: clamp(22px, 5vw, 40px);
}

.thps-v2-report-dialog header {
	position: relative;
	padding-right: 48px;
}

.thps-v2-report-dialog header > span {
	color: var(--thps-v2-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.thps-v2-report-dialog h2 {
	margin: 7px 0 0;
	color: var(--thps-v2-forest);
	font: 700 clamp(30px, 5vw, 43px)/1.05 var(--thps-v2-font-display);
}

.thps-v2-report-dialog header button {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--thps-v2-line);
	background: transparent;
	color: var(--thps-v2-forest);
	font: 400 30px/1 var(--thps-v2-font-body);
	cursor: pointer;
}

.thps-v2-report-dialog p {
	margin: 0;
	color: var(--thps-v2-muted);
	font-size: 16px;
	line-height: 1.55;
}

.thps-v2-report-dialog label:not(.thps-v2-report-consent) {
	display: grid;
	gap: 7px;
	color: var(--thps-v2-forest);
	font-weight: 700;
}

.thps-v2-report-dialog input[type="email"],
.thps-v2-report-dialog select,
.thps-v2-report-dialog textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid var(--thps-v2-line);
	border-radius: 0;
	background: #fff;
	color: var(--thps-v2-ink);
	font: 400 16px/1.4 var(--thps-v2-font-body);
}

.thps-v2-report-dialog textarea {
	min-height: 126px;
	resize: vertical;
}

.thps-v2-report-consent {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 10px;
	align-items: start;
	font-size: 14px;
	line-height: 1.45;
}

.thps-v2-report-consent input {
	width: 20px;
	height: 20px;
	margin: 1px 0 0;
}

.thps-v2-report-dialog form > div:last-child {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.thps-v2-report-cancel,
.thps-v2-report-submit {
	min-height: 48px;
	padding: 12px 18px;
	border-radius: 0;
	font: 700 14px/1.2 var(--thps-v2-font-body);
	cursor: pointer;
}

.thps-v2-report-cancel {
	border: 1px solid var(--thps-v2-line);
	background: transparent;
	color: var(--thps-v2-forest);
}

.thps-v2-report-submit {
	border: 1px solid var(--thps-v2-forest);
	background: var(--thps-v2-forest);
	color: #fff;
}

.thps-v2-report-honeypot {
	position: absolute !important;
	left: -10000px !important;
}

.thps-v2-report-toast {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 100002;
	max-width: min(390px, calc(100% - 32px));
	padding: 14px 18px;
	background: var(--thps-v2-forest);
	box-shadow: var(--thps-v2-shadow-lg);
	color: #fff;
}

.thps-v2-footer-legal a,
.thps-v2-footer-legal span {
	color: #d8d9cc;
	font-size: 12px;
	text-decoration: none;
}

.thps-v2-footer-legal a:hover,
.thps-v2-footer-legal a:focus-visible {
	color: #f4a674;
}

.thps-v2-footer-legal .thps-v2-revoke-link {
	padding: 8px 11px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: var(--thps-v2-white);
}

.thps-v2-loader {
	position: fixed;
	inset: 0;
	z-index: 1000004;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 18px;
	padding: 24px;
	background: rgba(245, 241, 223, 0.94);
	color: var(--thps-v2-forest);
	font: 700 15px/1.3 var(--thps-v2-font-body);
	letter-spacing: 0.025em;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.18s ease, visibility 0.18s ease;
}

.thps-v2-loader.thps-v2-is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.thps-v2-loader__mark {
	position: relative;
	display: grid;
	width: 108px;
	height: 108px;
	place-items: center;
}

.thps-v2-loader__ring {
	position: absolute;
	inset: 0;
	border: 3px solid rgba(32, 53, 26, 0.16);
	border-top-color: var(--thps-v2-orange);
	border-right-color: var(--thps-v2-green);
	border-radius: 50%;
	animation: thps-v2-spin 1.05s linear infinite;
}

.thps-v2-loader__mark img {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 72px;
	height: 72px;
	margin: 0;
	object-fit: contain;
	transform: translate(-50%, -50%);
}

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

@media (max-width: 1260px) {
	.thps-v2-masthead {
		grid-template-columns: 86px minmax(260px, 1fr) auto;
		gap: 20px;
	}

	.thps-v2-brandmark img {
		width: 72px;
		height: 72px;
	}

	.thps-v2-mast-actions a > span:not(.thps-v2-cart-count) {
		display: none;
	}

	.thps-v2-primary-nav__list a {
		padding-inline: 9px;
		font-size: 14px;
	}
}

@media (max-width: 1100px) {
	.thps-v2-footer-columns {
		grid-template-columns: 1fr 1fr;
	}

	.thps-v2-footer-columns section:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	body.admin-bar.thps-design-v2 {
		/* WordPress' mobile admin bar is absolute and already offsets the page.
		 * Never add a cached desktop bar height to the sticky header again. */
		--thps-v2-admin-offset: 0px !important;
	}
}

@media (max-width: 1160px) {
	.thps-v2-site-header,
	.thps-v2-site-header.thps-v2-is-compact {
		position: sticky;
		top: var(--thps-v2-admin-offset);
		width: 100%;
		max-width: 100vw;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.thps-v2-advice-line {
		min-height: 36px;
		max-height: none;
		padding: 6px 14px;
		opacity: 1;
		font-size: 11px;
		line-height: 1.25;
	}

	.thps-v2-advice-line > span {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.thps-v2-store-status {
		flex: 0 0 auto;
		padding-inline: 7px;
		font-size: 10px;
	}

	.thps-v2-masthead {
		grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
		grid-template-rows: auto auto;
		min-height: 0;
		gap: 8px 12px;
		padding-block: 8px 12px;
	}

	.thps-v2-brandmark {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
	}

	.thps-v2-brandmark img {
		width: 62px;
		height: 62px;
	}

	.thps-v2-search--desktop,
	.thps-v2-mast-actions {
		display: none;
	}

	.thps-v2-menu-toggle {
		grid-column: 1;
		grid-row: 1;
		display: inline-flex;
		min-height: 46px;
		align-items: center;
		gap: 9px;
		justify-self: start;
		padding: 8px 11px;
		border: 1px solid var(--thps-v2-forest);
		background: var(--thps-v2-forest);
		box-shadow: none;
		color: var(--thps-v2-cream);
		font: 700 15px/1 var(--thps-v2-font-body);
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	}

	.thps-v2-mobile-cart {
		position: relative;
		grid-column: 3;
		grid-row: 1;
		display: inline-flex;
		width: 46px;
		height: 46px;
		align-items: center;
		justify-content: center;
		justify-self: end;
		border: 1px solid color-mix(in srgb, var(--thps-v2-forest) 35%, transparent);
		background: var(--thps-v2-paper);
		color: var(--thps-v2-forest);
		text-decoration: none;
	}

	.thps-v2-mobile-cart .thps-v2-cart-count {
		position: absolute;
		top: -6px;
		right: -6px;
		min-width: 21px;
		height: 21px;
		padding-inline: 4px;
		font-size: 10px;
	}

	.thps-v2-menu-toggle:hover,
	.thps-v2-menu-toggle:focus-visible,
	.thps-v2-site-header.thps-v2-is-menu-open .thps-v2-menu-toggle {
		border-color: var(--thps-v2-orange);
		background: var(--thps-v2-forest-deep);
		color: var(--thps-v2-cream);
		outline: none;
	}

	.thps-v2-menu-toggle__icon {
		display: grid;
		gap: 4px;
	}

	.thps-v2-menu-toggle__icon i {
		display: block;
		width: 24px;
		height: 2px;
		background: var(--thps-v2-cream);
	}

	.thps-v2-masthead::after { display: none; }

	.thps-v2-search--mobile {
		grid-column: 1 / -1;
		grid-row: 2;
		display: flex;
		width: 100%;
		margin: 0;
		box-shadow: 0 4px 14px rgba(32, 53, 26, 0.09);
	}

	.thps-v2-search--mobile input[type="search"] {
		min-height: 50px;
		padding: 10px 14px;
		font-size: 16px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.thps-v2-search--mobile button {
		flex-basis: 54px;
		min-height: 50px;
	}

	.thps-v2-site-header.thps-v2-is-compact .thps-v2-advice-line {
		min-height: 0;
		max-height: 0;
		padding-block: 0;
		opacity: 0;
	}

	.thps-v2-site-header.thps-v2-is-compact .thps-v2-masthead {
		min-height: 0;
		gap: 5px 10px;
		padding-block: 4px 7px;
	}

	.thps-v2-site-header.thps-v2-is-compact .thps-v2-brandmark img {
		width: 48px;
		height: 48px;
	}

	.thps-v2-site-header.thps-v2-is-compact .thps-v2-menu-toggle {
		min-height: 42px;
		padding-block: 6px;
	}

	.thps-v2-site-header.thps-v2-is-compact .thps-v2-search--mobile input[type="search"],
	.thps-v2-site-header.thps-v2-is-compact .thps-v2-search--mobile button {
		min-height: 44px;
	}

	.thps-v2-nav-layer {
		position: fixed;
		inset: 0;
		z-index: 1000003;
		display: block;
		width: 100vw;
		max-width: 100vw;
		height: 100%;
		height: 100dvh;
		border: 0;
		overflow: hidden;
		pointer-events: none;
		visibility: hidden;
	}

	.thps-v2-nav-backdrop {
		position: absolute;
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgba(12, 24, 11, 0.58);
		opacity: 0;
		transition: opacity 0.22s ease;
	}

	.thps-v2-primary-nav {
		position: relative;
		display: flex;
		width: min(430px, 88vw);
		height: 100%;
		max-width: 100%;
		flex-direction: column;
		padding: 0 max(24px, env(safe-area-inset-right)) max(30px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
		overflow: auto;
		overscroll-behavior: contain;
		background: var(--thps-v2-paper);
		box-shadow: var(--thps-v2-shadow-lg);
		transform: translateX(-105%);
		transition: transform 0.24s ease;
	}

	.thps-v2-site-header.thps-v2-is-menu-open .thps-v2-nav-layer {
		pointer-events: auto;
		visibility: visible;
	}

	.thps-v2-site-header.thps-v2-is-menu-open .thps-v2-nav-backdrop {
		opacity: 1;
	}

	.thps-v2-site-header.thps-v2-is-menu-open .thps-v2-primary-nav {
		transform: translateX(0);
	}

	.thps-v2-mobile-nav-head {
		position: sticky;
		top: 0;
		z-index: 2;
		display: flex;
		min-height: 72px;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid var(--thps-v2-line);
		background: var(--thps-v2-paper);
	}

	.thps-v2-mobile-nav-head strong {
		font: 700 26px/1 var(--thps-v2-font-display);
	}

	.thps-v2-mobile-nav-head button {
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
		color: var(--thps-v2-forest);
		font: 400 34px/1 var(--thps-v2-font-body);
		cursor: pointer;
	}

	.thps-v2-primary-nav__list {
		display: block;
		width: 100%;
	}

	.thps-v2-primary-nav__list > li {
		border-bottom: 1px solid var(--thps-v2-line);
	}

	.thps-v2-primary-nav__list a,
	.thps-v2-site-header.thps-v2-is-compact .thps-v2-primary-nav__list a {
		min-height: 52px;
		padding: 13px 7px;
		font-size: 18px;
		white-space: normal;
	}

	.thps-v2-primary-nav__list a > .thps-v2-menu-icon {
		width: 34px;
		height: 26px;
	}

	.thps-v2-primary-nav__list a:has(> .thps-v2-menu-icon) {
		gap: 0.65rem;
	}

	.thps-v2-primary-nav__list a:hover,
	.thps-v2-primary-nav__list a:focus-visible,
	.thps-v2-primary-nav__list .current-menu-item > a,
	.thps-v2-primary-nav__list .current-menu-ancestor > a {
		padding-left: 13px;
		background: #f4ecdf;
		box-shadow: inset 4px 0 var(--thps-v2-orange);
	}

	.thps-v2-primary-nav__list .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 8px 16px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.thps-v2-primary-nav__list .sub-menu a {
		min-height: 42px;
		font-size: 15px;
	}

	.thps-v2-grouped-nav {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding-top: 16px;
	}

	.thps-v2-grouped-nav__groups {
		display: block;
		width: 100%;
	}

	.thps-v2-nav-group {
		width: 100%;
		border-bottom: 1px solid var(--thps-v2-line);
	}

	.thps-v2-nav-group > summary,
	.thps-v2-site-header.thps-v2-is-compact .thps-v2-nav-group > summary {
		min-height: 56px;
		justify-content: space-between;
		padding: 14px 4px;
		font-size: 18px;
		white-space: normal;
	}

	.thps-v2-nav-group__label {
		gap: 10px;
	}

	.thps-v2-nav-group__label .thps-v2-nav-icon {
		width: 22px;
		height: 22px;
		flex-basis: 22px;
	}

	.thps-v2-nav-group__chevron {
		width: 13px;
		height: 9px;
	}

	.thps-v2-mega-menu,
	.thps-v2-mega-menu--2,
	.thps-v2-mega-menu--3 {
		position: static;
		display: grid;
		width: 100%;
		max-width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1px;
		margin: 0 0 14px;
		border: 0;
		background: var(--thps-v2-line);
		box-shadow: none;
		transform: none;
	}

	.thps-v2-mega-menu__section {
		padding: 14px;
	}

	.thps-v2-mega-menu__section h2 {
		margin-bottom: 8px;
		font-size: 17px;
	}

	.thps-v2-mega-menu__section p {
		display: none;
	}

	.thps-v2-mega-menu__section a {
		display: flex;
		min-height: 44px;
		align-items: center;
		padding: 9px 0;
		font-size: 15px;
	}

	.thps-v2-mega-menu__section--feature a {
		display: flex;
		padding-inline: 12px;
	}

	.thps-v2-volltreffer-cta {
		order: -1;
		width: 100%;
		min-height: 52px;
		justify-content: center;
		margin: 0 0 14px;
		padding: 13px 16px;
		font-size: 18px;
	}

	.thps-v2-volltreffer-cta__desktop {
		display: none;
	}

	.thps-v2-volltreffer-cta__mobile {
		display: inline;
	}

	.thps-v2-mobile-account-links {
		display: grid;
		gap: 8px;
		margin-top: 24px;
	}

	.thps-v2-mobile-account-links a {
		display: flex;
		min-height: 46px;
		align-items: center;
		justify-content: space-between;
		padding: 10px 12px;
		border: 1px solid var(--thps-v2-line);
		color: var(--thps-v2-forest);
		font-weight: 700;
		text-decoration: none;
	}

	.thps-v2-mobile-account-links a > span:not(.thps-v2-cart-count) {
		margin-right: auto;
	}

	.thps-v2-mobile-account-links svg {
		flex: 0 0 23px;
		color: var(--thps-v2-orange);
	}

	.thps-v2-footer-main {
		background-attachment: scroll;
	}

	.thps-v2-footer-columns {
		grid-template-columns: 1fr 1fr;
	}

	.thps-v2-footer-columns section:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	:root {
		--thps-v2-shell-width: calc(100% - 30px);
	}

	.thps-v2-menu-toggle > span:last-child {
		display: none;
	}

	.thps-v2-menu-toggle {
		width: 46px;
		justify-content: center;
		padding-inline: 8px;
	}

	.thps-v2-advice-line {
		display: grid;
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 5px 9px 6px;
	}

	.thps-v2-advice-line > span {
		display: block;
		max-width: 100%;
		overflow: visible;
		font-size: 10px;
		line-height: 1.25;
		text-overflow: clip;
		white-space: normal;
	}

	.thps-v2-store-status {
		justify-self: center;
		min-height: 21px;
		padding: 2px 8px;
		font-size: 9px;
	}

	.thps-v2-store-status strong {
		font-size: 9px;
		line-height: 1.2;
	}

	.thps-v2-search--mobile input[type="search"] {
		padding-inline: 10px;
		font-size: clamp(12px, 3.55vw, 14px);
	}

	.thps-v2-footer-columns {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.thps-v2-footer-columns li + li {
		margin-top: 9px;
	}

	.thps-v2-footer-columns a:has(.thps-v2-footer-link-icon),
	.thps-v2-footer-contact-line {
		width: 100%;
		align-items: flex-start;
		gap: 11px;
	}

	.thps-v2-footer-columns a:has(.thps-v2-footer-link-icon) span,
	.thps-v2-footer-contact-line > :last-child {
		min-width: 0;
		line-height: 1.35;
		overflow-wrap: break-word;
	}

	.thps-v2-footer-columns section:last-child {
		grid-column: auto;
	}

	.thps-v2-footer-brand__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 14px;
		padding-block: 30px;
		text-align: center;
	}

	.thps-v2-footer-credit-row {
		justify-content: center;
		padding-top: 32px;
	}

	.thps-v2-footer-instagram-icon {
		justify-self: center;
	}

	.thps-v2-footer-legal nav {
		justify-content: flex-start;
		padding-block: 20px;
	}

	.thps-v2-report-dialog form > div:last-child {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 430px) {
	.thps-v2-mega-menu,
	.thps-v2-mega-menu--2,
	.thps-v2-mega-menu--3 {
		grid-template-columns: minmax(0, 1fr);
	}

	.thps-v2-mega-menu__section,
	.thps-v2-mega-menu__section a {
		min-width: 0;
		overflow-wrap: anywhere;
	}
}

/* Keep a fully populated desktop menu on one line. The artwork stays visible,
 * but becomes a restrained navigation cue until the wide desktop layout. */
@media (min-width: 1181px) {
	.thps-v2-primary-nav__list a,
	.thps-v2-site-header.thps-v2-is-compact .thps-v2-primary-nav__list a {
		padding-inline: 6px;
		font-size: 14px;
	}

	.thps-v2-primary-nav__list a > .thps-v2-menu-icon,
	.thps-v2-menu-volltreffer > a img {
		width: 20px;
		height: 15px;
	}

	.thps-v2-primary-nav__list a:has(> .thps-v2-menu-icon),
	.thps-v2-menu-volltreffer > a {
		gap: 0.22rem;
	}

	.thps-v2-primary-nav__list a > .thps-v2-menu-icon--volltreffer {
		width: 20px;
		height: 20px;
	}
}

/* On compact desktop widths, retain the larger, readable 14px labels while
 * reducing only the decorative artwork and lateral padding. This keeps the
 * complete navigation on one line without shrinking its text again. */
@media (min-width: 1181px) and (max-width: 1399px) {
	.thps-v2-primary-nav__list a,
	.thps-v2-site-header.thps-v2-is-compact .thps-v2-primary-nav__list a {
		padding-inline: 2px;
	}

	.thps-v2-primary-nav__list a > .thps-v2-menu-icon,
	.thps-v2-menu-volltreffer > a img {
		width: 14px;
		height: 12px;
	}

	.thps-v2-primary-nav__list a:has(> .thps-v2-menu-icon),
	.thps-v2-menu-volltreffer > a {
		gap: 0.1rem;
	}

	.thps-v2-primary-nav__list a > .thps-v2-menu-icon--volltreffer {
		width: 17px;
		height: 17px;
	}
}

@media (min-width: 1500px) {
	.thps-v2-primary-nav__list a,
	.thps-v2-site-header.thps-v2-is-compact .thps-v2-primary-nav__list a {
		padding-inline: 10px;
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.thps-v2-site-header *,
	.thps-v2-loader,
	.thps-v2-loader * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.thps-v2-store-status.is-open i {
		animation: none !important;
		transform: none;
	}

	body.thps-design-v2 .thps-availability--available .thps-availability__dot {
		animation: none !important;
		transform: none !important;
	}
}

@media print {
	.thps-v2-site-header,
	.thps-v2-site-footer,
	.thps-v2-loader,
	.thps-v2-skip-link {
		display: none !important;
	}
}
