:root {
	--faber-bg: #f7f1e8;
	--faber-panel: #fffaf1;
	--faber-ink: #151311;
	--faber-muted: #766b61;
	--faber-line: rgba(21, 19, 17, .14);
	--faber-dark: #0f0d0b;
	--faber-accent: #b7844f;
	--faber-green: #253830;
	--faber-max: 2000px;
	--faber-page-gutter: 10vw;
	--faber-page-width: min(80vw, var(--faber-max));
	--faber-radius: 26px;
	--faber-shadow: 0 24px 70px rgba(17, 16, 14, .10);
	--faber-ease: cubic-bezier(.2, .8, .2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.faber-modern {
	margin: 0;
	background: var(--faber-bg) !important;
	color: var(--faber-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

body.faber-modern a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

body.faber-modern img {
	max-width: 100%;
	height: auto;
}

body.faber-mobile-menu-is-open {
	overflow: hidden;
}

body.faber-service-drawer-is-open {
	overflow: hidden;
}

body.faber-mobile-menu-is-open #cfw-side-cart-floating-button {
	display: none !important;
}

body.faber-service-drawer-is-open #cfw-side-cart-floating-button {
	display: none !important;
}

.faber-site-header {
	position: fixed;
	z-index: 9990;
	top: 18px;
	left: 50%;
	width: var(--faber-page-width);
	transform: translateX(-50%);
}

body.admin-bar .faber-site-header {
	top: 50px;
}

.faber-site-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	min-height: 78px;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	background: rgba(20, 18, 16, .66);
	backdrop-filter: blur(22px);
	color: #fff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.faber-site-brand,
.faber-mobile-menu-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 950;
	text-decoration: none;
}

.machine-brand-icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: currentColor;
	flex: 0 0 auto;
}

.machine-brand-icon svg {
	display: block;
	width: 40px;
	height: 40px;
}

.faber-site-nav .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 2.4vw, 30px);
	min-height: 52px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.faber-site-nav #primary-menu {
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
}

.faber-site-nav #primary-menu li {
	display: flex;
	align-items: center;
	margin: 0 !important;
}

.faber-site-nav #primary-menu > li > a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	color: rgba(255, 255, 255, .86);
	font-size: 15px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.faber-site-nav #primary-menu > li > a:hover {
	color: #fff;
}

.faber-site-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.faber-site-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	transition: background .24s var(--faber-ease), transform .24s var(--faber-ease);
}

.faber-site-pill:hover {
	background: rgba(255, 255, 255, .13);
	transform: translateY(-1px);
}

.faber-site-pill-muted {
	display: none;
	color: rgba(255, 255, 255, .76);
}

.faber-cart-toggle {
	min-width: 60px;
	padding-inline: 18px;
}

.faber-cart-icon svg {
	display: block;
	width: 22px;
	height: 22px;
}

.faber-cart-count {
	position: absolute;
	top: 6px;
	right: 7px;
	display: inline-grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: #fff;
	color: var(--faber-ink);
	font-size: 11px;
	font-weight: 950;
}

.faber-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.faber-mobile-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.faber-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 10000;
	pointer-events: none;
}

.faber-mobile-menu.is-open {
	pointer-events: auto;
}

.faber-mobile-menu-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(15, 13, 11, .48);
	opacity: 0;
	transition: opacity .24s ease;
}

.faber-mobile-menu.is-open .faber-mobile-menu-backdrop {
	opacity: 1;
}

.faber-mobile-menu-panel {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 28px;
	width: min(88vw, 430px);
	height: 100%;
	padding: max(24px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
	background: #11100e;
	color: #fff;
	box-shadow: -28px 0 80px rgba(0, 0, 0, .32);
	transform: translateX(104%);
	transition: transform .28s var(--faber-ease);
}

.faber-mobile-menu.is-open .faber-mobile-menu-panel {
	transform: translateX(0);
}

.faber-mobile-menu-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.faber-mobile-menu-close {
	position: relative;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(255, 255, 255, .26);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.faber-mobile-menu-close::before,
.faber-mobile-menu-close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
}

.faber-mobile-menu-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.faber-mobile-menu-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.faber-mobile-menu-nav {
	display: grid;
	align-content: start;
	gap: 8px;
}

.faber-mobile-menu-nav a {
	display: flex;
	align-items: center;
	min-height: 58px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 10vw, 48px);
	font-weight: 500;
	line-height: .98;
	text-decoration: none;
}

.faber-mobile-menu-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.faber-mobile-menu-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 22px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 999px;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
}

.faber-service-drawer {
	position: fixed;
	inset: 0;
	z-index: 10020;
	pointer-events: none;
}

.faber-service-drawer.is-open {
	pointer-events: auto;
}

.faber-service-drawer-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(15, 13, 11, .52);
	opacity: 0;
	transition: opacity .24s ease;
}

.faber-service-drawer.is-open .faber-service-drawer-backdrop {
	opacity: 1;
}

.faber-service-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(94vw, 640px);
	height: 100%;
	padding: clamp(30px, 5vw, 56px);
	overflow: auto;
	background: #fffaf1;
	color: var(--faber-ink);
	box-shadow: -28px 0 80px rgba(0, 0, 0, .30);
	transform: translateX(104%);
	transition: transform .28s var(--faber-ease);
}

.faber-service-drawer.is-open .faber-service-drawer-panel {
	transform: translateX(0);
}

.faber-service-drawer-close {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 52px;
	height: 52px;
	border: 1px solid var(--faber-line);
	border-radius: 999px;
	background: #fff;
	color: var(--faber-ink);
	cursor: pointer;
}

.faber-service-drawer-close::before,
.faber-service-drawer-close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
}

.faber-service-drawer-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.faber-service-drawer-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.faber-service-drawer-kicker {
	margin: 0 70px 14px 0;
	color: var(--faber-accent);
	font-size: 13px;
	font-weight: 950;
	line-height: 1.2;
	text-transform: uppercase;
}

.faber-service-drawer-panel h2 {
	max-width: 8.8em;
	margin: 0;
	color: var(--faber-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: .94;
}

.faber-service-drawer-lead {
	max-width: 520px;
	margin: 18px 0 28px;
	color: var(--faber-muted);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.faber-service-form .wpcf7-form,
.faber-service-form .faber-native-service-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.faber-service-form .wpcf7-form > p,
.faber-service-form .wpcf7-form > fieldset,
.faber-service-form .faber-native-service-form > p {
	margin: 0;
}

.faber-service-form .wpcf7-form > fieldset {
	display: contents;
}

.faber-service-form label,
.faber-service-form .wpcf7-acceptance,
.faber-service-form .faber-service-acceptance {
	display: grid;
	gap: 7px;
	color: var(--faber-muted);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
}

.faber-service-form .faber-cf7-full,
.faber-service-form .wpcf7-acceptance,
.faber-service-form .wpcf7-submit,
.faber-service-form .faber-service-submit,
.faber-service-form .faber-service-acceptance,
.faber-service-form .faber-service-status,
.faber-service-form .wpcf7-response-output,
.faber-service-form .wpcf7-spinner,
.faber-service-form .wpcf7-form > p:has(.faber-cf7-full),
.faber-service-form .wpcf7-form > p:has(.wpcf7-acceptance),
.faber-service-form .wpcf7-form > p:has(.wpcf7-submit) {
	grid-column: 1 / -1;
}

.faber-service-form input:not([type="submit"]):not([type="checkbox"]),
.faber-service-form select,
.faber-service-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 13px 14px;
	border: 1px solid var(--faber-line);
	border-radius: 14px;
	background: #fff;
	color: var(--faber-ink);
	font: inherit;
	font-size: 16px;
	font-weight: 750;
}

.faber-service-form textarea {
	min-height: 128px;
	resize: vertical;
}

.faber-service-form .wpcf7-list-item {
	margin: 0;
}

.faber-service-form .wpcf7-acceptance label,
.faber-service-form .faber-service-acceptance {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.faber-service-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: var(--faber-green);
}

.faber-service-form .wpcf7-submit,
.faber-service-form .faber-service-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	border: 0;
	border-radius: 999px;
	background: var(--faber-dark);
	color: #fff;
	font-size: 16px;
	font-weight: 950;
	cursor: pointer;
}

.faber-service-status {
	margin: 0;
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 850;
	line-height: 1.35;
}

.faber-service-status-success {
	background: rgba(37, 56, 48, .10);
	color: var(--faber-green);
}

.faber-service-status-error {
	background: rgba(166, 0, 0, .08);
	color: #a60000;
}

.faber-service-form .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #a60000;
	font-size: 12px;
	font-weight: 850;
}

.faber-service-form .wpcf7-response-output {
	margin: 4px 0 0;
	padding: 12px 14px;
	border-radius: 14px;
	font-weight: 850;
}

.faber-modern #primary,
.faber-modern .site-main.woopage {
	width: var(--faber-page-width);
	max-width: none;
	margin: 0 auto;
	padding: 132px 0 90px;
	background: transparent;
}

.faber-modern #primary > .site-main {
	width: 100%;
	max-width: none;
	margin: 0;
}

.faber-modern.is-faber-front #primary {
	width: 100%;
	max-width: none;
	padding: 0;
	background: var(--faber-bg) !important;
}

.faber-modern .entry-header,
.faber-modern .entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
}

.faber-modern:not(.is-faber-front) article.page,
.faber-modern:not(.woocommerce-page) .site-main > article,
.faber-modern .site-main.woopage > article {
	padding: clamp(26px, 5vw, 54px);
	border: 1px solid var(--faber-line);
	border-radius: 30px;
	background: var(--faber-panel);
	box-shadow: var(--faber-shadow);
}

.faber-modern .entry-title,
.faber-modern .woocommerce-products-header__title,
.faber-modern .page-title {
	margin: 0 0 28px;
	color: var(--faber-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 78px);
	font-weight: 500;
	line-height: .96;
}

.faber-modern .entry-content,
.faber-modern .entry-content p,
.faber-modern .entry-content li {
	color: var(--faber-muted);
	font-size: 17px;
	line-height: 1.65;
}

.faber-modern .entry-content :where(h2, h3, h4) {
	color: var(--faber-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.05;
}

.is-faber-front .product-cont {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow: hidden;
}

.is-faber-front .header-image-section {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(320px, .82fr);
	gap: clamp(24px, 5vw, 72px);
	align-items: end;
	min-height: min(690px, 92svh);
	max-height: none !important;
	padding: clamp(126px, 13vw, 166px) max(var(--faber-page-gutter), calc((100vw - var(--faber-max)) / 2)) clamp(42px, 7vw, 78px);
	background: var(--faber-dark);
	color: #fff;
}

.is-faber-front .header-image-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: url("../img/bgproduction.jpg") center / cover no-repeat;
	content: "";
}

.is-faber-front .header-image-section::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(15, 13, 11, .92), rgba(15, 13, 11, .68) 48%, rgba(15, 13, 11, .34));
	content: "";
}

.is-faber-front .pagetitle-section {
	position: relative;
	width: auto;
	max-width: 760px;
	margin: 0;
	padding: 0;
}

.is-faber-front img.faberlogo {
	display: block;
	width: auto;
	height: clamp(78px, 9vw, 126px);
	margin: 0 0 26px;
}

