:root {
	--eb-primary: #102a43;
	--eb-primary-2: #163b5c;
	--eb-accent: #fc9f00;
	--eb-surface: #ffffff;
	--eb-soft: #f4f7fb;
	--eb-line: rgba(16, 42, 67, 0.12);
	--eb-text: #1f2933;
	--eb-muted: #6b7280;
	--eb-radius: 18px;
	--eb-shadow: 0 18px 45px rgba(16, 42, 67, 0.14);
	--eb-container-width: 1400px;
}

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

.eb-site-header {
	position: sticky;
	top: 0;
	z-index: 9990;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--eb-line);
}

.admin-bar .eb-site-header {
	top: 32px;
}

.eb-topbar {
	color: #ffffff;
	background: linear-gradient(135deg, var(--eb-primary), var(--eb-primary-2));
	font-size: 13px;
}

.eb-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	min-height: 36px;
}

.eb-topbar__link,
.eb-topbar__note {
	color: rgba(255, 255, 255, 0.88);
}

.eb-topbar__link:hover {
	color: #ffffff;
}

.eb-topbar__note {
	margin-left: auto;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.eb-mainbar__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 26px;
	min-height: 86px;
}

.eb-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.eb-brand img,
.eb-footer__logo img {
	display: block;
	width: auto;
	max-height: 58px;
}

.eb-brand__name {
	color: var(--eb-primary);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.eb-primary-nav {
	justify-self: center;
}

.eb-primary-menu,
.eb-primary-menu ul {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.eb-primary-menu li {
	position: relative;
}

.eb-primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 999px;
	color: var(--eb-primary);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.18s ease, background-color 0.18s ease;
}

.eb-primary-menu a:hover,
.eb-primary-menu .current-menu-item > a {
	color: var(--eb-primary);
	background: rgba(252, 159, 0, 0.16);
}

.eb-primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	display: grid;
	min-width: 220px;
	padding: 10px;
	border: 1px solid var(--eb-line);
	border-radius: 16px;
	background: var(--eb-surface);
	box-shadow: var(--eb-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

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

.eb-primary-menu .sub-menu a {
	width: 100%;
	justify-content: flex-start;
	border-radius: 12px;
	white-space: nowrap;
}

.eb-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.eb-header-actions__link {
	color: var(--eb-primary);
	font-weight: 700;
	text-decoration: none;
}

.eb-header-actions__link:hover {
	color: var(--eb-accent);
}

.eb-cart {
	position: relative;
}

.eb-cart__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
	border: 0;
	border-radius: 999px;
	color: #ffffff;
	background: var(--eb-primary);
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(16, 42, 67, 0.18);
}

.eb-cart__button:hover,
.eb-cart.is-open .eb-cart__button {
	background: var(--eb-accent);
}

.eb-cart__count {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	color: var(--eb-primary);
	background: #ffffff;
	font-size: 12px;
	font-weight: 800;
}

.eb-cart__panel {
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
	width: min(360px, calc(100vw - 32px));
	padding: 18px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: var(--eb-surface);
	box-shadow: var(--eb-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.eb-cart.is-open .eb-cart__panel,
.eb-cart:hover .eb-cart__panel,
.eb-cart:focus-within .eb-cart__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.eb-cart__panel .widget_shopping_cart_content {
	display: block;
}

.eb-cart__panel .woocommerce-mini-cart {
	max-height: 360px;
	overflow: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eb-cart__panel .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.eb-cart__panel .button,
.eb-cart__fallback-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	color: #ffffff;
	background: var(--eb-primary);
	font-weight: 800;
	text-decoration: none;
}

.eb-cart__panel .checkout,
.eb-cart__fallback-links a:last-child {
	background: var(--eb-accent);
}

.eb-cart__fallback-links {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 12px;
}

.eb-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: var(--eb-soft);
}

.eb-menu-toggle__bar,
.eb-menu-toggle__bar::before,
.eb-menu-toggle__bar::after {
	display: block;
	width: 20px;
	height: 2px;
	margin: auto;
	border-radius: 2px;
	background: var(--eb-primary);
	content: "";
}

.eb-menu-toggle__bar::before {
	transform: translateY(-7px);
}

.eb-menu-toggle__bar::after {
	transform: translateY(5px);
}

.eb-site-footer {
	margin-top: 64px;
	color: rgba(255, 255, 255, 0.86);
	background: radial-gradient(circle at top left, rgba(252, 159, 0, 0.24), transparent 34%), linear-gradient(135deg, #0b1f33, var(--eb-primary));
}

.eb-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 36px;
	padding-block: 56px;
}

.eb-footer__brand p,
.eb-footer__column p {
	margin: 14px 0 0;
	line-height: 1.6;
}

.eb-footer__logo {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 10px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.94);
}

.eb-footer__column h2 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
}

