.roj-site-header {
	background: var(--roj-header-background, var(--roj-color-black));
	border-bottom: 0.0625rem solid rgba(201, 164, 106, 0.18);
	color: var(--roj-header-text, var(--roj-color-white));
	left: 0;
	min-height: var(--roj-header-height);
	position: relative;
	right: 0;
	top: 0;
	transition:
		background-color 300ms ease,
		box-shadow 300ms ease,
		transform 300ms ease;
	width: 100%;
	z-index: 1000;
}

.roj-site-header.roj-header--transparent {
	background: linear-gradient(to bottom, rgba(8, 5, 5, 0.55), transparent);
	border-bottom-color: rgba(255, 255, 255, 0.12);
	position: absolute;
}

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

.roj-site-header.is-scrolled {
	background: rgba(8, 5, 5, 0.96);
	border-bottom-color: rgba(201, 164, 106, 0.35);
	box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.24);
}

.roj-site-header.roj-header--light.is-scrolled {
	background: var(--roj-header-background, var(--roj-color-cream));
}

body:not(.home) .roj-site-header.is-sticky-enabled ~ #primary {
	padding-top: calc(var(--roj-header-height) + clamp(4rem, 7vw, 7rem));
}

.roj-header__inner {
	align-items: center;
	display: grid;
	grid-template-columns: auto 1fr auto;
	min-height: var(--roj-header-height);
}

.roj-brand {
	align-items: center;
	display: flex;
}

.roj-brand__link,
.roj-footer-logo {
	align-items: center;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
}

.roj-3d-enabled .roj-brand__link {
	transform-style: preserve-3d;
}

.roj-3d-enabled .roj-brand__link:hover {
	transform: perspective(40rem) rotateX(2deg) rotateY(-3deg) translateZ(0.35rem);
}

.roj-brand__logo {
	max-height: 3.25rem;
	object-fit: contain;
	width: auto;
}

.roj-brand__logo--demo {
	border-radius: 0.2rem;
	max-height: 4rem;
	mix-blend-mode: screen;
	width: clamp(7.5rem, 12vw, 10.5rem);
}

.roj-brand__name {
	font-family: var(--roj-font-display);
	font-size: clamp(1.05rem, 2vw, 1.55rem);
	letter-spacing: 0.15em;
}

.roj-brand__descriptor {
	color: var(--roj-color-gold-light);
	font-size: 0.52rem;
	letter-spacing: 0.45em;
	margin-top: 0.45rem;
	padding-left: 0.45em;
}

.roj-primary-navigation {
	justify-self: center;
}

.roj-primary-menu,
.roj-primary-menu ul,
.roj-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.roj-primary-menu {
	align-items: center;
	display: flex;
	gap: clamp(1.25rem, 2.8vw, 3rem);
}

.roj-primary-menu a {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	padding-block: 2rem;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

.roj-primary-menu > li > a::after {
	background: var(--roj-color-gold);
	bottom: 1.35rem;
	content: "";
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) scaleX(0);
	transition: transform var(--roj-transition);
	width: 100%;
}

.roj-primary-menu > li:hover > a::after,
.roj-primary-menu > .current-menu-item > a::after {
	transform: translateX(-50%) scaleX(1);
}

.roj-primary-menu .sub-menu {
	background: var(--roj-color-black);
	border: 0.0625rem solid rgba(201, 164, 106, 0.3);
	min-width: 13rem;
	opacity: 0;
	padding: 0.5rem 1rem;
	position: absolute;
	transform: translateY(0.75rem);
	transition: opacity var(--roj-transition), transform var(--roj-transition);
	visibility: hidden;
}

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

.roj-primary-menu .sub-menu a {
	padding-block: 0.8rem;
}

.roj-header__actions {
	align-items: center;
	display: flex;
	gap: 0.8rem;
	justify-self: end;
}

.roj-header-action {
	align-items: center;
	display: inline-flex;
	gap: 0.35rem;
	justify-content: center;
	min-height: 2.75rem;
	min-width: 2.75rem;
	position: relative;
	text-decoration: none;
}

.roj-header-action:hover {
	color: var(--roj-color-gold-light);
}

.roj-header-action .dashicons {
	font-size: 1.25rem;
	height: 1.25rem;
	width: 1.25rem;
}

.roj-cart-count {
	align-items: center;
	background: var(--roj-color-gold);
	border-radius: 999px;
	color: var(--roj-color-black);
	display: flex;
	font-size: 0.62rem;
	font-weight: 700;
	height: 1.15rem;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 0.15rem;
	width: 1.15rem;
}

.roj-cart-total {
	font-size: 0.68rem;
	margin-left: 0.35rem;
	white-space: nowrap;
}

.roj-menu-toggle {
	background: transparent;
	border: 0;
	color: currentColor;
	display: none;
	height: 2.75rem;
	padding: 0.55rem;
	width: 2.75rem;
}

.roj-menu-toggle > span:not(.screen-reader-text) {
	background: currentColor;
	display: block;
	height: 0.0625rem;
	margin-block: 0.35rem;
	width: 1.5rem;
}

.roj-mobile-navigation {
	background: rgba(8, 5, 5, 0.985);
	height: calc(100vh - var(--roj-header-height));
	inset: var(--roj-header-height) 0 auto;
	overflow-y: auto;
	position: fixed;
}

.roj-mobile-navigation__inner {
	padding: 2rem 1.5rem 4rem;
}

.roj-mobile-menu a,
.roj-mobile-account {
	border-bottom: 0.0625rem solid rgba(201, 164, 106, 0.2);
	display: block;
	font-family: var(--roj-font-display);
	font-size: 1.75rem;
	padding: 1rem 0;
	text-decoration: none;
}

.roj-mobile-menu .sub-menu {
	list-style: none;
	padding-left: 1rem;
}

.roj-mobile-menu .sub-menu a {
	font-family: var(--roj-font-body);
	font-size: 0.9rem;
	letter-spacing: 0.08em;
}
