.lh-home {
	background: #f6f6f6;
	color: #343434;
	overflow: hidden;
}

.lh-home *,
.lh-home *:before,
.lh-home *:after {
	box-sizing: border-box;
}

.lh-home a {
	text-decoration: none;
}

.lh-hero {
	padding: 62px 0 48px;
	background:
		linear-gradient(120deg, rgba(52, 52, 52, 0.78), rgba(52, 52, 52, 0.4)),
		linear-gradient(135deg, #f6f6f6 0%, #e9e4de 100%);
	position: relative;
	overflow: hidden;
}

.lh-hero:before {
	content: '';
	position: absolute;
	right: -150px;
	top: -220px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(163, 140, 118, 0.28);
}

.lh-hero:after {
	content: '';
	position: absolute;
	left: -140px;
	bottom: -220px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: rgba(42, 119, 237, 0.12);
}

.lh-hero .container {
	position: relative;
	z-index: 2;
}

.lh-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 46px;
	align-items: center;
}

.lh-eyebrow {
	display: inline-block;
	margin: 0 0 18px;
	color: #a38c76;
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-hero .lh-eyebrow {
	color: #e7d7c7;
}

.lh-hero__title {
	max-width: 680px;
	margin: 0 0 24px;
	color: #fff;
	font-size: 40px;
	font-weight: 300;
	line-height: 56px;
	text-transform: uppercase;
}

.lh-hero__text {
	max-width: 600px;
	margin: 0;
	padding: 0 0 32px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	line-height: 27px;
}

.lh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.lh-btn {
	padding-left: 34px;
	padding-right: 34px;
	border-radius: 40px;
	border-bottom: 0;
}

.lh-btn:hover {
	border-bottom: 0;
}

.lh-btn--primary {
	background: #2a77ed;
	color: #fff;
}

.lh-btn--primary:hover {
	background: #256bd7;
	color: #fff;
	box-shadow: 0 5px 30px -10px #256bd7;
}

.lh-btn--light {
	background: #fff;
	color: #343434;
}

.lh-btn--light:hover {
	background: #f3f3f3;
	color: #2a77ed;
}

.lh-btn--full {
	width: 100%;
}

.lh-hero__visual {
	min-height: 390px;
	position: relative;
	border-radius: 4px;
	background:
		linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
		linear-gradient(135deg, #ffffff 0%, #ded7cf 100%);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
	overflow: hidden;
}

.lh-hero__visual:before,
.lh-hero__visual:after {
	content: '';
	position: absolute;
	background: rgba(255, 255, 255, 0.22);
}

.lh-hero__visual:before {
	left: 36px;
	top: 44px;
	width: 180px;
	height: 260px;
}

.lh-hero__visual:after {
	right: 42px;
	top: 70px;
	width: 120px;
	height: 190px;
}

.lh-hero__circle {
	position: absolute;
	right: 28px;
	bottom: 28px;
	width: 188px;
	height: 188px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
	text-align: center;
	background: #fff;
	color: #343434;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
	z-index: 3;
}

.lh-hero__note {
	position: absolute;
	left: 28px;
	bottom: 32px;
	max-width: 250px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.92);
	color: #343434;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	z-index: 3;
}

.lh-hero-collage {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: 1fr 1fr 0.8fr;
	gap: 12px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(8px);
}

.lh-hero-collage:before,
.lh-hero-collage:after {
	display: none;
}

.lh-hero-collage__item {
	position: relative;
	overflow: hidden;
	padding: 20px;
	border-radius: 4px;
	background: #fff;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.lh-hero-collage__item:before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.56)),
		var(--lh-card-bg);
	background-size: cover;
	background-position: center;
	transition: transform 0.35s ease;
}

.lh-hero-collage__item:hover:before {
	transform: scale(1.04);
}

.lh-hero-collage__item--large {
	grid-row: span 2;
	min-height: 250px;
}

.lh-hero-collage__item--wide {
	grid-column: span 2;
	min-height: 110px;
}

.lh-hero-collage__item--light {
/*	--lh-card-bg:
		radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), transparent 16%),
		linear-gradient(135deg, #3b3b3b 0%, #d7c5a7 100%);*/
	--lh-card-bg: url("/image/catalog/home-landing/hero-light.jpg");
}

.lh-hero-collage__item--floor {
	/*--lh-card-bg:
		linear-gradient(135deg, #c8ad8e 0%, #7c6048 100%);*/
	--lh-card-bg: url("/image/catalog/home-landing/hero-floor.jpg");
}

.lh-hero-collage__item--bath {
	/*--lh-card-bg:
		linear-gradient(135deg, #e7eef5 0%, #90a9ba 100%);*/
	--lh-card-bg: url("/image/catalog/home-landing/hero-bath.jpg");
}

.lh-hero-collage__item--electric {
	--lh-card-bg:
		linear-gradient(135deg, #2a77ed 0%, #343434 100%);
}

.lh-hero-collage__label,
.lh-hero-collage__item strong {
	position: relative;
	z-index: 2;
}

.lh-hero-collage__label {
	display: inline-block;
	width: max-content;
	margin: 0 0 8px;
	padding: 5px 9px;
	background: rgba(255, 255, 255, 0.92);
	color: #343434;
	font-size: 10px;
	line-height: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 20px;
}

.lh-hero-collage__item strong {
	display: block;
	max-width: 260px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	line-height: 23px;
}

.lh-hero-collage .lh-hero__circle {
	right: 22px;
	bottom: 22px;
	width: 160px;
	height: 160px;
	font-size: 15px;
	line-height: 21px;
}

.lh-hero-collage .lh-hero__note {
	left: 22px;
	bottom: 22px;
}

@media (max-width: 767px) {
	.lh-hero-collage {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		min-height: 420px;
	}

	.lh-hero-collage__item {
		min-height: 120px;
		padding: 16px;
	}

	.lh-hero-collage__item--large {
		grid-row: span 1;
		grid-column: span 2;
		min-height: 150px;
	}

	.lh-hero-collage__item--wide {
		grid-column: span 2;
	}

	.lh-hero-collage__item strong {
		font-size: 14px;
		line-height: 20px;
	}

	.lh-hero-collage .lh-hero__circle,
	.lh-hero-collage .lh-hero__note {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		grid-column: span 2;
		width: auto;
		height: auto;
		border-radius: 4px;
		margin: 0;
	}
}

.lh-directions {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 15px;
}

.lh-directions--hero {
	margin-top: 34px;
}

.lh-direction {
	min-height: 98px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.88);
	color: #343434;
	text-align: left;
	border-radius: 4px;
	box-shadow: none;
	letter-spacing: normal;
	text-transform: none;
	transition: all 0.2s ease-in-out;
}

.lh-direction:hover {
	background: #fff;
	color: #2a77ed;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.lh-direction__name {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.lh-direction-note {
	display: none;
	margin-top: 16px;
	padding: 14px 18px;
	background: #fff;
	color: #7e7e7e;
	font-size: 13px;
	line-height: 21px;
	border-left: 3px solid #2a77ed;
}

.lh-direction-note.is-visible {
	display: block;
}

.lh-section {
	padding: 74px 0;
	background: #f6f6f6;
}

.lh-section--white {
	background: #fff;
}

.lh-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 0 36px;
}

.lh-section-title {
	margin: 0;
	padding: 0;
	color: #343434;
	font-size: 34px;
	font-weight: 300;
	line-height: 42px;
	text-transform: uppercase;
}

.lh-section-text {
	margin: 0;
	padding: 0;
	color: #3e3e3e;
	font-size: 15px;
	line-height: 26px;
}

.lh-manager {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 50px;
	align-items: start;
}

.lh-manager__content .lh-section-text {
	max-width: 720px;
	padding-bottom: 30px;
}

.lh-benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.lh-benefit {
	min-height: 140px;
	padding: 25px 24px;
	background: #fff;
}

.lh-benefit__title {
	display: block;
	margin: 0 0 10px;
	color: #a38c76;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-transform: uppercase;
}

.lh-benefit__text {
	display: block;
	color: #3e3e3e;
	font-size: 14px;
	line-height: 22px;
}
@media (max-width: 767px) {
	.lh-benefit__text {
		font-size: 15px;
		line-height: 28px;
	}

	.lh-benefit__title {
		color: #3e3e3e;
		font-size: 24px;
		line-height: 31px;
		font-weight: 400;
		text-transform: none;
	}
}

.lh-lead-card {
	padding: 30px;
	background: #f5f5f5;
	border: 1px solid #e8e8e8;
}

.lh-lead-card__title {
	margin: 0;
	padding: 0 0 12px;
	font-size: 25px;
	font-weight: 300;
	line-height: 30px;
	color: #343434;
}

.lh-lead-card__text {
	margin: 0;
	padding: 0 0 22px;
	color: #7e7e7e;
	font-size: 13px;
	line-height: 22px;
}

.lh-field {
	display: block;
	margin: 0 0 13px;
}

.lh-field__label {
	display: block;
	padding: 0 0 7px;
	color: #7e7e7e;
	font-size: 11px;
	line-height: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-form textarea {
	min-height: 105px;
}

.lh-lead-card__contacts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 18px;
	padding-top: 18px;
}

.lh-lead-card__contacts a {
	color: #2a77ed;
	font-size: 13px;
	line-height: 18px;
}

.lh-offer {
	background: #efebe6;
}

.lh-offer__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 40px;
	align-items: center;
	padding: 44px 50px;
	background: #fff;
	border: 1px solid #e1d9d0;
}

.lh-offer__badge {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	background: #a38c76;
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	line-height: 28px;
}

.lh-perks {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.lh-perk {
	min-height: 250px;
	padding: 30px;
	background: #fff;
}

.lh-perk__num {
	display: block;
	padding-bottom: 24px;
	color: #2a77ed;
	font-size: 12px;
	font-weight: 500;
	line-height: 12px;
	letter-spacing: 1px;
}

.lh-perk h3 {
	padding: 0 0 14px;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	color: #343434;
}

.lh-perk p {
	padding: 0;
	color: #3e3e3e;
	font-size: 13px;
	line-height: 23px;
}

.lh-bonus {
	background: #343434;
}

.lh-bonus .lh-eyebrow {
	color: #d7c5b5;
}

.lh-bonus .lh-section-title {
	color: #fff;
}

.lh-bonus .lh-section-text {
	color: rgba(255, 255, 255, 0.72);
}

.lh-bonus__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 30px;
	align-items: center;
}