.eb-footer__column ul {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.eb-footer__column a,
.eb-footer__bottom a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.eb-footer__column a:hover,
.eb-footer__bottom a:hover {
	color: var(--eb-accent);
}

.eb-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.eb-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 58px;
	font-size: 14px;
}

@media (max-width: 1200px) {
	.eb-mainbar__inner {
		grid-template-columns: auto auto auto;
	}

	.eb-menu-toggle {
		display: inline-grid;
		place-items: center;
		order: 2;
	}

	.eb-primary-nav {
		grid-column: 1 / -1;
		display: none;
		justify-self: stretch;
		order: 4;
	}

	.eb-primary-nav.is-open {
		display: block;
	}

	.eb-primary-menu {
		display: grid;
		gap: 6px;
		padding: 14px;
		border: 1px solid var(--eb-line);
		border-radius: var(--eb-radius);
		background: var(--eb-surface);
	}

	.eb-primary-menu a {
		width: 100%;
		justify-content: space-between;
	}

	.eb-primary-menu .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin: 4px 0 4px 12px;
		padding: 4px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.eb-header-actions {
		order: 3;
	}

	.eb-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.admin-bar .eb-site-header {
		top: 46px;
	}

	.eb-topbar__inner {
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
		padding-block: 7px;
	}

	.eb-topbar__note {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}

	.eb-mainbar__inner {
		min-height: 74px;
		gap: 12px;
	}

	.eb-brand img {
		max-height: 46px;
	}

	.eb-header-actions__link,
	.eb-cart__total {
		display: none;
	}

	.eb-cart__button {
		min-width: 44px;
		padding: 0 10px;
	}

	.eb-cart__panel {
		right: -58px;
	}

	.eb-footer__grid {
		grid-template-columns: 1fr;
		padding-block: 40px;
	}

	.eb-footer__bottom-inner {
		flex-direction: column;
		justify-content: center;
		padding-block: 14px;
		text-align: center;
	}
}


/* Header polish: compact black shell, valid logo sizing, cleaner alignment. */
:root {
	--eb-primary: #080808;
	--eb-primary-2: #1b1b1b;
	--eb-line: rgba(8, 8, 8, 0.12);
	--eb-shadow: 0 18px 45px rgba(8, 8, 8, 0.18);
}

.eb-site-header {
	color: #ffffff;
	background: #080808;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.eb-topbar {
	background: #050505;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eb-topbar__link {
	color: var(--eb-accent);
	font-weight: 700;
}

.eb-topbar__link:hover,
.eb-header-actions__link:hover,
.eb-primary-menu a:hover,
.eb-primary-menu .current-menu-item > a {
	color: #ffffff;
}

.eb-topbar__note,
.eb-topbar__link,
.eb-primary-menu a {
	letter-spacing: 0;
}

.eb-mainbar {
	background: #080808;
}

.eb-mainbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 92px;
	padding-block: 8px;
}

.eb-brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	max-width: 260px;
	text-decoration: none;
}

.eb-brand img,
.eb-brand__logo,
.eb-footer__logo-image,
.eb-footer__logo img {
	display: block;
	width: auto !important;
	max-width: 100%;
	height: auto !important;
	max-height: 82px !important;
	object-fit: contain;
}

.eb-brand__name {
	color: #ffffff;
}

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

.eb-primary-menu,
.eb-primary-menu ul {
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 4px;
}

.eb-primary-menu a {
	min-height: 38px;
	padding: 0 10px;
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	white-space: nowrap;
}

.eb-primary-menu a:hover,
.eb-primary-menu .current-menu-item > a {
	background: rgba(252, 159, 0, 0.22);
}

.eb-primary-menu .sub-menu {
	top: calc(100% + 8px);
	min-width: 190px;
	padding: 8px;
	border-color: rgba(255, 255, 255, 0.14);
	border-radius: 6px;
	background: #080808;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.eb-primary-menu .sub-menu:empty {
	display: none;
}

