.roj-site-header {
	backdrop-filter: blur(1.125rem);
	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-header__ornament {
	background:
		linear-gradient(90deg, transparent, rgba(201, 164, 106, 0.7), transparent)
		bottom / min(34rem, 64vw) 0.0625rem no-repeat;
	inset: 0;
	opacity: 0.55;
	pointer-events: none;
	position: absolute;
}

.roj-skip-link:focus {
	left: 1rem;
	position: fixed !important;
	top: 1rem;
	z-index: 10000;
}

.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):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) .roj-site-header.is-sticky-enabled ~ #primary {
	padding-top: calc(var(--roj-header-height) + clamp(4rem, 7vw, 7rem));
}

body.woocommerce-cart .roj-site-header.is-sticky-enabled ~ #primary,
body.woocommerce-checkout .roj-site-header.is-sticky-enabled ~ #primary,
body.woocommerce-account .roj-site-header.is-sticky-enabled ~ #primary {
	padding-top: var(--roj-header-height);
}

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

.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;
	transition: filter 240ms ease, transform 240ms ease;
}

.roj-brand__link:hover {
	filter: drop-shadow(0 0 1.25rem rgba(201, 164, 106, 0.22));
}

.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;
	white-space: nowrap;
}

.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;
	flex: 0 0 2.75rem;
	gap: 0.35rem;
	height: 2.75rem;
	justify-content: center;
	min-height: 2.75rem;
	min-width: 2.75rem;
	position: relative;
	text-decoration: none;
	width: 2.75rem;
}

.roj-header-action::before {
	border: 0.0625rem solid transparent;
	border-radius: 50%;
	content: "";
	inset: 0;
	position: absolute;
	transition: border-color 220ms ease, transform 220ms ease;
}

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

.roj-header-action:hover::before,
.roj-header-action:focus-visible::before {
	border-color: rgba(201, 164, 106, 0.48);
	transform: rotate(45deg);
}

.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;
	white-space: nowrap;
}

.roj-cart-control {
	align-items: center;
	display: inline-flex;
	gap: 0.45rem;
}

.roj-cart-toggle {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	padding: 0;
}

.roj-cart-toggle:hover,
.roj-cart-toggle:focus-visible {
	background: transparent;
	color: var(--roj-color-gold-light);
	transform: none;
}

.roj-cart-fallback {
	font-size: 0.65rem;
}

.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;
	z-index: 20;
}

.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;
}

/* Accessible cart drawer. */
body.roj-cart-drawer-open {
	overflow: hidden;
}

.roj-cart-drawer-overlay {
	background: rgba(0, 0, 0, 0.58);
	inset: 0;
	opacity: 0;
	position: fixed;
	transition: opacity 240ms ease;
	z-index: 1998;
}

.roj-cart-drawer-overlay.is-open {
	opacity: 1;
}

.roj-cart-drawer {
	background: #ffffff;
	box-shadow: -1.5rem 0 4rem rgba(0, 0, 0, 0.24);
	color: #111111;
	display: flex;
	flex-direction: column;
	height: 100dvh;
	max-width: 35rem;
	position: fixed;
	right: 0;
	top: 0;
	transform: translate3d(100%, 0, 0);
	transition: transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1);
	width: min(35rem, 100%);
	z-index: 1999;
}

.roj-cart-drawer.is-open {
	transform: translate3d(0, 0, 0);
}

.roj-cart-drawer__header {
	align-items: flex-start;
	border-bottom: 0.0625rem solid #dedede;
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	padding: 1.5rem clamp(1.25rem, 4vw, 2.25rem);
}

