:root {
	--psh-light-bg-top: #f7f7f5;
	--psh-light-bg-bottom: #ecebe8;
	--psh-light-border-top: rgba(202, 202, 202, 0.95);
	--psh-light-border-bottom: rgba(215, 215, 215, 0.95);
	--psh-light-text: #212121;
	--psh-dark-bg-top: #262626;
	--psh-dark-bg-bottom: #1e1e1e;
	--psh-dark-border-top: #505050;
	--psh-dark-border-bottom: #3b3b3b;
	--psh-dark-text: #ffffff;
	--psh-shadow: none;
	--psh-outline-dark: rgba(255, 255, 255, 0.14);
}

body.psh-hide-theme-header #header-content,
body.psh-hide-theme-header .header-wrapper.header-type-1,
body.psh-hide-theme-header #masthead.site-header,
body.psh-hide-theme-header .elementor-location-header,
body.psh-hide-theme-header header.site-header:not(.psh-site-header) {
	display: none !important;
}

.psh-site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	padding: 22px 32px 0;
	color: var(--psh-dark-text);
	background: transparent;
}

.psh-site-header.is-sticky {
	position: fixed;
}

.admin-bar .psh-site-header.is-sticky {
	top: 32px;
}

.psh-site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 170px auto 170px;
	align-items: center;
	column-gap: 14px;
	justify-content: space-between;
}

.psh-site-header__search-wrap {
	position: relative;
}

.psh-site-header__left,
.psh-site-header__right {
	display: flex;
	align-items: center;
}

.psh-site-header__left {
	justify-content: flex-start;
	min-width: 0;
}

.psh-site-header__center {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.psh-site-header__right {
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
}

.psh-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	max-width: var(--psh-logo-max-width, 150px);
	width: 100%;
}

.psh-logo__variant {
	display: none;
	max-width: 100%;
}

.psh-logo__variant img,
.psh-logo__image {
	display: block;
	max-height: var(--psh-logo-max-height, 30px);
	width: auto;
	max-width: var(--psh-logo-max-width, 150px);
}

.psh-site-header:not(.is-light) .psh-logo__variant--dark {
	display: inline-flex;
}

.psh-site-header.is-light .psh-logo__variant--light {
	display: inline-flex;
}

.psh-logo__mark {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: #ef4444;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.psh-logo__fallback,
.psh-logo__text {
	font-family: Inter, sans-serif;
	font-weight: 800;
}

.psh-logo__fallback {
	color: #fff;
	font-size: 14px;
}

.psh-logo__text {
	font-size: 17px;
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.psh-nav > div > ul,
.psh-menu {
	list-style: none;
	margin: 0;
	padding: 1px;
	display: flex;
	align-items: center;
	gap: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--psh-dark-border-top) 0%, var(--psh-dark-border-bottom) 100%);
	box-shadow: var(--psh-shadow);
	max-width: 100%;
	position: relative;
	min-height: 46px;
}

.psh-nav > div > ul::before,
.psh-menu::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--psh-dark-bg-top) 43.4%, var(--psh-dark-bg-bottom) 100%);
}

.psh-nav > div > ul > li,
.psh-menu > li {
	margin: 0;
	position: relative;
	z-index: 1;
}

.psh-nav > div > ul > li > a,
.psh-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 24px;
	color: inherit;
	text-decoration: none;
	font: 600 13px/1.2 Inter, sans-serif;
	letter-spacing: 0.015em;
	text-transform: capitalize;
	border-radius: 999px;
	white-space: nowrap;
	background: transparent;
	transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.psh-menu > li.menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	margin-left: 1px;
}

.psh-nav > div > ul > li:hover > a,
.psh-nav > div > ul > li:focus-within > a,
.psh-menu > li:hover > a,
.psh-menu > li:focus-within > a {
	background: rgba(255, 255, 255, 0.035);
}

.psh-menu .sub-menu {
	list-style: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 240px;
	margin: 0;
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	border-radius: 20px;
	background: rgba(26, 26, 26, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.psh-menu li:hover > .sub-menu,
.psh-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.psh-menu .sub-menu li {
	margin: 0;
}

.psh-menu .sub-menu a {
	display: block;
	padding: 11px 14px;
	border-radius: 12px;
	color: inherit;
	text-decoration: none;
	font: 500 14px/1.4 Inter, sans-serif;
}

.psh-menu .sub-menu li:hover > a,
.psh-menu .sub-menu li:focus-within > a {
	background: rgba(255, 255, 255, 0.06);
}

.psh-cart,
.psh-search-toggle,
.psh-signin,
.psh-mobile-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 999px;
	color: inherit;
	background: linear-gradient(180deg, var(--psh-dark-border-top) 0%, var(--psh-dark-border-bottom) 100%);
	box-shadow: var(--psh-shadow);
	padding: 1px;
}

.psh-cart::before,
.psh-search-toggle::before,
.psh-signin::before,
.psh-mobile-toggle::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background: linear-gradient(180deg, var(--psh-dark-bg-top) 32.19%, var(--psh-dark-bg-bottom) 100%);
}

