.ohnk-style-guide-page {
	margin: 0;
	background: var(--ohnk-white);
}

.ohnk-style-guide-page,
.ohnk-style-guide-page button,
.ohnk-style-guide-page input {
	font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

.ohnk-shell-container {
	width: min(calc(100% - 48px), var(--ohnk-container));
	margin-inline: auto;
}

.ohnk-shell__skip {
	position: fixed;
	z-index: 100000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	border-radius: var(--ohnk-radius-sm);
	color: var(--ohnk-white);
	background: var(--ohnk-orange);
	transform: translateY(-150%);
	transition: transform .2s ease;
}

.ohnk-shell__skip:focus {
	color: var(--ohnk-white);
	transform: translateY(0);
}

.ohnk-shell-header,
.ohnk-shell-header *,
.ohnk-shell-footer,
.ohnk-shell-footer *,
.ohnk-shell-mobile-menu,
.ohnk-shell-mobile-menu *,
.ohnk-shell-breadcrumbs,
.ohnk-shell-breadcrumbs * {
	box-sizing: border-box;
}

.ohnk-shell-header a,
.ohnk-shell-footer a,
.ohnk-shell-mobile-menu a,
.ohnk-shell-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.ohnk-shell-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid var(--ohnk-line);
	color: var(--ohnk-ink);
	background: var(--ohnk-white);
	box-shadow: 0 8px 30px rgba(24, 21, 35, .04);
}

.ohnk-shell-header__utility {
	height: 34px;
	color: rgba(255, 255, 255, .68);
	background: var(--ohnk-ink);
	font-size: 13.2px;
	font-weight: 650;
	letter-spacing: .015em;
}

.ohnk-shell-header__utility .ohnk-shell-container,
.ohnk-shell-header__main .ohnk-shell-container,
.ohnk-shell-header__nav .ohnk-shell-container {
	display: flex;
	height: 100%;
	align-items: center;
}

.ohnk-shell-header__utility .ohnk-shell-container {
	justify-content: space-between;
}

.ohnk-shell-header__utility nav,
.ohnk-shell-header__utility-info {
	display: flex;
	gap: 22px;
	align-items: center;
}

.ohnk-shell-header__utility a {
	transition: color .2s ease;
}

.ohnk-shell-header__utility a:hover {
	color: var(--ohnk-white);
}

.ohnk-shell-header__region {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .86);
}

.ohnk-shell-header__region::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ohnk-orange);
	box-shadow: 0 0 0 4px rgba(239, 106, 50, .14);
	content: "";
}

.ohnk-shell-header__main {
	height: 88px;
}

.ohnk-shell-header__main .ohnk-shell-container {
	gap: 18px;
}

.ohnk-shell-logo {
	flex: 0 0 auto;
	width: 176px;
}

.ohnk-shell-logo img,
.ohnk-shell-mobile-menu__logo img,
.ohnk-shell-footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.ohnk-shell-catalog {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 11px;
	min-height: 48px;
	padding: 0 18px;
	overflow: hidden;
	border-radius: var(--ohnk-radius-sm);
	align-items: center;
	justify-content: center;
	color: var(--ohnk-white) !important;
	background: var(--ohnk-purple);
	font-size: 13px;
	font-weight: 800;
	transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.ohnk-shell-catalog:hover {
	background: var(--ohnk-purple-light);
	box-shadow: 0 11px 24px rgba(44, 27, 72, .2);
	transform: translateY(-2px);
}

.ohnk-shell-catalog__icon {
	display: grid;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	grid-template-columns: repeat(3, 4px);
	column-gap: 3px;
	align-content: start;
	justify-content: center;
}

.ohnk-shell-catalog__icon i {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 1px;
	background: currentColor;
	box-shadow: 0 7px currentColor, 0 14px currentColor;
}

.ohnk-shell-catalog::before,
.ohnk-shell-quote::before {
	position: absolute;
	top: -55%;
	bottom: -55%;
	left: -42%;
	width: 32%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .27), transparent);
	content: "";
	pointer-events: none;
	transform: skewX(-18deg);
	transition: left .55s cubic-bezier(.22, .75, .25, 1);
}

