:root {
	--red: #d62828;
	--red-dark: #b51d1d;
	--ink: #1a1a1a;
	--ink-2: #4a4a4a;
	--ink-3: #8a8a8a;
	--bg: #ffffff;
	--bg-soft: #f7f7f5;
	--line: #e5e5e5;
	--kf-radius: 12px;
	--kf-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

html {
	scroll-behavior: smooth;
}

.shoko-phone-cover {
	display: none !important;
}

.kf-site-header,
.kf-site-header *,
.kf-site-footer,
.kf-site-footer *,
.kf-modal-overlay,
.kf-modal-overlay *,
.kf-home,
.kf-home * {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body.kf-lock {
	overflow: hidden;
}

*, *::before, *::after {
	box-sizing: border-box;
}

.kf-icon {
	display: block;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
}

.kf-icon:is(
	.kf-icon--card_payment,
	.kf-icon--chat_consultation,
	.kf-icon--checkmark,
	.kf-icon--clock,
	.kf-icon--clock_2,
	.kf-icon--email,
	.kf-icon--location,
	.kf-icon--phone_2,
	.kf-icon--shield_guarantee,
	.kf-icon--shield_guarantee_2
) * {
	stroke: currentColor !important;
}

.kf-shell {
	width: min(100% - 48px, 1200px);
	margin-inline: auto;
}

.kf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 12px 20px;
	border: 0;
	border-radius: 7px;
	font: 700 15px/1.2 "Manrope", sans-serif;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.kf-button:hover {
	transform: translateY(-1px);
}

.kf-button--primary {
	color: #fff;
	background: var(--red);
}

.kf-button--primary:hover {
	color: #fff;
	background: var(--red-dark);
}

.kf-button--light {
	width: 100%;
	color: var(--red);
	background: #fff;
}

.kf-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 12px 0;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: padding .2s ease, background-color .2s ease, box-shadow .2s ease;
}

body.home .kf-site-header {
	position: absolute;
	top: 24px;
	right: 0;
	left: 0;
	padding: 0;
	background: transparent;
	border: 0;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.kf-site-header.is-scrolled {
	position: fixed !important;
	top: 12px !important;
	padding: 0 !important;
	background: transparent !important;
	border-bottom: 0 !important;
	box-shadow: none;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.kf-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	padding: 0 24px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 5px 28px rgba(0, 0, 0, .12);
}

.kf-site-header.is-scrolled .kf-header-inner,
body:not(.home) .kf-header-inner {
	min-height: 64px;
	padding-inline: 24px;
	border-radius: 14px;
	box-shadow: 0 5px 28px rgba(0, 0, 0, .12);
}

.kf-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	text-decoration: none;
	flex: 0 0 auto;
}

.kf-brand-logo {
	width: 96px;
	height: 50px;
	object-fit: contain;
}

.kf-brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.kf-brand-copy strong {
	font-size: 13px;
	font-weight: 800;
}

.kf-brand-copy small {
	margin-top: 4px;
	color: var(--ink-3);
	font-size: 10px;
}

.kf-primary-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-inline: auto;
	padding-inline: 24px;
}

.kf-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 0;
	border: 0;
	color: var(--ink-2);
	background: transparent;
	font: 600 14px/1.2 "Manrope", sans-serif;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.kf-nav-link:hover,
.kf-nav-link:focus-visible,
.kf-catalog-toggle[aria-expanded="true"] {
	color: var(--red);
}

.kf-catalog-toggle svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	transition: transform .2s ease;
}

.kf-catalog-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.kf-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.kf-header-contacts {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	white-space: nowrap;
}

.kf-header-contacts a {
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
}

.kf-header-contacts span {
	color: var(--line);
}

.kf-burger {
	display: none;
	flex-direction: column;
	gap: 4px;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 7px;
	background: var(--bg-soft);
	cursor: pointer;
}

.kf-burger span {
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
	transition: transform .2s ease, opacity .2s ease;
}

.kf-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.kf-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.kf-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.kf-mega-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	width: min(100% - 48px, 1120px);
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--kf-shadow);
	transform: translateX(-50%);
}

.kf-mega-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1.25fr;
	gap: 0;
}