.lh-reviews {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.lh-review {
	padding: 28px;
	background: #fff;
	border: 1px solid #e8e8e8;
}

.lh-review__rating {
	padding-bottom: 15px;
	color: #cab504;
	font-size: 15px;
	line-height: 15px;
	letter-spacing: 2px;
}

.lh-review p {
	padding: 0 0 20px;
	color: #343434;
	font-size: 14px;
	line-height: 24px;
}

.lh-review span {
	display: block;
	color: #7e7e7e;
	font-size: 12px;
	line-height: 18px;
}

.lh-widget-note {
	margin-top: 18px;
	padding: 16px 18px;
	background: #fff;
	color: #7e7e7e;
	font-size: 13px;
	line-height: 22px;
	border-left: 3px solid #a38c76;
}

.lh-interiors {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.lh-interior {
	background: #fff;
	border: 1px solid #e8e8e8;
}

.lh-interior__image {
	height: 260px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.lh-interior__image--one {
/*	background:
		linear-gradient(135deg, rgba(52, 52, 52, 0.05), rgba(52, 52, 52, 0.16)),
		linear-gradient(135deg, #f7f1ea, #d9cabc);*/
	background: url("/image/catalog/home-landing/production-light-track.jpg");
	background-size: cover;
}

.lh-interior__image--two {
/*	background:
		linear-gradient(135deg, rgba(52, 52, 52, 0.04), rgba(42, 119, 237, 0.14)),
		linear-gradient(135deg, #ffffff, #dfe6ef);*/
	background: url("/image/catalog/home-landing/production-repair.jpg");
	background-size: cover;
}

.lh-interior__image--three {
/*	background:
		linear-gradient(135deg, rgba(52, 52, 52, 0.05), rgba(163, 140, 118, 0.18)),
		linear-gradient(135deg, #f4f4f4, #ddd6ce);*/
	background: url("/image/catalog/home-landing/production-showroom.jpg");
	background-size: cover;
}

.lh-interior h3 {
	padding: 22px 24px 10px;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	color: #343434;
}

.lh-interior p {
	padding: 0 24px 24px;
	color: #3e3e3e;
	font-size: 13px;
	line-height: 23px;
}

.lh-categories {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.lh-category {
	display: block;
	min-height: 190px;
	padding: 28px;
	background: #fff;
	color: #343434;
	border: 0;
}

.lh-category:hover {
	background: #f5f5f5;
	border: 0;
}

.lh-category__title {
	display: block;
	padding: 0 0 14px;
	color: #a38c76;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
}

.lh-category__text {
	display: block;
	color: #7e7e7e;
	font-size: 13px;
	line-height: 23px;
}

@media (max-width: 1024px) {
	.lh-hero__grid,
	.lh-manager,
	.lh-offer__box,
	.lh-bonus__inner {
		grid-template-columns: 1fr;
	}

	.lh-directions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lh-offer__badge {
		margin-left: 0;
	}

	.lh-reviews,
	.lh-interiors,
	.lh-categories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lh-hero {
		padding: 42px 0 34px;
	}

	.lh-hero__title {
		font-size: 32px;
		line-height: 40px;
	}

	.lh-hero__text {
		font-size: 14px;
		line-height: 24px;
	}

	.lh-hero__actions {
		display: block;
	}

	.lh-hero__actions .btn {
		display: block;
		width: 100%;
		margin-bottom: 12px;
	}

	.lh-hero__visual {
		min-height: 300px;
	}

	.lh-hero__circle {
		width: 150px;
		height: 150px;
		font-size: 15px;
		line-height: 21px;
		right: 18px;
		bottom: 18px;
	}

	.lh-hero__note {
		left: 18px;
		bottom: 18px;
		max-width: 170px;
		font-size: 12px;
		line-height: 18px;
	}

	.lh-directions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.lh-direction {
		min-height: 78px;
		padding: 14px;
	}

	.lh-section {
		padding: 48px 0;
	}

	.lh-section-head {
		display: block;
		margin-bottom: 26px;
	}

	.lh-section-title {
		font-size: 27px;
		line-height: 34px;
	}

	.lh-benefits,
	.lh-perks,
	.lh-reviews,
	.lh-interiors,
	.lh-categories {
		grid-template-columns: 1fr;
	}

	.lh-lead-card {
		padding: 24px 20px;
	}

	.lh-offer__box {
		padding: 30px 24px;
	}

	.lh-offer__badge {
		width: 150px;
		height: 150px;
		font-size: 18px;
		line-height: 24px;
	}

	.lh-perk {
		min-height: 0;
	}

	.lh-interior__image {
		height: 210px;
	}
}

@media (max-width: 479px) {
	.lh-directions {
		grid-template-columns: 1fr;
	}

	.lh-btn {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.lh-categories--visual {
	gap: 20px;
	background: transparent;
	border: 0;
}

.lh-category--visual {
	position: relative;
	min-height: 260px;
	padding: 28px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: #343434;
	color: #fff;
	border: 0;
}

.lh-category--visual:before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72)),
		var(--lh-category-bg);
	background-size: cover;
	background-position: center;
	transition: transform 0.35s ease;
}

.lh-category--visual:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: #2a77ed;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.lh-category--visual:hover {
	background: #343434;
}

.lh-category--visual:hover:before {
	transform: scale(1.05);
}

.lh-category--visual:hover:after {
	transform: scaleX(1);
}

.lh-category--light {
	--lh-category-bg:
		radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.95), transparent 12%),
		radial-gradient(circle at 70% 34%, rgba(255, 220, 150, 0.9), transparent 18%),
		linear-gradient(135deg, #2f2f2f 0%, #c7aa80 100%);
}

.lh-category--electric {
	--lh-category-bg:
		linear-gradient(135deg, #2a77ed 0%, #1f2f4a 46%, #343434 100%);
}

.lh-category--floor {
	--lh-category-bg:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 14px, transparent 14px 28px),
		linear-gradient(135deg, #d0b18f 0%, #7b5e46 100%);
}

.lh-category--tile {
	--lh-category-bg:
		linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(135deg, #dadada 0%, #8b8b8b 100%);
	background-size: auto, 54px 54px, 54px 54px, auto;
}

.lh-category--bath {
	--lh-category-bg:
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7), transparent 16%),
		linear-gradient(135deg, #e7eef5 0%, #7f9faf 100%);
}

.lh-category--ceiling {
	--lh-category-bg:
		linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 28%),
		linear-gradient(135deg, #f4f1eb 0%, #b8aa9d 48%, #343434 100%);
}

.lh-category--visual .lh-category__tag,
.lh-category--visual .lh-category__title,
.lh-category--visual .lh-category__text {
	position: relative;
	z-index: 2;
}

.lh-category__tag {
	display: inline-block;
	width: max-content;
	margin: 0 0 12px;
	padding: 5px 9px;
	background: rgba(255, 255, 255, 0.92);
	color: #343434;
	font-size: 10px;
	line-height: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 20px;
}

.lh-category--visual .lh-category__title {
	color: #fff;
	font-size: 22px;
	line-height: 28px;
}

.lh-category--visual .lh-category__text {
	color: rgba(255, 255, 255, 0.82);
	max-width: 340px;
}

.lh-process-section {
	background: #f6f6f6;
}

.lh-process {
	display: grid;
	grid-template-columns: 420px minmax(0, 1fr);
	gap: 42px;
	align-items: stretch;
}

.lh-process__visual {
	background:
		linear-gradient(135deg, rgba(42, 119, 237, 0.12), rgba(163, 140, 118, 0.18)),
		#fff;
	border: 1px solid #e8e8e8;
	padding: 34px;
}

.lh-project-card {
	background: #fff;
	border: 1px solid #e4e4e4;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
	padding: 26px;
}

.lh-project-card__top {
	padding-bottom: 24px;
	border-bottom: 1px solid #f0f0f0;
}

.lh-project-card__top span {
	display: block;
	padding-bottom: 7px;
	color: #a38c76;
	font-size: 11px;
	line-height: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-project-card__top strong {
	display: block;
	color: #343434;
	font-size: 22px;
	font-weight: 400;
	line-height: 28px;
}

.lh-project-card__line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid #f0f0f0;
}

.lh-project-card__line span {
	color: #343434;
	font-size: 13px;
	font-weight: 500;
	line-height: 18px;
}

.lh-project-card__line em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 118px;
	min-height: 28px;
	padding: 7px 12px;
	border-radius: 20px;
	background: #f3f3f3;
	color: #2a77ed;
	font-size: 10px;
	line-height: 10px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-project-card__line em:before {
	content: '';
	width: 6px;
	height: 6px;
	margin-right: 7px;
	border-radius: 50%;
	background: #2a77ed;
}

.lh-project-card__summary {
	margin-top: 22px;
	padding: 16px;
	background: #f5f5f5;
	color: #7e7e7e;
	font-size: 13px;
	line-height: 22px;
	border-left: 3px solid #2a77ed;
}

.lh-process__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.lh-process-step {
	background: #fff;
	padding: 28px;
	min-height: 190px;
}

.lh-process-step span {
	display: block;
	padding-bottom: 22px;
	color: #2a77ed;
	font-size: 12px;
	font-weight: 500;
	line-height: 12px;
	letter-spacing: 1px;
}

.lh-process-step h3 {
	padding: 0 0 12px;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	color: #343434;
}

.lh-process-step p {
	padding: 0;
	color: #3e3e3e;
	font-size: 13px;
	line-height: 23px;
}

@media (max-width: 1024px) {
	.lh-process {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.lh-process__visual {
		padding: 20px;
	}

	.lh-project-card {
		padding: 22px;
	}

	.lh-process__steps {
		grid-template-columns: 1fr;
	}
}

.lh-direction {
	position: relative;
	overflow: hidden;
}

.lh-direction:before {
	content: '';
	position: absolute;
	right: -18px;
	top: -18px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(42, 119, 237, 0.12);
}

.lh-direction:after {
	content: '';
	position: absolute;
	left: 14px;
	bottom: 12px;
	width: 34px;
	height: 2px;
	background: #a38c76;
	opacity: 0.5;
}

.lh-direction__name {
	position: relative;
	z-index: 2;
	padding-bottom: 20px;
}

.lh-category--light {
	--lh-category-bg: url("/image/catalog/home-landing/category-light.jpg");
}

.lh-category--electric {
	--lh-category-bg: url("/image/catalog/home-landing/category-electric.jpg");
}

.lh-category--floor {
	--lh-category-bg: url("/image/catalog/home-landing/category-floor.jpg");
}

.lh-category--tile {
	--lh-category-bg: url("/image/catalog/home-landing/category-tile.jpg");
}

.lh-category--bath {
	--lh-category-bg: url("/image/catalog/home-landing/category-bath.jpg");
}

.lh-category--ceiling {
	--lh-category-bg: url("/image/catalog/home-landing/category-ceiling.jpg");
}

.lh-hero__visual {
	min-height: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.lh-hero__visual:before,
.lh-hero__visual:after {
	display: none;
}

.lh-hero-collage {
	min-height: 390px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.lh-hero-badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}

.lh-hero-badge {
	min-height: 72px;
	display: flex;
	align-items: center;
	padding: 17px 20px;
	background: rgba(255, 255, 255, 0.92);
	color: #343434;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lh-hero-badge--main {
	background: #fff;
	color: #343434;
	border-left: 3px solid #2a77ed;
}

.lh-hero__circle,
.lh-hero__note {
	display: none;
}

@media (max-width: 767px) {
	.lh-hero-collage {
		min-height: 0;
	}

	.lh-hero-badges {
		grid-template-columns: 1fr;
	}

	.lh-hero-badge {
		min-height: 0;
	}
}

.lh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.lh-hero__actions .btn {
	width: auto;
	min-width: 220px;
	margin: 0;
}

@media (max-width: 767px) {
	.lh-hero__actions {
		display: block;
	}

	.lh-hero__actions .btn {
		display: block;
		width: 100%;
		min-width: 0;
		margin: 0 0 12px;
	}
}

.lh-hero__visual {
    position: relative;
    min-height: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.lh-hero__visual:before,
.lh-hero__visual:after {
    display: none;
}

.lh-hero-collage {
    position: relative;
    min-height: 390px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.lh-hero-badges,
.lh-hero-badge,
.lh-hero__circle,
.lh-hero__note {
    display: none !important;
}

.lh-hero-overlay-circle {
    position: absolute;
    right: 18px;
    bottom: 0px;
    z-index: 5;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #343434;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

@media (max-width: 767px) {
    .lh-hero-overlay-circle {
        width: 132px;
        height: 132px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
        font-size: 12px;
        line-height: 18px;
    }
}

@media (min-width: 768px) {
    .lh-home .lh-hero__actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .lh-home .lh-hero__actions .btn,
    .lh-home .lh-hero__actions .lh-btn {
        display: inline-flex !important;
        width: auto !important;
        min-width: 220px;
        margin: 0 !important;
        flex: 0 0 auto !important;
    }
}

@media (max-width: 767px) {
    .lh-home .lh-hero__actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .lh-home .lh-hero__actions .btn,
    .lh-home .lh-hero__actions .lh-btn {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }
}

/* FINAL FIX: hero buttons desktop row */
@media (min-width: 768px) {
	.lh-home .lh-hero__actions {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		gap: 12px !important;
		max-width: 560px;
	}

	.lh-home .lh-hero__actions .btn,
	.lh-home .lh-hero__actions .lh-btn {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		flex: 1 1 0 !important;
		width: auto !important;
		min-width: 0 !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 13px 20px !important;
		white-space: nowrap !important;
		text-align: center !important;
	}
}

@media (max-width: 767px) {
	.lh-home .lh-hero__actions {
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
		max-width: none;
	}

	.lh-home .lh-hero__actions .btn,
	.lh-home .lh-hero__actions .lh-btn {
		display: flex !important;
		width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 13px 20px !important;
		white-space: normal !important;
	}
}

.lh-eyebrow--hero-link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
}

@media (max-width: 767px) {
	.lh-eyebrow--hero-link {
		display: none;
	}
}

.lh-eyebrow--hero-link span {
	display: inline-block;
}

.lh-eyebrow--hero-link a {
	display: inline-block;
	color: #fff;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.55);
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-eyebrow--hero-link a:hover {
	color: #fff;
	border-bottom-color: transparent;
}

.lh-material-strip {
	margin-top: 34px;
}

.lh-material-strip__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 14px;
	color: #fff;
}

.lh-material-strip__head span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	line-height: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-material-strip__head strong {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

.lh-material-strip__track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.lh-material-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 116px;
	padding: 18px;
	overflow: hidden;
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: #343434;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.lh-material-card:before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(0, 0, 0, 0.42)),
		var(--lh-material-bg);
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
}

.lh-material-card:hover {
	border: 0;
	color: #fff;
}

.lh-material-card:hover:before {
	transform: scale(1.05);
}

.lh-material-card span,
.lh-material-card strong {
	position: relative;
	z-index: 2;
}

.lh-material-card span {
	display: inline-block;
	width: max-content;
	margin-bottom: 8px;
	padding: 5px 9px;
	background: rgba(255, 255, 255, 0.92);
	color: #343434;
	border-radius: 20px;
	font-size: 10px;
	line-height: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-material-card strong {
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 21px;
	font-weight: 500;
}

.lh-material-card--shower {
	--lh-material-bg: linear-gradient(135deg, #e8f0f5 0%, #7392a5 100%);
}

.lh-material-card--toilet {
	--lh-material-bg: linear-gradient(135deg, #f4f4f4 0%, #9ea9ad 100%);
}

.lh-material-card--floor {
	--lh-material-bg: linear-gradient(135deg, #d2b08c 0%, #75553c 100%);
}

.lh-material-card--tile {
	--lh-material-bg:
		linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
		linear-gradient(135deg, #bdbdbd 0%, #6f6f6f 100%);
	background-size: auto, 42px 42px, 42px 42px, auto;
}

.lh-material-card--switch {
	--lh-material-bg: linear-gradient(135deg, #2f2f2f 0%, #777 100%);
}

.lh-material-card--led {
	--lh-material-bg:
		radial-gradient(circle at 30% 25%, rgba(255, 244, 200, 0.95), transparent 18%),
		linear-gradient(135deg, #2b2b2b 0%, #cab504 100%);
}

.lh-material-card--track {
	--lh-material-bg:
		linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 26%),
		linear-gradient(135deg, #3b3b3b 0%, #d7c5a7 100%);
}

.lh-material-card--ceiling {
	--lh-material-bg:
		linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 28%),
		linear-gradient(135deg, #f4f1eb 0%, #343434 100%);
}

@media (max-width: 1024px) {
	.lh-material-strip__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lh-material-strip__head {
		display: block;
	}

	.lh-material-strip__head span {
		display: block;
		margin-bottom: 6px;
	}

	.lh-material-strip__track {
		grid-template-columns: 1fr;
	}

	.lh-material-card {
		min-height: 92px;
	}
}

.lh-manager-person {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	margin: 0 0 30px;
	padding: 20px;
	background: #f5f5f5;
	border: 1px solid #e8e8e8;
}

.lh-manager-person__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(42, 119, 237, 0.16), rgba(163, 140, 118, 0.22)),
		url("/image/catalog/home-landing/manager.jpg") center/cover no-repeat;
}

.lh-manager-person__content span {
	display: block;
	margin-bottom: 8px;
	color: #a38c76;
	font-size: 11px;
	line-height: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-manager-person__content strong {
	display: block;
	max-width: 520px;
	color: #343434;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

@media (max-width: 767px) {
	.lh-manager-person {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 16px;
		padding: 16px;
	}

	.lh-manager-person__photo {
		width: 82px;
		height: 82px;
	}

	.lh-manager-person__content strong {
		font-size: 15px;
		line-height: 23px;
	}
}

.lh-offer__badge--product {
	position: relative;
	overflow: hidden;
	flex-direction: column;
	background:
		linear-gradient(180deg, rgba(52, 52, 52, 0.1), rgba(52, 52, 52, 0.58)),
		radial-gradient(circle at 35% 35%, rgba(255, 245, 190, 0.9), transparent 22%),
		linear-gradient(135deg, #d9c7a7 0%, #7a6551 100%);
	color: #fff;
}

.lh-offer__badge--product:before {
	content: '';
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 48px;
	height: 7px;
	border-radius: 20px;
	background: rgba(255, 232, 140, 0.92);
	box-shadow: 0 0 22px rgba(255, 232, 140, 0.75);
	transform: none;
}

.lh-offer__badge--product span,
.lh-offer__badge--product strong {
	position: relative;
	z-index: 2;
	display: block;
	text-align: center;
}

.lh-offer__badge--product span {
	font-size: 32px;
	line-height: 36px;
	font-weight: 300;
}

.lh-offer__badge--product strong {
	max-width: 130px;
	font-size: 15px;
	line-height: 21px;
	font-weight: 400;
}

.lh-section-link {
	color: #2a77ed;
	font-size: 13px;
	line-height: 18px;
	border-bottom: 1px dashed rgba(42, 119, 237, 0.35);
}

.lh-section-link:hover {
	border-bottom-color: transparent;
}

.lh-manager-person {
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 28px;
	padding: 26px;
}

.lh-manager-person__photo {
	width: 160px;
	height: 160px;
}

.lh-manager-person__content strong {
	font-size: 21px;
	line-height: 31px;
}

@media (max-width: 767px) {
	.lh-manager-person {
		display: block;
		padding: 22px;
		text-align: center;
	}

	.lh-manager-person__photo {
		width: 150px;
		height: 150px;
		margin: 0 auto 20px;
	}

	.lh-manager-person__content strong {
		font-size: 20px;
		line-height: 30px;
	}
}

/* Process without fake project card */
.lh-process-note {
	margin: 0 0 28px;
	padding: 22px 26px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-left: 3px solid #2a77ed;
	color: #343434;
	font-size: 16px;
	line-height: 27px;
}

.lh-process__steps--full {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* AI lighting quiz: a faster alternative to the manual selection process */
.lh-ai-quiz {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	min-height: 174px;
	margin-top: 24px;
	padding: 30px 34px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dbe7fa;
	box-shadow: 0 16px 42px rgba(35, 78, 145, 0.09);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lh-ai-quiz:before {
	content: '';
	position: absolute;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #2a77ed, #55b8ff, #8d6cf3, #2a77ed);
	background-size: 220% 100%;
	animation: lh-ai-quiz-gradient 5s linear infinite;
}

.lh-ai-quiz:after {
	content: '';
	position: absolute;
	z-index: -1;
	right: 120px;
	top: -150px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(42, 119, 237, 0.12) 0%, rgba(84, 182, 255, 0.04) 48%, rgba(255, 255, 255, 0) 72%);
	animation: lh-ai-quiz-glow 6s ease-in-out infinite alternate;
}

.lh-ai-quiz:hover,
.lh-ai-quiz:focus-within {
	transform: translateY(-2px);
	border-color: #b9d1f6;
	box-shadow: 0 20px 52px rgba(35, 78, 145, 0.15);
}

.lh-ai-quiz__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: linear-gradient(145deg, #edf5ff 0%, #fff 48%, #e9e3ff 100%);
	color: #2a77ed;
	box-shadow: inset 0 0 0 1px rgba(42, 119, 237, 0.13), 0 12px 28px rgba(42, 119, 237, 0.13);
}

.lh-ai-quiz__visual:after {
	content: '';
	position: absolute;
	inset: 8px;
	border: 1px dashed rgba(42, 119, 237, 0.74);
	border-radius: 50%;
	animation: lh-ai-quiz-orbit 18s linear infinite;
}

.lh-ai-quiz__visual svg {
	position: relative;
	z-index: 1;
	width: 52px;
	height: 52px;
	overflow: visible;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lh-ai-quiz__visual .lh-ai-quiz__spark {
	fill: #8d6cf3;
	stroke: none;
	transform-box: fill-box;
	transform-origin: center;
	animation: lh-ai-quiz-spark 2s ease-in-out infinite;
}

.lh-ai-quiz__content {
	min-width: 0;
}

.lh-ai-quiz__eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 10px;
	color: #63728a;
	font-size: 11px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
}

.lh-ai-quiz__eyebrow span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 22px;
	padding: 0 7px;
	border-radius: 12px;
	background: #2a77ed;
	color: #fff;
	font-size: 10px;
	line-height: 10px;
	letter-spacing: 0.7px;
	box-shadow: 0 5px 14px rgba(42, 119, 237, 0.24);
}

.lh-ai-quiz__content h3 {
	max-width: 700px;
	margin: 0;
	padding: 0 0 8px;
	color: #343434;
	font-size: 25px;
	font-weight: 400;
	line-height: 32px;
}

.lh-ai-quiz__content h3 span {
	color: #2a77ed;
}

.lh-ai-quiz__content p {
	max-width: 720px;
	margin: 0;
	padding: 0;
	color: #5f6875;
	font-size: 13px;
	line-height: 21px;
}

.lh-ai-quiz__action {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	min-width: 190px;
}

.lh-ai-quiz__time {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 7px;
	color: #7b8491;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0.3px;
}

.lh-ai-quiz__time strong {
	color: #343434;
	font-size: 12px;
	font-weight: 500;
}

.lh-home a.lh-ai-quiz__button {
	display: inline-flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 12px;
	min-height: 48px;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 1;
	white-space: nowrap !important;
}

.lh-ai-quiz__button svg {
	display: inline-block;
	position: relative;
	top: 1px;
	flex: 0 0 18px;
	float: none;
	margin: 0;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.25s ease;
}

.lh-ai-quiz__button:hover svg,
.lh-ai-quiz__button:focus svg {
	transform: translateX(4px);
}

@keyframes lh-ai-quiz-gradient {
	to { background-position: 220% 0; }
}

@keyframes lh-ai-quiz-glow {
	to { transform: translate3d(45px, 15px, 0) scale(1.12); }
}

@keyframes lh-ai-quiz-orbit {
	to { transform: rotate(360deg); }
}

@keyframes lh-ai-quiz-spark {
	0%, 100% { opacity: 0.55; transform: scale(0.78) rotate(-8deg); }
	50% { opacity: 1; transform: scale(1.08) rotate(5deg); }
}

@media (max-width: 1024px) {
	.lh-process__steps--full {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lh-ai-quiz {
		grid-template-columns: 78px minmax(0, 1fr) auto;
		gap: 22px;
		padding: 28px;
	}

	.lh-ai-quiz__visual {
		width: 78px;
		height: 78px;
	}

	.lh-ai-quiz__visual svg {
		width: 44px;
		height: 44px;
	}

	.lh-ai-quiz__content h3 {
		font-size: 22px;
		line-height: 29px;
	}
}

@media (max-width: 767px) {
	.lh-process-note {
		padding: 18px 20px;
		font-size: 14px;
		line-height: 24px;
	}

	.lh-process__steps--full {
		grid-template-columns: 1fr;
	}

	.lh-ai-quiz {
		grid-template-columns: 60px minmax(0, 1fr);
		gap: 18px;
		margin-top: 16px;
		padding: 24px 22px 22px;
	}

	.lh-ai-quiz:after {
		right: -130px;
		top: -120px;
	}

	.lh-ai-quiz__visual {
		align-self: start;
		width: 60px;
		height: 60px;
	}

	.lh-ai-quiz__visual:after {
		inset: 5px;
	}

	.lh-ai-quiz__visual svg {
		width: 35px;
		height: 35px;
	}

	.lh-ai-quiz__eyebrow {
		margin: 1px 0 7px;
		font-size: 9px;
		line-height: 13px;
		letter-spacing: 0.55px;
	}

	.lh-ai-quiz__content h3 {
		padding-bottom: 8px;
		font-size: 20px;
		line-height: 27px;
	}

	.lh-ai-quiz__content p {
		grid-column: 1 / -1;
		font-size: 13px;
		line-height: 21px;
	}

	.lh-ai-quiz__action {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 14px;
		min-width: 0;
	}

	.lh-ai-quiz__time {
		justify-content: space-around;
		flex-wrap: wrap;
		gap: 2px 7px;
	}

	.lh-ai-quiz__button {
		min-height: 46px;
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (max-width: 479px) {
	.lh-ai-quiz__action {
		grid-template-columns: 1fr;
	}

	.lh-ai-quiz__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lh-ai-quiz:before,
	.lh-ai-quiz:after,
	.lh-ai-quiz__visual:after,
	.lh-ai-quiz__visual .lh-ai-quiz__spark {
		animation: none;
	}
}


/* Mobile compact polishing */
@media (max-width: 767px) {
	.lh-section {
		padding: 42px 0;
	}

	.lh-section-title {
		font-size: 24px;
		line-height: 32px;
		padding-bottom: 10px;
	}

	.lh-perk {
		padding: 28px 24px;
		min-height: 0;
	}

	.lh-perk h3 {
		font-size: 24px;
		line-height: 31px;
	}

	.lh-perk p {
		font-size: 15px;
		line-height: 28px;
	}

	.lh-offer__box {
		padding: 34px 28px;
	}

	.lh-offer__badge {
		margin-top: 24px;
	}
}


/* Landing products after hero */
.lh-product-strip {
	margin-top: 34px;
}

.lh-product-strip__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 14px;
	color: #fff;
}

.lh-product-strip__head span {
	display: block;
	margin: 0 0 6px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	line-height: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-product-strip__head strong {
	display: block;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

.lh-product-strip__controls {
	display: none;
	gap: 8px;
	flex: 0 0 auto;
}

.lh-product-carousel-btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 28px;
	line-height: 28px;
	font-weight: 300;
	box-shadow: none;
}

.lh-product-carousel-btn:hover {
	background: #2a77ed;
	color: #fff;
	border-color: transparent;
	box-shadow: none;
}

.lh-product-track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.lh-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.lh-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 190px;
	padding: 18px;
	background: #fff;
	border: 0;
}

.lh-product-card__image:hover {
	border: 0;
	opacity: 0.9;
}

.lh-product-card__image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.lh-product-card__content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 18px;
	border-top: 1px solid #f0f0f0;
}

.lh-product-card__name {
	display: block;
	min-height: 44px;
	margin: 0 0 10px;
	color: #a38c76;
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	text-transform: uppercase;
	border: 0;
	overflow: hidden;
}

.lh-product-card__name:hover {
	color: #2a77ed;
	border: 0;
}

.lh-product-card__rating {
	margin: 0 0 10px;
	color: #cab504;
	font-size: 13px;
	line-height: 13px;
	letter-spacing: 1px;
}

.lh-product-card__rating .is-empty {
	color: #d8d8d8;
}

.lh-product-card__price {
	min-height: 26px;
	margin: auto 0 16px;
}

.lh-product-card__price-old {
	display: inline-block;
	margin-right: 8px;
	color: #868686;
	font-size: 12px;
	line-height: 18px;
	font-style: italic;
	text-decoration: line-through;
}

.lh-product-card__price-new {
	display: inline-block;
	color: #343434;
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
}

.lh-product-card__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-top: auto;
}

.lh-product-card__cart {
	width: 100%;
	padding: 12px 16px;
	border-radius: 40px;
	font-size: 11px;
	line-height: 14px;
	letter-spacing: 1px;
}

.lh-product-card__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	color: #343434;
	font-size: 11px;
	line-height: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 1px solid #e8e8e8;
	border-radius: 40px;
}

.lh-product-card__more:hover {
	color: #2a77ed;
	border-color: #2a77ed;
}

@media (max-width: 1024px) {
	.lh-product-track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lh-product-strip {
		margin-top: 28px;
	}

	.lh-product-strip__head {
		align-items: center;
	}

	.lh-product-strip__head strong {
		font-size: 14px;
		line-height: 20px;
	}

	.lh-product-strip__controls {
		display: flex;
	}

	.lh-product-track {
		display: flex;
		gap: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		margin: 0 -24px;
		padding: 0 24px 8px;
	}

	.lh-product-track::-webkit-scrollbar {
		display: none;
	}

	.lh-product-card {
		flex: 0 0 100%;
		width: 100%;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
	}

	.lh-product-card + .lh-product-card {
		margin-left: 14px;
	}

	.lh-product-card__image {
		height: 240px;
	}

	.lh-product-card__name {
		min-height: 0;
		font-size: 15px;
		line-height: 23px;
	}

	.lh-product-card__price-new {
		font-size: 20px;
		line-height: 24px;
	}
}

/* Compact landing products */
.lh-product-strip {
	margin-top: 22px;
}

.lh-product-strip__head {
	margin-bottom: 10px;
}

.lh-product-strip__head span {
	margin-bottom: 3px;
	font-size: 10px;
	line-height: 12px;
}

.lh-product-strip__head strong {
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
}

.lh-product-track {
	gap: 10px;
}

.lh-product-card {
	min-height: 0;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.lh-product-card__image {
	height: 118px;
	padding: 12px;
}

.lh-product-card__content {
	padding: 12px;
}

.lh-product-card__name {
	min-height: 38px;
	margin-bottom: 8px;
	font-size: 12px;
	line-height: 19px;
	text-transform: none;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lh-product-card__rating {
	display: none;
}

.lh-product-card__price {
	min-height: 20px;
	margin: 0 0 10px;
}

.lh-product-card__price-old {
	font-size: 11px;
	line-height: 16px;
}

.lh-product-card__price-new {
	font-size: 15px;
	line-height: 20px;
}

.lh-product-card__actions {
	gap: 0;
}

.lh-product-card__cart {
	min-height: 36px;
	padding: 9px 12px;
	font-size: 10px;
	line-height: 12px;
}

.lh-product-card__more {
	display: none;
}

@media (max-width: 767px) {
	.lh-product-strip {
		margin-top: 22px;
	}

	.lh-product-strip__head {
		align-items: flex-end;
		gap: 10px;
	}

	.lh-product-strip__head strong {
		font-size: 13px;
		line-height: 18px;
	}

	.lh-product-carousel-btn {
		width: 36px;
		height: 36px;
		font-size: 24px;
		line-height: 24px;
	}

	.lh-product-track {
		margin: 0 -24px;
		padding: 0 24px 4px;
	}

	.lh-product-card {
		flex: 0 0 100%;
		display: grid;
		grid-template-columns: 118px minmax(0, 1fr);
		min-height: 150px;
	}

	.lh-product-card + .lh-product-card {
		margin-left: 12px;
	}

	.lh-product-card__image {
		height: 100%;
		min-height: 150px;
		padding: 12px;
		border-right: 1px solid #f0f0f0;
	}

	.lh-product-card__content {
		padding: 14px;
		border-top: 0;
	}

	.lh-product-card__name {
		min-height: 0;
		margin-bottom: 8px;
		font-size: 13px;
		line-height: 19px;
	}

	.lh-product-card__price {
		margin-bottom: 10px;
	}

	.lh-product-card__price-new {
		font-size: 16px;
		line-height: 21px;
	}

	.lh-product-card__cart {
		min-height: 34px;
		padding: 8px 12px;
		font-size: 10px;
		line-height: 12px;
	}
}

/* Mobile product carousel: one full card, no next-card peek */
@media (max-width: 767px) {
	.lh-product-track {
		margin: 0 !important;
		padding: 0 0 4px !important;
		gap: 0 !important;
		scroll-padding-left: 0 !important;
	}

	.lh-product-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		scroll-snap-align: start;
	}

	.lh-product-card + .lh-product-card {
		margin-left: 0 !important;
	}
}

/* Compact horizontal product cards: desktop + mobile */
.lh-product-track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.lh-product-card {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	min-height: 136px;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.lh-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 136px;
	padding: 12px;
	background: #fff;
	border: 0;
	border-right: 1px solid #f0f0f0;
}

.lh-product-card__image:hover {
	border-right: 1px solid #f0f0f0;
	opacity: 0.9;
}

.lh-product-card__image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.lh-product-card__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 13px 14px;
	border-top: 0;
}

.lh-product-card__name {
	display: -webkit-box;
	min-height: 0;
	margin: 0 0 10px;
	color: #a38c76;
	font-size: 13px;
	line-height: 19px;
	font-weight: 500;
	text-transform: none;
	border: 0;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lh-product-card__name:hover {
	color: #2a77ed;
	border: 0;
}

.lh-product-card__rating {
	display: none;
}

.lh-product-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 8px;
	min-height: 0;
	margin: auto 0 10px;
}

.lh-product-card__price-old {
	margin: 0;
	color: #868686;
	font-size: 11px;
	line-height: 15px;
	font-style: italic;
	text-decoration: line-through;
}

.lh-product-card__price-new {
	color: #343434;
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	white-space: nowrap;
}

.lh-product-card__actions {
	display: block;
	margin: 0;
}

.lh-product-card__cart {
	width: 100%;
	min-height: 34px;
	padding: 8px 12px;
	border-radius: 40px;
	font-size: 10px;
	line-height: 12px;
	letter-spacing: 1px;
	white-space: nowrap;
}

.lh-product-card__more {
	display: none;
}

@media (max-width: 1200px) {
	.lh-product-track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lh-product-track {
		display: flex;
		gap: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		margin: 0 !important;
		padding: 0 0 4px !important;
	}

	.lh-product-track::-webkit-scrollbar {
		display: none;
	}

	.lh-product-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		grid-template-columns: 116px minmax(0, 1fr);
		min-height: 146px;
		margin: 0 !important;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.lh-product-card + .lh-product-card {
		margin-left: 0 !important;
	}

	.lh-product-card__image {
		min-height: 146px;
	}

	.lh-product-card__content {
		padding: 14px;
	}

	.lh-product-card__name {
		font-size: 13px;
		line-height: 19px;
	}

	.lh-product-card__price-new {
		font-size: 16px;
		line-height: 21px;
	}
}

@media (max-width: 380px) {
	.lh-product-card {
		grid-template-columns: 100px minmax(0, 1fr);
	}

	.lh-product-card__image {
		min-height: 138px;
		padding: 10px;
	}

	.lh-product-card__content {
		padding: 12px;
	}

	.lh-product-card__cart {
		font-size: 9px;
		letter-spacing: 0.5px;
	}
}

/* Fix product cart button text alignment */
.lh-product-card__cart {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	width: 100% !important;
	max-width: 100% !important;
	padding-left: 8px !important;
	padding-right: 8px !important;
	white-space: normal !important;
	overflow: hidden !important;
	text-transform: none !important;
}

.lh-product-card__cart span {
	display: block;
	width: 100%;
	text-align: center;
}

.lh-product-card__price {
	display: none;
}

/*@media (max-width: 767px) {
	.lh-hero .lh-hero__visual {
		display: none !important;
	}
}*/


/* Light hero background */
.lh-hero {
	background:
		radial-gradient(circle at 78% 18%, rgba(163, 140, 118, 0.22), transparent 34%),
		radial-gradient(circle at 12% 82%, rgba(42, 119, 237, 0.08), transparent 30%),
		linear-gradient(135deg, #ffffff 0%, #f6f2ec 48%, #ebe2d8 100%) !important;
}

.lh-hero:before {
	background: rgba(163, 140, 118, 0.14);
}

.lh-hero:after {
	background: rgba(42, 119, 237, 0.07);
}

.lh-hero .lh-eyebrow {
	/*color: #a38c76;*/
	color: #846D57;
}

.lh-eyebrow--hero-link a {
	color: #2a77ed;
	border-bottom-color: rgba(42, 119, 237, 0.35);
}

.lh-eyebrow--hero-link a:hover {
	color: #2a77ed;
	border-bottom-color: transparent;
}

.lh-hero__title {
	color: #343434;
}

.lh-hero__text {
	color: #66615b;
}

.lh-hero .lh-btn--light {
	background: #ffffff;
	color: #343434;
	border: 1px solid rgba(52, 52, 52, 0.12);
}

.lh-hero .lh-btn--light:hover {
	color: #2a77ed;
	border-color: rgba(42, 119, 237, 0.35);
}

/* Product strip text inside light hero */
.lh-product-strip__head {
	color: #343434;
}

.lh-product-strip__head span {
	color: #a38c76;
}

.lh-product-strip__head strong {
	color: #343434;
}

/* Carousel arrows on light hero */
.lh-product-carousel-btn {
	background: #ffffff;
	color: #343434;
	border-color: rgba(52, 52, 52, 0.14);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.lh-product-carousel-btn:hover {
	background: #2a77ed;
	color: #ffffff;
	border-color: #2a77ed;
}

/* Mobile product carousel: larger visual + separate price */
.lh-product-card__price--mobile {
	display: none;
}

@media (min-width: 768px) {
	.lh-product-card__cart-price {
		display: inline;
	}
}

@media (max-width: 767px) {
	.lh-product-card {
		grid-template-columns: 150px minmax(0, 1fr) !important;
		min-height: 190px !important;
	}

	.lh-product-card__image {
		min-height: 190px !important;
		height: 190px !important;
		padding: 14px !important;
	}

	.lh-product-card__image img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}

	.lh-product-card__content {
		padding: 16px !important;
	}

	.lh-product-card__name {
		margin-bottom: 10px !important;
		font-size: 14px !important;
		line-height: 21px !important;
		-webkit-line-clamp: 3;
	}

	.lh-product-card__price--mobile {
		display: flex !important;
		align-items: baseline;
		flex-wrap: wrap;
		gap: 4px 8px;
		margin: auto 0 12px !important;
		min-height: 0 !important;
	}

	.lh-product-card__price--mobile .lh-product-card__price-old {
		margin: 0;
		color: #868686;
		font-size: 12px;
		line-height: 17px;
		font-style: italic;
		text-decoration: line-through;
	}

	.lh-product-card__price--mobile .lh-product-card__price-new {
		color: #343434;
		font-size: 20px;
		line-height: 25px;
		font-weight: 700;
		white-space: nowrap;
	}

	.lh-product-card__cart {
		min-height: 40px !important;
		padding: 10px 14px !important;
		font-size: 11px !important;
		line-height: 13px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
	}

	.lh-product-card__cart-price {
		display: none !important;
	}
}

@media (max-width: 420px) {
	.lh-product-card {
		grid-template-columns: 136px minmax(0, 1fr) !important;
		min-height: 180px !important;
	}

	.lh-product-card__image {
		min-height: 180px !important;
		height: 180px !important;
		padding: 12px !important;
	}

	.lh-product-card__content {
		padding: 14px !important;
	}

	.lh-product-card__name {
		font-size: 13px !important;
		line-height: 20px !important;
	}

	.lh-product-card__price--mobile .lh-product-card__price-new {
		font-size: 18px;
		line-height: 23px;
	}
}

/* Mobile product card: larger product image */
@media (max-width: 767px) {
	.lh-product-card {
		grid-template-columns: 176px minmax(0, 1fr) !important;
		min-height: 210px !important;
	}

	.lh-product-card__image {
		min-height: 210px !important;
		height: 210px !important;
		padding: 8px !important;
	}

	.lh-product-card__image img {
		max-width: 100% !important;
		max-height: 100% !important;
		object-fit: contain !important;
	}
}

@media (max-width: 420px) {
	.lh-product-card {
		grid-template-columns: 158px minmax(0, 1fr) !important;
		min-height: 198px !important;
	}

	.lh-product-card__image {
		min-height: 198px !important;
		height: 198px !important;
		padding: 8px !important;
	}
}

@media (max-width: 360px) {
	.lh-product-card {
		grid-template-columns: 145px minmax(0, 1fr) !important;
		min-height: 188px !important;
	}

	.lh-product-card__image {
		min-height: 188px !important;
		height: 188px !important;
		padding: 7px !important;
	}
}

/* Project photo carousel */
.lh-photo-section {
	background: #f6f6f6;
	padding-top: 68px;
	padding-bottom: 68px;
}

.lh-photo-section__head {
	align-items: flex-end;
}

.lh-photo-carousel {
	position: relative;
}

.lh-photo-carousel__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.lh-photo-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.lh-photo-card__link {
	display: block;
	position: relative;
	height: 260px;
	overflow: hidden;
	border: 0;
	background: #f1f1f1;
}

.lh-photo-card__link:hover {
	border: 0;
}

.lh-photo-card__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.lh-photo-card__link:hover img {
	transform: scale(1.04);
	opacity: 0.9;
}

.lh-photo-carousel__controls {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
}

.lh-photo-carousel__btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(52, 52, 52, 0.14);
	border-radius: 50%;
	background: #fff;
	color: #343434;
	font-size: 28px;
	line-height: 28px;
	font-weight: 300;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.lh-photo-carousel__btn:hover {
	background: #2a77ed;
	color: #fff;
	border-color: #2a77ed;
	box-shadow: 0 5px 30px -10px #256bd7;
}

@media (max-width: 1024px) {
	.lh-photo-carousel__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lh-photo-card__link {
		height: 240px;
	}
}

@media (max-width: 767px) {
	.lh-photo-section {
		padding-top: 44px;
		padding-bottom: 44px;
	}

	.lh-photo-section__head {
		display: flex;
		align-items: flex-end;
		gap: 16px;
		margin-bottom: 24px;
	}

	.lh-photo-section__head .lh-section-title {
		font-size: 24px;
		line-height: 32px;
	}

	.lh-photo-carousel__controls {
		margin-left: auto;
	}

	.lh-photo-carousel__btn {
		width: 38px;
		height: 38px;
		font-size: 24px;
		line-height: 24px;
	}

	.lh-photo-carousel__track {
		display: flex;
		gap: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		margin: 0;
		padding: 0 0 4px;
	}

	.lh-photo-carousel__track::-webkit-scrollbar {
		display: none;
	}

	.lh-photo-card {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		margin: 0;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.lh-photo-card + .lh-photo-card {
		margin-left: 0;
	}

	.lh-photo-card__link {
		height: 220px;
	}
}

@media (max-width: 420px) {
	.lh-photo-card__link {
		height: 200px;
	}
}

/* Photo carousel arrows centering fix */
.lh-photo-carousel__btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-family: Arial, Helvetica, sans-serif !important;
}

.lh-photo-carousel__btn:after {
	display: none !important;
	content: none !important;
}

.lh-photo-carousel__btn span {
	display: block;
	width: 100%;
	height: 1em;
	line-height: 1;
	text-align: center;
	transform: translateY(-1px);
}

/* Photo card visible captions */
.lh-photo-card__link {
	position: relative;
	display: block;
}

.lh-photo-card__link:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 48%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62));
	pointer-events: none;
	z-index: 1;
}

.lh-photo-card__caption {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 18px;
	z-index: 2;
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.lh-photo-card__link:hover .lh-photo-card__caption {
	transform: translateY(-2px);
	transition: transform 0.25s ease;
}

@media (max-width: 767px) {
	.lh-photo-card__caption {
		left: 16px;
		right: 16px;
		bottom: 15px;
		font-size: 13px;
		line-height: 20px;
	}
}

/* Photo carousel layout controls */
@media (min-width: 768px) {
	.lh-photo-carousel {
		--lh-photo-gap: 20px;
	}

	.lh-photo-carousel__track {
		display: grid !important;
		grid-auto-flow: column;
		gap: var(--lh-photo-gap);
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		padding: 0 0 6px;
	}

	.lh-photo-carousel__track::-webkit-scrollbar {
		display: none;
	}

	.lh-photo-card {
		width: auto;
		margin: 0 !important;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.lh-photo-carousel--rows-1 .lh-photo-carousel__track {
		grid-template-rows: 1fr;
	}

	.lh-photo-carousel--rows-2 .lh-photo-carousel__track {
		grid-template-rows: repeat(2, 1fr);
	}

	.lh-photo-carousel--cols-2 .lh-photo-carousel__track {
		grid-auto-columns: calc((100% - var(--lh-photo-gap)) / 2);
	}

	.lh-photo-carousel--cols-3 .lh-photo-carousel__track {
		grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 2)) / 3);
	}

	.lh-photo-carousel--cols-4 .lh-photo-carousel__track {
		grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 3)) / 4);
	}

	.lh-photo-carousel--rows-2 .lh-photo-card__link {
		height: 210px;
	}

	.lh-photo-carousel--rows-1 .lh-photo-card__link {
		height: 260px;
	}
}

@media (max-width: 767px) {
	.lh-photo-carousel__track {
		display: flex !important;
		gap: 0 !important;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		margin: 0;
		padding: 0 0 4px;
	}

	.lh-photo-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.lh-photo-card__link {
		height: 220px;
	}
}

@media (max-width: 420px) {
	.lh-photo-card__link {
		height: 200px;
	}
}

/* FINAL FIX: project photo carousel */
.lh-photo-carousel {
	--lh-photo-gap: 20px;
	width: 100%;
	overflow: hidden;
}

.lh-photo-carousel__track {
	display: grid !important;
	grid-template-columns: none !important;
	grid-auto-flow: column !important;
	grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 2)) / 3) !important;
	gap: var(--lh-photo-gap) !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	margin: 0 !important;
	padding: 0 0 6px !important;
	border: 0 !important;
	background: transparent !important;
}

.lh-photo-carousel__track::-webkit-scrollbar {
	display: none;
}

.lh-photo-card {
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

/* 1 ряд */
.lh-photo-carousel--rows-1 .lh-photo-carousel__track {
	grid-template-rows: 1fr !important;
}

/* 2 ряда */
.lh-photo-carousel--rows-2 .lh-photo-carousel__track {
	grid-template-rows: repeat(2, auto) !important;
}

/* 2 колонки */
.lh-photo-carousel--cols-2 .lh-photo-carousel__track {
	grid-auto-columns: calc((100% - var(--lh-photo-gap)) / 2) !important;
}

/* 3 колонки */
.lh-photo-carousel--cols-3 .lh-photo-carousel__track {
	grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 2)) / 3) !important;
}

/* 4 колонки */
.lh-photo-carousel--cols-4 .lh-photo-carousel__track {
	grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 3)) / 4) !important;
}