.eb-primary-menu .sub-menu a {
	min-height: 38px;
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.88);
	background: transparent;
}

.eb-primary-menu .sub-menu a:hover,
.eb-primary-menu .sub-menu .current-menu-item > a {
	color: #111111;
	background: var(--eb-accent);
}

.eb-header-actions {
	flex: 0 0 auto;
	gap: 12px;
}

.eb-header-actions__link {
	color: var(--eb-accent);
	white-space: nowrap;
}

.eb-cart__button {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: #151515;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.eb-cart__button:hover,
.eb-cart.is-open .eb-cart__button {
	background: var(--eb-accent);
}

.eb-site-header select,
.eb-site-header .gt_selector {
	max-width: 180px;
	min-height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	color: #111111;
	background: #ffffff;
}

.eb-menu-toggle {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: #151515;
}

.eb-menu-toggle__bar,
.eb-menu-toggle__bar::before,
.eb-menu-toggle__bar::after {
	background: #ffffff;
}

.eb-site-footer {
	background: #080808;
}

.eb-footer__logo {
	border-radius: 6px;
	background: #ffffff;
}

@media (max-width: 1200px) {
	.eb-mainbar__inner {
		flex-wrap: wrap;
	}

	.eb-primary-nav {
		flex-basis: 100%;
	}

	.eb-primary-menu {
		border: 1px solid rgba(255, 255, 255, 0.12);
		background: #111111;
	}
}

@media (max-width: 767px) {
	.eb-mainbar__inner {
		gap: 12px;
		min-height: 74px;
	}

	.eb-brand {
		max-width: 180px;
	}

	.eb-brand img,
	.eb-brand__logo {
		max-height: 58px !important;
	}
}

/* Topbar language selector. */
.eb-topbar__language {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	min-width: 0;
	line-height: 1;
}

.eb-topbar__language:empty {
	display: none;
}

.eb-topbar__language .gt_switcher-popup,
.eb-topbar__language select,
.eb-topbar__language .gt_selector {
	display: inline-flex !important;
	align-items: center;
	min-height: 28px !important;
	max-width: 170px;
	padding: 0 10px !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 4px !important;
	color: rgba(255, 255, 255, 0.88) !important;
	background: #151515 !important;
	box-shadow: none !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 28px !important;
	text-decoration: none !important;
	white-space: nowrap;
}

.eb-topbar__language .gt_switcher-popup:hover {
	color: #ffffff !important;
	border-color: rgba(252, 159, 0, 0.62) !important;
}

.eb-topbar__language .gt_switcher-popup img,
.eb-topbar__language select img,
.eb-topbar__language .gt_selector img {
	margin-right: 6px !important;
	vertical-align: -2px !important;
}

.eb-primary-menu .menu-item-gtranslate,
.gtranslate_wrapper,
.gt_switcher_wrapper {
	display: none !important;
}

#eb-gtranslate-topbar.gtranslate_wrapper,
#eb-gtranslate-topbar .gt_switcher_wrapper {
	display: inline-flex !important;
	position: static !important;
}

@media (max-width: 767px) {
	.eb-topbar__inner {
		justify-content: flex-start;
	}

	.eb-topbar__note {
		width: auto;
		margin-left: auto;
		text-align: right;
	}

	.eb-topbar__language {
		width: 100%;
		justify-content: flex-start;
	}
}

/* Native Eastbound mini cart. */
.eb-cart__panel {
	width: min(390px, calc(100vw - 32px));
	padding: 0;
	overflow: hidden;
	border-color: rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: #ffffff;
	color: var(--eb-text);
}

.eb-cart:not(.is-open) .eb-cart__panel {
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-6px) !important;
	pointer-events: none;
}

.eb-cart.is-open .eb-cart__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.eb-mini-cart {
	display: grid;
	gap: 0;
}

.eb-mini-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(8, 8, 8, 0.1);
	background: #0b0b0b;
	color: #ffffff;
}

.eb-mini-cart__eyebrow,
.eb-mini-cart__title {
	margin: 0;
}