.is-faber-front .pagetitle-section h1 {
	max-width: 850px;
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5.4vw, 76px);
	font-weight: 500;
	line-height: .94;
	overflow-wrap: break-word;
	text-wrap: balance;
	hyphens: auto;
}

.is-faber-front .pagetitle-section h1 strong {
	display: block;
	font-weight: 500;
}

.faber-modern.is-faber-front .header-image-section #pagetitle.blacktext,
.faber-modern.is-faber-front .faber-site-nav a.blacktext,
.faber-modern.is-faber-front .product-header-info .blacktext {
	color: #fff !important;
}

.faber-modern.is-faber-front .product-header-info #faberdesc.blacktext,
.faber-modern.is-faber-front .product-header-info #tax.blacktext {
	color: rgba(255, 255, 255, .72) !important;
}

.faber-modern.is-faber-front .product-header-info #switchertitle.blacktext {
	color: rgba(255, 255, 255, .74) !important;
}

.faber-modern.is-faber-front #faberlogo[src*="faberlogo-b.png"] {
	filter: invert(1);
}

.faber-modern.is-faber-front a.blackbutton {
	border-color: rgba(255, 255, 255, .34) !important;
	color: #fff !important;
}

.faber-modern.is-faber-front a.blackbutton:hover {
	border-color: #fff !important;
	background: #fff !important;
	color: var(--faber-ink) !important;
}

.is-faber-front .header-image-section .header-image {
	position: relative;
	top: auto;
	display: block;
	width: min(42vw, 560px);
	max-height: min(70vh, 680px);
	margin: 0 auto;
	object-fit: contain;
	filter: drop-shadow(0 42px 70px rgba(0, 0, 0, .42));
}

.is-faber-front .product-header-info {
	position: relative;
	z-index: 1;
	padding: clamp(44px, 7vw, 84px) 0;
	background: var(--faber-dark) !important;
	box-shadow: none;
}

.is-faber-front .product-header-info .width80 {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .44fr);
	gap: clamp(24px, 5vw, 64px);
	align-items: end;
	width: var(--faber-page-width);
	max-width: none;
}

.is-faber-front .switcher {
	position: static;
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 6px;
}

.is-faber-front .switcher h3 {
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, .74);
	font-size: 13px;
	font-weight: 900;
	text-align: left;
}

.is-faber-front .switcher ul {
	margin: 0;
	padding: 0;
}

.is-faber-front .switcher li {
	margin: 0;
}

.is-faber-front .product-header-info h2.fabername {
	max-width: 720px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 86px);
	font-weight: 500;
	line-height: .94;
}

.is-faber-front .product-header-info h2.faberdesc {
	max-width: 760px;
	margin: 22px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, .72);
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 650;
	line-height: 1.42;
}

.is-faber-front .button-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 32px 0 0;
}

.is-faber-front .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	margin: 0;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
}

.is-faber-front a.buttonlight {
	border: 1px solid rgba(255, 255, 255, .34);
	background: rgba(255, 255, 255, .08);
	color: #fff;
}

.is-faber-front a.buttonlight:hover {
	border-color: #fff;
	background: #fff;
	color: var(--faber-ink);
}

.is-faber-front .pricesection {
	position: static;
	align-self: stretch;
	display: grid;
	align-content: end;
	gap: 12px;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--faber-radius);
	background: rgba(255, 255, 255, .06);
	backdrop-filter: blur(18px);
}

.is-faber-front .pricesection .price {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.is-faber-front .pricesection h3 {
	margin: 0;
	padding: 0;
	color: #fff;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(34px, 4.6vw, 58px);
	font-weight: 950 !important;
	line-height: 1;
}

.is-faber-front .pricesection .price .currency {
	padding: 0;
	font-size: 18px;
}

.is-faber-front .pricesection p.tax {
	margin: 0;
	color: rgba(255, 255, 255, .66);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.4;
}

.is-faber-front .energy-class-loop {
	position: static;
	width: 66px;
}

.is-faber-front .energy-class img {
	border-radius: 8px;
}

.is-faber-front .bg-white {
	background: var(--faber-bg) !important;
}

.is-faber-front .width80 {
	width: var(--faber-page-width);
	max-width: none;
}

.is-faber-front .detailimageright,
.is-faber-front .detailimageleft,
.is-faber-front .detailimagefull {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
	margin: clamp(62px, 8vw, 108px) 0;
}

.is-faber-front .detailimageright-div1,
.is-faber-front .detailimageright-div2,
.is-faber-front .detailimageleft-div1,
.is-faber-front .detailimageleft-div2,
.is-faber-front .detailimagefull-div1,
.is-faber-front .detailimagefull-div2 {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	padding: clamp(26px, 4vw, 54px);
	border: 1px solid var(--faber-line);
	border-radius: var(--faber-radius);
	background: #fff;
	box-shadow: var(--faber-shadow);
}

.is-faber-front .detailimageright-div1,
.is-faber-front .detailimagefull-div1 {
	background: var(--faber-dark);
	color: #fff;
}

.is-faber-front .detailimageright h2,
.is-faber-front .detailimageleft h2,
.is-faber-front .detailimagefull h2,
.is-faber-front .prodsection h2 {
	margin: 0 0 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(38px, 5.6vw, 82px);
	font-weight: 500;
	line-height: .94;
}

.is-faber-front .detailimageright h3,
.is-faber-front .detailimageleft h3 {
	margin: 0 0 18px;
	font-size: clamp(22px, 2.2vw, 34px);
	line-height: 1.08;
}

.is-faber-front .detailimageright p,
.is-faber-front .detailimageleft p,
.is-faber-front .prodsection p,
.is-faber-front .detailimagefull li p {
	margin: 0 0 16px;
	color: var(--faber-muted);
	font-size: clamp(17px, 1.25vw, 20px);
	font-weight: 650;
	line-height: 1.58;
}

.is-faber-front .detailimageright-div1 p,
.is-faber-front .detailimagefull-div1 li p {
	color: rgba(255, 255, 255, .68);
}

.is-faber-front .detailimageright :where(.quoteopen, .quoteclose, .italiasvg) {
	display: none;
}

.is-faber-front .bgproducton {
	position: absolute;
	inset: auto 0 0 auto;
	width: 54%;
	max-width: none;
	opacity: .22;
	pointer-events: none;
}

.is-faber-front .detail-image-right,
.is-faber-front .detail-image-left,
.is-faber-front .detail-image-full {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none !important;
	object-fit: contain;
}

.is-faber-front .detailimageleft-div1,
.is-faber-front .detailimageright-div2,
.is-faber-front .detailimagefull-div2 {
	display: grid;
	place-items: center;
	background: #fff;
}

.is-faber-front .italyfacts,
.is-faber-front .facts-main,
.is-faber-front .facts-second {
	display: grid;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.is-faber-front .italyfacts li,
.is-faber-front .facts-main li,
.is-faber-front .facts-second li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.is-faber-front .italyfacts li::before,
.is-faber-front .facts-main li::before,
.is-faber-front .facts-second li::before {
	color: var(--faber-accent);
	font-weight: 950;
	content: "\2713";
}

.is-faber-front .prodsection {
	padding: clamp(58px, 8vw, 106px) 0;
}

.is-faber-front .prodsection h2 {
	max-width: 920px;
	color: var(--faber-ink);
}

.is-faber-front .prodsection > p {
	max-width: 760px;
}

.is-faber-front ul.productgrid,
.faber-modern .site-main ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 34px 0 0 !important;
	padding: 0 !important;
	list-style: none;
	overflow: visible;
}

.faber-modern .site-main ul.products.two-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faber-modern .site-main ul.products.three-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faber-modern .site-main ul.products.columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faber-modern .site-main ul.products.columns-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.faber-modern ul.products li.product,
.faber-modern .site-main ul.products li.product,
.is-faber-front ul.productgrid li.product {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	float: none !important;
	width: auto !important;
	max-width: none !important;
	min-height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible;
	border: 1px solid rgba(21, 19, 17, .1);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 20px 70px rgba(17, 16, 14, .08);
	text-align: left;
	isolation: isolate;
}

.faber-modern ul.products li.product:nth-child(4n+1),
.faber-modern .site-main ul.products li.product:nth-child(4n+1),
.is-faber-front ul.productgrid li.product:nth-child(4n+1) {
	border-left: 1px solid rgba(21, 19, 17, .1);
}

.faber-modern ul.products li.product a,
.is-faber-front ul.productgrid li.product a {
	color: inherit;
	text-decoration: none;
}

.faber-modern .faber-card-media {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1.18;
	overflow: visible;
	border-radius: 28px 28px 0 0;
	background: #fff;
	line-height: 0;
}

.faber-modern .faber-card-image,
.faber-modern ul.products li.product .faber-card-image,
.is-faber-front ul.productgrid li.product .faber-card-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	aspect-ratio: auto;
	margin: 0 !important;
	padding: 0;
	background: #fff;
	object-fit: contain;
	transform: scale(1);
	transition: transform .7s var(--faber-ease);
}

.faber-modern ul.products li.product:hover .faber-card-image,
.is-faber-front ul.productgrid li.product:hover .faber-card-image {
	transform: scale(1.04);
}

.faber-modern ul.products li.product.outofstock,
.faber-modern .site-main ul.products li.product.outofstock,
.is-faber-front ul.productgrid li.product.outofstock {
	background: #f7f7f5;
}

.faber-modern ul.products li.product.outofstock .faber-card-image,
.is-faber-front ul.productgrid li.product.outofstock .faber-card-image {
	filter: grayscale(1);
	opacity: .42;
}

.faber-modern ul.products li.product.outofstock:hover .faber-card-image,
.is-faber-front ul.productgrid li.product.outofstock:hover .faber-card-image {
	transform: none;
}

.faber-modern .faber-card-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 16px;
	padding: 22px;
	border-top: 1px solid rgba(21, 19, 17, .1);
	border-radius: 0 0 28px 28px;
	background: #fff;
	color: var(--faber-ink);
}

.faber-modern .faber-card-copy {
	min-width: 0;
}

.faber-modern .faber-card-eyebrow {
	display: block;
	margin: 0 0 8px;
	color: var(--faber-accent);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: none;
}

.faber-modern h2.woocommerce-loop-product__title.faber-card-title,
.faber-modern .woocommerce-loop-product__title.faber-card-title {
	min-height: 0 !important;
	margin: 0 0 8px;
	padding: 0 !important;
	color: var(--faber-ink) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(21px, 1.55vw, 28px) !important;
	font-weight: 500 !important;
	line-height: 1.02;
	text-wrap: balance;
}

.faber-modern .faber-card-title a {
	color: inherit;
}

.faber-modern ul.products li.product.outofstock .faber-card-copy,
.faber-modern ul.products li.product.outofstock .faber-card-price,
.is-faber-front ul.productgrid li.product.outofstock .faber-card-copy,
.is-faber-front ul.productgrid li.product.outofstock .faber-card-price {
	opacity: .45;
}

.faber-modern .faber-card-meta {
	margin: 0;
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.42;
}

.faber-modern .faber-card-identifiers {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 12px;
}

