.pct-site-header {
	--pct-header-height: 72px;
	--pct-header-bg: var(--pct-color-background, #ffffff);
	--pct-header-text: var(--pct-color-text, #0E1013);
	--pct-header-border: var(--pct-color-border, #E7EAEE);
	--pct-header-z-index: 1000;
	--pct-header-logo-max-width: 148px;
	--pct-header-logo-menu-gap: 36px;
	--pct-header-menu-gap: 8px;
	--pct-header-menu-padding-x: 14px;
	--pct-header-menu-padding-y: 8px;
	--pct-header-menu-transition: 220ms;
	--pct-header-menu-hover-bg: var(--pct-color-primary, #1A73E8);
	--pct-header-menu-hover-text: #ffffff;
	--pct-header-menu-active-bg: var(--pct-header-menu-hover-bg);
	--pct-header-menu-active-text: var(--pct-header-menu-hover-text);
	--pct-header-menu-accent: var(--pct-header-menu-hover-bg, var(--pct-color-primary, #1A73E8));
	--pct-header-submenu-bg: var(--pct-header-bg);
	--pct-header-submenu-text: var(--pct-header-text);
	--pct-header-submenu-hover-bg: var(--pct-color-surface, #F4F4F4);
	--pct-header-submenu-hover-text: var(--pct-color-primary, #1A73E8);
	--pct-header-submenu-offset-x: 0px;
	--pct-header-submenu-offset-y: 12px;
	--pct-header-submenu-min-width: 220px;
	--pct-header-search-width: 260px;
	--pct-header-search-height: 42px;
	--pct-header-search-menu-gap: 24px;
	--pct-header-search-icon-size: 18px;
	--pct-header-search-icon-color: var(--pct-header-text);
	--pct-header-search-hover-bg: var(--pct-color-primary, #1A73E8);
	--pct-header-search-hover-color: #ffffff;
	--pct-header-icon-size: 42px;
	--pct-header-icon-graphic-size: 18px;
	--pct-header-icon-gap: 8px;
	--pct-header-icon-bg: var(--pct-color-surface, #F4F4F4);
	--pct-header-icon-color: var(--pct-header-text);
	--pct-header-icon-border: var(--pct-header-border);
	--pct-header-icon-radius: 0px;
	--pct-header-icon-hover-bg: var(--pct-color-primary, #1A73E8);
	--pct-header-icon-hover-color: #ffffff;
	--pct-header-sticky-offset: 0px;
	--pct-header-sticky-bg: var(--pct-header-bg);
	--pct-header-sticky-border: var(--pct-header-border);
	--pct-header-sticky-shadow: 0 10px 24px rgba(14, 16, 19, 0.08);
	--pct-header-sticky-backdrop: none;
	--pct-header-sticky-transition: 220ms;
	--pct-header-scrolled-bg: #ffffff;
	--pct-header-scrolled-bg-opacity: 0.88;
	--pct-header-scrolled-blur: 14px;
	--pct-header-scrolled-saturation: 120%;
	--pct-header-scrolled-shadow: 0 10px 24px rgba(14, 16, 19, 0.08);
	--pct-header-blur-threshold: 12px;
	position: relative;
	top: auto;
	z-index: var(--pct-header-z-index);
	width: 100%;
	background: var(--pct-header-bg);
	border-bottom: 1px solid var(--pct-header-border);
	color: var(--pct-header-text);
	transition:
		background-color var(--pct-header-sticky-transition, 220ms) ease,
		border-color var(--pct-header-sticky-transition, 220ms) ease,
		box-shadow var(--pct-header-sticky-transition, 220ms) ease,
		backdrop-filter var(--pct-header-sticky-transition, 220ms) ease,
		-webkit-backdrop-filter var(--pct-header-sticky-transition, 220ms) ease;
}

.pct-site-header--sticky {
	position: sticky;
	top: var(--pct-header-sticky-offset, 0px);
	background: var(--pct-header-sticky-bg, var(--pct-header-bg));
	border-bottom-color: var(--pct-header-sticky-border, var(--pct-header-border));
	box-shadow: var(--pct-header-sticky-shadow, none);
	-webkit-backdrop-filter: var(--pct-header-sticky-backdrop, none);
	backdrop-filter: var(--pct-header-sticky-backdrop, none);
}

.pct-site-header--sticky.pct-site-header--sticky-blur-on.is-scrolled {
	background-color: var(--pct-header-scrolled-bg, #ffffff);
	box-shadow: var(--pct-header-scrolled-shadow, 0 10px 24px rgba(14, 16, 19, 0.08));
	-webkit-backdrop-filter: blur(var(--pct-header-scrolled-blur, 14px)) saturate(var(--pct-header-scrolled-saturation, 120%));
	backdrop-filter: blur(var(--pct-header-scrolled-blur, 14px)) saturate(var(--pct-header-scrolled-saturation, 120%));
}

@supports (background: color-mix(in srgb, #ffffff 88%, transparent)) {
	.pct-site-header--sticky.pct-site-header--sticky-blur-on.is-scrolled {
		background-color: color-mix(
			in srgb,
			var(--pct-header-scrolled-bg, #ffffff) calc(var(--pct-header-scrolled-bg-opacity, 0.88) * 100%),
			transparent
		);
	}
}

.pct-site-header--static {
	position: relative;
	top: auto;
}

.admin-bar .pct-site-header--sticky {
	top: calc(32px + var(--pct-header-sticky-offset, 0px));
}

.admin-bar .pct-site-header--static {
	top: auto;
}

.pct-header-shell,
.pct-footer-shell {
	box-sizing: border-box;
	width: 100%;
	margin-inline: auto;
}

.pct-header-shell {
	max-width: var(--pct-header-inner-width, var(--pct-container-width, 1440px));
	padding-left: var(--pct-header-padding-left, var(--pct-section-side-padding-desktop, 32px));
	padding-right: var(--pct-header-padding-right, var(--pct-section-side-padding-desktop, 32px));
}

.pct-footer-shell {
	max-width: var(--pct-footer-inner-width, var(--pct-container-width, 1440px));
	padding-left: var(--pct-section-side-padding-desktop, 32px);
	padding-right: var(--pct-section-side-padding-desktop, 32px);
}

.pct-site-header--full_width .pct-header-shell {
	max-width: none;
}

.pct-site-footer .pct-footer-shell {
	max-width: var(--pct-footer-inner-width, var(--pct-container-width, 1440px));
}

.pct-header-shell {
	display: flex;
	align-items: var(--pct-header-align-items, center);
	gap: var(--pct-header-logo-menu-gap, 36px);
	min-height: var(--pct-header-height, 76px);
}

.pct-header-brand {
	display: flex;
	align-items: center;
	justify-content: var(--pct-header-logo-justify, flex-start);
	min-width: 0;
	padding-left: var(--pct-header-logo-left-offset, 0px);
	transform: translateY(var(--pct-header-logo-y, 0px));
}

.pct-site-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--pct-header-logo-gap, 10px);
	max-width: 100%;
	color: var(--pct-color-heading, #0E1013);
	text-decoration: none;
}

.pct-site-brand__link {
	display: inline-flex;
	align-items: center;
	gap: var(--pct-header-logo-gap, 10px);
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.pct-site-brand__logo,
.pct-site-brand__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
}

.pct-site-brand__logo img {
	display: block;
	width: auto;
	max-width: var(--pct-header-logo-max-width, 148px);
	height: auto;
	max-height: var(--pct-header-logo-max-height, 48px);
	object-fit: contain;
}

.pct-site-brand__text {
	display: grid;
	gap: 2px;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.pct-site-brand__name {
	overflow-wrap: anywhere;
	color: var(--pct-header-text, var(--pct-color-heading, #0E1013));
	font-family: var(--pct-font-heading, inherit);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.1;
}

.pct-site-brand__description {
	max-width: 320px;
	color: var(--pct-color-muted, #5F6B7A);
	font-size: 14px;
	line-height: 1.45;
}

.pct-primary-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.pct-site-header--menu-left .pct-primary-nav {
	margin-right: auto;
}

.pct-site-header--menu-right .pct-primary-nav {
	flex: 0 1 auto;
	margin-left: auto;
}

.pct-site-header--menu-right .pct-header-actions {
	margin-left: 0;
}

.pct-site-header--menu-center .pct-header-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
}

.pct-site-header--menu-center .pct-header-brand {
	justify-self: stretch;
}

.pct-site-header--menu-center .pct-primary-nav {
	justify-self: center;
	min-width: 0;
	max-width: 100%;
}

.pct-site-header--menu-center .pct-header-actions {
	justify-self: end;
	margin-left: 0;
}

.pct-primary-nav ul,
.pct-primary-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pct-primary-nav li {
	position: relative;
}

.pct-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pct-menu {
	align-items: center;
	flex-wrap: nowrap;
	gap: var(--pct-header-menu-gap, 4px);
}

.pct-menu > li {
	flex: 0 0 auto;
}

.pct-menu a {
	color: var(--pct-header-text, var(--pct-color-text, #0E1013));
	text-decoration: none;
	transition:
		background-color var(--pct-header-menu-transition, var(--pct-transition-normal, 250ms)),
		color var(--pct-header-menu-transition, var(--pct-transition-normal, 250ms)),
		box-shadow var(--pct-header-menu-transition, var(--pct-transition-normal, 250ms)),
		opacity var(--pct-header-menu-transition, var(--pct-transition-normal, 250ms));
}

.pct-menu > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: var(--pct-header-menu-padding-y, 8px) var(--pct-header-menu-padding-x, 14px);
	border-radius: 0;
	font-weight: 600;
	line-height: 1.2;
}

.pct-menu > li > a::after {
	content: "";
	position: absolute;
	right: var(--pct-header-menu-padding-x, 14px);
	bottom: 4px;
	left: var(--pct-header-menu-padding-x, 14px);
	height: 2px;
	background: var(--pct-header-menu-accent, var(--pct-color-primary, #1A73E8));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--pct-header-menu-transition, var(--pct-transition-normal, 250ms)) ease;
	pointer-events: none;
}

.pct-menu > li > a:hover,
.pct-menu > li > a:focus,
.pct-site-header--menu-hover-text_only .pct-menu > li > a:hover,
.pct-site-header--menu-hover-text_only .pct-menu > li > a:focus {
	background: transparent;
	color: var(--pct-header-menu-accent, var(--pct-color-primary, #1A73E8));
}

.pct-menu > li > a:hover::after,
.pct-menu > li > a:focus::after,
.pct-menu > .current-menu-item > a::after,
.pct-menu > .current_page_item > a::after,
.pct-menu > .current-menu-ancestor > a::after,
.pct-menu > .current_page_ancestor > a::after,
.pct-menu > .woocommerce-active > a::after,
.pct-menu > .is-active > a::after {
	transform: scaleX(1);
}

.pct-menu > .current-menu-item > a,
.pct-menu > .current_page_item > a,
.pct-menu > .current-menu-ancestor > a,
.pct-menu > .current_page_ancestor > a,
.pct-menu > .woocommerce-active > a,
.pct-menu > .is-active > a {
	background: transparent;
	color: var(--pct-header-menu-accent, var(--pct-color-primary, #1A73E8));
}

.pct-site-header--menu-hover-square_block .pct-menu > li > a::after,
.pct-site-header--menu-hover-text_only .pct-menu > li > a::after {
	content: none;
	display: none;
}

.pct-site-header--menu-hover-square_block .pct-menu > li > a:hover,
.pct-site-header--menu-hover-square_block .pct-menu > li > a:focus {
	background: var(--pct-header-menu-hover-bg);
	color: var(--pct-header-menu-hover-text);
}

.pct-site-header--menu-hover-square_block .pct-menu > .current-menu-item > a,
.pct-site-header--menu-hover-square_block .pct-menu > .current_page_item > a,
.pct-site-header--menu-hover-square_block .pct-menu > .current-menu-ancestor > a,
.pct-site-header--menu-hover-square_block .pct-menu > .current_page_ancestor > a,
.pct-site-header--menu-hover-square_block .pct-menu > .woocommerce-active > a,
.pct-site-header--menu-hover-square_block .pct-menu > .is-active > a {
	background: var(--pct-header-menu-active-bg);
	color: var(--pct-header-menu-active-text);
}

.pct-primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + var(--pct-header-submenu-offset-y, 12px));
	left: var(--pct-header-submenu-offset-x, 0px);
	z-index: 1200;
	display: grid;
	min-width: var(--pct-header-submenu-min-width, 220px);
	gap: 2px;
	padding: 10px;
	background: var(--pct-header-submenu-bg, #ffffff);
	border: 1px solid var(--pct-header-border, #E7EAEE);
	border-radius: 0;
	box-shadow: 0 18px 42px rgba(14, 16, 19, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	pointer-events: none;
}

.pct-primary-nav .menu-item-has-children:hover > .sub-menu,
.pct-primary-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.pct-primary-nav .sub-menu a {
	display: flex;
	align-items: center;
	min-height: 38px;
	padding: 9px 12px;
	border-radius: 0;
	color: var(--pct-header-submenu-text, #0E1013);
	font-weight: 600;
	white-space: nowrap;
}

.pct-primary-nav .sub-menu a:hover,
.pct-primary-nav .sub-menu a:focus,
.pct-primary-nav .sub-menu .current-menu-item > a,
.pct-primary-nav .sub-menu .current_page_item > a {
	background: var(--pct-header-submenu-hover-bg, #F4F4F4);
	box-shadow: inset 3px 0 0 var(--pct-header-submenu-hover-text, var(--pct-header-menu-accent, #1A73E8));
	color: var(--pct-header-submenu-hover-text, #1A73E8);
}

.pct-header-actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--pct-header-icon-gap, 8px);
	margin-left: auto;
}

.pct-site-header--menu-right .pct-header-actions {
	margin-left: var(--pct-header-search-menu-gap, 24px);
}

.pct-header-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pct-header-search input[type="search"] {
	width: min(var(--pct-header-search-width, 260px), 24vw);
	min-height: var(--pct-header-search-height, var(--pct-input-height, 40px));
	padding: 10px 16px;
	background: var(--pct-input-bg, var(--pct-color-surface, #F4F4F4));
	border: 1px solid var(--pct-input-border, var(--pct-color-border, #E7EAEE));
	border-radius: 0;
	color: var(--pct-input-text, var(--pct-color-text, #0E1013));
	font-size: var(--pct-input-font-size, 15px);
	transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.pct-site-header--search-icon_only .pct-header-search input[type="search"] {
	position: absolute;
	width: 1px;
	height: 1px;
	min-height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.pct-site-header--search-responsive-always_icon .pct-header-search input[type="search"] {
	position: absolute;
	width: 1px;
	height: 1px;
	min-height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.pct-header-search input[type="search"]:focus {
	outline: none;
	background: #ffffff;
	border-color: var(--pct-color-primary, #1A73E8);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pct-color-primary, #1A73E8) 16%, transparent);
}

.pct-header-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--pct-header-icon-size, 42px);
	height: var(--pct-header-icon-size, 42px);
	min-height: var(--pct-header-icon-size, 42px);
	padding: 0;
	background: var(--pct-header-icon-bg);
	border: 1px solid var(--pct-header-icon-border, var(--pct-header-border));
	border-radius: var(--pct-header-icon-radius, 0px);
	color: var(--pct-header-search-icon-color, var(--pct-header-icon-color, #0E1013));
	cursor: pointer;
	transition:
		background-color var(--pct-transition-normal, 250ms),
		border-color var(--pct-transition-normal, 250ms),
		color var(--pct-transition-normal, 250ms);
}

.pct-header-search__submit:hover,
.pct-header-search__submit:focus-visible {
	background: var(--pct-header-search-hover-bg, var(--pct-header-icon-hover-bg));
	border-color: var(--pct-header-search-hover-bg, var(--pct-color-primary, #1A73E8));
	color: var(--pct-header-search-hover-color, #ffffff);
}

.pct-header-search__submit .pct-header-icon {
	width: var(--pct-header-search-icon-size, var(--pct-header-icon-graphic-size, 18px));
	height: var(--pct-header-search-icon-size, var(--pct-header-icon-graphic-size, 18px));
}

.pct-header-search-card[hidden] {
	display: none;
}

.pct-header-search-card {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: calc(var(--pct-header-z-index, 1000) + 50);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	width: min(720px, calc(100vw - 32px));
	max-height: min(620px, calc(100vh - var(--pct-header-height, 72px) - 24px));
	overflow: hidden;
	padding: 18px;
	background: var(--pct-color-surface-elevated, #ffffff);
	border: 1px solid var(--pct-color-border-strong, #cfd7e3);
	border-top: 3px solid var(--pct-color-primary, #1A73E8);
	border-radius: 0;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
	color: var(--pct-color-text, #0E1013);
}

.pct-header-search-card__form {
	flex: 0 0 auto;
	margin: 0;
}

.pct-header-search-card__input-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 12px;
	border: 1px solid var(--pct-color-border, #D9E1EA);
	border-radius: 0;
	background: #ffffff;
}

.pct-header-search-card__input-wrap .pct-header-icon {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	color: var(--pct-color-muted, #64748B);
}

.pct-header-search .pct-header-search-card__input-wrap input[type="search"] {
	position: static;
	width: 100%;
	height: auto;
	min-height: 44px;
	margin: 0;
	padding: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	white-space: normal;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--pct-color-heading, #0E1013);
	font-size: 15px;
	outline: none;
}

.pct-header-search-card__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: var(--pct-color-surface-alt, #F1F5F9);
	color: var(--pct-color-muted, #64748B);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.pct-header-search-card__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	padding-top: 18px;
	padding-right: 2px;
}

.pct-header-search-group + .pct-header-search-group {
	margin-top: 18px;
}

.pct-header-search-group h3 {
	margin: 0 0 10px;
	color: var(--pct-color-heading, #0E1013);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
}

.pct-header-search-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
}

.pct-header-search-chip {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--pct-color-muted, #5F6B7A);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
}

.pct-header-search-chip:hover,
.pct-header-search-chip:focus-visible {
	color: var(--pct-color-primary, #1A73E8);
	outline: none;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.pct-header-search-list {
	display: grid;
	gap: 6px;
}

.pct-header-search-list--suggested {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.pct-header-search-list--results {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.pct-header-search-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 8px;
	border: 1px solid transparent;
	border-radius: 0;
	color: var(--pct-color-heading, #0E1013);
	text-decoration: none;
}

.pct-header-search-item--suggested {
	grid-template-columns: 1fr;
	align-content: start;
	gap: 8px;
	padding: 8px;
	border-color: var(--pct-color-border, #D9E1EA);
	background: #ffffff;
}

.pct-header-search-item:hover,
.pct-header-search-item:focus-visible,
.pct-header-search-item.is-active {
	background: var(--pct-color-surface-alt, #F8FAFC);
	border-color: var(--pct-color-border, #D9E1EA);
	outline: none;
}

.pct-header-search-item__thumb {
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 0;
	background: #EEF2F6;
}

.pct-header-search-item--suggested .pct-header-search-item__thumb {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
}

.pct-header-live-result {
	display: flex;
	align-items: stretch;
	min-height: 104px;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--pct-color-border, #D9E1EA);
	border-radius: 0;
	background: #ffffff;
	color: var(--pct-color-heading, #0E1013);
	text-decoration: none;
	transition:
		background-color var(--pct-transition-fast, 180ms) ease,
		border-color var(--pct-transition-fast, 180ms) ease;
}

.pct-header-live-result:hover,
.pct-header-live-result:focus-visible,
.pct-header-live-result.is-active {
	background: var(--pct-color-surface-alt, #F8FAFC);
	border-color: var(--pct-color-primary, #1A73E8);
	outline: none;
}

.pct-header-live-result:focus-visible {
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pct-color-primary, #1A73E8) 18%, transparent);
}

.pct-header-live-result__media {
	flex: 0 0 124px;
	width: 124px;
	min-height: 88px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--pct-color-surface-muted, #F3F5F8);
}

.pct-header-live-result__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.pct-header-live-result__content {
	display: grid;
	grid-template-rows: auto auto 1fr;
	align-content: center;
	min-width: 0;
	padding: 12px 12px 10px;
}

.pct-header-live-result__title,
.pct-header-live-result__meta {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.pct-header-live-result__title {
	-webkit-line-clamp: 2;
	color: var(--pct-color-heading, #0E1013);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.28;
}

.pct-header-live-result__meta {
	-webkit-line-clamp: 1;
	margin-top: 5px;
	color: var(--pct-color-muted, #64748B);
	font-size: 11.5px;
	font-weight: 650;
	line-height: 1.35;
}

.pct-header-live-result__arrow {
	align-self: end;
	margin-top: 8px;
	color: var(--pct-color-primary, #1A73E8);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	transition: transform var(--pct-transition-fast, 180ms) ease;
}

.pct-header-live-result:hover .pct-header-live-result__arrow,
.pct-header-live-result:focus-visible .pct-header-live-result__arrow,
.pct-header-live-result.is-active .pct-header-live-result__arrow {
	transform: translateX(2px);
}

.pct-header-search-item--suggested .pct-header-search-item__content {
	min-width: 0;
}

.pct-header-search-item--suggested .pct-header-search-item__title,
.pct-header-search-item--suggested .pct-header-search-item__meta {
	white-space: normal;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.pct-header-search-item--suggested .pct-header-search-item__title {
	-webkit-line-clamp: 2;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}

.pct-header-search-item--suggested .pct-header-search-item__meta {
	-webkit-line-clamp: 1;
	font-size: 11.5px;
	line-height: 1.35;
}

.pct-header-search-item__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pct-header-search-item__title {
	display: block;
	overflow: hidden;
	color: var(--pct-color-heading, #0E1013);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pct-header-search-item__meta {
	display: block;
	margin-top: 3px;
	overflow: hidden;
	color: var(--pct-color-muted, #64748B);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pct-header-search-status {
	margin: 0;
	padding: 10px 2px;
	color: var(--pct-color-muted, #64748B);
	font-size: 13px;
	line-height: 1.5;
}

.pct-header-search-empty {
	color: var(--pct-color-muted, #64748B);
	font-size: 13px;
	line-height: 1.5;
}

.pct-header-search-empty p {
	margin: 0 0 8px;
}

.pct-header-search-empty ul {
	margin: 0;
	padding-left: 18px;
}

.pct-header-search-empty li + li {
	margin-top: 4px;
}

.pct-header-search-card__footer {
	position: sticky;
	bottom: 0;
	z-index: 2;
	flex: 0 0 auto;
	margin: 10px -2px -2px;
	padding: 10px 2px 2px;
	border-top: 1px solid var(--pct-color-border, #E7EAEE);
	background: var(--pct-color-surface-elevated, #ffffff);
}

.pct-header-search-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 38px;
	padding: 8px 12px;
	border-radius: 0;
	background: var(--pct-color-primary, #1A73E8);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.pct-header-search-more:hover,
.pct-header-search-more:focus-visible {
	background: var(--pct-color-primary-hover, #155EC0);
	color: #ffffff;
	outline: none;
}

.pct-header-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--pct-header-icon-size, 42px);
	height: var(--pct-header-icon-size, 42px);
	padding: 0;
	background: var(--pct-header-icon-bg);
	border: 1px solid var(--pct-header-icon-border, var(--pct-header-border));
	border-radius: var(--pct-header-icon-radius, 0px);
	color: var(--pct-header-icon-color, var(--pct-color-text, #0E1013));
	text-decoration: none;
	white-space: nowrap;
	transition:
		background-color var(--pct-transition-normal, 250ms),
		border-color var(--pct-transition-normal, 250ms),
		color var(--pct-transition-normal, 250ms);
}

.pct-header-action:hover,
.pct-header-action:focus {
	background: var(--pct-header-icon-hover-bg);
	border-color: var(--pct-header-icon-hover-bg, var(--pct-color-primary, #1A73E8));
	color: var(--pct-header-icon-hover-color, #ffffff);
}

.pct-header-icon {
	display: block;
	width: var(--pct-header-icon-graphic-size, 18px);
	height: var(--pct-header-icon-graphic-size, 18px);
}

.pct-header-cart__count {
	position: absolute;
	top: -5px;
	right: -5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 19px;
	height: 19px;
	padding-inline: 5px;
	background: var(--pct-header-cart-badge-bg, var(--pct-badge-bg-active, var(--pct-color-primary, #1A73E8)));
	border-radius: 0;
	color: var(--pct-header-cart-badge-text, var(--pct-badge-text, var(--pct-button-text, #ffffff)));
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.pct-mobile-actions {
	display: none;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.pct-header-search-wrap--mobile {
	display: none;
}

.pct-mobile-menu-toggle {
	display: inline-grid;
	place-items: center;
	gap: 4px;
	width: 42px;
	height: 42px;
	padding: 0;
	background: var(--pct-color-surface, #ffffff);
	border: 1px solid var(--pct-color-border, #E7EAEE);
	border-radius: 0;
	cursor: pointer;
}

.pct-mobile-menu-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--pct-color-heading, #0E1013);
	border-radius: 0;
}

.pct-site-header.is-compact-desktop .pct-header-shell {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: var(--pct-header-compact-logo-menu-gap, 28px);
	min-height: 68px;
}

.pct-site-header.is-compact-desktop .pct-header-brand {
	min-width: 0;
}

.pct-site-header.is-compact-desktop .pct-site-brand__logo img {
	max-width: min(var(--pct-header-compact-logo-width, 150px), 100%);
}

.pct-site-header.is-compact-desktop .pct-primary-nav {
	min-width: 0;
	margin-left: 0;
	margin-right: 0;
	overflow: visible;
}

.pct-site-header.is-compact-desktop .pct-menu {
	gap: var(--pct-header-compact-menu-gap, 6px);
	min-width: 0;
}

.pct-site-header.is-compact-desktop .pct-menu > li > a {
	min-height: 38px;
	padding: 8px 12px;
}

.pct-site-header.is-compact-desktop .pct-header-actions {
	flex-shrink: 0;
	gap: 6px;
	margin-left: auto;
}

.pct-site-header.is-compact-desktop .pct-header-search {
	gap: 0;
}

.pct-site-header.is-compact-desktop.pct-site-header--search-responsive-auto .pct-header-search input[type="search"] {
	position: absolute;
	width: 1px;
	height: 1px;
	min-height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.pct-site-header.is-compact-desktop .pct-header-action,
.pct-site-header.is-compact-desktop .pct-header-search__submit {
	width: var(--pct-header-compact-icon-size, 40px);
	height: var(--pct-header-compact-icon-size, 40px);
	min-height: var(--pct-header-compact-icon-size, 40px);
}

@media (min-width: 1181px) and (max-width: 1480px) {
	.pct-site-header .pct-header-shell {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: var(--pct-header-compact-logo-menu-gap, 28px);
		min-height: 68px;
	}

	.pct-site-header .pct-header-brand {
		min-width: 0;
	}

	.pct-site-header .pct-site-brand__logo img {
		max-width: min(var(--pct-header-compact-logo-width, 150px), 100%);
	}

	.pct-site-header .pct-primary-nav {
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		overflow: visible;
	}

	.pct-site-header .pct-menu {
		gap: var(--pct-header-compact-menu-gap, 6px);
		min-width: 0;
	}

	.pct-site-header .pct-menu > li > a {
		min-height: 38px;
		padding: 8px 12px;
	}

	.pct-site-header .pct-header-actions {
		flex-shrink: 0;
		gap: 6px;
		margin-left: auto;
	}

	.pct-site-header .pct-header-search {
		gap: 0;
	}

	.pct-site-header--search-responsive-auto .pct-header-search input[type="search"] {
		position: absolute;
		width: 1px;
		height: 1px;
		min-height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.pct-site-header .pct-header-action,
	.pct-site-header .pct-header-search__submit {
		width: var(--pct-header-compact-icon-size, 40px);
		height: var(--pct-header-compact-icon-size, 40px);
		min-height: var(--pct-header-compact-icon-size, 40px);
	}
}

.pct-site-footer {
	--pct-footer-bg: var(--pct-color-surface, #F4F4F4);
	--pct-footer-text: var(--pct-color-text, #0E1013);
	--pct-footer-muted: var(--pct-color-muted, #5F6B7A);
	--pct-footer-link: var(--pct-color-text, #0E1013);
	--pct-footer-link-hover: var(--pct-color-primary, #1A73E8);
	--pct-footer-border: var(--pct-color-border, #E7EAEE);
	--pct-footer-border-width: 1px;
	--pct-footer-padding-top: 68px;
	--pct-footer-padding-bottom: 28px;
	--pct-footer-column-gap: 56px;
	--pct-footer-brand-width: 32%;
	--pct-footer-description-width: 300px;
	--pct-footer-description-spacing: 20px;
	--pct-footer-logo-width: 180px;
	--pct-footer-logo-height: 64px;
	--pct-footer-menu-title-size: 14px;
	--pct-footer-menu-title-weight: 700;
	--pct-footer-menu-link-size: 14px;
	--pct-footer-menu-link-line-height: 1.7;
	--pct-footer-menu-link-gap: 10px;
	--pct-footer-social-gap: 12px;
	--pct-footer-social-icon-size: 19px;
	--pct-footer-social-size: 38px;
	--pct-footer-bottom-border: var(--pct-footer-border);
	--pct-footer-bottom-border-width: 1px;
	--pct-footer-bottom-spacing: 48px;
	--pct-footer-bottom-padding-top: 24px;
	--pct-footer-copyright-bg: var(--pct-color-primary, #1A73E8);
	--pct-footer-copyright-text: #ffffff;
	--pct-footer-copyright-padding: 18px 24px;
	margin-top: var(--pct-section-padding-bottom-desktop, 64px);
	background: var(--pct-footer-bg);
	border-top: var(--pct-footer-border-width, 1px) solid var(--pct-footer-border);
	color: var(--pct-footer-text);
}

.pct-footer-shell {
	padding-top: var(--pct-footer-padding-top, 72px);
	padding-bottom: var(--pct-footer-padding-bottom, 32px);
}

.pct-footer-main {
	display: grid;
	grid-template-columns: minmax(240px, var(--pct-footer-brand-width, 32%)) minmax(0, 1fr);
	gap: var(--pct-footer-column-gap, 56px);
	align-items: start;
}

.pct-footer-main--brand-only {
	grid-template-columns: minmax(0, var(--pct-footer-brand-width, 32%));
}

.pct-footer-brand,
.pct-footer-menu-column {
	min-width: 0;
}

.pct-footer-brand {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.pct-footer-brand::before,
.pct-footer-brand::after,
.pct-footer-brand__logo-link::before,
.pct-footer-brand__logo-link::after {
	content: none;
	display: none;
}

.pct-footer-brand__logo-link {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 0;
	background: transparent;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--pct-footer-text);
	text-decoration: none;
}

.pct-footer-brand__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: var(--pct-footer-logo-width, 180px);
	max-height: var(--pct-footer-logo-height, 64px);
	object-fit: contain;
	background: transparent;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.pct-footer-brand__text-logo {
	color: var(--pct-footer-text);
	font-family: var(--pct-font-heading, inherit);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.1;
}

.pct-footer-brand__description {
	max-width: var(--pct-footer-description-width, 320px);
	margin: var(--pct-footer-description-spacing, 20px) 0 0;
	color: var(--pct-footer-muted, #5F6B7A);
	font-size: 14px;
	line-height: 1.65;
}

.pct-footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--pct-footer-social-gap, 10px);
	margin-top: 18px;
}

.pct-footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--pct-footer-social-size, 38px);
	height: var(--pct-footer-social-size, 38px);
	background: transparent;
	border: 1px solid var(--pct-footer-border, #E7EAEE);
	border-radius: 0;
	color: var(--pct-footer-link, var(--pct-color-text, #0E1013));
	text-decoration: none;
	transition:
		background-color 220ms ease,
		border-color 220ms ease,
		color 220ms ease;
}

.pct-footer-social__link:hover,
.pct-footer-social__link:focus-visible {
	background: var(--pct-footer-link-hover, var(--pct-color-primary, #1A73E8));
	border-color: var(--pct-footer-link-hover, var(--pct-color-primary, #1A73E8));
	color: var(--pct-button-text, #ffffff);
	outline: 2px solid var(--pct-footer-link-hover, var(--pct-color-primary, #1A73E8));
	outline-offset: 2px;
}

.pct-footer-social__icon {
	display: block;
	width: var(--pct-footer-social-icon-size, 19px);
	height: var(--pct-footer-social-icon-size, 19px);
	fill: currentColor;
}

.pct-footer-menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: clamp(28px, 4vw, var(--pct-footer-column-gap, 56px));
	align-items: start;
}

.pct-footer-heading {
	margin: 0 0 14px;
	color: var(--pct-footer-text, var(--pct-color-heading, #0E1013));
	font-family: var(--pct-font-heading, inherit);
	font-size: var(--pct-footer-menu-title-size, 15px);
	line-height: 1.2;
	font-weight: var(--pct-footer-menu-title-weight, 700);
}

.pct-footer-menu {
	display: grid;
	gap: var(--pct-footer-menu-link-gap, 10px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.pct-site-footer .pct-footer-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pct-site-footer .pct-footer-menu a {
	display: inline-block;
	color: var(--pct-footer-link);
	font-size: var(--pct-footer-menu-link-size, 14px);
	line-height: var(--pct-footer-menu-link-line-height, 1.7);
	text-decoration: none;
	transition: color 200ms ease, transform 200ms ease;
}

.pct-site-footer .pct-footer-menu a:hover,
.pct-site-footer .pct-footer-menu a:focus-visible {
	color: var(--pct-footer-link-hover);
}

.pct-site-footer .pct-footer-menu a:focus-visible {
	outline: 2px solid var(--pct-footer-link-hover);
	outline-offset: 3px;
}

.pct-site-footer--menu-hover-slide .pct-footer-menu a:hover,
.pct-site-footer--menu-hover-slide .pct-footer-menu a:focus-visible {
	transform: translateX(4px);
}

.pct-footer-bottom {
	box-sizing: border-box;
	width: 100%;
	margin-top: 0;
	padding: var(--pct-footer-copyright-padding, 18px 24px);
	background: var(--pct-footer-copyright-bg, var(--pct-color-primary, #1A73E8));
	border-top: 0;
	color: var(--pct-footer-copyright-text, #ffffff);
	font-size: var(--pct-footer-copyright-size, 12px);
	text-align: center;
}

.pct-footer-bottom__inner {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--pct-footer-inner-width, var(--pct-container-width, 1440px));
	margin-inline: auto;
}

.pct-footer-bottom p {
	margin: 0;
	color: inherit;
	line-height: 1.5;
}

@media (max-width: 1180px) {
	.pct-header-live-result__media {
		flex-basis: 116px;
		width: 116px;
	}

	.pct-header-shell {
		box-sizing: border-box;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: var(--pct-header-height-tablet, 68px);
		column-gap: clamp(6px, 2vw, 10px);
		padding-left: var(--pct-header-mobile-padding-x, var(--pct-section-side-padding-tablet, 24px));
		padding-right: var(--pct-header-mobile-padding-x, var(--pct-section-side-padding-tablet, 24px));
	}

	.pct-footer-shell {
		padding-left: var(--pct-section-side-padding-tablet, 24px);
		padding-right: var(--pct-section-side-padding-tablet, 24px);
	}

	.pct-header-brand {
		grid-column: 1;
		justify-self: start;
		justify-content: flex-start;
		min-width: 0;
		max-width: 100%;
		padding-left: var(--pct-header-mobile-logo-left-offset, 0px);
		overflow: hidden;
		transform: none;
	}

	.pct-site-brand,
	.pct-site-brand__link {
		min-width: 0;
		max-width: 100%;
		overflow: hidden;
	}

	.pct-site-brand__logo {
		min-width: 0;
		max-width: 100%;
	}

	.pct-site-brand__logo img {
		max-width: min(var(--pct-header-logo-max-width-tablet, var(--pct-header-logo-max-width, 148px)), 100%);
		max-height: var(--pct-header-logo-max-height-mobile, 38px);
	}

	.pct-site-header--mobile-logo-center .pct-header-brand {
		justify-content: flex-start;
	}

	.pct-site-header--menu-left .pct-header-shell,
	.pct-site-header--menu-center .pct-header-shell,
	.pct-site-header--menu-right .pct-header-shell {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.pct-site-header--menu-left .pct-header-brand,
	.pct-site-header--menu-center .pct-header-brand,
	.pct-site-header--menu-right .pct-header-brand {
		grid-column: 1;
		justify-self: start;
		justify-content: flex-start;
	}

	.pct-site-header--menu-center .pct-header-brand,
	.pct-site-header--menu-center .pct-header-actions,
	.pct-site-header--menu-center .pct-primary-nav {
		justify-self: auto;
	}

	.pct-site-header--menu-right .pct-primary-nav,
	.pct-site-header--menu-left .pct-primary-nav {
		margin-left: 0;
		margin-right: 0;
	}

	.pct-site-header--mobile-logo-text-off .pct-site-brand__text {
		display: none;
	}

	.pct-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 18px 16px 22px;
		background: var(--pct-header-bg, var(--pct-color-background, #ffffff));
		border-bottom: 1px solid var(--pct-color-border, #E7EAEE);
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
	}

	.pct-site-header.is-menu-open .pct-primary-nav {
		display: block;
	}

	.pct-menu {
		display: grid;
		gap: 4px;
		box-sizing: border-box;
		width: 100%;
		max-width: var(--pct-container-width, 1440px);
		margin-inline: auto;
		padding-left: var(--pct-section-side-padding-tablet, 24px);
		padding-right: var(--pct-section-side-padding-tablet, 24px);
	}

	.pct-menu > li {
		width: 100%;
	}

	.pct-menu a {
		display: block;
		min-height: 0;
		padding: 11px 14px;
	}

	.pct-menu > li > a {
		box-sizing: border-box;
		display: flex;
		width: 100%;
		border-radius: 0;
	}

	.pct-menu > li > a::after {
		content: none;
		display: none;
	}

	.pct-menu > li > a:hover,
	.pct-menu > li > a:focus,
	.pct-menu > .current-menu-item > a,
	.pct-menu > .current_page_item > a,
	.pct-menu > .current-menu-ancestor > a,
	.pct-menu > .current_page_ancestor > a,
	.pct-menu > .woocommerce-active > a,
	.pct-menu > .is-active > a {
		background: color-mix(in srgb, var(--pct-header-menu-accent, #1A73E8) 10%, transparent);
		box-shadow: inset 3px 0 0 var(--pct-header-menu-accent, #1A73E8);
		color: var(--pct-header-menu-accent, #1A73E8);
	}

	.pct-primary-nav .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		gap: 2px;
		margin: 4px 0 6px 12px;
		padding: 0 0 0 12px;
		background: transparent;
		border: 0;
		border-left: 1px solid var(--pct-header-border, #E7EAEE);
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
	}

	.pct-primary-nav .sub-menu a {
		min-height: 36px;
		padding: 8px 12px;
		white-space: normal;
	}

	.pct-header-actions {
		display: none;
	}

	.pct-mobile-actions {
		grid-column: 2;
		justify-self: end;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex: 0 0 auto;
		gap: var(--pct-header-icon-gap-mobile, 6px);
		margin-left: auto;
		min-width: max-content;
		white-space: nowrap;
		flex-wrap: nowrap;
	}

	.pct-site-header--menu-left .pct-mobile-actions,
	.pct-site-header--menu-center .pct-mobile-actions,
	.pct-site-header--menu-right .pct-mobile-actions {
		grid-column: 2;
		justify-self: end;
		margin-left: auto;
	}

	.pct-header-search-wrap--mobile {
		display: block;
		flex: 0 0 auto;
	}

	.pct-header-search-wrap--mobile .pct-header-search {
		display: inline-flex;
		gap: 0;
	}

	.pct-header-search-wrap--mobile .pct-header-search-card {
		position: fixed;
		top: calc(var(--pct-header-height-tablet, 68px) + 8px);
		right: var(--pct-header-mobile-padding-x, var(--pct-section-side-padding-tablet, 24px));
		left: var(--pct-header-mobile-padding-x, var(--pct-section-side-padding-tablet, 24px));
		width: auto;
		max-height: calc(100vh - var(--pct-header-height-tablet, 68px) - 24px);
	}

	.pct-header-search-list--suggested {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pct-header-search-wrap--mobile .pct-header-search input[type="search"] {
		position: absolute;
		width: 1px;
		height: 1px;
		min-height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.pct-mobile-actions .pct-header-action,
	.pct-mobile-actions .pct-header-search__submit,
	.pct-mobile-menu-toggle {
		box-sizing: border-box;
		flex: 0 0 auto;
		width: var(--pct-header-icon-size-mobile, 40px);
		height: var(--pct-header-icon-size-mobile, 40px);
		min-height: var(--pct-header-icon-size-mobile, 40px);
	}

	.pct-footer-main {
		grid-template-columns: 1fr;
		gap: var(--pct-footer-mobile-column-gap, 32px);
	}

	.pct-footer-menu-grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: 28px;
	}
}

@media (max-width: 640px) {
	.pct-header-search-wrap--mobile .pct-header-search-card {
		top: calc(var(--pct-header-height-mobile, var(--pct-header-height-tablet, 68px)) + 8px);
		right: 12px;
		left: 12px;
		max-height: calc(100vh - var(--pct-header-height-mobile, var(--pct-header-height-tablet, 68px)) - 22px);
		padding: 12px;
	}

	.pct-header-search-item {
		grid-template-columns: 42px minmax(0, 1fr);
	}

	.pct-header-search-list--suggested {
		grid-template-columns: 1fr;
	}

	.pct-header-search-list--results {
		grid-template-columns: 1fr;
	}

	.pct-header-search-item--suggested {
		grid-template-columns: 72px minmax(0, 1fr);
		align-items: center;
	}

	.pct-header-search-item__thumb {
		width: 42px;
		height: 42px;
	}

	.pct-header-search-item--suggested .pct-header-search-item__thumb {
		width: 72px;
		height: auto;
	}

	.pct-header-live-result {
		min-height: 94px;
	}

	.pct-header-live-result__media {
		flex-basis: 105px;
		width: 105px;
		min-height: 74px;
	}

	.pct-header-live-result__content {
		padding: 10px 10px 9px;
	}

	.pct-header-live-result__title {
		font-size: 13.5px;
	}

	.pct-header-shell {
		padding-left: var(--pct-header-mobile-padding-x, var(--pct-section-side-padding-mobile, 18px));
		padding-right: var(--pct-header-mobile-padding-x, var(--pct-section-side-padding-mobile, 18px));
	}

	.pct-footer-shell {
		padding-left: var(--pct-footer-mobile-padding-x, var(--pct-section-side-padding-mobile, 18px));
		padding-right: var(--pct-footer-mobile-padding-x, var(--pct-section-side-padding-mobile, 18px));
	}

	.pct-header-shell {
		min-height: var(--pct-header-height-mobile, 64px);
	}

	.pct-site-brand__logo img {
		max-width: min(var(--pct-header-logo-max-width-mobile, var(--pct-header-logo-max-width-tablet, 120px)), 100%);
		max-height: var(--pct-header-logo-max-height-mobile, 38px);
	}

	.pct-site-brand__name {
		font-size: 18px;
	}

	.pct-mobile-actions .pct-header-action {
		width: var(--pct-header-icon-size-mobile, 40px);
		height: var(--pct-header-icon-size-mobile, 40px);
	}

	.pct-site-brand__description {
		max-width: none;
	}

	.pct-footer-main,
	.pct-footer-menu-grid {
		grid-template-columns: 1fr;
		gap: var(--pct-footer-mobile-column-gap, 32px);
	}

	.pct-site-footer--mobile-center {
		text-align: center;
	}

	.pct-site-footer--mobile-center .pct-footer-brand__description {
		margin-left: auto;
		margin-right: auto;
	}

	.pct-site-footer--mobile-center .pct-footer-social {
		justify-content: center;
	}

	.pct-site-footer--mobile-center .pct-footer-menu {
		justify-items: center;
	}
}

@media (max-width: 390px) {
	.pct-header-live-result__media {
		flex-basis: 92px;
		width: 92px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pct-header-live-result,
	.pct-header-live-result__arrow {
		transition: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .pct-site-header--sticky {
		top: calc(46px + var(--pct-header-sticky-offset, 0px));
	}
}

.pct-site-header.is-compact-desktop .pct-header-search .pct-header-search-card__input-wrap input[type="search"],
.pct-site-header--search-icon_only .pct-header-search .pct-header-search-card__input-wrap input[type="search"],
.pct-site-header--search-responsive-always_icon .pct-header-search .pct-header-search-card__input-wrap input[type="search"],
.pct-site-header--search-responsive-auto .pct-header-search .pct-header-search-card__input-wrap input[type="search"],
.pct-header-search-wrap--mobile .pct-header-search .pct-header-search-card__input-wrap input[type="search"] {
	position: static;
	width: 100%;
	height: auto;
	min-height: 44px;
	margin: 0;
	padding: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	white-space: normal;
	background: transparent;
	border: 0;
	box-shadow: none;
}