.ohnk-shell-catalog:hover::before,
.ohnk-shell-quote:hover::before {
	left: 112%;
}

.ohnk-shell-catalog:active,
.ohnk-shell-quote:active {
	transform: translateY(0) scale(.98);
}

.ohnk-shell-search {
	display: flex;
	flex: 1 1 420px;
	height: 48px;
	margin: 0;
	overflow: hidden;
	border: 1px solid #ddd9e3;
	border-radius: var(--ohnk-radius-sm);
	background: var(--ohnk-white);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.ohnk-shell-search:focus-within {
	border-color: var(--ohnk-purple-light);
	box-shadow: 0 0 0 4px rgba(68, 42, 105, .09);
}

.ohnk-shell-search input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0 17px;
	border: 0;
	color: var(--ohnk-ink);
	background: transparent;
	font-size: 13px;
	box-shadow: none;
	outline: 0;
}

.ohnk-shell-search input[type="search"]::placeholder {
	color: #98929f;
}

.ohnk-shell-search button {
	display: grid;
	flex: 0 0 50px;
	width: 50px;
	height: 100%;
	padding: 0;
	border: 0;
	place-items: center;
	color: var(--ohnk-purple);
	background: transparent;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease;
}

.ohnk-shell-search button:hover {
	color: var(--ohnk-white);
	background: var(--ohnk-purple);
}

.ohnk-shell-search svg,
.ohnk-shell-mobile-search svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.ohnk-shell-header__phone {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	min-width: 160px;
}

.ohnk-shell-header__phone a {
	color: var(--ohnk-ink);
	font-size: 15px;
	font-weight: 850;
	white-space: nowrap;
}

.ohnk-shell-header__phone span {
	margin-top: 2px;
	color: var(--ohnk-muted);
	font-size: 10px;
}

.ohnk-shell-cart {
	position: relative;
	display: grid;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	min-height: 48px;
	padding: 0;
	border: 1px solid var(--ohnk-line);
	border-radius: var(--ohnk-radius-sm);
	place-items: center;
	color: var(--ohnk-purple);
	background: var(--ohnk-white);
	transition: border-color .2s ease, color .2s ease;
}