.faber-modern .faber-card-identifiers span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid rgba(21, 19, 17, .1);
	border-radius: 999px;
	background: #fffaf1;
	color: var(--faber-muted);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.faber-modern .faber-card-bottom {
	display: grid;
	gap: 12px;
	align-self: end;
}

.faber-modern ul.products li.product .price,
.faber-modern .faber-card-price,
.is-faber-front ul.productgrid li.product .price {
	display: block;
	margin: 0;
	color: var(--faber-ink) !important;
	font-size: clamp(27px, 2.1vw, 36px);
	font-weight: 950 !important;
	line-height: 1.05;
}

.faber-modern ul.products li.product .woocommerce-Price-amount,
.is-faber-front ul.productgrid li.product .woocommerce-Price-amount {
	color: inherit !important;
	font-size: inherit;
	font-weight: inherit;
}

.faber-modern ul.products li.product .price ins,
.is-faber-front ul.productgrid li.product .price ins {
	display: block;
	color: #050505;
	font-weight: 950;
	text-decoration: none;
}

.faber-modern ul.products li.product .price del,
.is-faber-front ul.productgrid li.product .price del {
	display: block;
	margin-top: 2px;
	color: rgba(0, 0, 0, .42);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.1;
	text-decoration-thickness: 1px;
}

.faber-modern .sizeinfo-loop,
.faber-modern .faber-loop-stock {
	position: absolute;
	z-index: 4;
	top: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid rgba(21, 19, 17, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .96);
	color: #1a1a1a;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}

.faber-modern .sizeinfo-loop {
	left: 18px;
}

.faber-modern li.product .faber-loop-stock {
	right: 18px;
	color: #207a4f;
}

.faber-modern .faber-loop-stock.is-low-stock {
	color: #8b5a08;
}

.faber-modern .faber-loop-stock.is-out-of-stock {
	border-color: rgba(21, 19, 17, .12);
	background: rgba(244, 244, 242, .96);
	color: #75716a;
}

.faber-modern ul.products li.product.outofstock .faber-card-add,
.is-faber-front ul.productgrid li.product.outofstock .faber-card-add {
	background: #d8d5ce !important;
	color: #67625a !important;
	box-shadow: none;
}

.faber-modern ul.products li.product.outofstock .faber-card-add:hover,
.is-faber-front ul.productgrid li.product.outofstock .faber-card-add:hover {
	background: #c9c5bd !important;
	color: #4d4942 !important;
	transform: none;
	box-shadow: none;
}

.faber-modern .mini-cart .button,
.faber-modern ul.products a.add_to_cart_button,
.faber-modern .woocommerce a.button,
.faber-modern .woocommerce button.button,
.faber-modern .woocommerce input.button,
.faber-modern .wp-element-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--faber-ink) !important;
	color: #fff !important;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.faber-modern ul.products li.product .faber-card-add,
.faber-modern ul.products li.product .added_to_cart {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--faber-ink) !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 900;
	line-height: 1 !important;
	text-align: center;
	text-decoration: none;
	transition: transform .24s var(--faber-ease), box-shadow .24s var(--faber-ease), background .24s var(--faber-ease);
}

.faber-modern ul.products li.product .faber-card-add::before,
.faber-modern ul.products li.product .added_to_cart::before,
.is-faber-front ul.productgrid li.product .faber-card-add::before,
.is-faber-front ul.productgrid li.product .added_to_cart::before {
	display: none !important;
	content: none !important;
}

.faber-modern ul.products li.product .faber-card-add i,
.faber-modern ul.products li.product .faber-card-add svg,
.is-faber-front ul.productgrid li.product .faber-card-add i,
.is-faber-front ul.productgrid li.product .faber-card-add svg {
	display: none !important;
}

.faber-modern ul.products li.product .faber-card-add:hover,
.faber-modern ul.products li.product .added_to_cart:hover {
	background: var(--faber-accent) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(17, 16, 14, .18);
}

.faber-modern .mini-cart .button:hover,
.faber-modern .woocommerce a.button:hover,
.faber-modern .woocommerce button.button:hover {
	background: var(--faber-accent) !important;
	color: #fff !important;
}

.faber-modern .header-banner {
	left: auto;
	width: 100%;
	margin: 0 0 34px;
	padding: clamp(32px, 4.4vw, 56px);
	border-radius: 34px;
	background: var(--faber-dark);
	color: #fff;
}

.faber-modern .header-banner-content {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: clamp(24px, 4vw, 56px);
	width: 100%;
	max-width: none;
	margin: 0;
}

.faber-modern .woocommerce-products-header {
	width: var(--faber-page-width);
	margin: 0 auto;
	padding-top: 110px;
}

.faber-modern .header-banner h1 {
	max-width: 820px;
	margin: 0 0 24px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5.8vw, 78px);
	font-weight: 500;
	line-height: .92;
}

.faber-modern .filter-section:empty {
	display: none;
}

.faber-modern .faber-shop-filter-bar {
	width: var(--faber-page-width);
	margin: -10px auto 26px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(21, 19, 17, .12);
}

.faber-modern .faber-shop-filter-inner {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-width: 0;
	min-height: 0;
	overflow: visible;
	padding: 17px 18px;
	border: 1px solid rgba(21, 19, 17, .12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(17, 16, 14, .075);
}

.faber-modern .faber-shop-filter-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	gap: 10px;
	min-height: 54px;
	padding: 0 20px;
	border: 0;
	border-radius: 8px;
	background: #2f7654;
	color: #fff;
	font-size: 15px;
	font-weight: 950;
	line-height: 1;
	cursor: pointer;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .14);
}

.faber-modern .faber-shop-filter-toggle i {
	font-size: 15px;
	line-height: 1;
}

.faber-modern .faber-shop-filter-toggle .fa-chevron-down {
	transition: transform .2s var(--faber-ease);
}

.faber-modern .faber-shop-filter-inner.is-open .faber-shop-filter-toggle .fa-chevron-down {
	transform: rotate(180deg);
}

.faber-modern .filter-section {
	min-width: 0;
	width: 100%;
	overflow: visible;
	color: var(--faber-ink);
}

.faber-modern .filter-section .wcpf-filter {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--faber-ink);
}

.faber-modern .filter-section .wcpf-filter-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	align-content: center;
	gap: 8px;
	overflow: visible;
	padding: 2px 0 2px 1px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.faber-modern .filter-section .wcpf-filter-inner::-webkit-scrollbar {
	display: none;
}

.faber-modern .filter-section .wcpf-field-item {
	display: flex !important;
	flex: 0 0 auto;
	align-items: center;
	overflow: visible;
	width: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--faber-ink) !important;
}

.faber-modern .filter-section .wcpf-field-item.wcpf-status-disabled {
	display: none !important;
}

.faber-modern .filter-section .wcpf-field-item:not(.wcpf-field-button):not(.wcpf-status-disabled),
.faber-modern .filter-section .wcpf-field-item:not(.wcpf-field-button):not(.wcpf-status-disabled) .wcpf-inner,
.faber-modern .filter-section .wcpf-field-item:not(.wcpf-field-button):not(.wcpf-status-disabled) .field-input-container {
	display: contents !important;
}

.faber-modern .filter-section .wcpf-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	min-width: 0;
	max-width: 100%;
	color: inherit;
}

.faber-modern .filter-section .wcpf-heading-label {
	display: none;
}

.faber-modern .filter-section .field-input-container {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	min-width: 0;
	max-width: 100%;
	max-height: none;
	overflow: visible;
	padding: 0;
	color: var(--faber-ink);
}

.faber-modern .filter-section .wcpf-item {
	flex: 0 0 auto;
}

.faber-modern .filter-section .wcpf-radio-item[data-item-key=""] {
	display: none;
}

.faber-modern .filter-section .wcpf-item-label {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0;
	width: auto;
	height: 50px;
	min-height: 50px;
	padding: 0 12px !important;
	border: 1px solid rgba(21, 19, 17, .14);
	border-radius: 999px;
	background: #fff;
	color: var(--faber-ink);
	font-size: 14px;
	line-height: 1 !important;
	box-shadow: 0 5px 14px rgba(17, 16, 14, .045);
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	transition: border-color .2s var(--faber-ease), background .2s var(--faber-ease), color .2s var(--faber-ease), box-shadow .2s var(--faber-ease), transform .2s var(--faber-ease);
}

.faber-modern .filter-section .wcpf-item-label:hover,
.faber-modern .filter-section .wcpf-item.checked .wcpf-item-label,
.faber-modern .filter-section .wcpf-item:has(.wcpf-input:checked:not([value=""])) .wcpf-item-label {
	border-color: #2f7654;
	background: #2f7654;
	color: #fff !important;
	box-shadow: 0 10px 22px rgba(47, 118, 84, .22);
	transform: translateY(-1px);
}

.faber-modern .filter-section .wcpf-input-container {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.faber-modern .filter-section .wcpf-input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
}

.faber-modern .filter-section .wcpf-title-container {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	float: none !important;
	gap: 5px;
	width: auto !important;
	min-width: 0;
	height: 100%;
	padding: 0 !important;
	color: inherit;
	line-height: 1 !important;
}

.faber-modern .filter-section .wcpf-title {
	display: inline-flex !important;
	align-items: center !important;
	height: 100%;
	overflow-wrap: anywhere;
	color: inherit !important;
	font-size: 14px;
	font-weight: 900;
	line-height: 1 !important;
}

.faber-modern .filter-section .wcpf-product-counts {
	display: inline-flex !important;
	align-items: center !important;
	flex: 0 0 auto;
	height: 100%;
	color: inherit !important;
	opacity: .68;
	font-size: 12px;
	font-weight: 900;
	line-height: 1 !important;
}

.faber-modern .filter-section .wcpf-field-button {
	display: none !important;
}

.faber-modern .faber-shop-filter-inner.has-active-filters .filter-section .wcpf-field-button {
	display: flex !important;
}

.faber-modern .filter-section .wcpf-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto;
	height: 50px;
	min-height: 50px;
	padding: 0 12px;
	border: 1px solid rgba(21, 19, 17, .14);
	border-radius: 999px;
	background: #fff;
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 900;
	line-height: 1 !important;
	cursor: pointer;
}

.faber-modern .filter-section .wcpf-button .button-text {
	display: inline-flex !important;
	align-items: center !important;
	height: 100%;
	color: inherit !important;
	font-size: inherit !important;
	line-height: 1 !important;
}

.faber-modern .filter-section .wcpf-button:hover {
	border-color: #7d4f3e;
	background: #7d4f3e;
	color: #fff;
}

.faber-modern #breadcrumbs,
.faber-modern #breadcrumbs a {
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.faber-modern .archive-grid {
	display: block;
	width: var(--faber-page-width);
	margin: 0 auto 90px;
}

.faber-modern .archive-grid .left,
.faber-modern .archive-grid .right {
	display: none;
}

.faber-modern .archive-grid .middle {
	width: 100%;
}

.faber-modern .faber-shop-description {
	margin: 0;
	padding: 0;
}

.faber-modern .faber-shop-description:empty {
	display: none;
}

.faber-modern .faber-shop-loop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 30px;
}

.faber-modern .faber-shop-loop-count,
.faber-modern .faber-shop-loop-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.faber-modern .faber-shop-loop-actions {
	justify-content: flex-end;
	margin-left: auto;
}