.psh-cart > *,
.psh-search-toggle > *,
.psh-signin > *,
.psh-mobile-toggle > * {
	position: relative;
	z-index: 1;
}

.psh-cart {
	width: 48px;
	height: 48px;
}

.psh-search-toggle {
	width: 48px;
	height: 48px;
	border: 0;
	cursor: pointer;
}

.psh-site-header__right .psh-search-toggle {
	width: 22px;
	height: 22px;
	padding: 0;
	background: transparent !important;
	box-shadow: none;
	border-radius: 0;
}

.psh-site-header__right .psh-search-toggle::before {
	display: none;
}

.psh-search-proxy {
	display: none !important;
}

.psh-cart__icon {
	position: relative;
	display: inline-flex;
}

.psh-search-toggle__icon {
	display: inline-flex;
}

.psh-cart__svg {
	width: 20px;
	height: 20px;
	color: currentColor;
}

.psh-search-toggle__svg {
	width: 20px;
	height: 20px;
	color: currentColor;
}

.psh-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font: 700 10px/18px Inter, sans-serif;
	text-align: center;
}

.psh-cart-count.is-empty {
	display: none;
}

.psh-signin {
	min-width: 96px;
	height: 48px;
	padding-inline: 1px;
}

.psh-signin {
	font: 500 13px/1.2 Inter, sans-serif;
}

.psh-signin,
.psh-signin:hover,
.psh-signin:focus {
	color: inherit;
}

.psh-signin {
	padding: 0 22px;
}

.psh-signin span {
	position: relative;
	z-index: 1;
}

.psh-mobile-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 0;
	cursor: pointer;
}