.eb-mini-cart__eyebrow {
	color: var(--eb-accent);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.eb-mini-cart__title {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.eb-mini-cart__close {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: #ffffff;
	background: #171717;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.eb-mini-cart__items {
	display: grid;
	max-height: min(365px, calc(100vh - 260px));
	margin: 0;
	padding: 0;
	overflow: auto;
	list-style: none;
}

.eb-mini-cart__item {
	position: relative;
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 12px;
	align-items: start;
	min-height: 96px;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.eb-mini-cart__thumb {
	display: block;
	width: 72px;
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid rgba(8, 8, 8, 0.08);
	border-radius: 6px;
	background: #f7f7f7;
}

.eb-mini-cart__thumb img,
.eb-mini-cart__image {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.eb-mini-cart__item-body {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.eb-mini-cart__name {
	color: #111111;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.28;
	text-decoration: none;
}

.eb-mini-cart__name:hover {
	color: var(--eb-accent);
}

.eb-mini-cart__quantity,
.eb-mini-cart__item-body .variation {
	color: #5f6670;
	font-size: 13px;
	line-height: 1.35;
}

.eb-mini-cart__item-body .variation {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 2px 6px;
	margin: 0;
}

.eb-mini-cart__item-body .variation p {
	margin: 0;
}

.eb-mini-cart__remove {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(8, 8, 8, 0.12);
	border-radius: 50%;
	color: #111111 !important;
	background: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.eb-mini-cart__remove:hover {
	color: #ffffff !important;
	border-color: #111111;
	background: #111111;
}

.eb-mini-cart__summary,
.eb-mini-cart__subtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 18px;
	color: #1f2933;
	font-size: 14px;
}

.eb-mini-cart__summary {
	border-top: 1px solid rgba(8, 8, 8, 0.08);
	background: #fafafa;
}

.eb-mini-cart__subtotal {
	border-top: 1px solid rgba(8, 8, 8, 0.08);
	font-size: 16px;
}

.eb-mini-cart__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 0 18px 18px;
}

a.eb-mini-cart__button,
a.eb-mini-cart__button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid #111111 !important;
	border-radius: 4px;
	color: #111111 !important;
	background: #ffffff !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
}

a.eb-mini-cart__button:hover,
a.eb-mini-cart__button:focus {
	color: #ffffff !important;
	background: #111111 !important;
}

a.eb-mini-cart__button--primary,
a.eb-mini-cart__button--primary:visited {
	border-color: var(--eb-accent) !important;
	color: #111111 !important;
	background: var(--eb-accent) !important;
}

a.eb-mini-cart__button--primary:hover,
a.eb-mini-cart__button--primary:focus {
	border-color: #111111 !important;
	color: #ffffff !important;
	background: #111111 !important;
}

.eb-mini-cart__empty {
	display: grid;
	gap: 14px;
	padding: 22px 18px 18px;
}

.eb-mini-cart__empty p {
	margin: 0;
	color: #1f2933;
	font-weight: 700;
}

@media (max-width: 767px) {
	.eb-cart__panel {
		position: fixed;
		inset: auto 12px 12px 12px;
		width: auto;
		max-height: calc(100vh - 92px);
	}

	.eb-mini-cart__items {
		max-height: calc(100vh - 330px);
	}

	.eb-mini-cart__item {
		grid-template-columns: 60px 1fr auto;
	}

	.eb-mini-cart__thumb {
		width: 60px;
	}
}

/* Mobile header reset. */
.eb-mobile-menu-extras {
	display: none;
}

@media (max-width: 767px) {
	.eb-site-header {
		background: #080808;
	}

	.eb-topbar {
		display: none;
	}

	.eb-mainbar__inner {
		display: grid;
		grid-template-columns: minmax(100px, 1fr) auto auto;
		align-items: center;
		gap: 10px;
		min-height: 92px;
		padding-block: 10px;
	}

	.eb-brand {
		justify-self: start;
		max-width: 118px;
	}

	.eb-brand img,
	.eb-brand__logo {
		max-height: 62px !important;
	}

	.eb-menu-toggle {
		display: inline-grid;
		place-items: center;
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		width: 54px;
		height: 54px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 50%;
		background: #151515;
		cursor: pointer;
	}

	.eb-menu-toggle[aria-expanded="true"] {
		border-color: rgba(252, 159, 0, 0.75);
		background: var(--eb-accent);
	}

	.eb-menu-toggle__bar {
		position: relative;
		display: block;
		width: 25px;
		height: 3px;
		margin: 0;
		border-radius: 999px;
		background: #ffffff;
	}

	.eb-menu-toggle__bar::before,
	.eb-menu-toggle__bar::after {
		position: absolute;
		left: 0;
		display: block;
		width: 25px;
		height: 3px;
		margin: 0;
		border-radius: 999px;
		background: #ffffff;
		content: "";
	}

	.eb-menu-toggle__bar::before {
		top: -8px;
		transform: none;
	}

	.eb-menu-toggle__bar::after {
		top: 8px;
		transform: none;
	}

	.eb-header-actions {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.eb-cart__button {
		min-width: 58px;
		min-height: 48px;
		padding: 0 10px;
	}

	.eb-cart__icon {
		font-size: 18px;
		line-height: 1;
	}

	.eb-cart__count {
		min-width: 28px;
		height: 28px;
		font-size: 13px;
	}

	.eb-primary-nav {
		grid-column: 1 / -1;
		justify-self: stretch;
		width: 100%;
		margin-top: 6px;
	}

	.eb-primary-nav.is-open {
		display: grid;
		gap: 12px;
	}

	.eb-primary-menu {
		display: grid;
		justify-content: stretch;
		justify-items: stretch;
		align-items: stretch;
		width: 100%;
		gap: 6px;
		padding: 12px 0 0;
		border: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0;
		background: transparent;
	}

	.eb-primary-menu li {
		width: 100%;
	}

	.eb-primary-menu a {
		justify-content: flex-start;
		width: 100%;
		min-height: 44px;
		padding: 0 14px;
		border-radius: 6px;
		color: rgba(255, 255, 255, 0.88);
		background: #111111;
		font-size: 15px;
		text-align: left;
	}

	.eb-primary-menu a:hover,
	.eb-primary-menu .current-menu-item > a {
		color: #111111;
		background: var(--eb-accent);
	}

	.eb-primary-menu .sub-menu {
		position: static;
		display: grid;
		justify-content: stretch;
		justify-items: stretch;
		align-items: stretch;
		gap: 6px;
		width: 100%;
		min-width: 0;
		margin: 6px 0 0;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.eb-primary-menu .sub-menu a {
		justify-content: flex-start;
		width: 100%;
		padding-left: 28px;
		color: rgba(255, 255, 255, 0.82);
		background: #101010;
	}

	.eb-mobile-menu-extras {
		display: grid;
		gap: 12px;
		padding: 0 0 14px;
	}

	.eb-mobile-menu-extras__links {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.eb-mobile-menu-extras__link {
		display: flex;
		align-items: center;
		min-height: 42px;
		padding: 0 14px;
		border-radius: 6px;
		color: var(--eb-accent);
		background: #111111;
		font-size: 15px;
		font-weight: 800;
		text-decoration: none;
	}

	.eb-mobile-menu-extras__link:hover {
		color: #111111;
		background: var(--eb-accent);
	}

	.eb-mobile-menu-extras__note {
		margin: 0;
		padding: 0 2px;
		color: rgba(255, 255, 255, 0.78);
		font-size: 14px;
		font-weight: 700;
		line-height: 1.45;
		text-align: left;
	}

	.eb-mobile-menu-extras__language,
	#eb-gtranslate-mobile.gtranslate_wrapper,
	#eb-gtranslate-mobile .gt_switcher_wrapper {
		display: flex !important;
		position: static !important;
		justify-content: flex-start;
		width: 100%;
	}

	.eb-mobile-menu-extras__language .gt_switcher-popup,
	.eb-mobile-menu-extras__language select,
	.eb-mobile-menu-extras__language .gt_selector {
		width: 100% !important;
		max-width: none;
		min-height: 42px !important;
		border-color: rgba(255, 255, 255, 0.16) !important;
		border-radius: 6px !important;
		background: #111111 !important;
		color: rgba(255, 255, 255, 0.88) !important;
	}
}

/* Core WooCommerce cart and checkout pages. */
.eb-commerce-page {
	width: min(var(--eb-container-width), calc(100% - 32px));
	margin: 42px auto 72px;
	color: #1f2933;
}

.eb-commerce-page__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 3px solid #080808;
}

.eb-commerce-page__eyebrow,
.eb-commerce-page__title,
.eb-commerce-page__notice p {
	margin: 0;
}

.eb-commerce-page__eyebrow {
	color: var(--eb-accent);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.eb-commerce-page__title {
	color: #080808;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.1;
}

.eb-commerce-page__notice {
	margin-bottom: 22px;
	padding: 16px 18px;
	border-left: 4px solid var(--eb-accent);
	border-radius: 6px;
	background: #fff8e9;
	color: #2f3134;
}

.eb-commerce-page__notice strong {
	display: block;
	margin-bottom: 5px;
	color: #080808;
}

.eb-commerce-page__content > .woocommerce {
	display: block;
}

.woocommerce-cart .OpenCC_cart,
.woocommerce-cart #popupCc,
.woocommerce-cart .elementor-location-popup,
.woocommerce-checkout .OpenCC_cart,
.woocommerce-checkout #popupCc,
.woocommerce-checkout .elementor-location-popup {
	display: none !important;
}

.single-product #popupCc {
	display: none !important;
}

.eb-commerce-page .woocommerce-notices-wrapper:not(:empty),
.eb-commerce-page .woocommerce-error,
.eb-commerce-page .woocommerce-info,
.eb-commerce-page .woocommerce-message {
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid rgba(8, 8, 8, 0.12);
	border-left: 4px solid var(--eb-accent);
	border-radius: 6px;
	background: #ffffff;
	color: #1f2933;
	box-shadow: 0 10px 24px rgba(8, 8, 8, 0.06);
	list-style: none;
}

.eb-commerce-page .woocommerce-error {
	border-left-color: #b42318;
}

.eb-commerce-page .woocommerce-message {
	border-left-color: #2f7d32;
}

.eb-commerce-page table.shop_table,
.eb-commerce-page .cart_totals table,
.eb-commerce-page #order_review table {
	width: 100%;
	margin: 0;
	border: 1px solid rgba(8, 8, 8, 0.12);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
}

.eb-commerce-page table.shop_table th,
.eb-commerce-page table.shop_table td,
.eb-commerce-page .cart_totals table th,
.eb-commerce-page .cart_totals table td,
.eb-commerce-page #order_review table th,
.eb-commerce-page #order_review table td {
	padding: 14px 16px;
	border: 0;
	border-bottom: 1px solid rgba(8, 8, 8, 0.08);
	vertical-align: middle;
}

.eb-commerce-page table.shop_table thead th,
.eb-commerce-page #order_review table thead th {
	color: #ffffff;
	background: #080808;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.eb-commerce-page table.shop_table tr:last-child td,
.eb-commerce-page .cart_totals table tr:last-child td,
.eb-commerce-page .cart_totals table tr:last-child th,
.eb-commerce-page #order_review table tr:last-child td,
.eb-commerce-page #order_review table tr:last-child th {
	border-bottom: 0;
}

.eb-commerce-page .product-thumbnail img,
.eb-commerce-page .woocommerce-cart-form img {
	width: 72px;
	height: 72px;
	border: 1px solid rgba(8, 8, 8, 0.08);
	border-radius: 6px;
	object-fit: cover;
}

.eb-commerce-page .product-name a,
.eb-commerce-page .woocommerce a {
	color: #111111;
	font-weight: 800;
	text-decoration: none;
}

.eb-commerce-page .product-name a:hover,
.eb-commerce-page .woocommerce a:hover {
	color: var(--eb-accent);
}

.eb-commerce-page .remove {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(8, 8, 8, 0.12);
	border-radius: 50%;
	color: #111111 !important;
	background: #ffffff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.eb-commerce-page .remove:hover {
	color: #ffffff !important;
	background: #111111;
}

.eb-commerce-page .quantity {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.eb-commerce-page .quantity .qty {
	width: 74px;
	min-height: 40px;
	padding: 6px 8px;
	text-align: center;
}

.eb-commerce-page input[type="text"],
.eb-commerce-page input[type="email"],
.eb-commerce-page input[type="tel"],
.eb-commerce-page input[type="number"],
.eb-commerce-page input[type="password"],
.eb-commerce-page textarea,
.eb-commerce-page select,
.eb-commerce-page .select2-container .select2-selection--single {
	width: 100%;
	min-height: 44px;
	border: 1px solid rgba(8, 8, 8, 0.18);
	border-radius: 4px;
	background: #ffffff;
	color: #111111;
	font-size: 15px;
}

.eb-commerce-page input[type="text"],
.eb-commerce-page input[type="email"],
.eb-commerce-page input[type="tel"],
.eb-commerce-page input[type="number"],
.eb-commerce-page input[type="password"],
.eb-commerce-page textarea,
.eb-commerce-page select {
	padding: 8px 11px;
}

.eb-commerce-page textarea {
	min-height: 110px;
}

.eb-commerce-page label {
	margin-bottom: 7px;
	color: #111111;
	font-weight: 800;
}

.eb-commerce-page .form-row {
	margin: 0 0 14px;
}

.eb-commerce-page .form-row-first,
.eb-commerce-page .form-row-last {
	width: calc(50% - 8px);
}

.eb-commerce-page .form-row-first {
	float: left;
}

.eb-commerce-page .form-row-last {
	float: right;
}

.eb-commerce-page .clear {
	clear: both;
}

.eb-commerce-page .woocommerce-cart-form,
.eb-commerce-page .cart-collaterals,
.eb-commerce-page .woocommerce-checkout {
	display: block;
}

.eb-commerce-page .cart-collaterals {
	margin-top: 24px;
}

.eb-commerce-page .cart_totals {
	width: min(460px, 100%);
	margin-left: auto;
	padding: 18px;
	border: 1px solid rgba(8, 8, 8, 0.1);
	border-radius: 8px;
	background: #fafafa;
}

.eb-commerce-page .cart_totals h2,
.eb-commerce-page #order_review_heading,
.eb-commerce-page .woocommerce-billing-fields h3,
.eb-commerce-page .woocommerce-shipping-fields h3,
.eb-commerce-page .woocommerce-additional-fields h3 {
	margin: 0 0 14px;
	color: #080808;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
}

.eb-commerce-page .woocommerce-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
	grid-template-areas:
		"customer order-heading"
		"customer order-review";
	column-gap: 48px;
	row-gap: 14px;
	align-items: start;
}

.eb-commerce-page .col2-set {
	grid-area: customer;
	display: block;
	width: 100% !important;
	min-width: 0;
}

.eb-commerce-page .woocommerce-checkout .col2-set .col-1,
.eb-commerce-page .woocommerce-checkout .col2-set .col-2 {
	float: none !important;
	width: 100% !important;
	max-width: none;
}

.eb-commerce-page .woocommerce-checkout .col2-set .col-2 {
	margin-top: 22px;
}

.eb-commerce-page #order_review,
.eb-commerce-page #order_review_heading {
	width: 100%;
	min-width: 0;
}