.faber-modern .change-collums {
	float: none;
	display: flex;
	gap: 8px;
	margin: 0;
}

.faber-modern .change-collums a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--faber-line);
	border-radius: 999px;
	background: #fff;
	color: var(--faber-ink);
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(17, 16, 14, .045);
	transition: border-color .2s var(--faber-ease), background .2s var(--faber-ease), color .2s var(--faber-ease), transform .2s var(--faber-ease);
}

.faber-modern .change-collums a:hover,
.faber-modern .change-collums a.is-active {
	border-color: #2f7654;
	background: #2f7654;
	color: #fff;
	transform: translateY(-1px);
}

.faber-modern .woocommerce-result-count,
.faber-modern .woocommerce-ordering {
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 800;
}

.faber-modern .faber-pagination-hidden {
	display: none !important;
}

.faber-modern .faber-loadmore {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	margin: 26px auto 6px;
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 800;
	pointer-events: none;
}

.faber-modern .faber-loadmore.is-loading,
.faber-modern .faber-loadmore.is-end {
	display: flex;
}

.faber-modern .faber-loadmore.is-loading {
	position: fixed;
	left: 50%;
	bottom: calc(20px + env(safe-area-inset-bottom, 0px));
	z-index: 9999;
	min-height: 0;
	margin: 0;
	padding: 12px 16px;
	border: 1px solid var(--faber-line);
	border-radius: 999px;
	background: #fff;
	color: var(--faber-ink);
	box-shadow: 0 18px 45px rgba(17, 16, 14, .14);
	transform: translateX(-50%);
}

.faber-modern .faber-loadmore.is-end {
	position: static;
	min-height: 42px;
	margin-top: 18px;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.faber-modern .faber-loadmore-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(47, 118, 84, .22);
	border-top-color: #2f7654;
	border-radius: 50%;
	animation: faber-loadmore-spin .8s linear infinite;
}

.faber-modern .faber-loadmore.is-end .faber-loadmore-spinner {
	display: none;
}

.faber-modern #faber-infinite-sentinel {
	width: 100%;
	height: 1px;
}

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

.faber-modern form.woocommerce-ordering::before {
	display: none !important;
	content: none !important;
}

.faber-modern .woocommerce-ordering select,
.faber-modern input.input-text,
.faber-modern .woocommerce input.input-text,
.faber-modern textarea,
.faber-modern select {
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--faber-line);
	border-radius: 8px;
	background: #fff;
	color: var(--faber-ink);
	font: inherit;
	font-weight: 700;
}

.faber-modern .woocommerce-ordering select {
	min-width: 260px;
	box-shadow: 0 8px 18px rgba(17, 16, 14, .045);
}

.faber-modern textarea {
	padding-block: 12px;
}

.faber-modern.single-product #primary,
.faber-modern.woocommerce #primary {
	width: 100%;
	max-width: none;
	padding: 0 0 96px;
}

.faber-modern.post-type-archive-product #primary,
.faber-modern.tax-product_cat #primary,
.faber-modern.tax-product_tag #primary {
	padding-top: 0 !important;
}

.faber-modern .pdpstickyaddtocart {
	display: none !important;
}

.faber-modern .faber-pdp-page {
	width: 100%;
}

.faber-modern .faber-pdp-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, .72fr);
	gap: 34px;
	align-items: start;
	width: var(--faber-page-width);
	margin: 0 auto;
	padding: 138px 0 94px;
}

.faber-modern .faber-pdp-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	min-width: 0;
}

.faber-modern .faber-pdp-shot {
	min-height: clamp(360px, 33vw, 480px);
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--faber-line);
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 20px 70px rgba(17, 16, 14, .08);
}

.faber-modern .faber-pdp-shot-main,
.faber-modern .faber-pdp-shot-wide {
	grid-column: span 2;
	min-height: clamp(520px, 49vw, 680px);
}

.faber-modern .faber-pdp-shot-trigger {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	font: inherit;
}

.faber-modern .faber-pdp-shot-trigger:focus-visible {
	outline: 3px solid var(--faber-accent);
	outline-offset: -10px;
}

.faber-modern .faber-pdp-shot img,
.faber-modern .faber-pdp-image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: clamp(18px, 3vw, 42px);
	background: #fff;
	object-fit: contain;
}

.faber-modern .faber-pdp-buybox {
	position: sticky;
	top: 114px;
	padding: 34px;
	border: 1px solid var(--faber-line);
	border-radius: 34px;
	background: rgba(255, 250, 241, .86);
	backdrop-filter: blur(18px);
	box-shadow: 0 24px 80px rgba(17, 16, 14, .1);
}

.admin-bar.faber-modern .faber-pdp-buybox {
	top: 146px;
}

.faber-modern .faber-pdp-back {
	display: inline-flex;
	margin-bottom: 22px;
	color: var(--faber-accent);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.faber-modern .faber-pdp-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.faber-modern .faber-pdp-rating {
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 750;
}

.faber-modern .faber-pdp-buybox h1 {
	display: block;
	min-height: 0;
	margin: 0 0 16px;
	color: var(--faber-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 2.5vw, 44px);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: 0;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.faber-modern .faber-pdp-lead {
	margin: 0 0 24px;
	color: var(--faber-muted);
	font-size: clamp(16px, 1.15vw, 18px);
	font-weight: 650;
	line-height: 1.58;
}

.faber-modern .faber-pdp-meta-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
}

.faber-modern .faber-pdp-meta-pills span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--faber-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .66);
	color: var(--faber-muted);
	font-size: 12px;
	font-weight: 900;
}

.faber-modern .faber-pdp-meta-pills strong {
	color: var(--faber-ink);
	font-size: 13px;
}

.faber-modern .faber-pdp-price-row {
	display: grid;
	gap: 5px;
	padding: 20px 0;
	border-top: 1px solid var(--faber-line);
	border-bottom: 1px solid var(--faber-line);
}

.faber-modern .faber-pdp-price-row strong,
.faber-modern .faber-pdp-price-row .woocommerce-Price-amount,
.faber-modern .faber-pdp-price-row bdi {
	color: var(--faber-ink);
	font-size: clamp(32px, 2.5vw, 44px);
	font-weight: 900;
	line-height: 1.04;
}

.faber-modern .faber-pdp-price-row > span {
	color: var(--faber-muted);
	font-size: 13px;
	font-weight: 750;
}

.faber-modern .faber-pdp-variant-label {
	margin-top: 24px;
	color: var(--faber-accent);
	font-size: 13px;
	font-weight: 900;
}

.faber-modern .faber-pdp-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 20px;
}

.faber-modern .faber-pdp-swatch {
	position: relative;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--faber-main-color, #d8d4ca);
	box-shadow: 0 0 0 1px var(--faber-line);
	text-decoration: none;
	overflow: hidden;
}

.faber-modern .faber-pdp-swatch::after {
	position: absolute;
	right: 3px;
	bottom: 3px;
	width: 12px;
	height: 12px;
	border: 2px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	background: var(--faber-detail-color, var(--faber-main-color, #d8d4ca));
	box-shadow: 0 2px 5px rgba(17, 16, 14, .18);
	content: "";
}

.faber-modern .faber-pdp-swatch.is-active {
	box-shadow: 0 0 0 3px var(--faber-ink);
}

.faber-modern .faber-pdp-cart {
	margin-top: 18px;
}

.faber-modern .faber-pdp-cart .wc-points-rewards-product-message,
.faber-modern .faber-pdp-cart .product_meta,
.faber-modern .faber-pdp-cart .stockpershop,
.faber-modern .faber-pdp-cart form.cart > br {
	display: none !important;
}

.faber-modern .faber-pdp-cart form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: stretch;
	margin: 0;
}

.faber-modern .faber-pdp-cart .quantity {
	display: inline-flex;
	flex: 0 0 108px;
	height: 52px;
	margin: 0;
}

.faber-modern .faber-pdp-cart .quantity input.qty {
	width: 100%;
	height: 52px;
	padding: 0;
	border: 1px solid var(--faber-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .75);
	color: var(--faber-ink);
	font-size: 16px;
	font-weight: 900;
	text-align: center;
}

.faber-modern .faber-pdp-cart button.minus,
.faber-modern .faber-pdp-cart button.plus {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border: 1px solid var(--faber-line);
	border-radius: 50%;
	background: #fff;
	color: var(--faber-ink);
	font-size: 20px;
	font-weight: 900;
	cursor: pointer;
}

.faber-modern .faber-pdp-cart .single_add_to_cart_button {
	flex: 1 0 100%;
	width: 100%;
	min-height: 58px !important;
	margin: 0 !important;
	padding: 0 24px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--faber-ink) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-align: center;
	cursor: pointer;
	transition: transform .24s var(--faber-ease), box-shadow .24s var(--faber-ease), background .24s var(--faber-ease);
}

.faber-modern .faber-pdp-cart .single_add_to_cart_button:hover {
	background: var(--faber-accent) !important;
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(17, 16, 14, .18);
}

.faber-modern .faber-pdp-cart .expresscheckout {
	flex: 1 0 100%;
	width: 100%;
}

.faber-modern .faber-pdp-cart .expresscheckout a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 54px !important;
	padding: 0 20px !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: var(--faber-ink) !important;
	border: 1px solid var(--faber-line) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.faber-modern .faber-pdp-cart .stock {
	flex: 1 0 100%;
	margin: 0;
	color: var(--faber-muted);
	font-weight: 850;
}

.faber-modern .faber-pdp-trust {
	display: grid;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	color: var(--faber-muted);
	font-size: 14px;
	list-style: none;
}

.faber-modern .faber-pdp-trust li::before {
	margin-right: 8px;
	color: var(--faber-accent);
	font-weight: 950;
	content: "\2713";
}

.faber-modern .faber-pdp-feature-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	width: var(--faber-page-width);
	margin: 0 auto 96px;
}

.faber-modern .faber-pdp-feature-row article {
	padding: 24px;
	border: 1px solid var(--faber-line);
	border-radius: 24px;
	background: rgba(255, 255, 255, .64);
}

.faber-modern .faber-pdp-feature-row span {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--faber-accent);
	font-size: 13px;
	font-weight: 900;
}

.faber-modern .faber-pdp-feature-row strong {
	display: block;
	margin-bottom: 8px;
	color: var(--faber-ink);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.12;
}