.lh-photo-carousel--rows-1 .lh-photo-card__link {
	height: 260px;
}

.lh-photo-carousel--rows-2 .lh-photo-card__link {
	height: 205px;
}

@media (max-width: 1024px) {
	.lh-photo-carousel__track {
		grid-auto-columns: calc((100% - var(--lh-photo-gap)) / 2) !important;
	}

	.lh-photo-carousel--rows-1 .lh-photo-card__link,
	.lh-photo-carousel--rows-2 .lh-photo-card__link {
		height: 230px;
	}
}

@media (max-width: 767px) {
	.lh-photo-carousel {
		--lh-photo-gap: 0px;
	}

	.lh-photo-carousel__track {
		display: flex !important;
		grid-template-columns: none !important;
		grid-template-rows: none !important;
		grid-auto-columns: auto !important;
		grid-auto-flow: initial !important;
		gap: 0 !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory;
		margin: 0 !important;
		padding: 0 0 4px !important;
	}

	.lh-photo-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
	}

	.lh-photo-card__link {
		height: 220px !important;
	}
}

@media (max-width: 420px) {
	.lh-photo-card__link {
		height: 200px !important;
	}
}

/* FINAL STABLE FIX: project photo carousel paging */
.lh-photo-carousel {
	--lh-photo-gap: 20px;
	width: 100%;
	overflow: hidden;
}