.eb-commerce-page #order_review {
	grid-area: order-review;
	position: sticky;
	top: 150px;
	padding: 18px;
	border: 1px solid rgba(8, 8, 8, 0.1);
	border-radius: 8px;
	background: #fafafa;
}

.eb-commerce-page #order_review_heading {
	grid-area: order-heading;
	align-self: start;
}

.eb-commerce-page .woocommerce-checkout-review-order-table {
	margin-bottom: 16px !important;
}

.eb-commerce-page #payment {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(8, 8, 8, 0.1);
}

.eb-commerce-page #payment ul.payment_methods {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eb-commerce-page #payment li {
	padding: 12px;
	border: 1px solid rgba(8, 8, 8, 0.1);
	border-radius: 6px;
	background: #ffffff;
}

.eb-commerce-page .place-order {
	margin-top: 16px;
}

.eb-commerce-page button.button,
.eb-commerce-page a.button,
.eb-commerce-page .checkout-button,
.eb-commerce-page #place_order,
.eb-commerce-page input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid #111111 !important;
	border-radius: 4px !important;
	color: #ffffff !important;
	background: #111111 !important;
	font-weight: 900 !important;
	text-decoration: none !important;
	cursor: pointer;
}

.eb-commerce-page .checkout-button,
.eb-commerce-page #place_order {
	width: 100%;
	border-color: var(--eb-accent) !important;
	color: #111111 !important;
	background: var(--eb-accent) !important;
}