.faber-modern .faber-pdp-feature-row p {
	margin: 0;
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.faber-modern .faber-pdp-copy-section,
.faber-modern .faber-pdp-tech-section,
.faber-modern .faber-pdp-info-section,
.faber-modern .related.products,
.faber-modern .upsells.products,
.faber-modern .whatindegusection,
.faber-modern .moreofcategorie {
	width: var(--faber-page-width);
	margin: 0 auto 96px;
}

.faber-modern .faber-pdp-copy-card {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(320px, .6fr);
	gap: 34px;
	padding: clamp(30px, 5vw, 64px);
	border: 1px solid var(--faber-line);
	border-radius: 34px;
	background: #fffaf1;
	box-shadow: 0 20px 70px rgba(17, 16, 14, .07);
}

.faber-modern .faber-shop-kicker {
	display: block;
	color: var(--faber-accent);
	font-size: 12px;
	font-weight: 950;
	text-transform: none;
}

.faber-modern .faber-pdp-copy-card .faber-shop-kicker {
	grid-column: 1 / -1;
	margin-bottom: -12px;
}

.faber-modern .faber-pdp-copy-card p {
	margin: 0;
	color: var(--faber-muted);
	font-size: 18px;
	font-weight: 650;
	line-height: 1.6;
}

.faber-modern .faber-pdp-copy-card p:first-of-type {
	color: var(--faber-ink);
	font-size: clamp(22px, 2.3vw, 32px);
	font-weight: 900;
	line-height: 1.2;
}

.faber-modern .faber-pdp-copy-card ul {
	display: grid;
	gap: 10px;
	align-content: start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.faber-modern .faber-pdp-copy-card li {
	position: relative;
	padding-left: 22px;
	color: var(--faber-muted);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
}

.faber-modern .faber-pdp-copy-card li::before {
	position: absolute;
	top: .62em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--faber-accent);
	content: "";
}

.faber-modern .faber-pdp-tech-section {
	padding: clamp(30px, 5vw, 64px);
	border-radius: 36px;
	background: var(--faber-dark);
	color: #fff;
}

.faber-modern .faber-pdp-tech-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 28px;
}

.faber-modern .faber-pdp-tech-head h2 {
	max-width: 820px;
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5vw, 78px);
	font-weight: 500;
	line-height: .95;
}

.faber-modern .faber-pdp-tech-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.faber-modern .faber-pdp-tech-grid article {
	min-height: 132px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 22px;
	background: rgba(255, 255, 255, .055);
}

.faber-modern .faber-pdp-tech-grid span {
	display: block;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, .54);
	font-size: 12px;
	font-weight: 900;
}

.faber-modern .faber-pdp-tech-grid strong,
.faber-modern .faber-pdp-tech-grid a {
	display: block;
	color: #fff;
	font-size: clamp(18px, 1.8vw, 26px);
	font-weight: 900;
	line-height: 1.08;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.faber-modern .faber-pdp-info-section {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.faber-modern .faber-pdp-info-section article {
	padding: 24px;
	border: 1px solid var(--faber-line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 70px rgba(17, 16, 14, .07);
}

.faber-modern .faber-pdp-info-section strong {
	display: block;
	margin-bottom: 10px;
	color: var(--faber-ink);
	font-size: 18px;
	font-weight: 900;
}

.faber-modern .faber-pdp-info-section p,
.faber-modern .faber-pdp-info-section div {
	margin: 0;
	color: var(--faber-muted);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.55;
}

.faber-modern.faber-pdp-lightbox-open {
	overflow: hidden;
}

.faber-modern .faber-pdp-lightbox {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(18px, 4vw, 52px);
	background: rgba(15, 13, 11, .82);
	backdrop-filter: blur(18px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .22s var(--faber-ease), visibility .22s var(--faber-ease);
	visibility: hidden;
}

.faber-modern .faber-pdp-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.faber-modern .faber-pdp-lightbox-frame {
	display: grid;
	justify-items: center;
	gap: 14px;
	max-width: min(94vw, 1500px);
	max-height: 90vh;
	margin: 0;
}

.faber-modern .faber-pdp-lightbox-frame img {
	display: block;
	width: auto;
	max-width: min(94vw, 1500px);
	max-height: 82vh;
	padding: clamp(10px, 1.8vw, 22px);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 30px 100px rgba(0, 0, 0, .42);
	object-fit: contain;
}

.faber-modern .faber-pdp-lightbox-frame figcaption {
	max-width: min(90vw, 900px);
	color: rgba(255, 255, 255, .78);
	font-size: clamp(15px, 1.2vw, 18px);
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
}

.faber-modern .faber-pdp-lightbox-close {
	position: fixed;
	z-index: 10001;
	top: clamp(18px, 3vw, 34px);
	right: clamp(18px, 3vw, 34px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	font-size: 38px;
	font-weight: 500;
	line-height: 1;
	transition: background .18s var(--faber-ease), transform .18s var(--faber-ease);
}

.faber-modern .faber-pdp-lightbox-close:hover,
.faber-modern .faber-pdp-lightbox-close:focus-visible {
	background: rgba(255, 255, 255, .22);
	transform: scale(1.03);
}

.faber-site-footer {
	background: #11100e;
	color: #fff;
	padding: clamp(70px, 8vw, 104px) 0 34px;
}

.faber-footer-inner {
	width: var(--faber-page-width);
	margin: 0 auto;
}

.faber-footer-newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
	gap: clamp(26px, 4vw, 60px);
	align-items: end;
	padding-bottom: 58px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	margin-bottom: 44px;
}

.faber-footer-kicker {
	margin: 0 0 14px;
	color: var(--faber-accent);
	font-size: 13px;
	font-weight: 950;
}

.faber-footer-newsletter h2 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 6vw, 96px);
	font-weight: 500;
	line-height: .9;
}

.faber-footer-newsletter p,
.faber-footer-note {
	margin: 0;
	color: rgba(255, 255, 255, .66);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.6;
}

.faber-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 40px);
}

.faber-footer-brand {
	display: grid;
	align-content: start;
	gap: 16px;
}

.faber-footer-col h3,
.faber-footer-payments h3 {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, .52);
	font-size: 13px;
	font-weight: 900;
}

.faber-footer-col a {
	display: block;
	margin-bottom: 11px;
	color: rgba(255, 255, 255, .82);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.faber-footer-col a:hover {
	color: #fff;
}

.faber-footer-payments > div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.faber-footer-payments .paymenticon {
	width: 42px;
	height: 28px;
	object-fit: contain;
	padding: 4px;
	border-radius: 7px;
	background: rgba(255, 255, 255, .92);
}

.faber-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 42px;
	color: rgba(255, 255, 255, .46);
	font-size: 13px;
	font-weight: 700;
}

.faber-footer-bottom a {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 1120px) {
	.faber-site-header-inner {
		grid-template-columns: auto auto auto;
		justify-content: space-between;
	}

	.faber-site-nav {
		display: none;
	}

	.faber-mobile-menu-toggle {
		display: inline-flex;
	}

	.faber-site-actions .faber-site-pill:not(.faber-cart-toggle) {
		display: none;
	}

	.is-faber-front .header-image-section,
	.is-faber-front .product-header-info .width80,
	.is-faber-front .detailimageright,
	.is-faber-front .detailimageleft,
	.is-faber-front .detailimagefull,
	.faber-modern .pdp-grid,
	.faber-modern .faber-pdp-hero,
	.faber-modern .faber-pdp-copy-card,
	.faber-modern .faber-pdp-info-section,
	.faber-footer-newsletter,
	.faber-footer-grid {
		grid-template-columns: 1fr;
	}

	.is-faber-front .header-image-section .header-image {
		width: min(72vw, 460px);
	}

	.faber-modern .pdp-grid .summary.entry-summary {
		position: static;
	}

	.faber-modern .faber-pdp-buybox {
		position: static;
		order: -1;
	}

	.faber-modern .faber-pdp-feature-row,
	.faber-modern .faber-pdp-tech-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	:root {
		--faber-page-gutter: 5vw;
		--faber-page-width: min(90vw, var(--faber-max));
	}

	.faber-site-header {
		top: 12px;
		width: var(--faber-page-width);
	}

	body.admin-bar .faber-site-header {
		top: 58px;
	}

	.faber-site-header-inner {
		min-height: 64px;
		padding: 7px 10px;
	}

	.faber-site-brand span {
		display: none;
	}

	.faber-modern #primary,
	.faber-modern .site-main.woopage,
	.faber-modern.single-product #primary,
	.faber-modern.woocommerce #primary {
		width: var(--faber-page-width);
		padding-top: 102px;
	}

	.faber-modern.is-faber-front #primary {
		width: 100%;
		padding: 0;
	}

	.faber-modern.single-product #primary {
		width: 100%;
		padding-top: 0;
	}

	.is-faber-front .header-image-section {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 104px var(--faber-page-gutter) 38px;
	}

	.is-faber-front .header-image-section::after {
		background: linear-gradient(180deg, rgba(15, 13, 11, .92), rgba(15, 13, 11, .68));
	}

	.is-faber-front .pagetitle-section h1 {
		font-size: clamp(38px, 10.4vw, 48px);
		line-height: .98;
	}

	.is-faber-front img.faberlogo {
		height: 78px;
	}

	.is-faber-front .header-image-section .header-image {
		width: min(78vw, 360px);
	}

	.is-faber-front .product-header-info .width80,
	.is-faber-front .width80 {
		width: var(--faber-page-width);
	}

	.is-faber-front .switcher {
		display: grid;
	}

	.is-faber-front .detailimageright,
	.is-faber-front .detailimageleft,
	.is-faber-front .detailimagefull {
		margin: 42px 0;
	}

	.is-faber-front .detailimageright-div1,
	.is-faber-front .detailimageright-div2,
	.is-faber-front .detailimageleft-div1,
	.is-faber-front .detailimageleft-div2,
	.is-faber-front .detailimagefull-div1,
	.is-faber-front .detailimagefull-div2 {
		min-height: 0;
		padding: 22px;
		border-radius: 24px;
	}

	.is-faber-front ul.productgrid,
	.faber-modern .site-main ul.products {
		display: flex !important;
		grid-template-columns: none;
		gap: 14px;
		overflow-x: auto;
		padding-bottom: 12px !important;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.is-faber-front ul.productgrid::-webkit-scrollbar,
	.faber-modern .site-main ul.products::-webkit-scrollbar {
		display: none;
	}

	.faber-modern ul.products li.product,
	.faber-modern .site-main ul.products li.product,
	.is-faber-front ul.productgrid li.product {
		flex: 0 0 min(84vw, 390px);
		scroll-snap-align: start;
	}

	.faber-modern .header-banner {
		padding: 28px 22px;
		border-radius: 28px;
	}

	.faber-modern .header-banner-content {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.faber-modern .faber-shop-filter-bar {
		margin: -8px auto 22px;
		padding-bottom: 16px;
	}

	.faber-modern .faber-shop-filter-inner {
		display: flex;
		align-items: stretch;
		flex-wrap: wrap;
		min-height: 0;
		padding: 10px;
	}

	.faber-modern .faber-shop-filter-toggle {
		width: 100%;
		justify-content: space-between;
		min-height: 50px;
	}

	.faber-modern .faber-shop-filter-options {
		width: 100%;
	}

	.faber-modern .faber-shop-filter-inner:not(.is-open) .faber-shop-filter-options {
		display: none;
	}

	.faber-modern .filter-section .wcpf-filter {
		padding: 0;
		border-radius: 0;
	}

	.faber-modern .filter-section .wcpf-filter-inner,
	.faber-modern .filter-section .field-input-container {
		max-height: none;
		gap: 8px;
	}

	.faber-modern .filter-section .wcpf-filter-inner {
		flex-wrap: nowrap;
		overflow-x: auto;
	}

	.faber-modern .filter-section .field-input-container {
		flex-wrap: nowrap;
	}

	.faber-modern .filter-section .wcpf-item-label,
	.faber-modern .filter-section .wcpf-button {
		min-height: 44px;
		padding: 0 15px;
	}

	.faber-modern .faber-shop-loop-toolbar {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		margin-bottom: 22px;
	}

	.faber-modern .faber-shop-loop-actions,
	.faber-modern .woocommerce-ordering,
	.faber-modern .woocommerce-ordering select {
		width: 100%;
	}

	.faber-modern .faber-shop-loop-actions {
		display: block;
		justify-content: stretch;
		margin-left: 0;
	}

	.faber-modern .change-collums {
		display: none !important;
	}

	.faber-modern .woocommerce-ordering select {
		min-width: 0;
	}

	.faber-modern .woocommerce-products-header {
		width: var(--faber-page-width);
		padding-top: 98px;
	}

	.faber-modern .archive-grid {
		width: var(--faber-page-width);
	}

	.faber-modern .pdp-grid {
		width: var(--faber-page-width);
	}

	.faber-modern .faber-pdp-hero {
		width: var(--faber-page-width);
		padding: 116px 0 72px;
	}

	.faber-modern .faber-pdp-gallery {
		grid-template-columns: 1fr;
	}

	.faber-modern .faber-pdp-shot,
	.faber-modern .faber-pdp-shot-main,
	.faber-modern .faber-pdp-shot-wide {
		grid-column: span 1;
		min-height: 390px;
		border-radius: 24px;
	}

	.faber-modern .faber-pdp-buybox,
	.faber-modern .faber-pdp-copy-card,
	.faber-modern .faber-pdp-tech-section,
	.faber-modern .faber-pdp-info-section article {
		padding: 24px;
		border-radius: 26px;
	}

	.faber-modern .faber-pdp-topline {
		align-items: flex-start;
		flex-direction: column;
	}

	.faber-modern .faber-pdp-cart .single_add_to_cart_button {
		flex-basis: 100%;
	}

	.faber-modern .faber-pdp-feature-row,
	.faber-modern .faber-pdp-tech-grid,
	.faber-modern .faber-pdp-info-section {
		grid-template-columns: 1fr;
	}

	.faber-modern .faber-pdp-copy-section,
	.faber-modern .faber-pdp-tech-section,
	.faber-modern .faber-pdp-info-section,
	.faber-modern .related.products,
	.faber-modern .upsells.products,
	.faber-modern .whatindegusection,
	.faber-modern .moreofcategorie {
		width: var(--faber-page-width);
		margin-bottom: 58px;
	}

	.faber-footer-inner {
		width: var(--faber-page-width);
	}

	.faber-footer-bottom {
		flex-direction: column;
	}
}

/* Einheitliches Produktkarten-Design fuer alle WooCommerce-Loops. */
.faber-modern ul.products,
.faber-modern ul.productgrid,
.faber-modern .site-main ul.products,
.faber-modern .site-main ul.products.grid-four {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px !important;
	width: 100%;
	max-width: none;
	margin: 34px 0 0 !important;
	padding: 0 !important;
	list-style: none;
	overflow: visible;
}

.faber-modern ul.products.two-grid,
.faber-modern .site-main ul.products.two-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faber-modern ul.products.three-grid,
.faber-modern .site-main ul.products.three-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faber-modern ul.products.grid-four,
.faber-modern ul.products.columns-4,
.faber-modern .site-main ul.products.grid-four,
.faber-modern .site-main ul.products.columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faber-modern ul.products.columns-5,
.faber-modern .site-main ul.products.columns-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.faber-modern ul.products.six-grid,
.faber-modern .site-main ul.products.six-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.faber-modern li.product.faber-shop-product-card {
	position: relative;
	display: grid !important;
	grid-template-rows: auto 1fr;
	float: none !important;
	width: auto !important;
	max-width: none !important;
	min-height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible;
	border: 1px solid rgba(21, 19, 17, .1) !important;
	border-radius: 28px !important;
	background: #fff !important;
	box-shadow: 0 20px 70px rgba(17, 16, 14, .08) !important;
	text-align: left !important;
	transition: transform .24s var(--faber-ease), box-shadow .24s var(--faber-ease);
	isolation: isolate;
}

.faber-modern li.product.faber-shop-product-card:hover {
	background: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 26px 76px rgba(17, 16, 14, .12) !important;
}

.faber-modern li.product.faber-shop-product-card .faber-card-media {
	position: relative;
	z-index: 2;
	display: block !important;
	width: 100%;
	aspect-ratio: 1 / 1.18;
	overflow: visible;
	border-radius: 28px 28px 0 0;
	background: #fff;
	line-height: 0;
}

.faber-modern li.product.faber-shop-product-card .faber-card-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	object-fit: contain;
	transform: scale(1);
	transition: transform .7s var(--faber-ease);
}