.lh-photo-carousel__track {
	display: grid !important;
	grid-template-columns: none !important;
	grid-auto-flow: column !important;
	grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 2)) / 3) !important;
	gap: var(--lh-photo-gap) !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-snap-type: none !important;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	margin: 0 !important;
	padding: 0 0 6px !important;
	border: 0 !important;
	background: transparent !important;
}

.lh-photo-carousel__track::-webkit-scrollbar {
	display: none;
}

.lh-photo-card {
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	scroll-snap-align: none !important;
	scroll-snap-stop: normal !important;
}

.lh-photo-carousel--rows-1 .lh-photo-carousel__track {
	grid-template-rows: 1fr !important;
}

.lh-photo-carousel--rows-2 .lh-photo-carousel__track {
	grid-template-rows: repeat(2, auto) !important;
}

.lh-photo-carousel--cols-2 .lh-photo-carousel__track {
	grid-auto-columns: calc((100% - var(--lh-photo-gap)) / 2) !important;
}

.lh-photo-carousel--cols-3 .lh-photo-carousel__track {
	grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 2)) / 3) !important;
}

.lh-photo-carousel--cols-4 .lh-photo-carousel__track {
	grid-auto-columns: calc((100% - (var(--lh-photo-gap) * 3)) / 4) !important;
}