.kf-mega-column {
	padding-right: 24px;
	border-right: 1px solid var(--line);
}

.kf-mega-column:nth-child(2),
.kf-mega-column:last-child {
	padding-left: 24px;
}

.kf-mega-column:last-child {
	padding-right: 0;
	border-right: 0;
}

.kf-mega-section + .kf-mega-section {
	margin-top: 20px;
}

.kf-mega-heading {
	margin-bottom: 10px;
	color: var(--ink-3);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.kf-mega-section a {
	display: block;
	margin-bottom: 1px;
	padding: 5px 8px;
	border-radius: 6px;
	color: var(--ink-2);
	font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .12s ease, color .12s ease;
}

.kf-mega-section a:hover {
	color: var(--ink);
	background: var(--bg-soft);
}

.kf-mobile-menu {
	position: fixed;
	inset: 56px 0 0;
	z-index: 999;
	background: #fff;
}

.kf-mobile-menu-scroll {
	height: 100%;
	overflow-y: auto;
	padding: 14px 18px 32px;
}

.kf-mobile-menu-group {
	padding: 10px 0 18px;
	border-bottom: 1px solid var(--line);
}

.kf-mobile-menu-label {
	margin-bottom: 8px;
	color: var(--ink-3);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.kf-mobile-menu-group > a,
.kf-mobile-catalog-section a {
	display: block;
	padding: 9px 0;
	color: var(--ink);
	font-size: 14px;
	text-decoration: none;
}

.kf-mobile-catalog-column + .kf-mobile-catalog-column,
.kf-mobile-catalog-section + .kf-mobile-catalog-section {
	margin-top: 18px;
}

.kf-mobile-catalog-heading {
	margin-bottom: 4px;
	color: var(--ink-3);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.kf-mobile-menu-contacts {
	display: grid;
	gap: 10px;
	padding-top: 20px;
}

.kf-mobile-menu-contacts > a {
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
}

.kf-site-footer {
	padding: 64px 0 24px;
	color: rgba(255, 255, 255, .72);
	background: #111;
}

.kf-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr .85fr .85fr 1.2fr;
	gap: 48px;
}

.kf-footer-logo {
	display: inline-flex;
	padding: 7px 12px;
	border-radius: 10px;
	background: #fff;
}

.kf-footer-logo img {
	width: 118px;
	height: 58px;
	object-fit: contain;
}

.kf-footer-brand > p {
	max-width: 300px;
	margin: 18px 0;
	color: rgba(255, 255, 255, .45);
	font-size: 13px;
	line-height: 1.65;
}

.kf-footer-socials {
	display: flex;
	gap: 10px;
}

.kf-footer-socials a {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
}

.kf-footer-socials .kf-social-link--max {
	background: #5865f2;
}

.kf-footer-socials .kf-social-link--max span {
	font-size: 9px;
	font-weight: 800;
}

.kf-footer-socials .kf-icon {
	width: 40px;
	height: 40px;
}

.kf-footer-column h2 {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, .42);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.kf-footer-column ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kf-footer-column a {
	color: rgba(255, 255, 255, .7);
	font-size: 13px;
	text-decoration: none;
}

.kf-footer-column a:hover {
	color: #fff;
}

.kf-footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kf-footer-contacts > a,
.kf-footer-contacts > div {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.5;
}

.kf-footer-contacts .kf-icon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, .5);
}

.kf-footer-legal {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, .35);
	font-size: 12px;
}

.kf-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 44px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .09);
}

.kf-footer-bottom p,
.kf-footer-bottom a {
	margin: 0;
	color: rgba(255, 255, 255, .3);
	font-size: 12px;
	text-decoration: none;
}

.help-widget-block {
	z-index: 900;
}

.help-widget-block__btn {
	display: block;
}

@media (max-width: 770px) {
	.help-widget-block {
		display: block;
	}
}

.kf-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, .66);
}

.kf-modal {
	position: relative;
	width: min(100%, 460px);
	padding: 34px;
	border-radius: 16px;
	color: #fff;
	background: var(--red);
	box-shadow: var(--kf-shadow);
}