.faber-modern li.product.faber-shop-product-card:hover .faber-card-image {
	transform: scale(1.04);
}

.faber-modern li.product.faber-shop-product-card .faber-card-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 16px;
	padding: 22px;
	border-top: 1px solid rgba(21, 19, 17, .1);
	border-radius: 0 0 28px 28px;
	background: #fff;
	color: var(--faber-ink);
}

.faber-modern li.product.faber-shop-product-card .faber-card-title,
.faber-modern li.product.faber-shop-product-card h2.woocommerce-loop-product__title {
	min-height: 0 !important;
	height: auto !important;
	margin: 0 0 8px !important;
	padding: 0 !important;
	color: var(--faber-ink) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(21px, 1.55vw, 28px) !important;
	font-weight: 500 !important;
	line-height: 1.02 !important;
	text-align: left !important;
	text-wrap: balance;
}

.faber-modern li.product.faber-shop-product-card .faber-card-meta {
	margin: 0;
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.42;
}

.faber-modern li.product.faber-shop-product-card .faber-card-bottom {
	display: grid;
	gap: 12px;
	align-self: end;
}

.faber-modern li.product.faber-shop-product-card .faber-card-price,
.faber-modern li.product.faber-shop-product-card .price {
	display: block;
	margin: 0 !important;
	color: var(--faber-ink) !important;
	font-size: clamp(27px, 2.1vw, 36px) !important;
	font-weight: 950 !important;
	line-height: 1.05 !important;
	text-align: left !important;
}

.faber-modern li.product.faber-shop-product-card .woocommerce-Price-amount,
.faber-modern li.product.faber-shop-product-card .price bdi,
.faber-modern li.product.faber-shop-product-card .price ins bdi {
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
}

.faber-modern li.product.faber-shop-product-card .faber-card-add,
.faber-modern li.product.faber-shop-product-card .added_to_cart {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--faber-ink) !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
}

.faber-modern li.product.faber-shop-product-card .faber-card-add::before,
.faber-modern li.product.faber-shop-product-card .added_to_cart::before {
	display: none !important;
	content: none !important;
}

.faber-modern li.product.faber-shop-product-card.outofstock {
	background: #f7f7f5 !important;
}

.faber-modern li.product.faber-shop-product-card.outofstock .faber-card-image {
	filter: grayscale(1);
	opacity: .42;
}

.faber-modern li.product.faber-shop-product-card.outofstock .faber-card-copy,
.faber-modern li.product.faber-shop-product-card.outofstock .faber-card-price {
	opacity: .45;
}

@media (max-width: 1280px) {
	.faber-modern ul.products.columns-5,
	.faber-modern .site-main ul.products.columns-5,
	.faber-modern ul.products.six-grid,
	.faber-modern .site-main ul.products.six-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	.faber-modern ul.products,
	.faber-modern ul.productgrid,
	.faber-modern .site-main ul.products,
	.faber-modern .site-main ul.products.grid-four,
	.faber-modern ul.products.two-grid,
	.faber-modern ul.products.three-grid,
	.faber-modern ul.products.columns-4,
	.faber-modern ul.products.columns-5,
	.faber-modern ul.products.six-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.faber-modern ul.products,
	.faber-modern ul.productgrid,
	.faber-modern .site-main ul.products,
	.faber-modern .site-main ul.products.grid-four,
	.faber-modern ul.products.two-grid,
	.faber-modern ul.products.three-grid,
	.faber-modern ul.products.columns-4,
	.faber-modern ul.products.columns-5,
	.faber-modern ul.products.six-grid {
		display: flex !important;
		grid-template-columns: none;
		gap: 14px !important;
		overflow-x: auto;
		padding-bottom: 12px !important;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.faber-modern ul.products::-webkit-scrollbar,
	.faber-modern ul.productgrid::-webkit-scrollbar {
		display: none;
	}

	.faber-modern li.product.faber-shop-product-card {
		flex: 0 0 min(84vw, 390px);
		scroll-snap-align: start;
	}
}

.is-faber-front .faber-home-v2 {
	background: #f7f1e8;
}

.faber-home-shell {
	width: var(--faber-page-width);
	max-width: var(--faber-max);
	margin: 0 auto;
}

.faber-home-hero {
	position: relative;
	min-height: 700px;
	overflow: hidden;
	background: #0f0d0b;
	color: #fff;
}

.faber-home-hero-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	filter: grayscale(.75);
	opacity: .34;
}

.faber-home-hero::after {
	position: absolute;
	inset: 0;
	background: rgba(8, 7, 6, .48);
	content: "";
}

.faber-home-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
	gap: 56px;
	align-items: end;
	min-height: 700px;
	padding: 132px 0 74px;
}

.faber-home-hero-copy {
	max-width: 780px;
}

.faber-home-logo {
	display: block;
	width: 132px;
	height: auto;
	margin: 0 0 32px;
}

.faber-home-kicker {
	margin: 0 0 14px;
	color: var(--faber-accent);
	font-size: 13px;
	font-weight: 950;
	line-height: 1.1;
	text-transform: uppercase;
}

.faber-home-hero h1,
.faber-home-section h2,
.faber-home-final h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: .98;
}

.faber-home-hero h1 {
	max-width: 860px;
	color: #fff;
	font-size: 74px;
}

.faber-home-hero p:not(.faber-home-kicker) {
	max-width: 700px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 20px;
	font-weight: 650;
	line-height: 1.48;
}

.faber-home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.faber-home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 950;
	line-height: 1;
	text-decoration: none;
	transition: background .22s var(--faber-ease), border-color .22s var(--faber-ease), color .22s var(--faber-ease), transform .22s var(--faber-ease);
}

.faber-home-button:hover {
	transform: translateY(-2px);
}

.faber-home-button-dark {
	background: #fff;
	color: #12100e !important;
}

.faber-home-button-light {
	border-color: rgba(255, 255, 255, .36);
	background: rgba(255, 255, 255, .08);
	color: #fff !important;
}

.faber-home-button-ghost {
	border-color: var(--faber-line);
	background: #fff;
	color: var(--faber-ink) !important;
}

.faber-home-hero-product {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-height: 520px;
}

.faber-home-hero-product img {
	width: min(100%, 520px);
	max-height: 610px;
	object-fit: contain;
	filter: drop-shadow(0 42px 70px rgba(0, 0, 0, .36));
}

.faber-home-stats {
	background: #fff;
	border-bottom: 1px solid var(--faber-line);
}

.faber-home-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--faber-line);
}

.faber-home-stat-grid > div {
	display: grid;
	align-content: center;
	min-height: 128px;
	padding: 24px;
	background: #fff;
}