.lh-photo-carousel--rows-1 .lh-photo-card__link {
	height: 260px;
}

.lh-photo-carousel--rows-2 .lh-photo-card__link {
	height: 205px;
}

@media (max-width: 1024px) {
	.lh-photo-carousel__track {
		grid-auto-columns: calc((100% - var(--lh-photo-gap)) / 2) !important;
	}

	.lh-photo-carousel--rows-1 .lh-photo-card__link,
	.lh-photo-carousel--rows-2 .lh-photo-card__link {
		height: 230px;
	}
}

@media (max-width: 767px) {
	.lh-photo-carousel {
		--lh-photo-gap: 0px;
	}

	.lh-photo-carousel__track {
		display: flex !important;
		grid-template-columns: none !important;
		grid-template-rows: none !important;
		grid-auto-columns: auto !important;
		grid-auto-flow: initial !important;
		gap: 0 !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: none !important;
		margin: 0 !important;
		padding: 0 0 4px !important;
	}

	.lh-photo-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
	}

	.lh-photo-card__link {
		height: 220px !important;
	}
}

@media (max-width: 420px) {
	.lh-photo-card__link {
		height: 200px !important;
	}
}

@media (min-width: 768px) {
	.lh-photo-carousel--cols-2.lh-photo-carousel--rows-1 .lh-photo-card__link {
		height: 330px;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.lh-photo-carousel--cols-2.lh-photo-carousel--rows-1 .lh-photo-card__link {
		height: 280px;
	}
}


/* Manager block: benefits below form on mobile */
@media (min-width: 768px) {
	.lh-manager {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 370px;
		gap: 36px 48px;
		align-items: start;
	}

	.lh-manager__content {
		grid-column: 1;
		grid-row: 1;
	}

	.lh-lead-card {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.lh-manager > .lh-benefits {
		grid-column: 1;
		grid-row: 2;
	}
}

@media (max-width: 767px) {
	.lh-manager {
		display: flex !important;
		flex-direction: column !important;
	}

	.lh-manager__content {
		order: 1;
	}

	.lh-lead-card {
		order: 2;
	}

	.lh-manager > .lh-benefits {
		order: 3;
		margin-top: 24px;
	}
}

/* Product strip: product page link instead of cart button */
.lh-product-card__link-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	width: 100% !important;
	border: 0 !important;
	text-decoration: none !important;
}

.lh-product-card__link-btn:hover {
	border: 0 !important;
	color: #fff !important;
	text-decoration: none !important;
}

/* Mobile duplicate lead form after categories */
.lh-mobile-lead-section {
	display: none;
}

@media (max-width: 767px) {
	.lh-mobile-lead-section {
		display: block;
		background: #f6f6f6;
		padding-top: 42px;
		padding-bottom: 48px;
	}

	.lh-lead-card--mobile {
		margin: 0;
		padding: 24px 20px;
		background: #fff;
		border: 1px solid #e8e8e8;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
	}

	.lh-lead-card--mobile .lh-lead-card__title {
		font-size: 24px;
		line-height: 30px;
	}

	.lh-lead-card--mobile .lh-lead-card__text {
		font-size: 14px;
		line-height: 23px;
	}
}

/* Mobile benefits relocation */
.lh-benefits-mobile-section {
	display: none;
}

@media (max-width: 767px) {
	.lh-benefits-mobile-section.is-active {
		display: block;
		background: #f6f6f6;
		padding-top: 0;
		padding-bottom: 42px;
	}

	.lh-benefits-mobile-section .lh-benefits {
		margin-top: 0;
	}
}

/* Hero category carousel */
.lh-hero__visual--category-slider {
	position: relative;
	min-height: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.lh-hero__visual--category-slider:before,
.lh-hero__visual--category-slider:after {
	display: none;
}

.lh-hero-category-carousel {
	position: relative;
	min-height: 430px;
	border-radius: 4px;
	overflow: hidden;
	background: #343434;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.lh-hero-category-carousel__track {
	display: flex;
	width: 100%;
	height: 430px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
}

.lh-hero-category-carousel__track::-webkit-scrollbar {
	display: none;
}

.lh-hero-category-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 430px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 34px;
	overflow: hidden;
	border: 0;
	color: #fff;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.lh-hero-category-slide:hover {
	border: 0;
	color: #fff;
}

.lh-hero-category-slide:before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
		var(--lh-hero-cat-bg) center/cover no-repeat;
	transition: transform 0.45s ease;
}