.eb-commerce-page .checkout-button:hover,
.eb-commerce-page #place_order:hover {
	color: #ffffff !important;
	border-color: #111111 !important;
	background: #111111 !important;
}

.eb-commerce-page button.button:hover,
.eb-commerce-page a.button:hover,
.eb-commerce-page input[type="submit"]:hover {
	color: #ffffff !important;
	background: #111111 !important;
}

.eb-commerce-page .coupon {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.eb-commerce-page .coupon .input-text {
	width: min(260px, 100%);
}

.eb-commerce-page ul#shipping_method {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eb-commerce-page ul#shipping_method li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	align-items: start;
}

.eb-commerce-page .woocommerce-terms-and-conditions-wrapper {
	margin: 16px 0;
	color: #3f4650;
	font-size: 14px;
	line-height: 1.55;
}

.eb-commerce-page .woocommerce-terms-and-conditions {
	max-height: 260px;
	padding: 14px;
	border: 1px solid rgba(8, 8, 8, 0.1);
	border-radius: 6px;
	background: #ffffff;
	overflow: auto;
}

.eb-currency-converter {
	flex: 0 0 auto;
}

.eb-currency-modal-open {
	overflow: hidden;
}

.eb-currency-converter__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid #111111;
	border-radius: 4px;
	color: #ffffff;
	background: #111111;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}