.faber-home-stat-grid strong {
	display: block;
	color: var(--faber-ink);
	font-size: 38px;
	font-weight: 950;
	line-height: 1;
}

.faber-home-stat-grid span {
	display: block;
	margin-top: 8px;
	color: var(--faber-muted);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.faber-home-section {
	padding: 92px 0;
}

.faber-home-section h2,
.faber-home-final h2 {
	max-width: 850px;
	color: var(--faber-ink);
	font-size: 54px;
}

.faber-home-split {
	display: grid;
	grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.faber-home-split p:not(.faber-home-kicker),
.faber-home-product-row-head p,
.faber-home-final p {
	margin: 0 0 18px;
	color: var(--faber-muted);
	font-size: 18px;
	font-weight: 650;
	line-height: 1.58;
}

.faber-home-series-band {
	background: #fff;
	border-top: 1px solid var(--faber-line);
	border-bottom: 1px solid var(--faber-line);
}

.faber-home-section-head {
	display: grid;
	gap: 8px;
	margin-bottom: 34px;
}

.faber-home-series-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.faber-home-series-card {
	display: grid;
	grid-template-rows: 280px 1fr;
	overflow: hidden;
	border: 1px solid var(--faber-line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(25, 20, 15, .08);
}

.faber-home-series-media {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 26px 32px 18px;
	background: linear-gradient(180deg, #fbfaf7 0%, #f4eee4 100%);
	text-decoration: none;
}

.faber-home-series-media::after {
	position: absolute;
	right: 18%;
	bottom: 20px;
	left: 18%;
	height: 18px;
	border-radius: 999px;
	background: rgba(18, 16, 14, .1);
	filter: blur(12px);
	content: "";
}

.faber-home-series-media img {
	position: relative;
	z-index: 1;
	width: auto;
	max-width: 80%;
	max-height: 236px;
	height: auto;
	object-fit: contain;
	object-position: center bottom;
	transition: transform .32s var(--faber-ease);
}

.faber-home-series-card:hover .faber-home-series-media img {
	transform: scale(1.04);
}

.faber-home-series-copy {
	display: grid;
	align-content: start;
	padding: 28px 30px 30px;
}

.faber-home-series-copy > span {
	color: var(--faber-accent);
	font-size: 12px;
	font-weight: 950;
	line-height: 1.2;
	text-transform: uppercase;
}

.faber-home-series-copy h3,
.faber-home-compare-grid h3 {
	margin: 8px 0 12px;
	color: var(--faber-ink);
	font-size: 24px;
	font-weight: 950;
	line-height: 1.08;
}

.faber-home-series-copy p,
.faber-home-compare-grid p {
	margin: 0;
	color: var(--faber-muted);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.48;
}

.faber-home-series-copy ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 22px 0 24px;
	padding: 0;
	list-style: none;
}

.faber-home-series-copy li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 30px;
	padding: 7px 10px;
	border: 1px solid rgba(181, 136, 83, .22);
	border-radius: 999px;
	background: #fbf7f0;
	color: var(--faber-ink);
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
}

.faber-home-series-copy li::before {
	color: var(--faber-accent);
	content: "\2713";
}

.faber-home-text-link {
	align-self: end;
	color: var(--faber-ink);
	font-size: 14px;
	font-weight: 950;
	text-decoration: none;
}

.faber-home-text-link::after {
	margin-left: 7px;
	content: "\2192";
}

.faber-home-compare {
	background: #f7f1e8;
}

.faber-home-compare-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.faber-home-compare-grid article {
	min-height: 260px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 28px;
	background: var(--faber-green);
	color: #fff;
}

.faber-home-compare-grid i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	font-size: 20px;
}

.faber-home-compare-grid h3 {
	color: #fff;
}

.faber-home-compare-grid p {
	color: rgba(255, 255, 255, .76);
}

.faber-home-product-row {
	background: #fff;
	border-top: 1px solid var(--faber-line);
}

.faber-home-product-row:nth-of-type(even) {
	background: #f7f1e8;
}

.faber-home-product-row-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 30px;
}

.faber-home-product-row-head h2 {
	max-width: 820px;
}

.faber-home-product-row-head p {
	max-width: 760px;
	margin-top: 16px;
}

.is-faber-front ul.productgrid.faber-home-products {
	margin-top: 0 !important;
}

.faber-home-final {
	padding-bottom: 110px;
	background: #0f0d0b;
	color: #fff;
}

.faber-home-final-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 44px;
}

.faber-home-final h2 {
	color: #fff;
}

.faber-home-final p {
	max-width: 720px;
	color: rgba(255, 255, 255, .76);
}

@media (max-width: 1280px) {
	.faber-home-hero h1 {
		font-size: 60px;
	}

	.faber-home-series-grid,
	.faber-home-compare-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.faber-home-series-card {
		grid-template-rows: 280px 1fr;
	}
}

@media (max-width: 920px) {
	.faber-home-hero,
	.faber-home-hero-inner {
		min-height: 0;
	}

	.faber-home-hero-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 126px 0 58px;
	}

	.faber-home-hero h1 {
		font-size: 48px;
	}

	.faber-home-hero p:not(.faber-home-kicker) {
		font-size: 18px;
	}

	.faber-home-hero-product {
		min-height: 0;
		justify-content: flex-start;
	}

	.faber-home-hero-product img {
		width: min(78vw, 420px);
		max-height: 420px;
	}

	.faber-home-stat-grid,
	.faber-home-split {
		grid-template-columns: 1fr 1fr;
	}

	.faber-home-product-row-head,
	.faber-home-final-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 760px) {
	.faber-home-hero-inner {
		gap: 16px;
		padding: 104px 0 28px;
	}

	.faber-home-logo {
		width: 92px;
		margin-bottom: 18px;
	}

	.faber-home-hero h1,
	.faber-home-section h2,
	.faber-home-final h2 {
		font-size: 34px;
	}

	.faber-home-hero p:not(.faber-home-kicker) {
		margin-top: 18px;
		font-size: 16px;
		line-height: 1.42;
	}

	.faber-home-actions {
		gap: 10px;
		margin-top: 22px;
	}

	.faber-home-button {
		min-height: 50px;
	}

	.faber-home-hero-product {
		justify-content: center;
	}

	.faber-home-hero-product img {
		width: min(52vw, 190px);
		max-height: 190px;
	}

	.faber-home-section {
		padding: 62px 0;
	}

	.faber-home-stat-grid,
	.faber-home-split,
	.faber-home-series-grid,
	.faber-home-compare-grid {
		grid-template-columns: 1fr;
	}

	.faber-home-stat-grid > div {
		min-height: 104px;
		padding: 20px;
	}

	.faber-home-stat-grid strong {
		font-size: 32px;
	}

	.faber-home-series-card {
		grid-template-rows: 250px 1fr;
		border-radius: 24px;
	}

	.faber-home-series-media img {
		max-height: 210px;
	}

	.faber-home-series-copy,
	.faber-home-compare-grid article {
		padding: 22px;
	}

	.faber-home-product-row-head {
		margin-bottom: 22px;
	}

	.faber-home-actions,
	.faber-home-actions .faber-home-button,
	.faber-home-product-row-head .faber-home-button {
		width: 100%;
	}
}

/* SEO-Ratgeber: E.S.E. Pads FAQ */
.faber-modern #primary.faber-ese-faq {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: #f7f1e8;
	overflow: hidden;
}

.faber-ese-shell {
	width: var(--faber-page-width);
	max-width: var(--faber-max);
	margin: 0 auto;
}

.faber-ese-hero {
	position: relative;
	padding: clamp(150px, 13vw, 210px) 0 clamp(72px, 8vw, 120px);
	border-radius: 0 0 44px 44px;
	background:
		linear-gradient(110deg, rgba(15, 13, 11, .98) 0%, rgba(15, 13, 11, .92) 46%, rgba(37, 56, 48, .96) 100%),
		radial-gradient(circle at 78% 18%, rgba(183, 132, 79, .22), transparent 34%);
	color: #fff;
}

.faber-ese-hero::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, .08);
}

.faber-ese-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, .62fr);
	align-items: center;
	gap: clamp(34px, 5vw, 90px);
}

.faber-ese-breadcrumbs {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, .64);
	font-size: 14px;
	font-weight: 750;
}

.faber-ese-breadcrumbs a {
	color: rgba(255, 255, 255, .76);
	text-decoration: none;
}

.faber-ese-kicker {
	margin: 0 0 16px;
	color: var(--faber-accent);
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
}

.faber-ese-hero h1,
.faber-ese-section h2,
.faber-ese-cta h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: .96;
	letter-spacing: 0;
}

.faber-ese-hero h1 {
	max-width: 980px;
	color: #fff;
	font-size: clamp(50px, 6.1vw, 106px);
}

.faber-ese-hero-copy > p:not(.faber-ese-kicker):not(.faber-ese-breadcrumbs) {
	max-width: 780px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, .74);
	font-size: clamp(18px, 1.4vw, 23px);
	font-weight: 700;
	line-height: 1.48;
}

.faber-ese-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.faber-ese-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 28px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 950;
	text-align: center;
	text-decoration: none;
	transition: transform .22s var(--faber-ease), border-color .22s var(--faber-ease), background .22s var(--faber-ease);
}

.faber-ese-button:hover {
	transform: translateY(-2px);
}

.faber-ese-button-light {
	border: 1px solid #fff;
	background: #fff;
	color: #111 !important;
}

.faber-ese-button-outline {
	border: 1px solid rgba(255, 255, 255, .32);
	background: transparent;
	color: #fff !important;
}

.faber-ese-hero-card {
	display: grid;
	gap: 26px;
	padding: clamp(24px, 3vw, 38px);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 32px;
	background: rgba(255, 255, 255, .09);
	box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
	backdrop-filter: blur(20px);
}

.faber-ese-hero-card img {
	display: block;
	width: min(100%, 360px);
	max-height: 320px;
	margin: 0 auto;
	object-fit: contain;
	filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .28));
}

.faber-ese-hero-card span {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .13);
	color: rgba(255, 255, 255, .78);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.faber-ese-hero-card p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.faber-ese-hero-card strong {
	color: #fff;
}

.faber-ese-stats {
	position: relative;
	z-index: 2;
	margin-top: -44px;
	padding-bottom: clamp(62px, 7vw, 104px);
}

.faber-ese-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--faber-line);
	border-radius: 30px;
	background: #fff;
	box-shadow: var(--faber-shadow);
}

.faber-ese-stat-grid > div {
	display: grid;
	align-content: center;
	min-height: 128px;
	padding: 24px;
	border-radius: 22px;
	background: #fbf8f2;
}

.faber-ese-stat-grid strong {
	display: block;
	color: var(--faber-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 3.2vw, 56px);
	font-weight: 500;
	line-height: 1;
}

.faber-ese-stat-grid span {
	display: block;
	margin-top: 12px;
	color: var(--faber-muted);
	font-size: 15px;
	font-weight: 850;
	line-height: 1.35;
}

.faber-ese-section {
	padding: clamp(64px, 7vw, 112px) 0;
	background: #f7f1e8;
}

.faber-ese-section:nth-of-type(odd) {
	background: #fff;
}

.faber-ese-answer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
	gap: 22px;
}