.lh-hero-category-slide:hover:before {
	transform: scale(1.04);
}

.lh-hero-category-slide:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: #2a77ed;
	z-index: 2;
}

.lh-hero-category-slide__tag,
.lh-hero-category-slide__title,
.lh-hero-category-slide__text,
.lh-hero-category-slide__btn {
	position: relative;
	z-index: 3;
}

.lh-hero-category-slide__tag {
	display: inline-block;
	width: max-content;
	margin: 0 0 14px;
	padding: 6px 10px;
	background: rgba(255, 255, 255, 0.94);
	color: #343434;
	border-radius: 20px;
	font-size: 10px;
	line-height: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-hero-category-slide__title {
	display: block;
	max-width: 430px;
	margin: 0 0 14px;
	color: #fff;
	font-size: 26px;
	font-weight: 300;
	line-height: 26px;
	text-transform: uppercase;
}

.lh-hero-category-slide__text {
	display: block;
	max-width: 430px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 24px;
}

.lh-hero-category-slide__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	min-height: 40px;
	padding: 12px 22px;
	border-radius: 40px;
	background: #2a77ed;
	color: #fff;
	font-size: 11px;
	line-height: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lh-hero-category-slide:hover .lh-hero-category-slide__btn {
	background: #256bd7;
	box-shadow: 0 5px 30px -10px #256bd7;
}

.lh-hero-category-carousel__btn {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 42px;
	height: 42px;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: -21px 0 0;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #343434;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 28px;
	line-height: 1 !important;
	font-weight: 300;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.lh-hero-category-carousel__btn:after {
	display: none !important;
	content: none !important;
}

.lh-hero-category-carousel__btn span {
	display: block;
	width: 100%;
	height: 1em;
	line-height: 1;
	text-align: center;
	transform: translateY(-1px);
}

.lh-hero-category-carousel__btn:hover {
	background: #2a77ed;
	color: #fff;
	border-color: #2a77ed;
	box-shadow: 0 5px 30px -10px #256bd7;
}

.lh-hero-category-carousel__btn--prev {
	left: 18px;
}

.lh-hero-category-carousel__btn--next {
	right: 18px;
}

.lh-hero-category-carousel__dots {
	position: absolute;
	left: 34px;
	bottom: 22px;
	z-index: 6;
	display: flex;
	gap: 7px;
}

.lh-hero-category-carousel__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.48);
	box-shadow: none;
}

.lh-hero-category-carousel__dot:after {
	display: none !important;
	content: none !important;
}

.lh-hero-category-carousel__dot.is-active {
	width: 22px;
	border-radius: 20px;
	background: #fff;
}

.lh-hero-category-carousel__badge {
	position: absolute;
	right: 24px;
	top: 24px;
	z-index: 4;
	width: 142px;
	height: 142px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.96);
	color: #343434;
	text-align: center;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
	.lh-hero-category-carousel,
	.lh-hero-category-carousel__track,
	.lh-hero-category-slide {
		height: 390px;
		min-height: 390px;
	}

	.lh-hero-category-slide__title {
		font-size: 30px;
		line-height: 38px;
	}
}

@media (max-width: 767px) {
	.lh-hero-category-carousel,
	.lh-hero-category-carousel__track,
	.lh-hero-category-slide {
		height: 360px;
		min-height: 360px;
	}

	.lh-hero-category-slide {
		padding: 26px 20px;
	}

	.lh-hero-category-slide__title {
		max-width: 270px;
		font-size: 27px;
		line-height: 34px;
	}

	.lh-hero-category-slide__text {
		max-width: 270px;
		font-size: 13px;
		line-height: 22px;
	}

	.lh-hero-category-carousel__badge {
		right: 14px;
		top: 14px;
		width: 116px;
		height: 116px;
		padding: 14px;
		font-size: 11px;
		line-height: 16px;
	}

	.lh-hero-category-carousel__btn {
		width: 36px;
		height: 36px;
		margin-top: -18px;
		font-size: 24px;
	}

	.lh-hero-category-carousel__btn--prev {
		left: 10px;
	}

	.lh-hero-category-carousel__btn--next {
		right: 10px;
	}

	.lh-hero-category-carousel__dots {
		left: 20px;
		bottom: 18px;
	}
}

