/**
 * Strings Car Carousel — isolated styling layer for this widget only.
 * Swiper core rules are scoped under .scc-widget (no global swiper-bundle.min.css).
 */

/* --- Scoped Swiper core (widget-only; avoids height:100% leaking site-wide) --- */
.scc-widget .scc-swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block;
	touch-action: pan-y;
}

.scc-widget .scc-wrapper {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 1;
	display: flex;
	align-items: stretch;
	transition-property: transform;
	transition-timing-function: ease;
	box-sizing: content-box;
}

.scc-widget .scc-slide {
	flex-shrink: 0;
	position: relative;
	transition-property: transform;
	display: block;
}

.scc-widget .scc-pagination {
	position: static;
	text-align: center;
	transition: 0.3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.scc-widget .scc-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: #000;
	opacity: 0.35;
	margin: 0 4px;
	cursor: pointer;
	border: 0;
	padding: 0;
	box-shadow: none;
	appearance: none;
}

.scc-widget .scc-pagination-bullet-active {
	opacity: 1;
}

/* --- Widget layout --- */

.scc-widget {
	/* WoodMart thumb clip-path reads this; keep image corners square inside carousel */
	--wd-thumb-brd-radius: 0;
	--scc-card-w: 297px;
	--scc-gap: 29px;
	/* Room for card shadow + rounded corners inside overflow:hidden viewport */
	--scc-edge-gutter: 20px;
	--scc-track-triple: calc(3 * var(--scc-card-w) + 2 * var(--scc-gap));
	--scc-track-double: calc(2 * var(--scc-card-w) + var(--scc-gap));
	--scc-viewport-triple: calc(var(--scc-track-triple) + 2 * var(--scc-edge-gutter));
	--scc-viewport-double: calc(var(--scc-track-double) + 2 * var(--scc-edge-gutter));
	box-sizing: border-box;
	position: relative;
	width: 100%;
	padding: 0;
	background: transparent;
}

.scc-widget,
.scc-widget *,
.scc-widget *::before,
.scc-widget *::after {
	box-sizing: border-box;
}

.scc-widget .scc-title {
	margin: 0 0 16px;
	padding: 0 clamp(8px, 2vw, 16px);
	font-size: 1.25rem;
	line-height: 1.3;
}

.scc-widget .scc-inner {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding-left: 34px;
	padding-right: 34px;
	overflow: visible;
}

.scc-widget .scc-inner > .scc-swiper {
	flex: 0 1 auto;
	min-width: 0;
	overflow: hidden;
	align-self: stretch;
	padding: 12px var(--scc-edge-gutter) 18px;
	height: auto;
	max-height: none !important;
}

/* Viewport = track (cards + gaps) + side gutters; padding matches gutters (border-box) */
.scc-widget.scc-layout--triple .scc-inner > .scc-swiper {
	flex: 0 1 var(--scc-viewport-triple);
	max-width: var(--scc-viewport-triple);
	width: var(--scc-viewport-triple);
}

.scc-widget.scc-layout--double .scc-inner > .scc-swiper {
	flex: 0 1 var(--scc-viewport-double);
	max-width: var(--scc-viewport-double);
	width: var(--scc-viewport-double);
}