.kf-modal h2 {
	margin: 0 42px 8px 0;
	color: #fff;
	font-size: 25px;
	line-height: 1.18;
}

.kf-modal > p {
	margin: 0 0 20px;
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
}

.kf-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, .14);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.kf-lead-form {
	display: grid;
	gap: 12px;
}

.kf-lead-form > label:not(.kf-policy) {
	display: grid;
	gap: 6px;
}

.kf-modal .kf-lead-form > label:not(.kf-policy) > span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.kf-lead-form > label > span {
	font-size: 12px;
	font-weight: 700;
}

.kf-lead-form input[type="text"],
.kf-lead-form input[type="tel"] {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 8px;
	color: var(--ink);
	background: #fff;
	font: 500 15px/1.2 "Manrope", sans-serif;
}

.kf-policy {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 11px;
	line-height: 1.5;
}

.kf-policy input {
	flex: 0 0 auto;
	margin-top: 3px;
}

.kf-policy a {
	color: inherit;
	text-decoration: underline;
}

.kf-form-message {
	min-height: 0;
	font-size: 12px;
	line-height: 1.45;
}

.kf-form-message.is-error {
	color: #ffe1e1;
}

.kf-form-message.is-success {
	color: #fff;
	font-weight: 700;
}

.kf-lead-form.is-success > *:not(.kf-form-message) {
	display: none;
}

.kf-turnstile {
	min-height: 65px;
}

.kf-loader {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: grid;
	place-items: center;
	background: rgba(17, 17, 17, .45);
}

.kf-loader span {
	width: 46px;
	height: 46px;
	border: 5px solid rgba(255, 255, 255, .4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: kf-spin .75s linear infinite;
}

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

[hidden] {
	display: none !important;
}

@media (max-width: 1180px) {
	.kf-primary-nav {
		gap: 14px;
		padding-inline: 14px;
	}

	.kf-header-contacts {
		display: none;
	}
}

@media (max-width: 900px) {
	.kf-shell {
		width: min(100% - 32px, 720px);
	}

	body.home .kf-site-header,
	.kf-site-header {
		position: fixed;
		top: 0;
		padding: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
	}

	.kf-site-header .kf-shell {
		width: 100%;
	}

	.kf-header-inner {
		min-height: 56px !important;
		padding: 0 12px !important;
		border-radius: 0;
		box-shadow: none;
	}

	.kf-brand-logo {
		width: 62px;
		height: 40px;
	}

	.kf-brand-copy {
		display: none;
	}

	.kf-primary-nav,
	.kf-brand-copy {
		display: none;
	}

	.kf-header-actions {
		flex: 1 1 auto;
		justify-content: flex-end;
		gap: 8px;
		min-width: 0;
	}

	.kf-header-contacts {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		align-items: center;
		gap: 2px;
		min-width: 0;
		font-size: 13px;
		line-height: 1.12;
	}

	.kf-header-contacts span {
		display: none;
	}

	.kf-header-contacts a {
		max-width: 130px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.kf-header-contacts a[href^="mailto:"] {
		color: var(--ink-3);
		font-size: 11px;
		font-weight: 500;
	}

	.kf-header-actions > .kf-button {
		min-height: 36px;
		padding: 9px 12px;
		font-size: 0;
	}

	.kf-header-actions > .kf-button::after {
		content: "Заказать";
		font-size: 12px;
	}

	.kf-burger {
		display: flex;
	}

	.kf-mega-menu {
		display: none !important;
	}

	.kf-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px 24px;
	}

	.kf-footer-brand,
	.kf-footer-contacts {
		grid-column: 1 / -1;
	}

}

@media (max-width: 560px) {
	.kf-shell {
		width: min(100% - 32px, 480px);
	}

	.kf-site-footer {
		padding-top: 42px;
	}

	.kf-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px 20px;
	}

	.kf-footer-bottom {
		flex-direction: column;
		gap: 8px;
		margin-top: 32px;
	}

	.kf-modal-overlay {
		align-items: flex-end;
		padding: 0;
	}

	.kf-modal {
		width: 100%;
		padding: 28px 20px 24px;
		border-radius: 16px 16px 0 0;
	}
}