.faber-ese-answer-card,
.faber-ese-keyword-card,
.faber-ese-benefit-grid article,
.faber-ese-faq-item {
	border: 1px solid var(--faber-line);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(18, 16, 14, .07);
}

.faber-ese-answer-card,
.faber-ese-keyword-card {
	padding: clamp(26px, 4vw, 58px);
}

.faber-ese-answer-card.is-primary {
	background: #fffaf1;
}

.faber-ese-section h2 {
	max-width: 980px;
	color: var(--faber-ink);
	font-size: clamp(40px, 5.1vw, 84px);
}

.faber-ese-answer-card p,
.faber-ese-section-head p,
.faber-ese-faq-item p,
.faber-ese-cta p {
	color: var(--faber-muted);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.62;
}

.faber-ese-answer-card p {
	max-width: 920px;
	margin: 24px 0 0;
}

.faber-ese-answer-card strong {
	color: var(--faber-ink);
}

.faber-ese-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.faber-ese-keywords span {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--faber-line);
	border-radius: 999px;
	background: #fbf8f2;
	color: var(--faber-ink);
	font-size: 15px;
	font-weight: 950;
}

.faber-ese-section-head {
	display: grid;
	gap: 16px;
	max-width: 1060px;
	margin-bottom: 32px;
}

.faber-ese-section-head p {
	max-width: 760px;
	margin: 0;
}

.faber-ese-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--faber-line);
	border-radius: 28px;
	background: #fff;
	box-shadow: var(--faber-shadow);
}

.faber-ese-table {
	width: 100%;
	min-width: 780px;
	border-collapse: collapse;
}

.faber-ese-table th,
.faber-ese-table td {
	padding: 24px 26px;
	border-bottom: 1px solid rgba(21, 19, 17, .10);
	text-align: left;
	vertical-align: top;
}

.faber-ese-table th {
	background: #fbf8f2;
	color: var(--faber-ink);
	font-size: 15px;
	font-weight: 950;
	text-transform: uppercase;
}

.faber-ese-table td {
	color: var(--faber-muted);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
}

.faber-ese-table td:first-child {
	color: var(--faber-ink);
	font-weight: 950;
}

.faber-ese-table tbody tr:last-child td {
	border-bottom: 0;
}

.faber-ese-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.faber-ese-benefit-grid article {
	padding: 30px;
}

.faber-ese-benefit-grid i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 28px;
	border-radius: 999px;
	background: var(--faber-green);
	color: #fff;
	font-size: 20px;
}

.faber-ese-benefit-grid h3 {
	margin: 0;
	color: var(--faber-ink);
	font-size: 24px;
	font-weight: 950;
	line-height: 1.1;
}

.faber-ese-benefit-grid p {
	margin: 16px 0 0;
	color: var(--faber-muted);
	font-size: 16px;
	font-weight: 750;
	line-height: 1.55;
}

.faber-ese-faq-section {
	background: #fff;
}

.faber-ese-faq-list {
	display: grid;
	gap: 14px;
}

.faber-ese-faq-item {
	overflow: hidden;
}

.faber-ese-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 76px;
	padding: 22px 72px 22px 28px;
	color: var(--faber-ink);
	font-size: clamp(18px, 1.4vw, 24px);
	font-weight: 950;
	line-height: 1.25;
	cursor: pointer;
	list-style: none;
}

.faber-ese-faq-item summary::-webkit-details-marker {
	display: none;
}

.faber-ese-faq-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #fbf8f2;
	color: var(--faber-ink);
	font-size: 22px;
	font-weight: 900;
	transform: translateY(-50%);
}

.faber-ese-faq-item[open] summary::after {
	content: "-";
	background: var(--faber-green);
	color: #fff;
}

.faber-ese-faq-item p {
	max-width: 1040px;
	margin: 0;
	padding: 0 28px 28px;
}

.faber-ese-cta {
	padding-bottom: clamp(76px, 8vw, 128px);
	background: #f7f1e8;
}

.faber-ese-cta-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 34px;
	padding: clamp(34px, 5vw, 64px);
	border-radius: 34px;
	background: var(--faber-dark);
	color: #fff;
	box-shadow: var(--faber-shadow);
}

.faber-ese-cta h2 {
	max-width: 960px;
	color: #fff;
	font-size: clamp(40px, 5vw, 82px);
}

.faber-ese-cta p {
	max-width: 820px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, .72);
}

.faber-ese-cta .faber-ese-actions {
	flex: 0 0 auto;
	justify-content: flex-end;
	margin-top: 0;
}

.faber-general-faq .faber-ese-hero h1 {
	max-width: 1080px;
}

.faber-faq-topic-section {
	background: #fff;
}

.faber-faq-topic-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.faber-faq-topic-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--faber-line);
	border-radius: 999px;
	background: #fbf8f2;
	color: var(--faber-ink);
	font-size: 15px;
	font-weight: 950;
	text-decoration: none;
	transition: transform .2s var(--faber-ease), border-color .2s var(--faber-ease), background .2s var(--faber-ease);
}

.faber-faq-topic-nav a:hover {
	border-color: rgba(37, 56, 48, .28);
	background: #fff;
	transform: translateY(-2px);
}

.faber-faq-series-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.faber-faq-series-grid a {
	display: grid;
	gap: 12px;
	min-height: 180px;
	padding: 28px;
	border: 1px solid var(--faber-line);
	border-radius: 28px;
	background: #fffaf1;
	color: var(--faber-ink);
	text-decoration: none;
	box-shadow: 0 18px 48px rgba(18, 16, 14, .07);
	transition: transform .22s var(--faber-ease), box-shadow .22s var(--faber-ease);
}

.faber-faq-series-grid a:hover {
	transform: translateY(-3px);
	box-shadow: var(--faber-shadow);
}

.faber-faq-series-grid span {
	color: var(--faber-accent);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.faber-faq-series-grid strong {
	font-size: clamp(26px, 2.4vw, 38px);
	font-weight: 950;
	line-height: 1.05;
}

.faber-faq-series-grid em {
	align-self: end;
	color: var(--faber-muted);
	font-size: 16px;
	font-style: normal;
	font-weight: 850;
}

.faber-faq-group {
	scroll-margin-top: 130px;
	margin-top: 42px;
}

.faber-faq-group:first-of-type {
	margin-top: 0;
}

.faber-faq-group-head {
	display: grid;
	gap: 12px;
	max-width: 900px;
	margin: 0 0 18px;
}

.faber-faq-group-head h3 {
	margin: 0;
	color: var(--faber-ink);
	font-size: clamp(28px, 3vw, 46px);
	font-weight: 950;
	line-height: 1.06;
}

.faber-faq-group-head p:not(.faber-ese-kicker) {
	margin: 0;
	color: var(--faber-muted);
	font-size: 17px;
	font-weight: 750;
	line-height: 1.5;
}

.faber-faq-steps {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	counter-reset: faber-faq-step;
	list-style: none;
}

.faber-faq-steps li {
	position: relative;
	min-height: 54px;
	padding: 15px 18px 15px 62px;
	border: 1px solid rgba(21, 19, 17, .10);
	border-radius: 18px;
	background: #fff;
	color: var(--faber-muted);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.5;
	counter-increment: faber-faq-step;
}

.faber-faq-steps li::before {
	content: counter(faber-faq-step);
	position: absolute;
	top: 14px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: var(--faber-green);
	color: #fff;
	font-size: 14px;
	font-weight: 950;
}

@media (max-width: 1180px) {
	.faber-ese-hero-inner,
	.faber-ese-answer-grid {
		grid-template-columns: 1fr;
	}

	.faber-ese-hero-card {
		max-width: 720px;
	}

	.faber-ese-stat-grid,
	.faber-ese-benefit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.faber-ese-cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.faber-ese-cta .faber-ese-actions {
		justify-content: flex-start;
	}

	.faber-faq-series-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.faber-ese-hero {
		padding: 118px 0 56px;
		border-radius: 0 0 28px 28px;
	}

	.faber-ese-hero-inner {
		gap: 26px;
	}

	.faber-ese-breadcrumbs {
		margin-bottom: 18px;
		font-size: 13px;
	}

	.faber-ese-hero h1,
	.faber-ese-section h2,
	.faber-ese-cta h2 {
		font-size: 36px;
		line-height: 1;
	}

	.faber-ese-hero-copy > p:not(.faber-ese-kicker):not(.faber-ese-breadcrumbs),
	.faber-ese-answer-card p,
	.faber-ese-section-head p,
	.faber-ese-faq-item p,
	.faber-ese-cta p {
		font-size: 16px;
		line-height: 1.55;
	}

	.faber-ese-actions,
	.faber-ese-button {
		width: 100%;
	}

	.faber-ese-hero-card {
		padding: 22px;
		border-radius: 24px;
	}

	.faber-ese-hero-card img {
		max-height: 210px;
	}

	.faber-ese-stats {
		margin-top: -28px;
		padding-bottom: 48px;
	}

	.faber-ese-stat-grid,
	.faber-ese-benefit-grid {
		grid-template-columns: 1fr;
	}

	.faber-ese-stat-grid {
		border-radius: 24px;
	}

	.faber-ese-stat-grid > div {
		min-height: 102px;
		padding: 20px;
	}

	.faber-ese-section {
		padding: 58px 0;
	}

	.faber-ese-answer-card,
	.faber-ese-keyword-card,
	.faber-ese-benefit-grid article,
	.faber-ese-cta-inner {
		padding: 22px;
		border-radius: 24px;
	}

	.faber-ese-keywords span {
		min-height: 38px;
		font-size: 14px;
	}

	.faber-ese-table-wrap {
		border-radius: 22px;
	}

	.faber-ese-table {
		min-width: 680px;
	}

	.faber-ese-table th,
	.faber-ese-table td {
		padding: 18px;
	}

	.faber-ese-faq-item summary {
		min-height: 64px;
		padding: 18px 58px 18px 20px;
	}

	.faber-ese-faq-item summary::after {
		right: 18px;
		width: 30px;
		height: 30px;
	}

	.faber-ese-faq-item p {
		padding: 0 20px 22px;
	}

	.faber-faq-topic-nav {
		gap: 8px;
	}

	.faber-faq-topic-nav a {
		min-height: 40px;
		padding: 0 14px;
		font-size: 14px;
	}

	.faber-faq-series-grid a {
		min-height: 140px;
		padding: 22px;
		border-radius: 24px;
	}

	.faber-faq-group {
		scroll-margin-top: 104px;
		margin-top: 32px;
	}

	.faber-faq-group-head h3 {
		font-size: 26px;
	}

	.faber-faq-steps li {
		padding: 14px 16px 14px 56px;
		font-size: 15px;
	}
}

@media (max-width: 760px) {
	.faber-service-drawer-panel {
		width: 100vw;
		padding: 78px 18px 24px;
	}

	.faber-service-drawer-close {
		top: 16px;
		right: 16px;
	}

	.faber-service-drawer-panel h2 {
		font-size: clamp(40px, 11vw, 54px);
	}

	.faber-service-drawer-lead {
		font-size: 16px;
	}

	.faber-service-form .wpcf7-form,
	.faber-service-form .faber-native-service-form {
		grid-template-columns: 1fr;
	}
}