.eb-currency-converter__button:hover,
.eb-currency-converter__button[aria-expanded="true"] {
	border-color: var(--eb-accent);
	color: #111111;
	background: var(--eb-accent);
}

.eb-currency-converter--external-trigger > .eb-currency-converter__button {
	display: none;
}

.eb-currency-converter__modal[hidden] {
	display: none;
}

.eb-currency-converter__modal {
	position: fixed;
	inset: 0;
	z-index: 10020;
	display: grid;
	place-items: center;
	padding: 18px;
}

.eb-currency-converter__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
}

.eb-currency-converter__dialog {
	position: relative;
	z-index: 1;
	width: min(420px, calc(100vw - 36px));
	max-height: calc(100vh - 36px);
	overflow: auto;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.eb-currency-converter__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	background: #080808;
	color: #ffffff;
}

.eb-currency-converter__header h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.eb-currency-converter__close {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: #ffffff;
	background: #171717;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.eb-currency-converter__close:hover {
	color: #111111;
	background: var(--eb-accent);
}

.eb-currency-converter__body {
	padding: 18px;
}

.eb-currency-converter__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	padding: 13px 14px;
	border: 1px solid rgba(8, 8, 8, 0.1);
	border-radius: 6px;
	background: #f7f7f7;
	color: #3f4650;
	font-weight: 800;
}

