/**
 * MDT — Modern single product page.
 * Loaded only on is_product() pages.
 */

/* -------------------------------------------------------------------------
   Page shell: full-width matching archive gutter
   ------------------------------------------------------------------------- */

body.mdt-pdp-page .shoptimizer-archive > .col-full,
body.mdt-pdp-page #primary.content-area,
body.mdt-pdp-page #main.site-main {
	max-width: none !important;
	width: 100% !important;
	float: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}

body.mdt-pdp-page .shoptimizer-archive > .col-full {
	padding-left: var(--mdt-archive-gutter, clamp(1.25rem, 3vw, 3.5rem)) !important;
	padding-right: var(--mdt-archive-gutter, clamp(1.25rem, 3vw, 3.5rem)) !important;
}

/* Shoptimizer pulls .content-area left by -1em on mobile — cancel it so the
   gutter is respected */
@media (max-width: 992px) {
	body.mdt-pdp-page .single-product .content-area {
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	body.mdt-pdp-page .shoptimizer-archive > .col-full {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

body.mdt-pdp-page .shoptimizer-archive {
	padding-top: 0 !important;
}

body.mdt-pdp-page #content.site-content {
	padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

body.mdt-pdp-page .archive-header {
	display: none !important;
}

/* -------------------------------------------------------------------------
   Hero grid: gallery | summary
   ------------------------------------------------------------------------- */

.mdt-pdp {
	width: 100%;
}

.mdt-pdp__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	grid-template-areas: "gallery summary";
	column-gap: clamp(2rem, 4vw, 4rem);
	row-gap: 0;
	align-items: start;
	padding: clamp(1.5rem, 2.5vw, 2.25rem) 0 0;
}

.mdt-pdp__breadcrumbs {
	margin: 0 0 0.5rem;
	padding: 0;
	min-height: 0;
	min-width: 0;
	max-width: 100%;
	display: flex;
	align-items: center;
	font-size: 0.8125rem;
	line-height: 1.35;
	color: #777;
}

.mdt-pdp__breadcrumbs .woocommerce-breadcrumb {
	display: block;
	margin: 0 !important;
	max-width: 100% !important;
	padding: 0 !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (min-width: 993px) {
	body.mdt-pdp-page .mdt-pdp__breadcrumbs .woocommerce-breadcrumb {
		padding-top: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

.mdt-pdp__breadcrumbs a {
	color: #777;
	text-decoration: none;
}

.mdt-pdp__breadcrumbs a:hover {
	color: var(--mdt-black, #111);
}

.mdt-pdp__breadcrumbs .breadcrumb-separator {
	color: #bbb;
	padding: 0 0.2rem;
}

.mdt-pdp__gallery {
	grid-area: gallery;
	position: sticky;
	top: 1.5rem;
	min-width: 0;
	max-width: 100%;
}

.mdt-pdp__summary {
	grid-area: summary;
	min-width: 0;
	max-width: 100%;
	overflow-wrap: break-word;
	word-break: break-word;
}

.mdt-pdp .product-details-wrapper {
	display: contents;
}

/* Kill Shoptimizer floats — gallery keeps position:relative for thumbs/nav */
body.mdt-pdp-page .product .summary.entry-summary,
body.mdt-pdp-page .pdp-g-regular .product .summary {
	float: none !important;
	width: 100% !important;
	position: static !important;
	clear: none !important;
}

body.mdt-pdp-page .product .woocommerce-product-gallery,
body.mdt-pdp-page .product .images,
body.mdt-pdp-page .pdp-g-regular .product .woocommerce-product-gallery,
body.mdt-pdp-page .pdp-g-regular .product .images {
	float: none !important;
	width: 100% !important;
	position: relative !important;
	clear: none !important;
}

body.mdt-pdp-page .product-details-wrapper {
	overflow: visible !important;
	padding-bottom: 0 !important;
}

/* -------------------------------------------------------------------------
   Gallery — thumbnails LEFT as an absolute column.
   CRITICAL: we do NOT set display:flex on the gallery or override the
   flex-viewport / wrapper / slide inline styles. FlexSlider controls those
   via JS (inline widths + translate3d). We only reserve a left gutter on the
   gallery and float the thumbnail <ol> into it absolutely, so the slider's
   own measurement of the viewport stays correct and image swapping works.
   ------------------------------------------------------------------------- */

.mdt-pdp .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	position: relative !important;
	background: #f9f9f9 !important;
	border-radius: 14px;
	/* reserve space on the left for the thumbnail column */
	padding-left: 92px;
	box-sizing: border-box;
	overflow: visible; /* don't clip thumbnail borders */
}

/* Main image viewport — leave flexslider in full control, just round it */
.mdt-pdp .woocommerce-product-gallery .flex-viewport {
	border-radius: 14px;
	overflow: hidden;
	background: #f9f9f9;
	padding: clamp(0.75rem, 2vw, 1.25rem) 0;
	box-sizing: border-box;
}

.mdt-pdp .woocommerce-product-gallery .woocommerce-product-gallery__image img {
	max-height: clamp(300px, 42vw, 520px);
	width: 100%;
	object-fit: contain;
	background: #f9f9f9;
	display: block;
}

/* Gallery prev/next arrows — scope to the main image column, not full width */
.mdt-pdp .woocommerce-product-gallery ul.flex-direction-nav {
	left: 92px !important;
	width: calc(100% - 92px) !important;
	margin-top: 0 !important;
	top: 50% !important;
	transform: translateY(-50%);
	box-sizing: border-box;
	padding: 0 0.5rem;
}

.mdt-pdp .woocommerce-product-gallery:hover a.flex-prev:before {
	left: 0.25rem !important;
	opacity: 1;
}

.mdt-pdp .woocommerce-product-gallery:hover a.flex-next:after {
	right: 0.25rem !important;
	opacity: 1;
}

/* Thumbnail column — absolutely positioned in the reserved left gutter */
.mdt-pdp .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
	position: absolute;
	top: 8px;
	left: 8px;
	bottom: 8px;
	width: 76px;
	margin: 0 !important;
	padding: 2px !important; /* room so the active border isn't clipped */
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
	overflow-y: auto;
	list-style: none !important;
	z-index: 4;
	/* hide scrollbar cosmetically */
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.mdt-pdp .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
	width: 0 !important;
	height: 0 !important;
	display: none !important;
}

.mdt-pdp .flex-control-thumbs li {
	width: 64px !important;
	height: 64px !important;
	flex: 0 0 64px !important;
	margin: 0 !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
	border: 2px solid transparent !important;
	background: #fff;
	transition: border-color 0.15s !important;
	cursor: pointer;
}

.mdt-pdp .flex-control-thumbs li img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 6px !important;
	opacity: 1 !important;
	margin: 0 !important;
}

/* Active / hover thumbnail frame */
.mdt-pdp .flex-control-thumbs li:hover,
.mdt-pdp .flex-control-thumbs li:has(img.flex-active) {
	border-color: #111 !important;
}

.mdt-pdp .flex-control-thumbs li img.flex-active {
	border: 0 !important;
}

/* Zoom trigger — top-right of main image */
.mdt-pdp .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 5;
}

/* -------------------------------------------------------------------------
   Summary column
   ------------------------------------------------------------------------- */

.mdt-pdp__summary {
	width: 100% !important;
	float: none !important;
	min-width: 0;
	padding-top: 0;
}

/* Brand logo */
.mdt-pdp__summary .df-brand-wrapper {
	margin-bottom: 0.65rem;
}

.mdt-pdp__summary .brand-logo,
.mdt-pdp__summary .df-brand-logo {
	display: block;
	max-height: 50px;
	width: auto;
	object-fit: contain;
	opacity: 0.85;
}

.mdt-pdp__summary .brand-logo img,
.mdt-pdp__summary .df-brand-wrapper img {
	max-height: 50px;
	width: auto;
	object-fit: contain;
	opacity: 0.85;
}

/* Title */
.mdt-pdp__summary .product_title.entry-title {
	font-size: clamp(1.375rem, 2.2vw, 1.875rem) !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	color: #111 !important;
	margin: 0 0 0.65rem !important;
}

/* Star rating */
.mdt-pdp__summary .woocommerce-product-rating {
	margin-bottom: 0.65rem;
}

/* Price — gold, with gray inkl.MwSt. suffix */
.mdt-pdp__summary .price {
	font-size: clamp(1.5rem, 2.2vw, 2rem) !important;
	font-weight: 800 !important;
	color: var(--mdt-gold, #d9b54a) !important;
	display: flex !important;
	align-items: baseline !important;
	flex-wrap: wrap !important;
	gap: 0.5rem !important;
	margin: 0 0 0.75rem !important;
	line-height: 1.2;
}

.mdt-pdp__summary .price del {
	font-size: 0.7em !important;
	font-weight: 500;
	color: #aaa !important;
}

.mdt-pdp__summary .price ins {
	text-decoration: none !important;
	color: var(--mdt-gold, #d9b54a) !important;
}

/* "inkl. MwSt." suffix — small gray */
.mdt-pdp__summary .woocommerce-price-suffix {
	font-size: 0.75rem !important;
	font-weight: 400 !important;
	color: #888 !important;
	display: inline !important;
}

/* Short description — no separator line */
.mdt-pdp__summary .woocommerce-product-details__short-description {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #444;
	margin-bottom: 1.25rem;
	padding-bottom: 0;
	border-bottom: 0;
}

.mdt-pdp__summary .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

/* Stock / delivery — one compact row: ● vorrätig | 2–4 Werktage */
.mdt-pdp__summary .df-stock-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 0.65rem;
	margin-bottom: 1rem;
}

.mdt-pdp__summary .df-stock {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
}

/* No duplicate dot — plugin already renders .df-dot--green */
.mdt-pdp__summary .df-stock--in::before {
	display: none !important;
}

.mdt-pdp__summary .df-delivery-time {
	margin: 0;
	font-size: 0.8125rem;
	color: #666;
}

.mdt-pdp__summary .df-delivery-time::before {
	content: "|";
	margin-right: 0.65rem;
	color: #ccc;
	font-weight: 400;
}

/* -------------------------------------------------------------------------
   Variations — stacked: label on top, full-width select, reset link
   (matches reference, no inline cramming)
   ------------------------------------------------------------------------- */

.mdt-pdp__summary table.variations,
.mdt-pdp__summary table.variations tbody,
.mdt-pdp__summary table.variations tr,
.mdt-pdp__summary table.variations td,
.mdt-pdp__summary table.variations th {
	display: block !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

.mdt-pdp__summary table.variations {
	margin-bottom: 1rem !important;
}

.mdt-pdp__summary table.variations tr {
	margin-bottom: 0.85rem !important;
}

.mdt-pdp__summary table.variations .label label {
	display: block;
	font-weight: 700;
	font-size: 0.9375rem;
	color: #222;
	margin-bottom: 0.4rem;
}

.mdt-pdp__summary table.variations .value {
	display: block !important;
}

.mdt-pdp__summary table.variations select {
	width: 100% !important;
	min-height: 48px;
	padding: 0.5rem 2.25rem 0.5rem 0.9rem !important;
	border: 1.5px solid #ddd !important;
	border-radius: 10px !important;
	font-size: 0.95rem !important;
	background-color: #fff !important;
	margin: 0 !important;
}

.mdt-pdp__summary table.variations select:focus {
	outline: none;
	border-color: #111 !important;
}

.mdt-pdp__summary .reset_variations {
	display: inline-block;
	margin: 0.5rem 0 0 !important;
	font-size: 0.8125rem;
	color: var(--mdt-gold, #d9b54a);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Hide variation price duplicate (price already shown at top) */
.mdt-pdp__summary .single_variation .price {
	display: none !important;
}

/* Hide variant description text that appears after selecting a weight etc. */
.mdt-pdp__summary .woocommerce-variation-description {
	display: none !important;
}

/* -------------------------------------------------------------------------
   Add to cart — qty + gold button on one clean row
   Scope flex to the row container (works for simple & variable products).
   The <form> itself stays a normal block so the variations table & wrap
   are NOT turned into flex items.
   ------------------------------------------------------------------------- */

.mdt-pdp__summary form.cart {
	display: block;
	margin-bottom: 1.25rem;
}

/* The actual qty + button row (simple products; not gift cards) */
.mdt-pdp__summary form.cart:not(.variations_form):not(:has(.wps_wgm_added_wrapper)),
.mdt-pdp__summary .woocommerce-variation-add-to-cart {
	display: flex !important;
	align-items: stretch;
	gap: 0.65rem;
	flex-wrap: nowrap;
	width: 100%;
	padding: 0 !important;
	margin: 0 !important;
}

/* Shoptimizer clearfix pseudo-elements become flex items and push qty right */
.mdt-pdp__summary .woocommerce-variation-add-to-cart::before,
.mdt-pdp__summary .woocommerce-variation-add-to-cart::after,
.mdt-pdp__summary form.cart::before,
.mdt-pdp__summary form.cart::after {
	display: none !important;
	content: none !important;
}

.mdt-pdp__summary .single_variation_wrap {
	padding: 0 !important;
	margin: 0 !important;
}

/* Qty stepper: [ − ] [ 1 ] [ + ] — horizontal, industry-standard UX */
.mdt-pdp__summary .quantity {
	position: relative;
	flex: 0 0 auto;
	display: flex !important;
	flex-direction: row !important;
	align-items: stretch;
	height: 50px;
	margin: 0 !important;
	float: none !important;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.mdt-pdp__summary .quantity input.qty {
	order: 2;
	flex: 0 0 44px;
	width: 44px !important;
	height: 100% !important;
	min-height: 0 !important;
	text-align: center;
	border: 0 !important;
	border-left: 1.5px solid #ddd !important;
	border-right: 1.5px solid #ddd !important;
	border-radius: 0 !important;
	font-size: 1rem;
	font-weight: 600;
	padding: 0 !important;
	background: transparent !important;
	-moz-appearance: textfield;
	-webkit-appearance: none;
	appearance: none;
}

.mdt-pdp__summary .quantity input.qty::-webkit-outer-spin-button,
.mdt-pdp__summary .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Flatten nav wrapper so minus/input/plus are direct flex children */
.mdt-pdp__summary .quantity .quantity-nav {
	display: contents !important;
}

.mdt-pdp__summary .quantity .quantity-button {
	order: 1;
	flex: 0 0 40px;
	width: 40px !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: #f6f6f6 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.12s;
	position: static !important;
}

.mdt-pdp__summary .quantity .quantity-button.quantity-up {
	order: 3;
}

.mdt-pdp__summary .quantity .quantity-button.quantity-down {
	order: 1;
}

.mdt-pdp__summary .quantity .quantity-button:hover {
	background: #ececec !important;
}

.mdt-pdp__summary .quantity .quantity-button:before {
	-webkit-mask-image: none !important;
	mask-image: none !important;
	background: none !important;
	width: auto !important;
	height: auto !important;
	position: static !important;
	transform: none !important;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #333;
}

.mdt-pdp__summary .quantity .quantity-button.quantity-up:before {
	content: "+" !important;
}

.mdt-pdp__summary .quantity .quantity-button.quantity-down:before {
	content: "\2212" !important;
}

/* Button: gold bg, WHITE text; hover BLACK bg, WHITE text.
   High specificity + !important to beat Shoptimizer green + customizer rules. */
.mdt-pdp__summary form.cart .single_add_to_cart_button,
.mdt-pdp__summary .single_add_to_cart_button.button,
.mdt-pdp__summary .woocommerce-variation-add-to-cart .single_add_to_cart_button {
	flex: 1 1 auto;
	width: auto !important;
	min-height: 50px;
	height: 50px;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: var(--mdt-gold, #d9b54a) !important;
	background-color: var(--mdt-gold, #d9b54a) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 10px !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: 0.01em;
	padding: 0 1.75rem !important;
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s, transform 0.1s;
	text-transform: none !important;
	white-space: nowrap;
	float: none !important;
}

.mdt-pdp__summary form.cart .single_add_to_cart_button:hover,
.mdt-pdp__summary .single_add_to_cart_button.button:hover,
.mdt-pdp__summary .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
	background: #111 !important;
	background-color: #111 !important;
	color: #fff !important;
}

.mdt-pdp__summary .single_add_to_cart_button.button:active {
	transform: scale(0.98);
}

/* Shoptimizer offsets the added-check ::before with top:4px — center it in our flex button */
.mdt-pdp__summary .single_add_to_cart_button.button.added::before {
	position: static !important;
	top: auto !important;
	display: inline-block !important;
	width: 18px !important;
	height: 18px !important;
	margin: 0 0.5rem 0 0 !important;
	flex-shrink: 0;
	vertical-align: middle;
}

/* -------------------------------------------------------------------------
   "Deine Vorteile" — clean icon list, no background on icons
   ------------------------------------------------------------------------- */

.mdt-pdp-benefits {
	margin-top: 2em;
	margin-bottom: 2rem;
	padding: 20px;
	border: 1px solid lightgrey;
	border-radius: 14px;
}

.mdt-pdp-benefits__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.mdt-pdp-benefits__item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #333;
	line-height: 1.35;
}

/* Plain black icon, no background circle */
.mdt-pdp-benefits__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.mdt-pdp-benefits__icon svg {
	width: 18px;
	height: 18px;
	stroke: #111;
	color: #111;
}

/* Payment icons: see mdt-payment-icons.css */

/* Hide old plain widget */
.mdt-pdp__summary .product-widget {
	display: none !important;
}

/* Hide call-back button (removed via PHP, but belt+suspenders) */
.mdt-pdp__summary .call-back-feature {
	display: none !important;
}

/* -------------------------------------------------------------------------
   Tabs — single underline, no gold duplicate
   Use Shoptimizer's ::after but override color to black.
   Remove our own border-bottom to avoid the double line.
   ------------------------------------------------------------------------- */

.mdt-pdp__below {
	margin-top: clamp(2rem, 4vw, 3rem);
}

/* Kill Shoptimizer's centered 1170px max-width so tabs + panel
   align flush-left with the rest of the page */
.mdt-pdp .woocommerce-tabs.wc-tabs-wrapper,
.mdt-pdp .woocommerce-tabs .woocommerce-Tabs-panel,
.mdt-pdp .related.products,
.mdt-pdp .upsells.products {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.mdt-pdp .woocommerce-tabs.wc-tabs-wrapper {
	border-top: 0 !important;
	margin-bottom: 0;
}

.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs {
	display: flex !important;
	gap: 0 !important;
	flex-wrap: wrap;
	padding: 0 !important;
	padding-top: 0 !important;
	margin: 0 !important;
	text-align: left !important;
	border-bottom: 2px solid #e8e8e8 !important;
	background: none !important;
	list-style: none !important;
}

.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs::before {
	display: none !important;
}

.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li {
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline-block !important;
	position: relative !important;
}

.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li a {
	display: block !important;
	padding: 0.65rem 1.25rem 0.75rem !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	color: #888 !important;
	text-decoration: none !important;
	border-bottom: none !important; /* no direct border — Shoptimizer ::after handles it */
	margin-bottom: 0 !important;
	transition: color 0.15s !important;
}

/* Shoptimizer animated underline — override to black */
.mdt-pdp .woocommerce-tabs .tabs li a:after {
	border-bottom-color: #111 !important;
}

.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li.active a {
	color: #111 !important;
}

.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li a:hover {
	color: #111 !important;
}

/* Tab panels — left aligned, no centering */
.mdt-pdp .woocommerce-tabs .woocommerce-Tabs-panel {
	border: 0 !important;
	padding: 1.5rem 0 !important;
	background: none !important;
	text-align: left !important;
}

.mdt-pdp .woocommerce-tabs .woocommerce-Tabs-panel h2 {
	display: none !important;
}

/* Long description tab — full HTML in DOM; collapsed state is visual only (SEO-safe). */
.mdt-pdp-description--collapsible.is-collapsed .mdt-pdp-description__content {
	max-height: 26.25rem;
	overflow: hidden;
}

.mdt-pdp-description__fade {
	display: none;
}

.mdt-pdp-description--collapsible.is-collapsed .mdt-pdp-description__fade {
	display: block;
	position: relative;
	z-index: 1;
	margin-top: -4.5rem;
	height: 4.5rem;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%);
}

.mdt-pdp-description__toggle {
	display: inline-flex;
	align-items: center;
	margin-top: 0.75rem;
	padding: 0;
	border: 0;
	background: none;
	color: var(--mdt-gold, #d9b54a);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.mdt-pdp-description__toggle:hover {
	color: #111;
}

.mdt-pdp-description__toggle:focus-visible {
	outline: 2px solid var(--mdt-gold, #d9b54a);
	outline-offset: 3px;
}

/* Review count badge — subtle, not a gold circle */
.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li a span {
	position: static !important;
	display: inline !important;
	width: auto !important;
	height: auto !important;
	line-height: 1 !important;
	background: none !important;
	color: #aaa !important;
	font-size: 0.85em !important;
	font-weight: 600 !important;
	border-radius: 0 !important;
	margin-left: 0.25rem;
}

.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li a span::before { content: "("; }
.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li a span::after  { content: ")"; }

/* Reviews — flush left, clean */
.mdt-pdp #reviews,
.mdt-pdp #comments,
.mdt-pdp #review_form_wrapper,
.mdt-pdp #respond.comment-respond {
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	max-width: 720px;
}

.mdt-pdp .woocommerce-Reviews-title,
.mdt-pdp #reviews #comments h2 {
	display: block !important;
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	margin-bottom: 1rem !important;
}

.mdt-pdp .comment-reply-title {
	font-size: 1rem !important;
	font-weight: 600 !important;
	display: block;
	margin-bottom: 0.75rem;
}

.mdt-pdp #respond .comment-form-rating,
.mdt-pdp #respond .comment-form-comment,
.mdt-pdp #respond .comment-form-author,
.mdt-pdp #respond .comment-form-email {
	margin-bottom: 1rem;
}

.mdt-pdp #respond textarea {
	border: 1.5px solid #ddd;
	border-radius: 10px;
	padding: 0.75rem;
	width: 100%;
}

.mdt-pdp #respond .submit,
.mdt-pdp #respond input[type="submit"] {
	background: var(--mdt-gold, #d9b54a) !important;
	color: #111 !important;
	border: 0 !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	padding: 0.65rem 1.75rem !important;
	text-transform: none !important;
}

/* -------------------------------------------------------------------------
   Related / upsells — same card grid as archives (no Shoptimizer PLP carousel)
   ------------------------------------------------------------------------- */

/* Shoptimizer stretches content-area past viewport on mobile PDP */
body.mdt-pdp-page .content-area {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
}

.mdt-pdp .related-wrapper {
	margin-top: 0;
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	border-top: 1px solid #ebebeb;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.mdt-pdp .related.products,
.mdt-pdp .upsells.products {
	width: 100%;
	max-width: 100%;
}

.mdt-pdp .related.products h2,
.mdt-pdp .upsells.products h2 {
	font-size: clamp(1.125rem, 1.8vw, 1.5rem) !important;
	font-weight: 700 !important;
	color: #111;
	margin-bottom: 1.25rem;
}

.mdt-pdp .related.products ul.products,
.mdt-pdp .upsells.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	column-gap: 12px !important;
	row-gap: 12px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	box-sizing: border-box !important;
}

.mdt-pdp .related.products ul.products li.product,
.mdt-pdp .upsells.products ul.products li.product {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	list-style: none !important;
}

/* Fallback when carousel markup is still present (cached HTML, etc.) */
.mdt-pdp .related.products .shoptimizer-plp-carousel-container,
.mdt-pdp .upsells.products .shoptimizer-plp-carousel-container {
	display: block !important;
	overflow: hidden !important;
	width: 100% !important;
	height: auto !important;
	scroll-snap-type: none !important;
}

.mdt-pdp .related.products .shoptimizer-plp-image-wrapper,
.mdt-pdp .upsells.products .shoptimizer-plp-image-wrapper {
	display: block !important;
	width: 100% !important;
	height: auto !important;
}

.mdt-pdp .related.products .gallery-image,
.mdt-pdp .upsells.products .gallery-image,
.mdt-pdp .related.products .shoptimizer-plp-carousel--pagination,
.mdt-pdp .upsells.products .shoptimizer-plp-carousel--pagination {
	display: none !important;
}

.mdt-pdp .related.products .woocommerce-image__wrapper img,
.mdt-pdp .upsells.products .woocommerce-image__wrapper img {
	position: relative !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	flex-shrink: 1 !important;
}

@media (max-width: 1100px) and (min-width: 993px) {
	.mdt-pdp .related.products ul.products,
	.mdt-pdp .upsells.products ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

/* Override Shoptimizer product-carousel.css (flex + min-width:320px per card) */
@media (max-width: 992px) {
	.mdt-pdp .related.products ul.products,
	.mdt-pdp .upsells.products ul.products {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		column-gap: 20px !important;
		row-gap: 20px !important;
		overflow: visible !important;
		width: 100% !important;
		margin-left: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.mdt-pdp .related.products ul.products li.product,
	.mdt-pdp .upsells.products ul.products li.product {
		display: flex !important;
		flex-direction: column !important;
		min-width: 0 !important;
		max-width: 100% !important;
		scroll-snap-align: unset !important;
	}

	/* 2×2 grid — hide 5th card on mobile */
	.mdt-pdp .related.products ul.products li.product:nth-child(n + 5),
	.mdt-pdp .upsells.products ul.products li.product:nth-child(n + 5) {
		display: none !important;
	}
}

/* Product meta (SKU, categories, brand) — no full-bleed line */
.mdt-pdp .product_meta {
	width: 100% !important;
	max-width: 100% !important;
	position: static !important;
	left: auto !important;
	right: auto !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-align: left !important;
}

.mdt-pdp .product_meta:has(span) {
	border-top: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0.85rem !important;
}

/* -------------------------------------------------------------------------
   Sale badge
   ------------------------------------------------------------------------- */

.mdt-pdp .mdt-pdp__summary .onsale {
	position: static !important;
	top: auto !important;
	left: auto !important;
	display: inline-flex !important;
	align-items: center;
	width: auto !important;
	min-height: 0 !important;
	margin: 0 0 0.75rem !important;
	padding: 0.3rem 0.7rem !important;
	background: #3bb54a !important;
	color: #fff !important;
	border-radius: 100px !important;
	font-size: 0.6875rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.2 !important;
	box-shadow: none !important;
}

/* Shoptimizer adds a second %-bubble in summary — hide on PDP */
.mdt-pdp .mdt-pdp__summary .product-label.sale-item {
	display: none !important;
}

.mdt-pdp .mdt-pdp__summary .product_title.entry-title {
	margin-top: 0 !important;
}

/* -------------------------------------------------------------------------
   Mobile (≤768px)
   ------------------------------------------------------------------------- */

@media (max-width: 768px) {
	.mdt-pdp__hero {
		grid-template-areas: "gallery" "summary";
		grid-template-columns: 1fr;
		row-gap: 1rem;
		column-gap: 0;
		min-width: 0;
		padding-top: 0.75rem;
	}

	.mdt-pdp__breadcrumbs {
		font-size: 0.75rem;
		margin-bottom: 0.4rem;
	}

	.mdt-pdp__gallery {
		position: static;
		overflow: hidden;
	}

	.mdt-pdp .woocommerce-product-gallery {
		padding-left: 0 !important;
		max-width: 100%;
		overflow: hidden;
	}

	.mdt-pdp .woocommerce-product-gallery .woocommerce-product-gallery__image img,
	.mdt-pdp .woocommerce-product-gallery img.zoomImg {
		max-width: 100% !important;
	}

	.mdt-pdp .woocommerce-product-gallery ul.flex-direction-nav {
		left: 0 !important;
		width: 100% !important;
	}

	.mdt-pdp .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
		position: static !important;
		flex-direction: row !important;
		width: 100% !important;
		height: auto !important;
		margin-top: 0.5rem !important;
		padding: 0 0.85rem 0.85rem !important;
		border-radius: 0 0 14px 14px !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		gap: 0.5rem !important;
		box-sizing: border-box !important;
	}

	.mdt-pdp .woocommerce-product-gallery .flex-viewport {
		padding-left: 0.85rem !important;
		padding-right: 0.85rem !important;
	}

	.mdt-pdp .flex-control-thumbs li {
		width: 56px !important;
		height: 56px !important;
		flex: 0 0 56px !important;
	}

	.mdt-pdp__summary .product_title.entry-title {
		font-size: 1.375rem !important;
	}

	.mdt-pdp__summary .price {
		font-size: 1.5rem !important;
		margin-bottom: 1rem !important;
	}

	.mdt-pdp__summary .woocommerce-product-details__short-description {
		margin-top: 0.35rem;
	}

	.mdt-pdp .woocommerce-tabs ul.tabs.wc-tabs li a {
		padding: 0.5rem 0.85rem 0.6rem !important;
		font-size: 0.875rem !important;
	}
}

/* -------------------------------------------------------------------------
   Mobile sticky add-to-cart (≤992px)
   ------------------------------------------------------------------------- */

.mdt-pdp-sticky-atc {
	display: none;
}

@media (max-width: 992px) {
	.mdt-pdp-sticky-atc {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 95;
		padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
		background: #fff;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
		transform: translateY(110%);
		transition: transform 0.25s ease;
		pointer-events: none;
	}

	.mdt-pdp-sticky-atc.is-visible {
		transform: translateY(0);
		pointer-events: auto;
	}

	.mdt-pdp-sticky-atc__inner {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		max-width: 100%;
	}

	.mdt-pdp-sticky-atc__meta {
		flex: 1 1 auto;
		min-width: 0;
	}

	.mdt-pdp-sticky-atc__title {
		margin: 0 0 0.15rem;
		font-size: 0.75rem;
		font-weight: 600;
		line-height: 1.2;
		color: #666;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.mdt-pdp-sticky-atc__price {
		font-size: 1rem;
		font-weight: 800;
		line-height: 1.1;
		color: var(--mdt-black, #111);
	}

	.mdt-pdp-sticky-atc__price del {
		font-size: 0.8125rem;
		font-weight: 500;
		opacity: 0.65;
	}

	.mdt-pdp-sticky-atc__price ins {
		text-decoration: none;
	}

	.mdt-pdp-sticky-atc__button {
		flex: 0 0 auto;
		min-width: 9.5rem;
		min-height: 46px;
		margin: 0;
		padding: 0 1.25rem;
		border: 0;
		border-radius: 10px;
		background: var(--mdt-gold, #d9b54a);
		color: #fff;
		font-size: 0.9375rem;
		font-weight: 700;
		line-height: 1;
		cursor: pointer;
		white-space: nowrap;
	}

	.mdt-pdp-sticky-atc__button:active {
		transform: scale(0.98);
	}
}

/* CookieYes revisit widget overlaps sticky ATC (title left, CTA right). */
body.single-product .cky-btn-revisit-wrapper {
	display: none !important;
}

/* -------------------------------------------------------------------------
   Trust block — shop benefits before related products
   ------------------------------------------------------------------------- */

.mdt-pdp-trust {
	margin: 1.25rem 0 2.25rem;
	padding: 0;
}

.mdt-pdp-trust__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.mdt-pdp-trust__inner {
	display: flex;
	align-items: flex-start;
	gap: 1.125rem;
	height: 100%;
	padding: 1.125rem 1.25rem;
	border: 1px solid #e8e8e8;
	border-left: 3px solid var(--mdt-gold, #d9b54a);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
	box-sizing: border-box;
}

.mdt-pdp-trust__media {
	flex: 0 0 auto;
}

.mdt-pdp-trust__photo {
	display: block;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center top;
	border: 2px solid #f3f3f3;
}

.mdt-pdp-trust__body {
	flex: 1 1 auto;
	min-width: 0;
}

.mdt-pdp-trust__title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: #111;
}

.mdt-pdp-trust__lead {
	margin: 0 0 0.65rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #444;
}

.mdt-pdp-trust__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mdt-pdp-trust__list li {
	position: relative;
	margin: 0 0 0.4rem;
	padding-left: 1.25rem;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #333;
}

.mdt-pdp-trust__list li:last-child {
	margin-bottom: 0;
}

.mdt-pdp-trust__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 0.875rem;
	height: 0.875rem;
	background-color: var(--mdt-gold, #d9b54a);
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.5 5.5L8.2 14.8 4 10.6' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.5 5.5L8.2 14.8 4 10.6' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
}

.mdt-pdp-trust__link {
	margin-left: 0.2rem;
	color: #111;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.mdt-pdp-trust__link:hover {
	color: var(--mdt-gold, #d9b54a);
}

.mdt-pdp-trust__advisor {
	position: relative;
	display: flex;
	overflow: hidden;
	min-height: 100%;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	background: #111;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
	isolation: isolate;
}

.mdt-pdp-trust__advisor-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mdt-pdp-trust__advisor::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.72) 58%, rgba(17, 17, 17, 0.92) 100%);
	z-index: 1;
}

.mdt-pdp-trust__advisor-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.35rem;
	width: 100%;
	min-height: 100%;
	padding: 1.125rem 1.25rem;
	box-sizing: border-box;
}

.mdt-pdp-trust__advisor-kicker {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdt-gold, #d9b54a);
}

.mdt-pdp-trust__advisor-title {
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
}

.mdt-pdp-trust__advisor-text {
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.mdt-pdp-trust__advisor-cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-top: 0.35rem;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: var(--mdt-gold, #d9b54a);
	color: #111;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
}

.mdt-pdp-trust__advisor:hover .mdt-pdp-trust__advisor-cta,
.mdt-pdp-trust__advisor:focus-visible .mdt-pdp-trust__advisor-cta {
	background: #fff;
}

.mdt-pdp-trust__advisor:focus-visible {
	outline: 2px solid var(--mdt-gold, #d9b54a);
	outline-offset: 2px;
}

@media (max-width: 900px) {
	.mdt-pdp-trust__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.mdt-pdp-trust__inner {
		padding: 1rem;
		gap: 0.875rem;
	}

	.mdt-pdp-trust__photo {
		width: 68px;
		height: 68px;
	}

	.mdt-pdp-trust__lead {
		font-size: 0.8125rem;
	}
}

/* -------------------------------------------------------------------------
   Gift card products (woo-gift-cards-lite / wgm_gift_card)
   ------------------------------------------------------------------------- */

body.postid-12821 .mdt-pdp__summary form.cart,
body.product-type-wgm_gift_card .mdt-pdp__summary form.cart {
	display: block !important;
	margin-bottom: 1.25rem;
}

body.postid-12821 .mdt-pdp__summary .wps_wgm_added_wrapper,
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgm_added_wrapper {
	width: 100%;
	margin-bottom: 0.85rem;
}

body.postid-12821 .mdt-pdp__summary .wps_wgm_section,
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgm_section {
	margin: 0 0 0.85rem;
}

body.postid-12821 .mdt-pdp__summary .wps_wgc_label,
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgc_label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 700;
	font-size: 0.9375rem;
	color: #222;
	text-transform: none;
}

/* Price dropdown label — override Loco/plugin wording */
body.postid-12821 .wps_wgm_added_wrapper .wps_wgc_label:first-of-type,
body.product-type-wgm_gift_card .wps_wgm_added_wrapper .wps_wgc_label:first-of-type {
	font-size: 0 !important;
	line-height: 0;
	color: transparent !important;
}

body.postid-12821 .wps_wgm_added_wrapper .wps_wgc_label:first-of-type::after,
body.product-type-wgm_gift_card .wps_wgm_added_wrapper .wps_wgc_label:first-of-type::after {
	content: "Gutscheinbetrag wählen";
	display: block;
	font-size: 0.9375rem;
	line-height: 1.4;
	font-weight: 700;
	color: #222;
	text-transform: none;
}

body.postid-12821 .mdt-pdp__summary .wps_wgm_section input[type="text"],
body.postid-12821 .mdt-pdp__summary .wps_wgm_section select,
body.postid-12821 .mdt-pdp__summary .wps_wgm_section textarea,
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgm_section input[type="text"],
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgm_section select,
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgm_section textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.55rem 0.9rem;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	font-size: 0.95rem;
	background: #fff;
	box-sizing: border-box;
}

body.postid-12821 .mdt-pdp__summary .wps_wgm_section textarea,
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgm_section textarea {
	min-height: 96px;
	resize: vertical;
}

body.postid-12821 .mdt-pdp__summary .wps_wgm_message_length,
body.product-type-wgm_gift_card .mdt-pdp__summary .wps_wgm_message_length {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	color: #888;
}

body.postid-12821 .mdt-pdp__summary .mwg_wgm_preview_email,
body.product-type-wgm_gift_card .mdt-pdp__summary .mwg_wgm_preview_email {
	display: block;
	width: 100%;
	margin-top: 0.75rem;
}

body.postid-12821 .mdt-pdp__summary .mwg_wgm_preview_email a,
body.postid-12821 .mdt-pdp__summary #mwg_wgm_preview_email,
body.product-type-wgm_gift_card .mdt-pdp__summary .mwg_wgm_preview_email a,
body.product-type-wgm_gift_card .mdt-pdp__summary #mwg_wgm_preview_email {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0.75rem 1.25rem;
	border: 0;
	border-radius: 10px;
	background: #111 !important;
	color: #fff !important;
	font-size: 0.9375rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	text-transform: none;
	box-sizing: border-box;
	cursor: pointer;
}

body.postid-12821 .mdt-pdp__summary .mwg_wgm_preview_email a:hover,
body.postid-12821 .mdt-pdp__summary .mwg_wgm_preview_email a:focus,
body.postid-12821 .mdt-pdp__summary #mwg_wgm_preview_email:hover,
body.postid-12821 .mdt-pdp__summary #mwg_wgm_preview_email:focus,
body.product-type-wgm_gift_card .mdt-pdp__summary .mwg_wgm_preview_email a:hover,
body.product-type-wgm_gift_card .mdt-pdp__summary .mwg_wgm_preview_email a:focus,
body.product-type-wgm_gift_card .mdt-pdp__summary #mwg_wgm_preview_email:hover,
body.product-type-wgm_gift_card .mdt-pdp__summary #mwg_wgm_preview_email:focus {
	background: #333 !important;
	color: #fff !important;
	outline: none;
}

body.postid-12821 .mdt-pdp__summary .mdt-pdp-gc-atc-row,
body.product-type-wgm_gift_card .mdt-pdp__summary .mdt-pdp-gc-atc-row {
	display: flex;
	align-items: stretch;
	gap: 0.65rem;
	width: 100%;
}

body.postid-12821 .mdt-pdp__summary .mdt-pdp-gc-atc-row .single_add_to_cart_button,
body.product-type-wgm_gift_card .mdt-pdp__summary .mdt-pdp-gc-atc-row .single_add_to_cart_button {
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
}

body.postid-12821 .woocommerce-product-gallery .wps_wgm_wrapper_for_preview,
body.product-type-wgm_gift_card .woocommerce-product-gallery .wps_wgm_wrapper_for_preview {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #444;
}

body.postid-12821 .woocommerce-product-gallery .wps_wgm_wrapper_for_preview h2,
body.product-type-wgm_gift_card .woocommerce-product-gallery .wps_wgm_wrapper_for_preview h2 {
	font-size: 1rem;
	margin: 0 0 0.5rem;
	color: #111;
}

body.postid-12821 .woocommerce-product-gallery .wps_wgm_wrapper_for_preview p,
body.product-type-wgm_gift_card .woocommerce-product-gallery .wps_wgm_wrapper_for_preview p {
	margin: 0 0 0.35rem;
}

/* Darts Geschenkgutschein (ID 12821) — no stock/delivery row */
body.postid-12821 .mdt-pdp__summary .df-stock-wrapper,
body.postid-12821 .mdt-pdp__summary .df-delivery-time {
	display: none !important;
}