.ohnk-shell-cart .ohnk-cart-icon,
.ohnk-shell-mobile-cart .ohnk-cart-icon {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.ohnk-shell-cart strong {
	position: absolute;
	top: -7px;
	right: -7px;
	display: grid;
	min-width: 21px;
	height: 21px;
	padding: 0 5px;
	border-radius: 999px;
	place-items: center;
	color: var(--ohnk-white);
	background: var(--ohnk-orange);
	font-size: 10px;
	line-height: 1;
}

.ohnk-shell-cart:hover {
	border-color: var(--ohnk-purple);
	color: var(--ohnk-orange-dark);
}

.ohnk-shell-quote {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	min-height: 48px;
	padding: 0 20px;
	overflow: hidden;
	border-radius: var(--ohnk-radius-sm);
	align-items: center;
	justify-content: center;
	color: var(--ohnk-white) !important;
	background: var(--ohnk-orange);
	box-shadow: 0 10px 24px rgba(239, 106, 50, .2);
	font-size: 13px;
	font-weight: 850;
	white-space: nowrap;
	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ohnk-shell-quote:hover {
	background: var(--ohnk-orange-dark);
	box-shadow: 0 14px 30px rgba(239, 106, 50, .27);
	transform: translateY(-1px);
}

.ohnk-shell-header__nav {
	height: 46px;
	border-top: 1px solid var(--ohnk-line);
	background: #fcfbfd;
}

.ohnk-shell-header__nav .ohnk-shell-container {
	justify-content: space-between;
	gap: 30px;
}

.ohnk-shell-header__nav nav,
.ohnk-shell-header__nav-meta {
	display: flex;
	gap: clamp(15px, 1.55vw, 28px);
	align-items: center;
}

.ohnk-shell-header__nav nav {
	height: 100%;
}

.ohnk-shell-header__nav a {
	position: relative;
	color: #514a59;
	font-size: 15.6px;
	font-weight: 720;
	white-space: nowrap;
	transition: color .2s ease;
}

.ohnk-shell-header__nav nav > a::after,
.ohnk-shell-nav-trigger::after {
	position: absolute;
	right: 0;
	bottom: -15px;
	left: 0;
	height: 2px;
	border-radius: 99px;
	background: var(--ohnk-orange);
	content: "";
	opacity: 0;
	transform: scaleX(.5);
	transition: opacity .2s ease, transform .2s ease;
}

.ohnk-shell-header__nav nav a:hover,
.ohnk-shell-header__nav-meta a:hover {
	color: var(--ohnk-orange-dark);
}

.ohnk-shell-header__nav nav > a:hover::after,
.ohnk-shell-nav-item:hover > .ohnk-shell-nav-trigger::after,
.ohnk-shell-nav-item:focus-within > .ohnk-shell-nav-trigger::after {
	opacity: 1;
	transform: scaleX(1);
}

.ohnk-shell-nav-item {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
}

.ohnk-shell-nav-trigger {
	display: inline-flex;
	gap: 7px;
	align-items: center;
}

.ohnk-shell-nav-trigger::before {
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	order: 2;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .2s ease;
}

.ohnk-shell-nav-item:hover > .ohnk-shell-nav-trigger::before,
.ohnk-shell-nav-item:focus-within > .ohnk-shell-nav-trigger::before {
	transform: translateY(1px) rotate(225deg);
}

.ohnk-shell-nav-dropdown {
	position: absolute;
	z-index: 100;
	top: calc(100% - 1px);
	left: -18px;
	width: min(900px, calc(100vw - 48px));
	padding: 18px;
	border: 1px solid var(--ohnk-line);
	border-radius: 0 0 14px 14px;
	visibility: hidden;
	color: var(--ohnk-ink);
	background: var(--ohnk-white);
	box-shadow: 0 22px 48px rgba(24, 21, 35, .14);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: visibility .2s ease, opacity .2s ease, transform .2s ease;
}

.ohnk-shell-nav-item--mega:nth-child(2) .ohnk-shell-nav-dropdown {
	left: -150px;
}

.ohnk-shell-nav-item:hover > .ohnk-shell-nav-dropdown,
.ohnk-shell-nav-item:focus-within > .ohnk-shell-nav-dropdown {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ohnk-shell-nav-dropdown > strong {
	display: block;
	margin: 0 9px 11px;
	color: var(--ohnk-purple);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.ohnk-shell-nav-dropdown__scroll {
	max-height: min(52vh, 560px);
	padding: 3px 7px 3px 0;
	overflow-y: auto;
	scrollbar-color: #c9c2d1 transparent;
	scrollbar-width: thin;
}

.ohnk-shell-mega-tree {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ohnk-shell-mega-tree--depth-0 {
	columns: 3 240px;
	column-gap: 22px;
}

.ohnk-shell-mega-tree--depth-0 > li {
	margin: 0 0 14px;
	break-inside: avoid;
}

.ohnk-shell-mega-tree:not(.ohnk-shell-mega-tree--depth-0) {
	margin: 3px 0 0 9px;
	padding-left: 9px;
	border-left: 1px solid var(--ohnk-line);
}

.ohnk-shell-header__nav .ohnk-shell-mega-tree a {
	display: grid;
	min-height: 29px;
	padding: 4px 7px;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	border-radius: 8px;
	align-items: center;
	color: #514a59;
	font-size: 11.5px;
	font-weight: 620;
	line-height: 1.3;
	white-space: normal;
}

.ohnk-shell-header__nav .ohnk-shell-mega-tree--depth-0 > li > a {
	min-height: 34px;
	color: var(--ohnk-purple);
	background: var(--ohnk-soft);
	font-size: 12.5px;
	font-weight: 790;
}

.ohnk-shell-mega-tree a small {
	color: #9d97a2;
	font-size: 9.5px;
	font-weight: 550;
}

.ohnk-shell-header__nav .ohnk-shell-mega-tree a:hover {
	color: var(--ohnk-purple);
	background: #f0edf4;
}

.ohnk-shell-header__nav .ohnk-shell-nav-dropdown__all {
	display: flex;
	min-height: 40px;
	margin-top: 10px;
	border-top: 1px solid var(--ohnk-line);
	border-radius: 0;
	color: var(--ohnk-orange-dark);
	font-weight: 820;
}

.ohnk-shell-header__nav-meta {
	margin-left: auto;
}

.ohnk-shell-header__nav-meta a:first-child {
	display: inline-flex;
	gap: 7px;
	align-items: center;
}

.ohnk-shell-header__nav-meta svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.ohnk-shell-header__nav-meta .is-accent {
	color: var(--ohnk-orange-dark);
	font-weight: 850;
}

.ohnk-shell-mobile-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--ohnk-line);
	border-radius: var(--ohnk-radius-sm);
	background: var(--ohnk-white);
}

.ohnk-shell-mobile-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	border-radius: 99px;
	background: var(--ohnk-purple);
}

.ohnk-shell-breadcrumbs {
	min-height: 50px;
	border-bottom: 1px solid var(--ohnk-line);
	color: var(--ohnk-muted);
	background: var(--ohnk-soft);
	font-size: 12px;
}

.ohnk-shell-breadcrumbs .ohnk-shell-container {
	display: flex;
	min-height: 50px;
	gap: 10px;
	align-items: center;
}

.ohnk-shell-breadcrumbs a {
	transition: color .2s ease;
}

.ohnk-shell-breadcrumbs a:hover {
	color: var(--ohnk-orange-dark);
}

.ohnk-shell-breadcrumbs svg {
	width: 11px;
	height: 11px;
	fill: none;
	stroke: #aaa4af;
	stroke-width: 1.5;
}

.ohnk-shell-breadcrumbs span {
	overflow: hidden;
	color: var(--ohnk-ink);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ohnk-shell-mobile-menu {
	position: fixed;
	z-index: 10000;
	inset: 0;
	visibility: hidden;
	opacity: 0;
	transition: visibility .25s ease, opacity .25s ease;
}

.admin-bar .ohnk-shell-mobile-menu {
	top: 32px;
}

.ohnk-shell-mobile-menu__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(16, 12, 23, .62);
	backdrop-filter: blur(4px);
	cursor: pointer;
}

.ohnk-shell-mobile-menu__panel {
	position: relative;
	width: min(90vw, 390px);
	height: 100%;
	margin-left: auto;
	padding: 22px;
	overflow-y: auto;
	color: var(--ohnk-ink);
	background: var(--ohnk-white);
	box-shadow: -24px 0 60px rgba(16, 12, 23, .2);
	transform: translateX(102%);
	transition: transform .28s cubic-bezier(.22, .8, .25, 1);
}

.ohnk-shell-mobile-menu.is-open {
	visibility: visible;
	opacity: 1;
}

.ohnk-shell-mobile-menu.is-open .ohnk-shell-mobile-menu__panel {
	transform: translateX(0);
}

.ohnk-shell-menu-open {
	overflow: hidden;
}

.ohnk-shell-mobile-menu__head {
	display: flex;
	margin-bottom: 24px;
	align-items: center;
	justify-content: space-between;
}

.ohnk-shell-mobile-menu__logo {
	width: 150px;
}

.ohnk-shell-mobile-close {
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--ohnk-line);
	border-radius: 50%;
	color: var(--ohnk-purple);
	background: var(--ohnk-white);
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.ohnk-shell-mobile-search {
	display: flex;
	height: 50px;
	margin: 0 0 22px;
	overflow: hidden;
	border: 1px solid var(--ohnk-line);
	border-radius: var(--ohnk-radius-sm);
	background: var(--ohnk-soft);
}

.ohnk-shell-mobile-search input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0 14px;
	border: 0;
	background: transparent;
	box-shadow: none;
	outline: 0;
}

.ohnk-shell-mobile-search button {
	display: grid;
	flex: 0 0 50px;
	padding: 0;
	border: 0;
	place-items: center;
	color: var(--ohnk-purple);
	background: transparent;
}

.ohnk-shell-mobile-menu nav {
	display: grid;
}

.ohnk-shell-mobile-menu nav a {
	display: flex;
	min-height: 49px;
	padding: 0 2px;
	border-bottom: 1px solid var(--ohnk-line);
	align-items: center;
	justify-content: space-between;
	color: var(--ohnk-ink);
	font-size: 15px;
	font-weight: 720;
}

.ohnk-shell-mobile-menu nav .is-primary {
	margin-bottom: 8px;
	padding: 0 15px;
	border: 0;
	border-radius: var(--ohnk-radius-sm);
	color: var(--ohnk-white);
	background: var(--ohnk-purple);
	font-weight: 820;
}

.ohnk-shell-mobile-group {
	border-bottom: 1px solid var(--ohnk-line);
}

.ohnk-shell-mobile-group > summary {
	display: flex;
	min-height: 49px;
	padding: 0 2px;
	align-items: center;
	justify-content: space-between;
	color: var(--ohnk-ink);
	font-size: 15px;
	font-weight: 720;
	cursor: pointer;
	list-style: none;
}

.ohnk-shell-mobile-group > summary::-webkit-details-marker {
	display: none;
}

.ohnk-shell-mobile-group > summary::after {
	color: var(--ohnk-purple);
	font-size: 22px;
	font-weight: 400;
	content: "+";
}

.ohnk-shell-mobile-group[open] > summary::after {
	content: "−";
}

.ohnk-shell-mobile-menu nav .ohnk-shell-mobile-group a {
	min-height: 44px;
	padding: 7px 12px;
	border: 0;
	color: var(--ohnk-muted);
	font-size: 13px;
	font-weight: 620;
	line-height: 1.35;
}

.ohnk-shell-mobile-menu nav .ohnk-shell-mobile-group a.is-all {
	margin-bottom: 8px;
	color: var(--ohnk-orange-dark);
	font-weight: 780;
}

.ohnk-shell-mobile-tree {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ohnk-shell-mobile-tree:not(.ohnk-shell-mobile-tree--depth-0) {
	margin-left: 12px;
	padding-left: 8px;
	border-left: 1px solid var(--ohnk-line);
}

.ohnk-shell-mobile-menu nav .ohnk-shell-mobile-tree a {
	display: grid;
	min-height: 44px;
	padding: 6px 10px;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.ohnk-shell-mobile-menu nav .ohnk-shell-mobile-tree--depth-0 > li > a {
	color: var(--ohnk-ink);
	font-weight: 750;
}

.ohnk-shell-mobile-tree a small {
	color: #9d97a2;
	font-size: 10px;
	font-weight: 550;
}

.ohnk-shell-mobile-tree details > summary {
	display: grid;
	min-height: 44px;
	padding: 6px 10px;
	grid-template-columns: minmax(0, 1fr) auto 18px;
	gap: 8px;
	align-items: center;
	color: var(--ohnk-muted);
	font-size: 13px;
	font-weight: 620;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.ohnk-shell-mobile-tree details > summary::-webkit-details-marker {
	display: none;
}

.ohnk-shell-mobile-tree details > summary::after {
	color: var(--ohnk-purple);
	font-size: 18px;
	content: "+";
}

.ohnk-shell-mobile-tree details[open] > summary::after {
	content: "−";
}

.ohnk-shell-mobile-tree--depth-0 > li > details > summary {
	color: var(--ohnk-ink);
	font-weight: 750;
}

.ohnk-shell-mobile-tree details > summary small {
	color: #9d97a2;
	font-size: 10px;
	font-weight: 550;
}

.ohnk-shell-mobile-menu nav .ohnk-shell-mobile-tree a.ohnk-shell-mobile-tree__section-link {
	min-height: 44px;
	margin-left: 10px;
	color: var(--ohnk-orange-dark);
	font-size: 11.5px;
	font-weight: 740;
}

.ohnk-shell-mobile-menu__contact {
	display: flex;
	margin-top: 25px;
	flex-direction: column;
}

.ohnk-shell-mobile-menu__contact a {
	display: flex;
	min-height: 44px;
	align-items: center;
	color: var(--ohnk-purple);
	font-size: 20px;
	font-weight: 850;
}

.ohnk-shell-mobile-menu__contact span {
	margin-top: 2px;
	color: var(--ohnk-muted);
	font-size: 12px;
}

.ohnk-shell-mobile-menu__quote {
	display: flex;
	min-height: 52px;
	margin-top: 18px;
	border-radius: var(--ohnk-radius-sm);
	align-items: center;
	justify-content: center;
	color: var(--ohnk-white) !important;
	background: var(--ohnk-orange);
	font-size: 14px;
	font-weight: 850;
}

.ohnk-shell-mobile-dock {
	display: none;
}

.ohnk-style-guide-page .wd-toolbar {
	display: none !important;
}

.ohnk-shell-footer {
	color: rgba(255, 255, 255, .7);
	background: var(--ohnk-ink);
}

.ohnk-shell-footer__cta {
	position: relative;
	overflow: hidden;
	color: var(--ohnk-white);
	background:
		radial-gradient(circle at 88% 20%, rgba(239, 106, 50, .34), transparent 20rem),
		linear-gradient(125deg, var(--ohnk-purple), var(--ohnk-purple-light));
}

.ohnk-shell-footer__cta::after {
	position: absolute;
	right: 4%;
	bottom: -170px;
	width: 320px;
	height: 320px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	box-shadow: 0 0 0 55px rgba(255, 255, 255, .035), 0 0 0 110px rgba(255, 255, 255, .02);
	content: "";
}

.ohnk-shell-footer__cta .ohnk-shell-container {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 220px;
	gap: 50px;
	align-items: center;
	justify-content: space-between;
}

.ohnk-shell-footer__cta p {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, .67);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.ohnk-shell-footer__cta h2 {
	max-width: 760px;
	margin: 0;
	color: var(--ohnk-white);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 820;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.ohnk-shell-footer__cta-actions {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 13px;
	align-items: stretch;
}

.ohnk-shell-footer__cta-actions a {
	display: flex;
	min-height: 50px;
	padding: 0 22px;
	border-radius: var(--ohnk-radius-sm);
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 850;
	white-space: nowrap;
}

.ohnk-shell-footer__cta-primary {
	color: var(--ohnk-white) !important;
	background: var(--ohnk-orange);
	box-shadow: 0 12px 28px rgba(24, 21, 35, .2);
}

.ohnk-shell-footer__cta-phone {
	border: 1px solid rgba(255, 255, 255, .24);
	color: var(--ohnk-white) !important;
	background: rgba(255, 255, 255, .06);
}

.ohnk-shell-footer__main {
	padding: 70px 0 26px;
}

.ohnk-shell-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr repeat(3, .72fr) 1fr;
	gap: clamp(28px, 3.4vw, 58px);
}

.ohnk-shell-footer__about,
.ohnk-shell-footer__grid nav,
.ohnk-shell-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ohnk-shell-footer__logo {
	width: 180px;
	margin-bottom: 22px;
	padding: 10px 13px;
	border-radius: var(--ohnk-radius-sm);
	background: var(--ohnk-white);
}

.ohnk-shell-footer__about p {
	max-width: 330px;
	margin: 0;
	color: rgba(255, 255, 255, .58);
	font-size: 13px;
	line-height: 1.65;
}

.ohnk-shell-footer__requisites {
	display: flex;
	margin-top: 22px;
	flex-direction: column;
	gap: 4px;
	color: rgba(255, 255, 255, .4);
	font-size: 11px;
}

.ohnk-shell-footer h3 {
	margin: 7px 0 20px;
	color: var(--ohnk-white);
	font-size: 13px;
	font-weight: 820;
	letter-spacing: .02em;
}

.ohnk-shell-footer__grid nav a,
.ohnk-shell-footer__contact a,
.ohnk-shell-footer__contact span {
	margin-bottom: 11px;
	color: rgba(255, 255, 255, .58);
	font-size: 12px;
	transition: color .2s ease;
}

.ohnk-shell-footer__grid nav a:hover,
.ohnk-shell-footer__contact a:hover {
	color: var(--ohnk-white);
}

.ohnk-shell-footer__contact .is-phone {
	margin-bottom: 7px;
	color: var(--ohnk-white);
	font-size: 16px;
	font-weight: 850;
}

.ohnk-shell-footer__contact .is-route {
	margin-top: 8px;
	color: var(--ohnk-orange);
	font-weight: 750;
}

.ohnk-shell-footer__bottom {
	display: flex;
	margin-top: 54px;
	padding-top: 23px;
	border-top: 1px solid rgba(255, 255, 255, .09);
	align-items: center;
	justify-content: space-between;
	color: rgba(255, 255, 255, .36);
	font-size: 10px;
}

.ohnk-shell-footer__bottom div {
	display: flex;
	gap: 24px;
}

.ohnk-shell-footer__bottom a:hover {
	color: var(--ohnk-white);
}

@media (max-width: 1240px) {
	.ohnk-shell-header__phone {
		display: none;
	}

	.ohnk-shell-header__nav-meta a:first-child {
		display: none;
	}

	.ohnk-shell-footer__grid {
		grid-template-columns: 1.35fr repeat(3, .8fr);
	}

	.ohnk-shell-footer__contact {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: auto repeat(4, auto);
		gap: 10px 28px;
		align-items: center;
	}

	.ohnk-shell-footer__contact h3 {
		grid-column: 1 / -1;
		margin-bottom: 4px;
	}

	.ohnk-shell-footer__contact a,
	.ohnk-shell-footer__contact span {
		margin: 0;
	}
}

@media (max-width: 980px) {
	.ohnk-shell-header__utility,
	.ohnk-shell-header__nav,
	.ohnk-shell-catalog,
	.ohnk-shell-search,
	.ohnk-shell-header__phone,
	.ohnk-shell-cart {
		display: none;
	}

	.ohnk-shell-header__main {
		height: 72px;
	}

	.ohnk-shell-header__main .ohnk-shell-container {
		justify-content: space-between;
	}

	.ohnk-shell-mobile-toggle {
		display: block;
		flex: 0 0 44px;
	}

	.ohnk-shell-logo {
		width: 148px;
	}

	.ohnk-shell-footer__cta .ohnk-shell-container {
		align-items: flex-start;
		flex-direction: column;
		gap: 28px;
		padding-top: 55px;
		padding-bottom: 55px;
	}

	.ohnk-shell-footer__cta-actions {
		flex-direction: row;
	}
}

@media (max-width: 767px) {
	.ohnk-style-guide-page {
		padding-bottom: 66px;
	}

	.ohnk-shell-container {
		width: min(calc(100% - 32px), var(--ohnk-container));
	}

	.ohnk-shell-header__utility,
	.ohnk-shell-header__nav,
	.ohnk-shell-catalog,
	.ohnk-shell-search,
	.ohnk-shell-header__phone,
	.ohnk-shell-cart {
		display: none;
	}

	.ohnk-shell-header__main {
		height: 72px;
	}

	.ohnk-shell-header__main .ohnk-shell-container {
		justify-content: space-between;
	}

	.ohnk-shell-mobile-toggle {
		display: block;
		flex: 0 0 44px;
	}

	.ohnk-shell-logo {
		width: 148px;
	}

	.ohnk-shell-quote {
		min-width: 44px;
		min-height: 44px;
		padding: 0 14px;
		font-size: 0;
	}

	.ohnk-shell-quote::after {
		font-size: 12px;
		content: "Запрос КП";
	}

	.ohnk-shell-breadcrumbs {
		min-height: 44px;
	}

	.ohnk-shell-breadcrumbs .ohnk-shell-container {
		min-height: 44px;
		gap: 7px;
	}

	.ohnk-shell-breadcrumbs a:nth-of-type(2),
	.ohnk-shell-breadcrumbs svg:nth-of-type(2) {
		display: none;
	}

	.ohnk-shell-mobile-dock {
		position: fixed;
		z-index: 9000;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		height: 66px;
		padding: 7px max(12px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		border-top: 1px solid var(--ohnk-line);
		background: rgba(255, 255, 255, .96);
		box-shadow: 0 -10px 30px rgba(24, 21, 35, .08);
		backdrop-filter: blur(14px);
	}

	.ohnk-shell-mobile-dock a {
		display: flex;
		gap: 3px;
		border-radius: 9px;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		color: var(--ohnk-purple);
		font-size: 9px;
		font-weight: 800;
		text-decoration: none;
	}

	.ohnk-shell-mobile-dock svg {
		width: 21px;
		height: 21px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 1.6;
	}

	.ohnk-shell-mobile-dock .is-primary {
		color: var(--ohnk-white);
		background: var(--ohnk-orange);
		box-shadow: 0 8px 20px rgba(239, 106, 50, .22);
	}

	.ohnk-shell-mobile-dock .ohnk-shell-mobile-cart strong {
		position: absolute;
		top: 3px;
		left: calc(50% + 7px);
		display: grid;
		min-width: 18px;
		height: 18px;
		padding: 0 4px;
		border-radius: 999px;
		place-items: center;
		color: var(--ohnk-white);
		background: var(--ohnk-orange);
		font-size: 9px;
	}

	.ohnk-shell-mobile-dock .ohnk-shell-mobile-cart {
		position: relative;
	}

	.ohnk-shell-mobile-dock .ohnk-shell-mobile-cart .ohnk-cart-icon {
		width: 21px;
		height: 21px;
	}

	.ohnk-shell-footer__cta .ohnk-shell-container {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.ohnk-shell-footer__cta-actions {
		width: 100%;
		flex-direction: column;
	}

	.ohnk-shell-footer__main {
		padding-top: 52px;
	}

	.ohnk-shell-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 28px;
	}

	.ohnk-shell-footer__about,
	.ohnk-shell-footer__contact {
		grid-column: 1 / -1;
	}

	.ohnk-shell-footer__contact {
		display: flex;
		gap: 0;
		align-items: flex-start;
	}

	.ohnk-shell-footer__contact h3 {
		margin-bottom: 18px;
	}

	.ohnk-shell-footer__contact a,
	.ohnk-shell-footer__contact span {
		margin-bottom: 10px;
	}

	.ohnk-shell-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.ohnk-shell-footer__bottom div {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (max-width: 782px) {
	.admin-bar .ohnk-shell-mobile-menu {
		top: 46px;
	}
}

@media (max-width: 420px) {
	.ohnk-shell-logo {
		width: 128px;
	}

	.ohnk-shell-quote {
		width: 44px;
		padding: 0;
	}

	.ohnk-shell-quote::after {
		content: "КП";
	}

	.ohnk-shell-footer__grid {
		grid-template-columns: 1fr;
	}

	.ohnk-shell-footer__about,
	.ohnk-shell-footer__contact {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ohnk-shell-catalog,
	.ohnk-shell-quote {
		transition: none;
	}

	.ohnk-shell-catalog::before,
	.ohnk-shell-quote::before {
		display: none;
	}
}