.psh-mobile-toggle__lines {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.psh-mobile-toggle__lines span {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.psh-mobile-panel {
	display: none;
}

.psh-site-header.is-light {
	color: var(--psh-light-text);
}

.psh-site-header.is-light .psh-nav > div > ul,
.psh-site-header.is-light .psh-menu,
.psh-site-header.is-light .psh-cart,
.psh-site-header.is-light .psh-search-toggle,
.psh-site-header.is-light .psh-signin,
.psh-site-header.is-light .psh-mobile-toggle {
	background: linear-gradient(180deg, var(--psh-light-border-top) 0%, var(--psh-light-border-bottom) 100%);
}

.psh-site-header.is-light .psh-nav > div > ul::before,
.psh-site-header.is-light .psh-menu::before,
.psh-site-header.is-light .psh-cart::before,
.psh-site-header.is-light .psh-search-toggle::before,
.psh-site-header.is-light .psh-signin::before,
.psh-site-header.is-light .psh-mobile-toggle::before {
	background: linear-gradient(180deg, var(--psh-light-bg-top) 43.4%, var(--psh-light-bg-bottom) 100%);
}

.psh-site-header.is-light .psh-cart,
.psh-site-header.is-light .psh-search-toggle,
.psh-site-header.is-light .psh-mobile-toggle {
	color: #666666;
}

.psh-site-header.is-light .psh-cart .psh-cart__svg,
.psh-site-header.is-light .psh-search-toggle .psh-search-toggle__svg {
	color: #666666;
}

.psh-theme-search-wrap {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 100001;
}

.psh-site-header .nasa-search-space {
	position: static;
}

.psh-site-header .nasa-show-search-form.nasa-over-hide.nasa-modern-layout {
	left: 0;
	right: 0;
	width: 100%;
}

.psh-site-header.is-light .psh-nav > div > ul > li:hover > a,
.psh-site-header.is-light .psh-nav > div > ul > li:focus-within > a,
.psh-site-header.is-light .psh-menu > li:hover > a,
.psh-site-header.is-light .psh-menu > li:focus-within > a {
	background: rgba(0, 0, 0, 0.04);
}

.psh-site-header.is-light .psh-menu .sub-menu {
	background: rgba(255, 255, 255, 0.99);
	border-color: rgba(0, 0, 0, 0.08);
}

.psh-site-header.is-light .psh-menu .sub-menu li:hover > a,
.psh-site-header.is-light .psh-menu .sub-menu li:focus-within > a {
	background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 1024px) {
	.psh-site-header {
		padding: 10px 12px 0;
	}

	.psh-site-header__inner {
		grid-template-columns: 1fr auto auto;
		max-width: 100%;
		min-height: 44px;
	}

	.psh-logo {
		max-width: var(--psh-logo-mobile-max-width, 112px);
	}

	.psh-logo__variant img,
	.psh-logo__image {
		max-width: var(--psh-logo-mobile-max-width, 112px);
		max-height: var(--psh-logo-mobile-max-height, 22px);
	}

	.psh-site-header__center {
		display: none;
	}

	.psh-site-header__right {
		gap: 12px;
	}

	.psh-site-header.is-light .psh-mobile-toggle,
	.psh-site-header.is-light .psh-search-toggle,
	.psh-site-header.is-light .psh-site-header__right .psh-cart {
		background: transparent;
	}

	.psh-mobile-toggle {
		display: inline-flex;
		width: 32px;
		height: 32px;
		padding: 0;
		background: transparent;
		box-shadow: none;
		border-radius: 0;
	}

	.psh-mobile-toggle::before {
		display: none;
	}

	.psh-mobile-panel.is-open {
		display: block;
		max-width: 260px;
		margin: 10px 0 0 auto;
		padding: 14px;
		border-radius: 16px;
		color: inherit;
		background: rgba(33, 33, 33, 0.98);
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	}

	.psh-site-header.is-light .psh-mobile-panel {
		background: rgba(255, 255, 255, 0.99);
		border-color: rgba(0, 0, 0, 0.08);
	}

	.psh-mobile-panel .psh-menu {
		display: block;
		padding: 0;
		background: transparent;
		box-shadow: none;
		border-radius: 0;
	}

	.psh-mobile-panel .psh-menu::before {
		display: none;
	}

	.psh-site-header.is-light .psh-mobile-panel .psh-menu,
	.psh-site-header.is-light .psh-mobile-panel .psh-menu::before {
		background: transparent;
	}

	.psh-mobile-panel .psh-menu > li > a {
		display: flex;
		justify-content: space-between;
		background: transparent;
		padding: 12px 2px;
		font-size: 13px;
	}

	.psh-mobile-panel .psh-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		margin-top: 8px;
		display: none;
		padding: 10px 12px;
		border-radius: 14px;
	}

	.psh-mobile-panel .psh-menu > li.is-open > .sub-menu {
		display: block;
	}

	.psh-mobile-panel .psh-menu > li.menu-item-has-children > a::after {
		transform: rotate(45deg) translateY(-1px);
		transition: transform 0.2s ease;
	}

	.psh-mobile-panel .psh-menu > li.is-open > a::after {
		transform: rotate(225deg) translateY(-1px);
	}

	.psh-mobile-panel__actions {
		display: block;
		margin-top: 12px;
		padding-top: 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.psh-mobile-panel__actions .psh-cart,
	.psh-mobile-panel__actions .psh-signin {
		display: inline-flex;
	}

	.psh-mobile-panel__actions .psh-signin {
		width: 100%;
		min-width: 100%;
		height: 42px;
		border-radius: 14px;
	}

	.psh-site-header__right .psh-signin {
		display: none;
	}

	.psh-site-header__right .psh-search-toggle,
	.psh-site-header__right .psh-cart {
		display: inline-flex;
		width: 32px;
		height: 32px;
		padding: 0;
		background: transparent;
		box-shadow: none;
		border-radius: 0;
	}

	.psh-site-header__right .psh-search-toggle::before,
	.psh-site-header__right .psh-cart::before {
		display: none;
	}

	.psh-site-header__right .psh-search-toggle .psh-search-toggle__svg,
	.psh-site-header__right .psh-cart .psh-cart__svg {
		width: 18px;
		height: 18px;
	}

	.psh-site-header__right .psh-cart .psh-cart-count {
		top: -5px;
		right: -7px;
	}

	.psh-mobile-toggle__lines {
		gap: 3px;
	}

	.psh-mobile-toggle__lines span {
		width: 14px;
		height: 1.5px;
		margin-left: auto;
	}

	.psh-theme-search-wrap {
		display: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .psh-site-header.is-sticky {
		top: 46px;
	}
}