@media (max-width: 420px) {
	.lh-hero-category-carousel,
	.lh-hero-category-carousel__track,
	.lh-hero-category-slide {
		height: 340px;
		min-height: 340px;
	}

	.lh-hero-category-carousel__badge {
		width: 104px;
		height: 104px;
	}
}






/* Show hero category carousel on mobile */
@media (max-width: 767px) {

	.lh-hero__grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 28px !important;
	}

	.lh-hero__visual--category-slider {
		display: block !important;
		width: 100% !important;
		margin-top: 0 !important;
		overflow: visible !important;
	}

	.lh-hero-category-carousel {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: 360px !important;
		border-radius: 4px;
		overflow: hidden;
	}

	.lh-hero-category-carousel__track {
		display: flex !important;
		width: 100% !important;
		height: 360px !important;
		min-height: 360px !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
	}

	.lh-hero-category-carousel__track::-webkit-scrollbar {
		display: none;
	}

	.lh-hero-category-slide {
		flex: 0 0 100% !important;
		width: 100% !important;
		height: 360px !important;
		min-height: 360px !important;
		padding: 110px 55px 26px !important;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.lh-hero-category-slide__title {
		max-width: 280px;
		font-size: 27px;
		line-height: 34px;
	}

	.lh-hero-category-slide__text {
		max-width: 280px;
		margin-bottom: 18px;
		font-size: 13px;
		line-height: 22px;
	}

	.lh-hero-category-slide__btn {
		min-height: 38px;
		padding: 11px 18px;
		font-size: 10px;
		line-height: 13px;
	}

	.lh-hero-category-carousel__badge {
		display: flex !important;
		right: 14px;
		top: 14px;
		width: 104px;
		height: 104px;
		padding: 13px;
		font-size: 11px;
		line-height: 16px;
	}

	.lh-hero-category-carousel__btn {
		display: inline-flex !important;
		width: 36px;
		height: 36px;
		margin-top: -18px;
		font-size: 24px;
	}

	.lh-hero-category-carousel__btn--prev {
		left: 10px;
	}

	.lh-hero-category-carousel__btn--next {
		right: 10px;
	}

	.lh-hero-category-carousel__dots {
		display: flex !important;
		left: 20px;
		bottom: 18px;
	}
}

@media (max-width: 420px) {
	.lh-hero-category-carousel,
	.lh-hero-category-carousel__track,
	.lh-hero-category-slide {
		height: 340px !important;
		min-height: 340px !important;
	}

	.lh-hero-category-slide {
		padding-top: 104px !important;
	}

	.lh-hero-category-slide__title {
		font-size: 25px;
		line-height: 32px;
	}

	.lh-hero-category-carousel__badge {
		width: 96px;
		height: 96px;
		font-size: 10px;
		line-height: 15px;
	}
}


/* Landing lead form */
.lh-form-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.lh-form-message {
	display: none;
	margin-top: 14px;
	padding: 12px 14px;
	background: #fff;
	border-left: 3px solid #2a77ed;
	color: #343434;
	font-size: 13px;
	line-height: 21px;
}

.lh-form-message.is-visible {
	display: block;
}

.lh-form-message.is-error {
	border-left-color: #d9534f;
	color: #a94442;
}

.lh-form.is-sending {
	opacity: 0.72;
	pointer-events: none;
}

/* Recommended products carousel: desktop 2 rows x 4 */
@media (min-width: 1025px) {
	#lh-margin-products .lh-product-strip__controls {
		display: flex !important;
	}

	#lh-margin-products .lh-product-track {
		--lh-product-gap: 12px;

		display: grid !important;
		grid-template-columns: none !important;
		grid-template-rows: repeat(2, minmax(0, auto)) !important;
		grid-auto-flow: column !important;
		grid-auto-columns: calc((100% - (var(--lh-product-gap) * 3)) / 4) !important;
		gap: var(--lh-product-gap) !important;

		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;

		margin: 0 !important;
		padding: 0 0 6px !important;
	}

	#lh-margin-products .lh-product-track::-webkit-scrollbar {
		display: none;
	}

	#lh-margin-products .lh-product-card {
		width: auto !important;
		min-width: 0 !important;
		max-width: none !important;
		margin: 0 !important;
	}
}

/* Tablet: 2 rows x 2 */
@media (min-width: 768px) and (max-width: 1024px) {
	#lh-margin-products .lh-product-strip__controls {
		display: flex !important;
	}

	#lh-margin-products .lh-product-track {
		--lh-product-gap: 12px;

		display: grid !important;
		grid-template-columns: none !important;
		grid-template-rows: repeat(2, minmax(0, auto)) !important;
		grid-auto-flow: column !important;
		grid-auto-columns: calc((100% - var(--lh-product-gap)) / 2) !important;
		gap: var(--lh-product-gap) !important;

		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;

		margin: 0 !important;
		padding: 0 0 6px !important;
	}

	#lh-margin-products .lh-product-track::-webkit-scrollbar {
		display: none;
	}

	#lh-margin-products .lh-product-card {
		width: auto !important;
		min-width: 0 !important;
		max-width: none !important;
		margin: 0 !important;
	}
}

/* Combined bonus offer */
.lh-combo-offer {
	background: #efebe6;
}

.lh-combo-offer__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 36px;
	align-items: stretch;
	padding: 44px 50px;
	background: #fff;
	border: 1px solid #e1d9d0;
}

.lh-combo-offer__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.lh-combo-offer__content .lh-section-text {
	max-width: 760px;
	margin-bottom: 24px;
}

.lh-combo-offer__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	margin: 0 0 26px;
}

.lh-combo-offer__item {
	position: relative;
	min-height: 66px;
	padding: 16px 16px 16px 38px;
	background: #f6f6f6;
	color: #343434;
	font-size: 13px;
	line-height: 20px;
	border: 1px solid #e8e8e8;
}

.lh-combo-offer__item:before {
	content: '';
	position: absolute;
	left: 16px;
	top: 22px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2a77ed;
}

.lh-combo-offer__visual {
	position: relative;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(52, 52, 52, 0.12), rgba(52, 52, 52, 0.52)),
		url('/image/catalog/home-landing/offer-combo.jpg') center/cover no-repeat;
}

.lh-combo-offer__visual:before {
	content: '';
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 34px;
	height: 7px;
	border-radius: 20px;
	background: rgba(255, 232, 140, 0.92);
	box-shadow: 0 0 22px rgba(255, 232, 140, 0.75);
}

.lh-combo-offer__badge {
	position: relative;
	z-index: 2;
	width: 178px;
	height: 178px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 22px;
	background: rgba(255, 255, 255, 0.94);
	color: #343434;
	text-align: center;
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.lh-combo-offer__badge span {
	display: block;
	font-size: 34px;
	line-height: 38px;
	font-weight: 300;
}

.lh-combo-offer__badge strong {
	display: block;
	max-width: 120px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
}

/* Process compact mobile text */
.lh-process-step__short {
	display: none;
}

/* Icon perks */
.lh-icon-perks {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.lh-icon-perk {
	min-height: 210px;
	padding: 30px 26px;
	background: #fff;
}

.lh-icon-perk__icon {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 24px;
	border-radius: 50%;
	background: rgba(42, 119, 237, 0.1);
	color: #2a77ed;
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	letter-spacing: 1px;
}

.lh-icon-perk h3 {
	margin: 0;
	padding: 0 0 12px;
	color: #343434;
	font-size: 19px;
	line-height: 25px;
	font-weight: 400;
}

.lh-icon-perk p {
	margin: 0;
	padding: 0;
	color: #3e3e3e;
	font-size: 13px;
	line-height: 23px;
}

/* Final showroom CTA */
.lh-showroom-cta {
	background: #f6f2ec;
}

.lh-showroom-cta__box {
	display: grid;
	grid-template-columns: 430px minmax(0, 1fr);
	gap: 42px;
	align-items: stretch;
	background: #fff;
	border: 1px solid #e1d9d0;
}

.lh-showroom-cta__media {
	min-height: 360px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28)),
		url('/image/catalog/home-landing/showroom-cta.jpg') center/cover no-repeat;
}

.lh-showroom-cta__content {
	padding: 44px 48px 44px 0;
}

.lh-showroom-cta__content .lh-section-text {
	max-width: 720px;
	margin-bottom: 24px;
}

.lh-showroom-cta__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 28px;
}

.lh-showroom-cta__facts span {
	position: relative;
	min-height: 58px;
	padding: 14px 14px 14px 34px;
	background: #f6f6f6;
	color: #343434;
	font-size: 13px;
	line-height: 20px;
	border: 1px solid #e8e8e8;
}

.lh-showroom-cta__facts span:before {
	content: '';
	position: absolute;
	left: 14px;
	top: 20px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #a38c76;
}