.roj-cart-drawer__header h2 {
	color: #111111;
	font-family: var(--roj-font-display);
	font-size: clamp(1.6rem, 4vw, 2.25rem);
	letter-spacing: 0.08em;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.roj-cart-drawer__continue,
.roj-cart-drawer__close,
.roj-cart-drawer-item__quantity button,
.roj-cart-drawer-item__remove {
	background: transparent;
	border: 0;
	color: #111111;
	cursor: pointer;
}

.roj-cart-drawer__continue {
	border-bottom: 0.0625rem solid #111111;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	padding: 0 0 0.15rem;
	text-transform: uppercase;
}

.roj-cart-drawer__close {
	align-items: center;
	border: 0.0625rem solid #dedede;
	border-radius: 50%;
	display: inline-flex;
	flex: 0 0 2.75rem;
	font-size: 1.5rem;
	height: 2.75rem;
	justify-content: center;
	padding: 0;
	width: 2.75rem;
}

.roj-cart-drawer__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

.roj-cart-drawer__content[data-error]::before {
	background: #fff2f0;
	border-bottom: 0.0625rem solid #b42318;
	color: #8c1d18;
	content: attr(data-error);
	display: block;
	font-size: 0.8rem;
	padding: 0.75rem 1.25rem;
}

.roj-cart-drawer__items {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 0 clamp(1.25rem, 4vw, 2.25rem);
}

.roj-cart-drawer-item {
	display: grid;
	gap: 1rem;
	grid-template-columns: 6.5rem minmax(0, 1fr);
	padding: 1.5rem 0;
	transition: opacity 160ms ease;
}

.roj-cart-drawer-item + .roj-cart-drawer-item {
	border-top: 0.0625rem solid #dedede;
}

.roj-cart-drawer-item.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.roj-cart-drawer-item__image {
	background: #f7f7f7;
}

.roj-cart-drawer-item__image img {
	aspect-ratio: 4 / 5;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.roj-cart-drawer-item__details {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.roj-cart-drawer-item__heading {
	align-items: flex-start;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
}

.roj-cart-drawer-item__name {
	color: #111111;
	font-family: var(--roj-font-display);
	font-size: 1.05rem;
	line-height: 1.3;
	text-decoration: none;
}

.roj-cart-drawer-item__price {
	color: #111111;
	font-size: 0.85rem;
	white-space: nowrap;
}

.roj-cart-drawer-item__variation {
	color: #666666;
	font-size: 0.75rem;
	margin-top: 0.4rem;
}

.roj-cart-drawer-item__variation dl {
	margin: 0;
}

.roj-cart-drawer-item__variation dt,
.roj-cart-drawer-item__variation dd {
	display: inline;
	margin: 0;
}

.roj-cart-drawer-item__variation dd::after {
	content: " ";
	display: block;
}

.roj-cart-drawer-item__actions {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 0.85rem;
}

.roj-cart-drawer-item__quantity {
	align-items: center;
	border: 0.0625rem solid #dedede;
	display: inline-grid;
	grid-template-columns: 2.5rem 2.5rem 2.5rem;
	min-height: 2.5rem;
}

.roj-cart-drawer-item__quantity button,
.roj-cart-drawer-item__quantity span {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	min-width: 2.5rem;
}

.roj-cart-drawer-item__quantity button:hover {
	background: #f7f7f7;
}

.roj-cart-drawer-item__remove {
	border-bottom: 0.0625rem solid #111111;
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	padding: 0 0 0.1rem;
	text-transform: uppercase;
}

.roj-cart-drawer__footer {
	background: #ffffff;
	border-top: 0.0625rem solid #dedede;
	flex: 0 0 auto;
	padding: 1.25rem clamp(1.25rem, 4vw, 2.25rem) max(1.25rem, env(safe-area-inset-bottom));
}

.roj-cart-drawer__subtotal {
	align-items: center;
	display: flex;
	font-size: 1rem;
	justify-content: space-between;
}

.roj-cart-drawer__subtotal strong {
	font-size: 1.1rem;
}

.roj-cart-drawer__footer p {
	color: #666666;
	font-size: 0.72rem;
	margin: 0.35rem 0 1rem;
}

.roj-cart-drawer__primary,
.roj-cart-drawer__secondary {
	align-items: center;
	display: flex;
	font-size: 0.7rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.1em;
	min-height: 3.25rem;
	padding: 0.7rem 1rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

.roj-cart-drawer__primary {
	background: #111111;
	border: 0.0625rem solid #111111;
	color: #ffffff;
	margin-top: 0.65rem;
}

.roj-cart-drawer__secondary {
	background: #ffffff;
	border: 0.0625rem solid #111111;
	color: #111111;
}

.roj-cart-drawer__empty {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 2rem;
	text-align: center;
}

.roj-cart-drawer__empty > .dashicons {
	color: #666666;
	font-size: 2.5rem;
	height: 2.5rem;
	margin-bottom: 1rem;
	width: 2.5rem;
}

.roj-cart-drawer__empty h3 {
	color: #111111;
	font-family: var(--roj-font-display);
	font-size: 2rem;
}

.roj-cart-drawer__empty p {
	color: #666666;
	max-width: 24rem;
}

@media (max-width: 36rem) {
	.roj-cart-total {
		display: none;
	}

	.roj-cart-drawer {
		max-width: none;
		width: 100%;
	}

	.roj-cart-drawer-item {
		grid-template-columns: 5rem minmax(0, 1fr);
	}

	.roj-cart-drawer-item__quantity {
		grid-template-columns: repeat(3, 2.75rem);
	}
}