.eb-currency-converter__summary strong {
	color: #080808;
	font-size: 18px;
}

.eb-currency-converter__fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.eb-currency-converter__fields label {
	margin: 6px 0 0;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.eb-currency-converter__fields input,
.eb-currency-converter__fields select {
	width: 100%;
	min-height: 44px;
	padding: 8px 11px;
	border: 1px solid rgba(8, 8, 8, 0.18);
	border-radius: 4px;
	background: #ffffff;
	color: #111111;
	font-size: 16px;
}

.eb-currency-converter__result {
	display: grid;
	gap: 6px;
	margin-top: 16px;
	padding: 16px;
	border-radius: 6px;
	background: #080808;
	color: rgba(255, 255, 255, 0.78);
}

.eb-currency-converter__result strong {
	color: var(--eb-accent);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.1;
}

@media (max-width: 900px) {
	.eb-commerce-page__header {
		align-items: stretch;
		flex-direction: column;
	}

	.eb-currency-converter {
		flex-basis: auto;
		align-self: flex-start;
	}

	.eb-commerce-page .woocommerce-checkout {
		display: block;
	}

	.eb-commerce-page #order_review,
	.eb-commerce-page #order_review_heading {
		grid-area: auto;
	}

	.eb-commerce-page #order_review {
		position: static;
		margin-top: 14px;
	}

	.eb-commerce-page .cart_totals {
		margin-left: 0;
	}
}

@media (max-width: 640px) {
	.eb-commerce-page {
		width: min(var(--eb-container-width), calc(100% - 20px));
		margin-top: 26px;
	}

	.eb-commerce-page__title {
		font-size: 28px;
	}

	.eb-commerce-page table.shop_table th,
	.eb-commerce-page table.shop_table td,
	.eb-commerce-page .cart_totals table th,
	.eb-commerce-page .cart_totals table td,
	.eb-commerce-page #order_review table th,
	.eb-commerce-page #order_review table td {
		padding: 11px 12px;
	}

	.eb-commerce-page .form-row-first,
	.eb-commerce-page .form-row-last {
		float: none;
		width: 100%;
	}

	.eb-commerce-page .coupon {
		display: grid;
	}

	.eb-commerce-page .coupon .input-text,
	.eb-commerce-page .coupon .button {
		width: 100%;
	}
}