.lh-showroom-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 1024px) {
	.lh-combo-offer__box,
	.lh-showroom-cta__box {
		grid-template-columns: 1fr;
	}

	.lh-showroom-cta__content {
		padding: 0 34px 36px;
	}

	.lh-icon-perks {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lh-combo-offer__box {
		padding: 28px 22px;
		gap: 24px;
	}

	.lh-combo-offer__items {
		grid-template-columns: 1fr;
		margin-bottom: 22px;
	}

	.lh-combo-offer__item {
		min-height: 0;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.lh-combo-offer__visual {
		min-height: 220px;
		order: -1;
	}

	.lh-combo-offer__badge {
		width: 144px;
		height: 144px;
	}

	.lh-combo-offer__badge span {
		font-size: 28px;
		line-height: 32px;
	}

	.lh-process-step {
		min-height: 0;
		padding: 22px 22px;
	}

	.lh-process-step span:first-child {
		padding-bottom: 12px;
	}

	.lh-process-step h3 {
		padding-bottom: 8px;
		font-size: 18px;
		line-height: 24px;
	}

	.lh-process-step__full {
		display: none;
	}

	.lh-process-step__short {
		display: inline;
	}

	.lh-icon-perks {
		grid-template-columns: 1fr;
	}

	.lh-icon-perk {
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 0 16px;
		min-height: 0;
		padding: 22px;
	}

	.lh-icon-perk__icon {
		grid-row: span 2;
		margin: 0;
	}

	.lh-icon-perk h3 {
		padding-bottom: 6px;
		font-size: 18px;
		line-height: 24px;
	}

	.lh-icon-perk p {
		font-size: 14px;
		line-height: 22px;
	}

	.lh-showroom-cta__box {
		display: block;
	}

	.lh-showroom-cta__media {
		min-height: 230px;
	}

	.lh-showroom-cta__content {
		padding: 28px 22px 30px;
	}

	.lh-showroom-cta__facts {
		grid-template-columns: 1fr;
		margin-bottom: 22px;
	}

	.lh-showroom-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
	}
}

/* FINAL FIX: process steps text */
.lh-process-step > span {
	display: block;
	padding-bottom: 22px;
	color: #2a77ed;
	font-size: 12px;
	font-weight: 500;
	line-height: 12px;
	letter-spacing: 1px;
}

.lh-process-step p span {
	display: inline;
	padding: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: normal;
}

.lh-process-step__short {
	display: none !important;
}

.lh-process-step__full {
	display: inline !important;
}

@media (max-width: 767px) {
	.lh-process-step__full {
		display: none !important;
	}

	.lh-process-step__short {
		display: inline !important;
	}
}

/* FINAL FIX: icon perks layout */
.lh-icon-perks-section {
	background: #fff;
}

.lh-icon-perks {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 1px !important;
	width: 100%;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.lh-icon-perk {
	display: block !important;
	min-width: 0;
	min-height: 210px;
	padding: 30px 26px;
	background: #fff;
}

.lh-icon-perk__icon {
	width: 46px;
	height: 46px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 0 24px;
	padding: 0 !important;
	border-radius: 50%;
	background: rgba(42, 119, 237, 0.1);
	color: #2a77ed;
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	letter-spacing: 1px;
}

.lh-icon-perk h3 {
	margin: 0;
	padding: 0 0 12px;
	color: #343434;
	font-size: 19px;
	line-height: 25px;
	font-weight: 400;
}

.lh-icon-perk p {
	margin: 0;
	padding: 0;
	color: #3e3e3e;
	font-size: 13px;
	line-height: 23px;
}

@media (max-width: 1024px) {
	.lh-icon-perks {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.lh-icon-perks {
		grid-template-columns: 1fr !important;
	}

	.lh-icon-perk {
		display: grid !important;
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 0 16px;
		min-height: 0;
		padding: 22px;
	}

	.lh-icon-perk__icon {
		grid-row: span 2;
		margin: 0;
	}

	.lh-icon-perk h3 {
		padding-bottom: 6px;
		font-size: 18px;
		line-height: 24px;
	}

	.lh-icon-perk p {
		font-size: 14px;
		line-height: 22px;
	}
}

/* FINAL FIX: protect icon perks from theme [class*="icon-"] rule */
.lh-home .lh-icon-perks-section {
	display: block !important;
	width: 100% !important;
	vertical-align: initial !important;
}

.lh-home .lh-icon-perks-section > .container {
	display: block !important;
}

.lh-home .lh-icon-perks {
	display: grid !important;
	width: 100% !important;
	vertical-align: initial !important;
}

.lh-home .lh-icon-perk {
	display: block !important;
	width: auto !important;
	vertical-align: initial !important;
}

.lh-home .lh-icon-perk__icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	vertical-align: initial !important;
}

@media (max-width: 1024px) {
	.lh-home .lh-icon-perks {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.lh-home .lh-icon-perks {
		grid-template-columns: 1fr !important;
	}

	.lh-home .lh-icon-perk {
		display: grid !important;
		grid-template-columns: 46px minmax(0, 1fr);
	}
}

/* Icon perks: SVG icons instead of numbers */
.lh-home .lh-icon-perk__icon {
	width: 46px;
	height: 46px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 0 24px;
	padding: 0;
	border-radius: 50%;
	background: rgba(42, 119, 237, 0.1);
	color: #2a77ed;
	flex-shrink: 0;
}

.lh-home .lh-icon-perk__icon svg {
	width: 24px;
	height: 24px;
	display: block;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lh-home .lh-icon-perk:hover .lh-icon-perk__icon {
	background: rgba(42, 119, 237, 0.16);
	color: #1f66d1;
}

@media (max-width: 767px) {
	.lh-home .lh-icon-perk__icon {
		margin: 0;
	}
}

/* Reviews with photos */
.lh-reviews {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.lh-review-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 26px;
	background: #fff;
	border: 1px solid #e8e8e8;
}

.lh-review-card__top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 16px;
}

.lh-review-card__avatar {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 50%;
	overflow: hidden;
	background: #e8e8e8;
}

.lh-review-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lh-review-card__name {
	color: #343434;
	font-size: 16px;
	line-height: 22px;
	font-weight: 500;
}

.lh-review-card__meta {
	margin-top: 2px;
	color: #7e7e7e;
	font-size: 12px;
	line-height: 18px;
}

.lh-review-card__rating {
	margin: 0 0 14px;
	color: #cab504;
	font-size: 15px;
	line-height: 15px;
	letter-spacing: 2px;
}

.lh-review-card__text {
	display: -webkit-box;
	min-height: 96px;
	margin: 0 0 14px;
	color: #343434;
	font-size: 14px;
	line-height: 24px;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lh-review-card__full {
	display: none;
}

.lh-review-card__more {
	display: inline-flex;
	align-items: center;
	width: max-content;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #2a77ed;
	font-size: 13px;
	line-height: 18px;
	border-bottom: 1px dashed rgba(42, 119, 237, 0.35);
	box-shadow: none;
	text-transform: none;
	letter-spacing: normal;
}

.lh-review-card__more:hover {
	border-bottom-color: transparent;
	color: #256bd7;
	background: transparent;
	box-shadow: none;
}

.lh-review-card__photos {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.lh-review-card__photos a {
	display: block;
	width: 64px;
	height: 64px;
	border: 0;
	overflow: hidden;
	background: #e8e8e8;
}

.lh-review-card__photos a:hover {
	border: 0;
	opacity: 0.88;
}

.lh-review-card__photos img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Review modal */
.lh-review-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.lh-review-modal.is-open {
	display: flex;
}

.lh-review-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.lh-review-modal__box {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 620px;
	max-height: calc(100vh - 48px);
	padding: 34px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.lh-review-modal__close {
	position: absolute;
	right: 16px;
	top: 12px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #343434;
	font-size: 30px;
	line-height: 30px;
	font-weight: 300;
	box-shadow: none;
}

.lh-review-modal__close:hover {
	background: transparent;
	color: #2a77ed;
	box-shadow: none;
}

.lh-review-modal__rating {
	margin: 0 0 14px;
	color: #cab504;
	font-size: 15px;
	line-height: 15px;
	letter-spacing: 2px;
}

.lh-review-modal__name {
	color: #343434;
	font-size: 20px;
	line-height: 27px;
	font-weight: 500;
}

.lh-review-modal__meta {
	margin: 4px 0 20px;
	color: #7e7e7e;
	font-size: 13px;
	line-height: 20px;
}

.lh-review-modal__text {
	color: #343434;
	font-size: 15px;
	line-height: 27px;
	white-space: pre-line;
}

body.lh-review-modal-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.lh-reviews {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lh-reviews {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.lh-review-card {
		padding: 22px;
	}

	.lh-review-card__text {
		min-height: 0;
		-webkit-line-clamp: 5;
	}

	.lh-review-card__photos a {
		width: 58px;
		height: 58px;
	}

	.lh-review-modal {
		padding: 14px;
	}

	.lh-review-modal__box {
		max-height: calc(100vh - 28px);
		padding: 28px 22px;
	}

	.lh-review-modal__text {
		font-size: 14px;
		line-height: 25px;
	}
}


.fancybox-toolbar {
	 display: none !important;
}

#lh-margin-products article.lh-product-card .btn {
	background: #ececec !important;
	color: #000 !important;
}

#lh-margin-products article.lh-product-card .btn:hover {
	box-shadow: 0 5px 30px -10px #f5f5f5 !important;
	color: #000 !important;
}

/* Official Maytoni partnership */
.lh-maytoni-partner {
	position: relative;
	background: #f1ede8;
}

.lh-maytoni-partner__card {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.58fr);
	min-height: 440px;
	background: #fff;
	border: 1px solid #ded7cf;
	box-shadow: 0 24px 70px rgba(52, 52, 52, 0.09);
}

.lh-maytoni-partner__brand {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-width: 0;
	padding: 58px 46px;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 0, rgba(163, 140, 118, 0.28), transparent 42%),
		linear-gradient(145deg, #292d32 0%, #373b40 100%);
	color: #fff;
}

.lh-maytoni-partner__brand:after {
	content: '';
	position: absolute;
	right: -82px;
	bottom: -108px;
	width: 230px;
	height: 230px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.lh-maytoni-partner__status {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 42px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	line-height: 16px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.lh-maytoni-partner__status-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border: 1px solid rgba(231, 215, 199, 0.7);
	border-radius: 50%;
	color: #e7d7c7;
	font-size: 13px;
	line-height: 1;
}

.lh-maytoni-partner__logo {
	position: relative;
	z-index: 1;
	display: block;
	width: min(212px, 100%);
	height: auto;
	margin: 0 0 24px;
	filter: brightness(0) invert(1);
}

.lh-maytoni-partner__brand-note {
	position: relative;
	z-index: 1;
	max-width: 250px;
	margin: 0;
	padding: 20px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 21px;
}

.lh-maytoni-partner__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 54px 58px;
}

.lh-maytoni-partner__content .lh-eyebrow {
	margin-bottom: 15px;
}

.lh-maytoni-partner__content .lh-section-title {
	max-width: 720px;
	margin-bottom: 20px;
}

.lh-maytoni-partner__content .lh-section-text {
	max-width: 750px;
	margin-bottom: 30px;
}

.lh-maytoni-partner__proofs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 30px;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.lh-maytoni-partner__proof {
	position: relative;
	min-height: 126px;
	padding: 23px 20px 20px 45px;
	background: #fafafa;
}

.lh-maytoni-partner__proof:before {
	content: '✓';
	position: absolute;
	left: 20px;
	top: 24px;
	color: #2a77ed;
	font-size: 13px;
	font-weight: 600;
}

.lh-maytoni-partner__proof strong,
.lh-maytoni-partner__proof span {
	display: block;
}

.lh-maytoni-partner__proof strong {
	margin: 0 0 8px;
	color: #343434;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

.lh-maytoni-partner__proof span {
	color: #727272;
	font-size: 12px;
	line-height: 20px;
}

.lh-maytoni-partner__actions {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 12px;
}

.lh-maytoni-partner__actions a.btn {
	padding: 13px !important;
}

.lh-maytoni-partner__verify,
.lh-maytoni-partner__future-link {
	display: inline-flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding-left: 18px;
	padding-right: 18px;
	white-space: normal;
}

.lh-maytoni-partner__verify {
	gap: 9px;
}

.lh-maytoni-partner__verify span {
	font-size: 15px;
}

.lh-maytoni-partner__future-link {
	flex-direction: column;
	padding-top: 9px;
	padding-bottom: 9px;
	border: 1px solid #d9d9d9;
	background: #f4f4f4;
	color: #6f6f6f;
	cursor: default;
	box-shadow: none;
}

.lh-maytoni-partner__future-link small {
	display: block;
	margin-top: 2px;
	color: #9a9a9a;
	font-size: 9px;
	line-height: 11px;
	font-weight: 400;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

@media (max-width: 1024px) {
	.lh-maytoni-partner__card {
		grid-template-columns: 260px minmax(0, 1fr);
	}

	.lh-maytoni-partner__brand {
		padding: 44px 32px;
	}

	.lh-maytoni-partner__content {
		padding: 44px 36px;
	}

	.lh-maytoni-partner__proofs {
		grid-template-columns: 1fr;
	}

	.lh-maytoni-partner__proof {
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.lh-maytoni-partner__card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.lh-maytoni-partner__brand {
		min-height: 260px;
		padding: 34px 26px;
	}

	.lh-maytoni-partner__status {
		margin-bottom: 34px;
	}

	.lh-maytoni-partner__logo {
		width: 190px;
		margin-bottom: 20px;
	}

	.lh-maytoni-partner__brand-note {
		padding-top: 16px;
	}

	.lh-maytoni-partner__content {
		padding: 36px 24px;
	}

	.lh-maytoni-partner__content .lh-section-title {
		margin-bottom: 16px;
	}

	.lh-maytoni-partner__content .lh-section-text {
		margin-bottom: 24px;
	}

	.lh-maytoni-partner__proofs {
		margin-bottom: 24px;
	}

	.lh-maytoni-partner__actions {
		width: 100%;
	}

	.lh-maytoni-partner__verify,
	.lh-maytoni-partner__future-link {
		width: auto;
		padding-left: 10px;
		padding-right: 10px;
	}
}