.scc-widget.scc-layout--peek .scc-inner > .scc-swiper {
	flex: 1 1 100%;
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.scc-widget .scc-wrapper {
	max-height: none !important;
}

.scc-widget .scc-slide {
	display: flex;
	flex-direction: column;
	width: var(--scc-card-w);
	height: auto;
	align-self: stretch;
	margin: 0;
	padding: 0;
	max-height: none !important;
	flex-shrink: 0;
}

.scc-widget .scc-card-shell {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.scc-widget .scc-card-shell > .product,
.scc-widget .scc-card-shell > .wd-product,
.scc-widget .scc-card-shell > .product-grid-item {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	margin: 0;
	max-height: none !important;
}

.scc-widget .scc-card-shell .product-wrapper,
.scc-widget .strings-carousel-card--fallback {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	width: var(--scc-card-w);
	min-height: 456px;
	height: 456px;
	max-height: 456px;
	background: #fff;
	border-radius: 30px !important;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.11);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border:1px solid #C5C5C5;

}

.scc-widget.scc-layout--triple .scc-card-shell .product-wrapper,
.scc-widget.scc-layout--double .scc-card-shell .product-wrapper,
.scc-widget.scc-layout--triple .scc-card-shell .strings-carousel-card--fallback,
.scc-widget.scc-layout--double .scc-card-shell .strings-carousel-card--fallback {
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.scc-widget.scc-layout--triple .scc-card-shell .product-wrapper:hover,
.scc-widget.scc-layout--double .scc-card-shell .product-wrapper:hover {
	transform: translateY(-8px);
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.scc-widget .scc-card-shell .product-element-top,
.scc-widget .scc-card-shell .product-image-link,
.scc-widget .scc-card-shell .wd-product-grid-slider,
.scc-widget .scc-card-shell .wd-product-grid-slider.wd-fill {
	overflow: hidden;
	border-radius: 0 !important;
	clip-path: none !important;
	-webkit-clip-path: none !important;
}

/* WoodMart desktop: clip-path inset(... round var(--wd-thumb-brd-radius)) on .product-element-top */
@media (min-width: 1025px) {
	.scc-widget .scc-card-shell .wd-product.wd-hover-buttons-on-hover .product-element-top,
	.scc-widget .scc-card-shell .wd-product .product-element-top,
	.scc-widget .scc-card-shell .product-element-top {
		clip-path: none !important;
		-webkit-clip-path: none !important;
		border-radius: 0 !important;
		transition: none !important;
	}
}

.scc-widget .scc-card-shell .product-element-top {
	flex: 1 1 auto;
	min-height: 0;
}

.scc-widget.scc-layout--peek .scc-card-shell .product-element-top {
	flex: none;
}

.scc-widget .scc-card-shell .product-element-top img,
.scc-widget .scc-card-shell .product-image-link img {
	border-radius: 0 !important;
	clip-path: none !important;
	-webkit-clip-path: none !important;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.scc-widget .scc-card-shell .product-element-bottom {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: space-between;
	min-height: 0;
	background: #fff;
}

/* Distinct content zones */
.scc-widget .scc-card-shell .wd-product-header {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

/* Top section: title + primary specs/price aligned at top */
.scc-widget .scc-card-shell .wd-entities-title {
	margin-bottom: 6px;
}

.scc-widget .scc-card-shell .tech-specs-loop {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

.scc-widget .scc-card-shell .tech-specs-loop__wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"primary"
		"price"
		"install"
		"middle";
	align-items: start;
	column-gap: 8px;
	row-gap: 6px;
}

.scc-widget .scc-card-shell .tech-specs-loop__group--primary {
	grid-area: primary;
	align-self: start;
}

.scc-widget .scc-card-shell .tech-specs-loop__price {
	grid-area: price;
	margin-top: 0 !important;
	padding-top: 0 !important;
	align-self: start;
	justify-self: start;
	text-align: left;
}

.scc-widget .scc-card-shell .tech-specs-loop__installement {
	grid-area: install;
	margin-top: 0;
	padding-top: 0;
}

/* Middle section: chips */
.scc-widget .scc-card-shell .tech-specs-loop__group--secondary {
	grid-area: middle;
	margin-top: 6px;
}

/* Bottom section: action buttons (desktop double/triple — flex push) */
.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop-actions,
.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop-actions {
	margin-top: auto;
	border: 0px;
	border-top: 1px solid #e8e8e8;
	flex-shrink: 0;
}

/* Wishlist & compare: 12px Regular Roboto labels, 16px icons */
.scc-widget .scc-card-shell .tech-specs-loop-actions__compare,
.scc-widget .scc-card-shell .tech-specs-loop-actions__wishlist {
	font-family: 'Roboto Flex', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
}

.scc-widget .scc-card-shell .tech-specs-loop-actions .wd-compare-btn,
.scc-widget .scc-card-shell .tech-specs-loop-actions .wd-wishlist-btn {
	flex: 0 0 auto;
}

.scc-widget .scc-card-shell .tech-specs-loop-actions .wd-style-icon > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	min-width: 16px;
	min-height: 16px;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.scc-widget .scc-card-shell .tech-specs-loop-actions .wd-style-icon > a::before {
	font-size: 16px !important;
	width: 16px;
	height: 16px;
	line-height: 16px;
}

.scc-widget .scc-card-shell .tech-specs-loop-actions .wd-style-icon > a > span {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Desktop grid layouts: title/secondary text and price arrangement */
@media (min-width: 768px) {
	.scc-widget.scc-layout--triple .scc-card-shell .product-element-top,
	.scc-widget.scc-layout--double .scc-card-shell .product-element-top,
	.scc-widget.scc-layout--triple .scc-card-shell .product-image-link,
	.scc-widget.scc-layout--double .scc-card-shell .product-image-link {
		flex: 0 0 221px;
		height: 221px;
		min-height: 221px;
		max-height: 221px;
		border-bottom-left-radius: 0 !important;
		border-bottom-right-radius: 0 !important;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .product-element-top img,
	.scc-widget.scc-layout--double .scc-card-shell .product-element-top img {
		width: 100%;
		height: 221px;
		object-fit: cover;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .product-wrapper,
	.scc-widget.scc-layout--double .scc-card-shell .product-wrapper,
	.scc-widget.scc-layout--triple .scc-card-shell .strings-carousel-card--fallback,
	.scc-widget.scc-layout--double .scc-card-shell .strings-carousel-card--fallback {
		position: relative;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .wd-product-header,
	.scc-widget.scc-layout--double .scc-card-shell .wd-product-header {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas:
			"secondary"
			"price"
			"chips";
		row-gap: 6px;
		align-items: start;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .wd-product-header > .wd-entities-title,
	.scc-widget.scc-layout--double .scc-card-shell .wd-product-header > .wd-entities-title {
		grid-area: title;
		margin: 0;
		align-self: start;
	}

	/* Hide long Woodmart title everywhere in this widget */
	.scc-widget.scc-layout--triple .scc-card-shell .wd-product-header > .wd-entities-title,
	.scc-widget.scc-layout--double .scc-card-shell .wd-product-header > .wd-entities-title {
		display: none !important;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop,
	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__wrapper,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__wrapper {
		display: contents;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__group--primary,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__group--primary {
		grid-area: secondary;
		margin: 0;
		padding: 0 21px 0px;
		width: 100% !important;
		max-width: none !important;
		min-width: 0;
		align-self: stretch;
		justify-self: stretch;
		text-align: left;
		overflow: visible;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__item,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__item,
	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link {
		width: auto !important;
		max-width: none !important;
		overflow: visible;
		text-overflow: unset;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 6px;
		align-items: baseline;
		white-space: nowrap;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link .bold-title,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link .bold-title {
		font-size: 20px;
		font-weight: 700;
		line-height: 1.2;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link > .tech-specs-loop__value,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link > .tech-specs-loop__value {
		font-size: 20px;
		font-weight: 400;
		line-height: 1.2;
	}

	/* Price line: sale price left, strikethrough right; euro after amount */
	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price {
		grid-area: price;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: baseline;
		justify-content: flex-start;
		gap: 8px;
		margin-top: 0 !important;
		padding-left: 21px;
		padding-right: 21px;
		text-align: left;
		overflow: visible;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price-sale,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price-sale,
	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price-regular,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price-regular {
		display: inline-flex;
		align-items: baseline;
		flex: 0 0 auto;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price .woocommerce-Price-amount.amount,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price .woocommerce-Price-amount.amount {
		display: inline-flex;
		align-items: baseline;
		flex-wrap: nowrap;
		gap: 4px;
		font-size: 28px !important;
		font-weight: 700;
		line-height: 1.2;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price .woocommerce-Price-currencySymbol,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price .woocommerce-Price-currencySymbol {
		order: 2;
		font-size: inherit;
		font-weight: inherit;
		line-height: inherit;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price-regular--striked .woocommerce-Price-amount.amount,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price-regular--striked .woocommerce-Price-amount.amount {
		font-size: 20px !important;
		font-weight: 400;
		line-height: 1.2;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price-regular--striked .woocommerce-Price-currencySymbol,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price-regular--striked .woocommerce-Price-currencySymbol {
		font-size: 20px;
		font-weight: 400;
		line-height: 1.2;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__installement,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__installement {
		position: absolute;
		top: 292px;
		left: 0;
		z-index: 2;
		grid-area: unset;
		margin-top: 0;
		padding: 0 17px;
		text-align: left;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__group--secondary,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__group--secondary {
		grid-area: chips;
		padding: 11px 17px 12px 17px;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price-sale,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price-sale {
		order: 1;
	}

	.scc-widget.scc-layout--triple .scc-card-shell .tech-specs-loop__price-regular,
	.scc-widget.scc-layout--double .scc-card-shell .tech-specs-loop__price-regular {
		order: 2;
		margin-left: 4px;
	}
}

/* Peek layout: centered active card with faded side slides */
.scc-widget.scc-layout--peek .scc-fade .scc-slide {
	opacity: 0.38;
	transition: opacity 0.3s ease;
}

.scc-widget.scc-layout--peek .scc-fade .scc-slide-active {
	opacity: 1;
}

/* Peek / mobile — full-width section, 75vw cards, gap scales with card width */
.scc-widget.scc-layout--peek {
	width: 100%;
	max-width: 100%;
	/* Break out of Elementor/content column padding to true viewport width */
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	/* Card artboard (Group 663 SVG): 699×905 — fixed proportions, not content-driven */
	--scc-m-art-w: 699;
	--scc-m-art-h: 905;
	--scc-m-ref: 307;
	--scc-m-w: 75vw;
	--scc-m-h: calc(var(--scc-m-w) * var(--scc-m-art-h) / var(--scc-m-art-w));
	/* Image = 523/905 of card; body = 382/905 */
	--scc-m-img-pct: 57.79%;
	--scc-m-body-pct: 42.21%;
	--scc-m-price-stack-gap: calc(var(--scc-m-w) * 1 / var(--scc-m-ref));
	--scc-m-gap-price-install: 0;
	--scc-m-install-pull: calc(var(--scc-m-w) * 2 / var(--scc-m-ref));
	--scc-m-slide-gap: calc(var(--scc-m-w) * 11 / var(--scc-m-ref));
	--scc-m-radius: calc(var(--scc-m-w) * 20 / var(--scc-m-ref));
	/* Body zones from SVG (y): title block 546→705, chips 52px, footer 779.5→905 */
	--scc-m-row-head: calc(var(--scc-m-w) * 159 / var(--scc-m-art-w));
	--scc-m-row-price-line: calc(var(--scc-m-w) * 80 / var(--scc-m-art-w));
	--scc-m-row-install-line: calc(var(--scc-m-w) * 79 / var(--scc-m-art-w));
	--scc-m-row-chips: calc(var(--scc-m-w) * 52 / var(--scc-m-art-w));
	--scc-m-action-h: calc(var(--scc-m-w) * 125.5 / var(--scc-m-art-w));
	/* Proportional spacing (design px @ 307w, scaled to card width) */
	--scc-m-space-1: calc(var(--scc-m-w) * 2 / var(--scc-m-ref));
	--scc-m-space-2: calc(var(--scc-m-w) * 3 / var(--scc-m-ref));
	--scc-m-space-3: calc(var(--scc-m-w) * 4 / var(--scc-m-ref));
	--scc-m-space-4: calc(var(--scc-m-w) * 6 / var(--scc-m-ref));
	--scc-m-space-5: calc(var(--scc-m-w) * 8 / var(--scc-m-ref));
	--scc-m-space-6: calc(var(--scc-m-w) * 12 / var(--scc-m-ref));
	--scc-m-pad-x: calc(var(--scc-m-w) * 21 / var(--scc-m-art-w));
	/* Strikethrough price: 33/699 from edge = 21/699 base + 12/699 */
	--scc-m-pad-price-sale-extra: calc(var(--scc-m-w) * 12 / var(--scc-m-art-w));
	--scc-m-pad-after-img: calc(var(--scc-m-w) * 2 / var(--scc-m-ref));
	--scc-m-gap-chips-actions: calc(var(--scc-m-w) * 22 / var(--scc-m-art-w));
	--scc-m-gap: var(--scc-m-space-3);
	--scc-m-gap-row: var(--scc-m-space-2);
	--scc-m-title: calc(var(--scc-m-w) * 22 / var(--scc-m-ref));
	--scc-m-subtitle: calc(var(--scc-m-w) * 16 / var(--scc-m-ref));
	--scc-m-price: calc(var(--scc-m-w) * 22 / var(--scc-m-ref));
	--scc-m-price-old: calc(var(--scc-m-w) * 14 / var(--scc-m-ref));
	--scc-m-install: calc(var(--scc-m-w) * 11 / var(--scc-m-ref));
	--scc-m-chip: calc(var(--scc-m-w) * 13 / var(--scc-m-ref));
	--scc-m-chip-pad-y: calc(var(--scc-m-w) * 2 / var(--scc-m-ref));
	--scc-m-chip-gap: calc(var(--scc-m-w) * 11 / var(--scc-m-art-w));
	--scc-m-chip-pad-x: var(--scc-m-chip-gap);
	--scc-m-chip-h: calc(var(--scc-m-w) * 52 / var(--scc-m-art-w));
	--scc-m-action: calc(var(--scc-m-w) * 14 / var(--scc-m-ref));
	--scc-m-icon: calc(var(--scc-m-w) * 20 / var(--scc-m-ref));
	--scc-m-action-gap: var(--scc-m-space-4);
}

.scc-widget.scc-layout--peek .scc-slide {
	width: var(--scc-m-w);
	height: var(--scc-m-h);
	min-height: var(--scc-m-h);
	max-height: var(--scc-m-h);
	align-self: stretch;
}

/* WoodMart row-gap on card shell — mobile/peek only */
.scc-widget.scc-layout--peek .scc-card-shell .wd-product .product-wrapper,
.scc-widget.scc-layout--peek .scc-card-shell .wd-product .product-element-bottom {
	gap: 0 !important;
	row-gap: 0 !important;
	column-gap: 0 !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .wd-product .product-wrapper,
.scc-widget.scc-layout--peek .strings-carousel-card--fallback {
	display: grid;
	grid-template-rows: var(--scc-m-img-pct) var(--scc-m-body-pct);
	width: var(--scc-m-w);
	height: var(--scc-m-h);
	min-height: var(--scc-m-h);
	max-height: var(--scc-m-h);
	aspect-ratio: 699 / 905;
	padding: 0 !important;
	gap: 0 !important;
	border-radius: var(--scc-m-radius) !important;
	overflow: hidden;
}

.scc-widget.scc-layout--peek .scc-card-shell > .product,
.scc-widget.scc-layout--peek .scc-card-shell > .wd-product,
.scc-widget.scc-layout--peek .scc-card-shell > .product-grid-item {
	height: 100%;
}

.scc-widget.scc-layout--peek .scc-card-shell .product-element-top,
.scc-widget.scc-layout--peek .scc-card-shell .product-image-link {
	grid-row: 1;
	flex: none;
	height: 100%;
	min-height: 0;
	max-height: 100%;
	overflow: hidden;
}

.scc-widget.scc-layout--peek .scc-card-shell .product-element-top .product-image-link {
	display: block;
	height: 100%;
}

.scc-widget.scc-layout--peek .scc-card-shell .wd-product .product-element-bottom {
	display: flex;
	flex-direction: column;
	grid-row: 2;
	height: 100%;
	min-height: 0;
	max-height: 100%;
	flex: none;
	justify-content: flex-start;
	padding: 0 !important;
	gap: 0 !important;
	row-gap: 0 !important;
	column-gap: 0 !important;
	position: relative;
	overflow: visible;
}

.scc-widget.scc-layout--peek .scc-card-shell .wd-product-header {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-height: 0;
	max-height: 100%;
	padding: 0 !important;
	padding-bottom: var(--scc-m-action-h) !important;
	box-sizing: border-box;
	overflow: visible;
	position: static;
}

.scc-widget.scc-layout--peek .scc-card-shell .wd-entities-title {
	display: none !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .wd-product-cats,
.scc-widget.scc-layout--peek .scc-card-shell .wd-product-footer,
.scc-widget.scc-layout--peek .scc-card-shell .wrap-price {
	display: none !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .product-wrapper:hover {
	transform: none;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.11);
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: visible;
	position: static;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__wrapper {
	flex: 1 1 auto;
	min-height: 0;
	max-height: 100%;
	overflow: visible;
	align-content: start;
}

/* Arrows: no background, no shadow, no radius */
.scc-widget .scc-nav {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 72px;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: #111;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline-offset: 2px;
}

.scc-widget .scc-nav:hover,
.scc-widget .scc-nav:focus {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.scc-widget .scc-nav::after {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	font-family: inherit !important;
	font-size: inherit !important;
	line-height: 1 !important;
	border: 0 solid currentColor;
	border-left-width: 2px;
	border-bottom-width: 2px;
}

.scc-widget .scc-nav--prev::after {
	transform: rotate(45deg);
	margin-right: -2px;
}

.scc-widget .scc-nav--next::after {
	transform: rotate(-135deg);
	margin-left: -2px;
}

.scc-widget .scc-nav--prev {
	left: 2px;
}

.scc-widget .scc-nav--next {
	right: 2px;
}

.scc-widget .scc-nav.scc-nav--disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* Pagination */
.scc-widget .scc-pagination {
	margin-top: 18px;
}

/* Peek layout: hide arrows, tighter side padding */
.scc-widget.scc-layout--peek .scc-nav {
	display: none !important;
}

.scc-widget.scc-layout--peek .scc-title {
	padding-left: 0;
	padding-right: 0;
}

.scc-widget.scc-layout--peek .scc-inner {
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/* Peek layout: title/price grid on top; chips pinned above footer actions */
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__wrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	grid-template-areas:
		"primary price"
		"primary install";
	column-gap: var(--scc-m-gap);
	row-gap: var(--scc-m-gap-price-install);
	padding: var(--scc-m-pad-after-img) var(--scc-m-pad-x) 0 !important;
	padding-bottom: calc(var(--scc-m-chip-h) + var(--scc-m-gap-chips-actions)) !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__group--primary {
	grid-area: primary;
	grid-row: 1 / 3;
	align-self: start;
	min-height: 0;
	max-height: none;
	overflow: visible;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__group--primary a.tech-specs-loop__value.tech-specs-loop__value--link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--scc-m-space-1);
	padding: 0 !important;
	text-decoration: none;
	color: #000 !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__group--primary .bold-title {
	display: block;
	font-size: var(--scc-m-title);
	font-weight: 700 !important;
	line-height: 1.15;
	color: #000 !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__group--primary .tech-specs-loop__value--link > .tech-specs-loop__value {
	display: block !important;
	font-size: var(--scc-m-subtitle);
	font-weight: 400 !important;
	line-height: 1.2;
	color: #000 !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
	justify-self: end;
	align-self: start;
	grid-area: price;
	text-align: right;
	gap: var(--scc-m-price-stack-gap);
	min-width: 0;
	min-height: 0;
	max-height: none;
	overflow: visible;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price-sale,
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price-regular {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: var(--scc-m-price-stack-gap);
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price-regular--striked {
	order: -1;
	margin-right: var(--scc-m-pad-price-sale-extra);
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price-regular.tech-specs-loop__price-regular--striked.onsale-exists {
	margin-top: 0 !important;
	margin-left: 0 !important;
	margin-right: var(--scc-m-pad-price-sale-extra) !important;
}

/* On sale: strikethrough sits 33/699 from card edge (21 + 12); sale price stays at 21/699 */
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price:has(.tech-specs-loop__price-regular--striked) {
	padding-right: 0;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price-sale {
	margin-right: 0;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price-regular--striked .woocommerce-Price-amount.amount {
	font-size: var(--scc-m-price-old);
	font-weight: 400;
	color: #e40000;
	text-decoration: line-through;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price .woocommerce-Price-amount.amount {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: nowrap;
	gap: var(--scc-m-space-1);
	font-size: var(--scc-m-price);
	font-weight: 700;
	line-height: 1.15;
	color: #000;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__price .woocommerce-Price-currencySymbol {
	order: 2;
	font-size: var(--scc-m-price);
	font-weight: 700;
	line-height: 1.15;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement {
	grid-area: install;
	justify-self: end;
	align-self: start;
	position: static;
	margin: 0;
	margin-top: calc(-1 * var(--scc-m-install-pull));
	padding: 0;
	text-align: right;
	font-size: var(--scc-m-install);
	font-weight: 400;
	line-height: 1.2;
	color: #000;
	min-height: 0;
	max-height: none;
	overflow: visible;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement:empty {
	display: none;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement .woocommerce-Price-amount.amount,
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement .woocommerce-Price-currencySymbol,
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement bdi,
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement [data-tech-vat] {
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	color: inherit !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement .woocommerce-Price-amount.amount {
	display: inline !important;
	gap: 0;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement .woocommerce-Price-currencySymbol {
	order: 0;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement [data-tech-vat='net'],
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__installement [data-tech-vat-note] {
	display: none !important;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__group--secondary {
	display: block;
	position: absolute;
	left: var(--scc-m-pad-x);
	right: var(--scc-m-pad-x);
	bottom: calc(var(--scc-m-action-h) + var(--scc-m-gap-chips-actions));
	z-index: 1;
	width: auto;
	min-width: 0;
	height: auto;
	min-height: 0;
	max-height: none;
	margin: 0 !important;
	overflow: visible;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__row--first {
	display: flex !important;
	flex-wrap: nowrap !important;
	justify-content: flex-start;
	align-items: center;
	gap: var(--scc-m-chip-gap);
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: visible;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	mask-image: none;
	-webkit-mask-image: none;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__row--first .tech-specs-loop__item {
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	max-width: none;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop__row--first .tech-specs-loop__value {
	display: inline-block;
	width: auto;
	max-width: none;
	box-sizing: border-box;
	font-size: var(--scc-m-chip);
	font-weight: 400;
	line-height: 1.2;
	min-height: var(--scc-m-chip-h);
	padding: max(var(--scc-m-chip-pad-y), calc((var(--scc-m-chip-h) - 1.2em) / 2)) var(--scc-m-chip-pad-x);
	border: 1px solid #d4d4d4;
	border-radius: 999px;
	color: #000;
	white-space: nowrap;
	overflow: visible;
	text-overflow: clip;
	text-align: center;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: var(--scc-m-action-h);
	min-height: var(--scc-m-action-h);
	max-height: var(--scc-m-action-h);
	margin: 0 !important;
	margin-top: 0 !important;
	flex: none;
	border-top: 1px solid #e8e8e8;
	background: #fff;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop-actions__compare,
.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop-actions__wishlist {
	font-family: 'Roboto Flex', sans-serif;
	font-size: var(--scc-m-action);
	font-weight: 400;
	line-height: 1.2;
	color: #000;
	gap: var(--scc-m-action-gap);
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop-actions__compare {
	border-right: 1px solid #e8e8e8;
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop-actions .wd-style-icon > a {
	width: var(--scc-m-icon);
	height: var(--scc-m-icon);
	min-width: var(--scc-m-icon);
	min-height: var(--scc-m-icon);
}

.scc-widget.scc-layout--peek .scc-card-shell .tech-specs-loop-actions .wd-style-icon > a::before {
	font-size: var(--scc-m-icon) !important;
	width: var(--scc-m-icon);
	height: var(--scc-m-icon);
	line-height: var(--scc-m-icon);
}

/* Fallback card */
.scc-widget .strings-carousel-card--fallback {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
}

.scc-widget .strings-carousel-card__img {
	display: block;
	flex: 0 0 auto;
	overflow: hidden;
}

.scc-widget .strings-carousel-card__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.scc-widget.scc-layout--peek .strings-carousel-card__img {
	grid-row: 1;
	height: 100%;
	min-height: 0;
}

.scc-widget.scc-layout--peek .strings-carousel-card__body {
	grid-row: 2;
	height: 100%;
	min-height: 0;
	padding: var(--scc-m-pad-after-img) var(--scc-m-pad-x);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 0;
}

.scc-widget.scc-layout--peek .strings-carousel-card__title {
	margin: 0 0 var(--scc-m-space-4);
	font-size: var(--scc-m-title);
	font-weight: 700;
	line-height: 1.15;
}

.scc-widget.scc-layout--peek .strings-carousel-card__price {
	font-size: var(--scc-m-price);
	font-weight: 700;
	line-height: 1.15;
}

.scc-widget .strings-carousel-card__body {
	padding: 16px;
	flex: 1;
}

.scc-widget .strings-carousel-card__title {
	margin: 0 0 8px;
	font-size: 1rem;
	line-height: 1.3;
}

.scc-widget .strings-carousel-card__title a {
	text-decoration: none;
	color: inherit;
}

.scc-widget .strings-carousel-card__price {
	font-weight: 700;
}
