:root {
	--arena5-bg: #0b1320;
	--arena5-panel: #121d2b;
	--arena5-panel-soft: #172438;
	--arena5-panel-deep: #0e1929;
	--arena5-text: #f4f7fb;
	--arena5-muted: #9aa8bb;
	--arena5-border: rgba(255, 255, 255, 0.12);
	--arena5-blue: #2c7cff;
	--arena5-blue-strong: #0f62fe;
	--arena5-cyan: #35d4ff;
	--arena5-success: #42e6a4;
	--arena5-radius: 8px;
	--arena5-radius-lg: 14px;
	--arena5-card-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	--arena5-glow: 0 0 70px rgba(44, 124, 255, 0.2);
	--arena5-container: 1360px;
	--arena5-gutter: 32px;
	--arena5-section-gap: 42px;
	--arena5-font-main: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html.theme-night {
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

body.arena5-shell {
	margin: 0;
	background:
		radial-gradient(circle at 50% -12%, rgba(53, 212, 255, 0.16), transparent 34%),
		radial-gradient(circle at 12% 18%, rgba(44, 124, 255, 0.18), transparent 34%),
		linear-gradient(180deg, #101a2a 0%, #0b1422 46%, #101827 100%);
	color: var(--arena5-text);
	font-family: var(--arena5-font-main);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.arena5-rtl {
	direction: rtl;
}

.arena5-container {
	width: min(var(--arena5-container), calc(100% - (var(--arena5-gutter) * 2)));
	margin-inline: auto;
}

.arena5-skip-link {
	position: absolute;
	inset-block-start: 12px;
	inset-inline-start: 12px;
	z-index: 1000;
	transform: translateY(-160%);
	background: var(--arena5-blue);
	color: #fff;
	padding: 10px 14px;
	border-radius: var(--arena5-radius);
}

.arena5-skip-link:focus {
	transform: translateY(0);
}

.arena5-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(5, 9, 16, 0.9);
	border-bottom: 1px solid rgba(44, 124, 255, 0.18);
	backdrop-filter: blur(14px);
}

.arena5-site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 58px;
}

.arena5-brand,
.arena5-brand a {
	color: var(--arena5-text);
	font-size: 1.16rem;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 0;
}

.arena5-brand img {
	display: block;
	max-width: 180px;
	height: auto;
}

.arena5-brand__logo {
	display: block;
	max-width: 180px;
	max-height: 56px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.arena5-logo-swap {
	width: 180px;
	height: 56px;
	background-image: var(--arena5-logo-night);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.theme-day .arena5-logo-swap {
	background-image: var(--arena5-logo-day);
}

.arena5-mobile-menu-toggle,
.arena5-mobile-menu-overlay,
.arena5-mobile-menu {
	display: none;
}

.arena5-nav-menu,
.arena5-footer-menu {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.arena5-primary-nav {
	min-width: 0;
	overflow: visible;
}

.arena5-primary-nav .arena5-nav-menu {
	justify-content: center;
	gap: 6px;
	scrollbar-width: none;
}

.arena5-primary-nav .arena5-nav-menu::-webkit-scrollbar {
	display: none;
}

.arena5-primary-nav .arena5-nav-menu li {
	flex: 0 0 auto;
}

.arena5-primary-nav .arena5-nav-menu > .menu-item-has-children {
	position: relative;
}

.arena5-primary-nav .sub-menu {
	position: absolute;
	inset-block-start: calc(100% + 10px);
	inset-inline-start: 0;
	z-index: 120;
	display: grid;
	min-width: 190px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border: 1px solid rgba(53, 212, 255, 0.24);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.09), rgba(44, 124, 255, 0.04)),
		rgba(8, 15, 26, 0.94);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 18px 44px rgba(0, 0, 0, 0.36),
		0 0 30px rgba(53, 212, 255, 0.12);
	backdrop-filter: blur(14px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.arena5-primary-nav .sub-menu li {
	width: 100%;
}

.arena5-nav-menu a,
.arena5-footer-menu a,
.arena5-header-link {
	color: var(--arena5-muted);
	font-size: 0.96rem;
	font-weight: 600;
	text-decoration: none;
}

.arena5-primary-nav .arena5-nav-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 6px 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	white-space: nowrap;
	transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.arena5-primary-nav .sub-menu a {
	justify-content: flex-start;
	width: 100%;
	min-height: 34px;
	padding: 7px 10px;
	border-radius: 10px;
	text-align: start;
}

.arena5-primary-nav .arena5-nav-menu a:hover,
.arena5-primary-nav .arena5-nav-menu a:focus-visible,
.arena5-primary-nav .arena5-nav-menu .current-menu-item > a,
.arena5-primary-nav .arena5-nav-menu .current_page_item > a,
.arena5-primary-nav .arena5-nav-menu .current-menu-ancestor > a {
	border-color: rgba(53, 212, 255, 0.24);
	background: rgba(53, 212, 255, 0.06);
	color: var(--arena5-cyan);
}

.arena5-nav-menu a:hover,
.arena5-footer-menu a:hover,
.arena5-header-link:hover {
	color: var(--arena5-text);
}

.arena5-header-google-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: 999px;
	background: rgba(53, 212, 255, 0.055);
	color: var(--arena5-text);
	white-space: nowrap;
}

.arena5-header-google-login__icon {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	filter: saturate(0.88) drop-shadow(0 0 7px rgba(53, 212, 255, 0.12));
}

.arena5-header-google-login:hover {
	border-color: rgba(53, 212, 255, 0.42);
	background: rgba(53, 212, 255, 0.1);
}

.arena5-header-actions,
.arena5-action-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.arena5-theme-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	border: 1px solid var(--arena5-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--arena5-muted);
	font: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	padding: 4px 10px;
	cursor: pointer;
}

.arena5-theme-toggle:hover {
	border-color: rgba(53, 212, 255, 0.34);
	color: var(--arena5-text);
}

.arena5-language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px;
	border: 1px solid rgba(53, 212, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
	direction: ltr;
}

.arena5-language-switcher__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 34px;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--arena5-muted);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0;
	white-space: nowrap;
}

.arena5-language-switcher__flag {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.arena5-language-switcher__flag .arena5-flag {
	display: block;
	width: 20px;
	height: 14px;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.arena5-language-switcher__label {
	display: inline-block;
}

.arena5-language-switcher__link:hover,
.arena5-language-switcher__link:focus-visible,
.arena5-language-switcher__link.is-active {
	border-color: rgba(53, 212, 255, 0.28);
	background: rgba(53, 212, 255, 0.1);
	color: var(--arena5-text);
}

.arena5-language-switcher__link.is-active {
	color: var(--arena5-cyan);
}

.arena5-mobile-menu-open,
.arena5-mini-cart-open {
	overflow: hidden;
}

.arena5-theme-toggle__track {
	position: relative;
	display: inline-flex;
	width: 34px;
	height: 20px;
	border-radius: 999px;
	background: rgba(44, 124, 255, 0.18);
	box-shadow: inset 0 0 0 1px rgba(53, 212, 255, 0.22);
}

.arena5-theme-toggle__thumb {
	position: absolute;
	inset-block-start: 3px;
	inset-inline-start: 3px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--arena5-cyan);
	box-shadow: 0 0 14px rgba(53, 212, 255, 0.52);
}

.theme-day .arena5-theme-toggle__thumb {
	inset-inline-start: 17px;
	background: #0f62fe;
	box-shadow: 0 0 14px rgba(15, 98, 254, 0.32);
}

.arena5-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(53, 212, 255, 0.3);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(180deg, rgba(83, 156, 255, 0.95), var(--arena5-blue-strong));
	color: #fff;
	font-family: var(--arena5-font-main);
	font-size: 0.96rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(15, 98, 254, 0.25);
}

.arena5-button:hover {
	background:
		linear-gradient(180deg, rgba(104, 174, 255, 1), #0b55df);
	color: #fff;
}

.arena5-button--small {
	min-height: 38px;
	padding-inline: 14px;
}

.arena5-header-cart-trigger {
	position: relative;
	gap: 8px;
}

.arena5-mini-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding-inline: 6px;
	border-radius: 999px;
	background: var(--arena5-cyan);
	color: #06111d;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
}

.arena5-button--ghost {
	background: rgba(255, 255, 255, 0.035);
	border-color: var(--arena5-border);
	color: var(--arena5-text);
	box-shadow: none;
}

.arena5-site-main {
	min-height: 58vh;
}

.arena5-section {
	padding-block: 38px;
}

.arena5-eyebrow {
	margin: 0 0 14px;
	color: var(--arena5-blue);
	font-weight: 800;
}

.arena5-entry__title {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 4.8rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
}

.arena5-content-stack {
	display: grid;
	gap: 32px;
}

.arena5-entry {
	padding: 28px;
	border: 1px solid var(--arena5-border);
	border-radius: var(--arena5-radius);
	background: var(--arena5-panel);
}

.arena5-entry__content {
	color: var(--arena5-muted);
}

/* WooCommerce My Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
	overflow: hidden;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: 20px;
	background:
		linear-gradient(145deg, rgba(53, 212, 255, 0.08), rgba(44, 124, 255, 0.035)),
		rgba(7, 13, 25, 0.72);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 22px 60px rgba(0, 0, 0, 0.24),
		0 0 42px rgba(44, 124, 255, 0.1);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 12px;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 46px;
	padding: 10px 14px;
	border: 1px solid transparent;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.025);
	color: var(--arena5-muted);
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::after {
	content: "";
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	margin-inline-start: 10px;
	border-radius: 50%;
	background: rgba(53, 212, 255, 0.26);
	box-shadow: 0 0 14px rgba(53, 212, 255, 0.14);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	border-color: rgba(53, 212, 255, 0.28);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.14), rgba(44, 124, 255, 0.08)),
		rgba(255, 255, 255, 0.04);
	color: var(--arena5-text);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::after {
	background: var(--arena5-cyan);
	box-shadow: 0 0 18px rgba(53, 212, 255, 0.7);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #f2a5af;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::after {
	background: rgba(242, 165, 175, 0.58);
	box-shadow: 0 0 16px rgba(242, 165, 175, 0.2);
}

.arena5-site-footer {
	border-top: 1px solid var(--arena5-border);
	background: #050810;
	color: var(--arena5-muted);
}

.arena5-site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-block: 18px;
}

.arena5-site-footer__copyright {
	padding-block: 0 16px;
	color: var(--arena5-muted);
	font-size: 0.86rem;
	font-weight: 600;
	text-align: center;
}

.arena5-footer-brand {
	display: grid;
	gap: 4px;
}

.arena5-footer-brand__logo {
	display: inline-flex;
	width: fit-content;
}

.arena5-footer-logo {
	display: block;
	max-width: 190px;
	max-height: 62px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.arena5-footer-logo.arena5-logo-swap {
	width: 190px;
	height: 62px;
}

.arena5-footer-brand strong {
	color: var(--arena5-text);
}

.arena5-footer-contact {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 100%;
	flex-wrap: nowrap;
	gap: 10px;
	width: 100%;
	margin-inline: auto;
	color: var(--arena5-muted);
	font-size: 0.92rem;
}

.arena5-footer-contact a {
	color: var(--arena5-muted);
	text-decoration: none;
}

.arena5-footer-contact a:hover {
	color: var(--arena5-text);
}

.arena5-footer-contact-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 40px;
	max-width: 100%;
	padding: 8px 12px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: 999px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.09), rgba(44, 124, 255, 0.035)),
		rgba(7, 13, 25, 0.62);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 12px 30px rgba(0, 0, 0, 0.16);
}

.arena5-footer-contact-action:hover,
.arena5-footer-contact-action:focus-visible {
	border-color: rgba(53, 212, 255, 0.36);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.14), rgba(44, 124, 255, 0.055)),
		rgba(7, 13, 25, 0.74);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 26px rgba(53, 212, 255, 0.12);
}

.arena5-footer-contact-action span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(53, 212, 255, 0.12);
	color: var(--arena5-cyan);
	font-size: 0.84rem;
	font-weight: 900;
}

.arena5-footer-contact-action span svg {
	display: block;
	width: 16px;
	height: 16px;
}

.arena5-footer-contact-action strong {
	min-width: 0;
	overflow-wrap: anywhere;
	color: var(--arena5-text);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.2;
}

.arena5-footer-contact-action--whatsapp span {
	background: rgba(37, 211, 102, 0.16);
	color: #25d366;
}

.arena5-footer-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.arena5-footer-social a {
	border: 1px solid var(--arena5-border);
	border-radius: 999px;
	padding: 5px 9px;
	background: rgba(255, 255, 255, 0.035);
}

.arena5-floating-whatsapp {
	position: fixed;
	left: auto;
	right: 18px;
	bottom: 22px;
	bottom: calc(22px + env(safe-area-inset-bottom, 0px));
	z-index: 80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background:
		radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.26), transparent 34%),
		#25d366;
	color: #ffffff;
	text-decoration: none;
	box-shadow:
		0 18px 42px rgba(37, 211, 102, 0.28),
		0 0 0 8px rgba(37, 211, 102, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.32);
	animation: arena5-whatsapp-bounce 2.8s ease-in-out infinite;
}

.arena5-floating-top {
	position: fixed;
	left: auto;
	right: 24px;
	bottom: 94px;
	bottom: calc(94px + env(safe-area-inset-bottom, 0px));
	z-index: 80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(53, 212, 255, 0.28);
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.16), rgba(44, 124, 255, 0.08)),
		rgba(7, 13, 25, 0.84);
	color: var(--arena5-cyan);
	text-decoration: none;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 14px 34px rgba(0, 0, 0, 0.26),
		0 0 26px rgba(53, 212, 255, 0.12);
	backdrop-filter: blur(12px);
}

.arena5-floating-top:hover,
.arena5-floating-top:focus-visible {
	color: #ffffff;
	border-color: rgba(53, 212, 255, 0.46);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.22), rgba(44, 124, 255, 0.12)),
		rgba(7, 13, 25, 0.92);
	transform: translateY(-2px);
}

.arena5-floating-top svg {
	display: block;
	width: 22px;
	height: 22px;
}

.arena5-floating-whatsapp:hover,
.arena5-floating-whatsapp:focus-visible {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow:
		0 20px 48px rgba(37, 211, 102, 0.36),
		0 0 0 10px rgba(37, 211, 102, 0.13),
		inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.arena5-floating-whatsapp svg {
	display: block;
	width: 32px;
	height: 32px;
}

.arena5-floating-cart {
	position: fixed;
	left: auto;
	right: 24px;
	bottom: 154px;
	bottom: calc(154px + env(safe-area-inset-bottom, 0px));
	z-index: 80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(53, 212, 255, 0.28);
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.18), rgba(44, 124, 255, 0.1)),
		rgba(7, 13, 25, 0.86);
	color: var(--arena5-cyan);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 14px 34px rgba(0, 0, 0, 0.26),
		0 0 26px rgba(53, 212, 255, 0.12);
	backdrop-filter: blur(12px);
	cursor: pointer;
}

.arena5-floating-cart:hover,
.arena5-floating-cart:focus-visible {
	color: #ffffff;
	border-color: rgba(53, 212, 255, 0.46);
	transform: translateY(-2px);
}

.arena5-floating-cart svg {
	display: block;
	width: 22px;
	height: 22px;
}

.arena5-floating-cart .arena5-mini-cart-count {
	position: absolute;
	top: -7px;
	right: -7px;
	min-width: 21px;
	height: 21px;
	border: 2px solid #07111d;
	font-size: 0.72rem;
}

.arena5-mini-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: block;
	border: 0;
	background: rgba(2, 6, 13, 0.62);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 180ms ease, visibility 180ms ease;
	backdrop-filter: blur(4px);
}

.arena5-mini-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 130;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	width: min(430px, calc(100vw - 20px));
	height: 100dvh;
	border-left: 1px solid rgba(53, 212, 255, 0.18);
	background:
		radial-gradient(circle at 24% 0%, rgba(53, 212, 255, 0.14), transparent 28%),
		linear-gradient(180deg, rgba(13, 28, 45, 0.98), rgba(6, 12, 22, 0.98));
	color: var(--arena5-text);
	box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
	transform: translateX(105%);
	transition: transform 220ms ease;
}

.arena5-mini-cart-open .arena5-mini-cart-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.arena5-mini-cart-open .arena5-mini-cart-drawer {
	transform: translateX(0);
}

.arena5-mini-cart-drawer__header,
.arena5-mini-cart-drawer__footer {
	padding: 18px;
	border-color: rgba(53, 212, 255, 0.13);
}

.arena5-mini-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border-bottom: 1px solid rgba(53, 212, 255, 0.13);
}

.arena5-mini-cart-drawer__eyebrow {
	display: block;
	color: var(--arena5-cyan);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.arena5-mini-cart-drawer__header h2 {
	margin: 2px 0 0;
	color: var(--arena5-text);
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.1;
}

.arena5-mini-cart-drawer__close {
	position: relative;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: 50%;
	background: rgba(53, 212, 255, 0.07);
	color: var(--arena5-text);
	cursor: pointer;
}

.arena5-mini-cart-drawer__close span {
	position: absolute;
	top: 19px;
	left: 10px;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.arena5-mini-cart-drawer__close span:first-child {
	transform: rotate(45deg);
}

.arena5-mini-cart-drawer__close span:last-child {
	transform: rotate(-45deg);
}

.arena5-mini-cart-drawer .widget_shopping_cart_content {
	min-height: 0;
	overflow: auto;
	padding: 14px 18px;
}

.arena5-mini-cart-drawer .woocommerce-mini-cart {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.arena5-mini-cart-drawer .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 12px;
	padding: 12px;
	border: 1px solid rgba(53, 212, 255, 0.13);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.035);
}

.arena5-mini-cart-drawer .woocommerce-mini-cart-item img {
	grid-row: span 3;
	width: 74px;
	height: 74px;
	margin: 0;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.9);
	object-fit: contain;
}

.arena5-mini-cart-drawer .woocommerce-mini-cart-item a {
	color: var(--arena5-text);
	font-weight: 900;
	text-decoration: none;
	line-height: 1.25;
}

.arena5-mini-cart-drawer .woocommerce-mini-cart-item .remove {
	position: absolute;
	top: 8px;
	left: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: var(--arena5-muted) !important;
	font-size: 1.2rem;
	line-height: 1;
}

.arena5-mini-cart-drawer .quantity,
.arena5-mini-cart-drawer .variation,
.arena5-mini-cart-drawer .woocommerce-mini-cart__empty-message {
	color: var(--arena5-muted);
	font-weight: 700;
}

.arena5-mini-cart-drawer .variation {
	display: grid;
	gap: 4px;
	margin: 6px 0 0;
	font-size: 0.82rem;
	line-height: 1.35;
}

.arena5-mini-cart-drawer .variation dt,
.arena5-mini-cart-drawer .variation dd {
	margin: 0;
}

/* ARIA5 print cart meta + price + summary are dark by default (built for the
   light cart page); make them readable inside the dark mini-cart drawer.
   2026-07-06: extended to the whole meta family (label/value/text/price) —
   the child elements carry their own hardcoded dark colors, so overriding
   only the -inline wrapper left sizes/zones dim in Night. */
.arena5-mini-cart-drawer .aria5-print-cart-meta-inline,
.arena5-mini-cart-drawer .aria5-print-cart-meta-label,
.arena5-mini-cart-drawer .aria5-print-cart-meta-value,
.arena5-mini-cart-drawer .aria5-print-cart-meta-text,
.arena5-mini-cart-drawer .aria5-print-cart-meta-price,
.arena5-mini-cart-drawer .aria5-print-mini-cart-summary-value,
.arena5-mini-cart-drawer .woocommerce-Price-amount,
.arena5-mini-cart-drawer .woocommerce-mini-cart-item .amount {
	color: var(--arena5-text) !important;
}

.arena5-mini-cart-drawer .variation dt,
.arena5-mini-cart-drawer .aria5-print-cart-meta-bullet,
.arena5-mini-cart-drawer .aria5-print-cart-meta-note,
.arena5-mini-cart-drawer .aria5-print-mini-cart-summary-label {
	color: var(--arena5-muted) !important;
}

.arena5-mini-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin: 16px 0 0;
	padding: 14px 0 0;
	border-top: 1px solid rgba(53, 212, 255, 0.13);
	color: var(--arena5-text);
	font-weight: 900;
}

.arena5-mini-cart-drawer .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 14px 0 0;
}

.arena5-mini-cart-drawer .button,
.arena5-mini-cart-drawer__link,
.arena5-mini-cart-drawer__checkout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid rgba(53, 212, 255, 0.24);
	border-radius: var(--arena5-radius);
	background: rgba(53, 212, 255, 0.08);
	color: var(--arena5-text);
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.arena5-mini-cart-drawer .checkout,
.arena5-mini-cart-drawer__checkout {
	background:
		linear-gradient(180deg, rgba(83, 156, 255, 0.95), var(--arena5-blue-strong));
	color: #ffffff;
}

.arena5-mini-cart-drawer__footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	border-top: 1px solid rgba(53, 212, 255, 0.13);
}

@keyframes arena5-whatsapp-bounce {
	0%,
	72%,
	100% {
		transform: translateY(0) scale(1);
	}

	80% {
		transform: translateY(-7px) scale(1.03);
	}

	88% {
		transform: translateY(0) scale(0.99);
	}

	94% {
		transform: translateY(-3px) scale(1.01);
	}
}

@media (prefers-reduced-motion: reduce) {
	.arena5-floating-whatsapp {
		animation: none;
	}
}

.woocommerce .arena5-site-main,
.arena5-woocommerce .arena5-site-main {
	background: var(--arena5-bg);
}

/* WooCommerce shop archive */
.arena5-shop-page {
	background:
		radial-gradient(circle at 12% 0%, rgba(53, 212, 255, 0.12), transparent 30%),
		radial-gradient(circle at 92% 8%, rgba(44, 124, 255, 0.14), transparent 28%),
		var(--arena5-bg);
}

.arena5-shop-hero {
	padding-block: 34px 18px;
	border-bottom: 1px solid rgba(53, 212, 255, 0.12);
}

.arena5-shop-breadcrumb {
	margin-bottom: 14px;
	color: var(--arena5-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.arena5-shop-breadcrumb a {
	color: var(--arena5-muted);
	text-decoration: none;
}

.arena5-shop-breadcrumb a:hover {
	color: var(--arena5-cyan);
}

.arena5-shop-hero__content {
	max-width: 760px;
}

.arena5-shop-eyebrow {
	margin: 0 0 8px;
	color: var(--arena5-cyan);
	font-weight: 900;
}

.arena5-shop-hero h1 {
	margin: 0;
	color: var(--arena5-text);
	font-size: clamp(2rem, 3.3vw, 4rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

.arena5-shop-description {
	max-width: 720px;
	margin: 10px 0 0;
	color: var(--arena5-muted);
	font-size: 1.04rem;
	font-weight: 500;
	line-height: 1.75;
}

.arena5-shop-description p {
	margin: 0;
}

.arena5-shop-section {
	padding-block: 26px 44px;
}

.arena5-shop-layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	align-items: start;
	gap: 24px;
	min-width: 0;
}

/* Global category sidebar layout (all non-home pages). */
.arena5-page-layout {
	display: grid;
	grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
	align-items: start;
	gap: 24px;
	min-width: 0;
	padding-block: 28px;
}

.arena5-page-layout__main {
	min-width: 0;
}

/* Inner template containers should fill the content column, not re-center. */
.arena5-page-layout__main > .arena5-section > .arena5-container,
.arena5-page-layout__main > .arena5-container {
	max-width: none;
	padding-inline: 0;
}

@media (max-width: 980px) {
	.arena5-page-layout {
		grid-template-columns: 1fr;
		gap: 14px;
		padding-block: 16px;
	}

	.arena5-page-layout .arena5-shop-sidebar {
		position: static;
		top: auto;
	}

	.arena5-page-layout .arena5-shop-category-list--root,
	.arena5-page-layout .arena5-shop-categories > .arena5-shop-category-list {
		grid-auto-flow: column;
		grid-auto-columns: minmax(160px, max-content);
		overflow-x: auto;
		padding-bottom: 6px;
	}

	.arena5-page-layout .arena5-shop-category-list--child {
		display: none;
	}
}

/* My Account: "My group orders" tab list. */
.aria5-account-group-orders__intro {
	color: var(--arena5-muted);
}

.aria5-account-group-orders__list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.aria5-account-group-order {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: var(--arena5-radius);
	background: rgba(7, 13, 25, 0.5);
}

.aria5-account-group-order__main {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.aria5-account-group-order__title {
	color: var(--arena5-text);
	font-weight: 800;
}

.aria5-account-group-order__meta {
	color: var(--arena5-muted);
	font-size: 0.85rem;
}

.aria5-account-group-order__action {
	flex: 0 0 auto;
}

@media (max-width: 560px) {
	.aria5-account-group-order {
		flex-direction: column;
		align-items: stretch;
	}
}

.arena5-shop-sidebar {
	position: sticky;
	top: 82px;
	min-width: 0;
}

.arena5-shop-sidebar__inner {
	overflow: hidden;
	min-width: 0;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(145deg, rgba(53, 212, 255, 0.08), rgba(44, 124, 255, 0.035)),
		rgba(7, 13, 25, 0.78);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 18px 48px rgba(0, 0, 0, 0.22);
}

.arena5-shop-sidebar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 14px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.arena5-shop-sidebar__header h2 {
	margin: 0;
	color: var(--arena5-text);
	font-size: 1rem;
	font-weight: 900;
}

.arena5-shop-sidebar__header span,
.arena5-shop-category-link small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	min-height: 24px;
	padding-inline: 8px;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: 999px;
	background: rgba(53, 212, 255, 0.06);
	color: var(--arena5-muted);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
}

.arena5-shop-categories {
	min-width: 0;
	padding: 10px;
}

.arena5-shop-category-list {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.arena5-shop-category-list--root {
	margin-bottom: 7px;
}

.arena5-shop-category-list--child {
	margin: 7px 0 2px;
	padding-inline-start: 12px;
}

.arena5-shop-category-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 42px;
	padding: 9px 10px;
	border: 1px solid transparent;
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.025);
	color: var(--arena5-muted);
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
}

.arena5-shop-category-link span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.arena5-shop-category-link:hover,
.arena5-shop-category-link:focus-visible,
.arena5-shop-category-list li.is-active > .arena5-shop-category-link {
	border-color: rgba(53, 212, 255, 0.28);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.13), rgba(44, 124, 255, 0.07)),
		rgba(255, 255, 255, 0.04);
	color: var(--arena5-text);
}

.arena5-shop-category-list li.is-active > .arena5-shop-category-link small {
	background: var(--arena5-cyan);
	color: #06111d;
}

.arena5-shop-products {
	min-width: 0;
}

.arena5-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
	padding: 12px 14px;
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.03);
}

.arena5-shop-toolbar::before,
.arena5-shop-toolbar::after {
	display: none;
}

.arena5-shop-toolbar .woocommerce-result-count {
	margin: 0;
	color: var(--arena5-muted);
	font-weight: 700;
}

.arena5-shop-toolbar .woocommerce-ordering {
	margin: 0;
}

.arena5-shop-toolbar select.orderby {
	min-height: 40px;
	max-width: 100%;
	padding: 8px 12px;
	border: 1px solid rgba(53, 212, 255, 0.2);
	border-radius: var(--arena5-radius);
	background: rgba(7, 13, 25, 0.9);
	color: var(--arena5-text);
	font: inherit;
	font-weight: 700;
}

.arena5-shop-products .woocommerce-notices-wrapper {
	flex: 1 1 100%;
}

.arena5-shop-products ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
}

.arena5-shop-products ul.products::before,
.arena5-shop-products ul.products::after {
	display: none;
}

.arena5-shop-products ul.products li.product {
	float: none;
	width: 100% !important;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
		rgba(7, 13, 25, 0.74);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
	overflow: hidden;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.arena5-shop-products ul.products li.product:hover {
	border-color: rgba(53, 212, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.arena5-shop-products ul.products li.product a {
	color: inherit;
	text-decoration: none;
}

.arena5-shop-products ul.products li.product img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	margin: 0;
	padding: 16px;
	background:
		radial-gradient(circle at 50% 40%, rgba(53, 212, 255, 0.12), transparent 48%),
		rgba(255, 255, 255, 0.035);
	object-fit: contain;
}

.arena5-shop-products ul.products li.product .woocommerce-loop-product__title {
	min-height: 3.1em;
	margin: 0;
	padding: 14px 14px 6px;
	color: var(--arena5-text);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
}

.arena5-shop-products ul.products li.product .price {
	display: block;
	margin: 0;
	padding: 0 14px 14px;
	color: var(--arena5-cyan);
	font-size: 1rem;
	font-weight: 900;
}

.arena5-shop-products ul.products li.product .price del {
	color: var(--arena5-muted);
	opacity: 0.76;
}

.arena5-shop-products ul.products li.product .price ins {
	text-decoration: none;
}

.arena5-shop-products ul.products li.product .button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: 0 14px 14px;
	padding: 9px 12px;
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: var(--arena5-radius);
	background: rgba(53, 212, 255, 0.08);
	color: var(--arena5-text);
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.arena5-shop-products ul.products li.product .button:hover,
.arena5-shop-products ul.products li.product .button:focus-visible {
	background: rgba(53, 212, 255, 0.15);
	color: #ffffff;
}

.arena5-shop-products .woocommerce-pagination {
	margin-top: 24px;
}

.arena5-shop-products .woocommerce-pagination ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
}

.arena5-shop-products .woocommerce-pagination ul li {
	border: 0;
}

.arena5-shop-products .woocommerce-pagination ul li a,
.arena5-shop-products .woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.035);
	color: var(--arena5-muted);
	font-weight: 900;
	text-decoration: none;
}

.arena5-shop-products .woocommerce-pagination ul li span.current,
.arena5-shop-products .woocommerce-pagination ul li a:hover {
	background: rgba(53, 212, 255, 0.14);
	color: var(--arena5-text);
}

.arena5-shop-empty {
	padding: 20px;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.03);
	color: var(--arena5-muted);
}

@media (max-width: 1100px) {
	.arena5-shop-layout {
		grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
		gap: 18px;
	}

	.arena5-shop-products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.arena5-shop-layout {
		grid-template-columns: 1fr;
	}

	.arena5-shop-sidebar {
		position: static;
	}

	.arena5-shop-sidebar__inner {
		border-radius: var(--arena5-radius);
	}

	.arena5-shop-categories {
		overflow-x: auto;
		padding: 10px;
		scrollbar-width: thin;
	}

	.arena5-shop-category-list {
		grid-auto-flow: column;
		grid-auto-columns: minmax(150px, 190px);
		grid-template-columns: none;
		align-items: stretch;
	}

	.arena5-shop-category-list--root {
		margin-bottom: 8px;
	}

	.arena5-shop-category-list--child {
		margin: 8px 0 0;
		padding-inline-start: 0;
	}

	.arena5-shop-category-link {
		min-width: 160px;
	}
}

@media (max-width: 560px) {
	.arena5-shop-hero {
		padding-block: 24px 12px;
	}

	.arena5-shop-section {
		padding-block: 18px 32px;
	}

	.arena5-shop-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.arena5-shop-toolbar .woocommerce-ordering,
	.arena5-shop-toolbar select.orderby {
		width: 100%;
	}

	.arena5-shop-products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.arena5-shop-products ul.products li.product img {
		padding: 10px;
	}

	.arena5-shop-products ul.products li.product .woocommerce-loop-product__title {
		min-height: 3.8em;
		padding: 10px 10px 4px;
		font-size: 0.88rem;
	}

	.arena5-shop-products ul.products li.product .price {
		padding: 0 10px 10px;
		font-size: 0.9rem;
	}

	.arena5-shop-products ul.products li.product .button {
		min-height: 38px;
		margin: 0 10px 10px;
		font-size: 0.84rem;
	}
}

@media (max-width: 340px) {
	.arena5-shop-products ul.products {
		grid-template-columns: 1fr;
	}
}

/* Homepage */
.arena5-home {
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 8%, rgba(53, 212, 255, 0.14), transparent 30%),
		radial-gradient(circle at 90% 5%, rgba(44, 124, 255, 0.18), transparent 28%),
		radial-gradient(circle at 50% 38%, rgba(20, 72, 135, 0.16), transparent 42%),
		linear-gradient(180deg, #101a2b 0%, #0c1727 42%, #111b2a 100%);
}

.arena5-home .arena5-container {
	width: min(1400px, calc(100% - (var(--arena5-gutter) * 2)));
}

.arena5-home-section {
	position: relative;
	padding-block: var(--arena5-section-gap);
	border-top: 1px solid rgba(125, 190, 255, 0.08);
}

.arena5-home-section::before {
	content: "";
	position: absolute;
	inset-inline: var(--arena5-gutter);
	inset-block-start: 0;
	max-width: 1400px;
	height: 1px;
	margin-inline: auto;
	background: linear-gradient(90deg, transparent, rgba(53, 212, 255, 0.24), rgba(44, 124, 255, 0.12), transparent);
	pointer-events: none;
}

.arena5-home-eyebrow {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: min(100%, 590px);
	min-height: clamp(140px, 10vw, 184px);
	margin: 0 0 18px;
	padding: 24px 28px;
	border: 1px solid rgba(53, 212, 255, 0.24);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.09), rgba(44, 124, 255, 0.035)),
		rgba(7, 13, 25, 0.62);
	color: var(--arena5-cyan);
	font-size: clamp(1.6rem, 2.15vw, 2.05rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	text-transform: uppercase;
	text-align: center;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 0 34px rgba(53, 212, 255, 0.16);
	backdrop-filter: blur(10px);
}

.arena5-home-eyebrow__line {
	display: block;
}

.arena5-home-eyebrow__line--latin {
	letter-spacing: 0.08em;
}

.arena5-home-eyebrow__line--hebrew {
	letter-spacing: 0.005em;
}

.arena5-home-top-promo {
	padding-block: 16px 0;
	background:
		radial-gradient(circle at 24% 0%, rgba(53, 212, 255, 0.16), transparent 28%),
		radial-gradient(circle at 74% 0%, rgba(44, 124, 255, 0.14), transparent 30%);
}

.arena5-home-top-promo__panel {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 62px;
	padding: 16px 24px;
	border: 1px solid rgba(53, 212, 255, 0.24);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.12), rgba(44, 124, 255, 0.07)),
		rgba(10, 22, 38, 0.78);
	color: var(--arena5-text);
	font-size: clamp(1.02rem, 1.65vw, 1.42rem);
	font-weight: 900;
	line-height: 1.45;
	text-align: center;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 48px rgba(53, 212, 255, 0.14),
		0 22px 70px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.arena5-home-top-promo__panel strong {
	color: var(--arena5-cyan);
	font-weight: 950;
	text-shadow: 0 0 22px rgba(53, 212, 255, 0.28);
}

.arena5-home-team-orders {
	padding-block: 20px 10px;
	border-top: 0;
}

.arena5-home-team-orders::before {
	display: none;
}

.arena5-home-team-orders__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: clamp(18px, 2.4vw, 28px);
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: var(--arena5-radius-lg);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.12), rgba(44, 124, 255, 0.08)),
		rgba(8, 17, 31, 0.82);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 18px 56px rgba(0, 0, 0, 0.2);
}

.arena5-home-team-orders__content {
	min-width: 0;
}

.arena5-home-team-orders h2 {
	margin: 0;
	color: var(--arena5-text);
	font-size: clamp(1.45rem, 2.4vw, 2.35rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.18;
}

.arena5-home-team-orders p {
	max-width: 780px;
	margin: 8px 0 0;
	color: var(--arena5-muted);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.7;
}

.arena5-home-team-orders__button {
	min-width: 210px;
}

.arena5-home-section__header {
	max-width: 680px;
	margin-bottom: 22px;
}

.arena5-home-section__header--center {
	margin-inline: auto;
	text-align: center;
}

.arena5-home-section__header h2,
.arena5-home-business h2,
.arena5-home-final-cta h2 {
	margin: 0;
	color: var(--arena5-text);
	font-size: clamp(2rem, 3.1vw, 3.25rem);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
	text-wrap: balance;
}

.arena5-home-section__header p,
.arena5-home-business p,
.arena5-home-faq-item__answer p {
	margin: 8px 0 0;
	color: var(--arena5-muted);
	font-size: 1.02rem;
	line-height: 1.75;
}

.arena5-home-hero {
	position: relative;
	padding-block: 44px 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(180deg, rgba(44, 124, 255, 0.08), transparent 32%),
		radial-gradient(circle at 18% 42%, rgba(44, 124, 255, 0.2), transparent 30%),
		radial-gradient(circle at 74% 28%, rgba(53, 212, 255, 0.13), transparent 28%);
}

.arena5-home-hero::after {
	content: "";
	position: absolute;
	inset-inline: var(--arena5-gutter);
	inset-block-end: 0;
	height: 1px;
	max-width: 1400px;
	margin-inline: auto;
	background: linear-gradient(90deg, transparent, rgba(44, 124, 255, 0.5), transparent);
}

.arena5-home-hero__grid {
	display: grid;
	grid-template-columns: minmax(440px, 0.82fr) minmax(620px, 1.18fr);
	align-items: center;
	gap: clamp(24px, 3.5vw, 48px);
	min-height: 560px;
}

.arena5-home-hero__content {
	max-width: 720px;
}

.arena5-home-hero h1 {
	margin: 0;
	max-width: 720px;
	color: var(--arena5-text);
	font-size: clamp(3.4rem, 5.9vw, 6.7rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.arena5-home-hero__lead {
	max-width: 660px;
	margin: 14px 0 0;
	color: var(--arena5-muted);
	font-size: 1.14rem;
	font-weight: 500;
	line-height: 1.75;
}

.arena5-home-hero__actions {
	margin-top: 20px;
	gap: 10px;
}

.arena5-home-hero__actions .arena5-button {
	min-height: 56px;
	padding-inline: 28px;
}

.arena5-home-hero__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.arena5-home-hero__checks li {
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: 999px;
	background: rgba(16, 23, 34, 0.72);
	color: var(--arena5-muted);
	padding: 9px 13px;
	font-size: 0.88rem;
}

.arena5-home-hero__visual {
	position: relative;
	min-height: 640px;
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
		linear-gradient(145deg, rgba(44, 124, 255, 0.14), rgba(255, 255, 255, 0.03)),
		var(--arena5-panel-deep);
	box-shadow: var(--arena5-card-shadow), var(--arena5-glow);
	overflow: hidden;
}

.arena5-home-hero__visual::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: 18px;
	box-shadow: inset 0 0 60px rgba(44, 124, 255, 0.1);
	transform: none;
}

.arena5-home-hero__visual::after {
	content: "";
	position: absolute;
	inset-inline: 10%;
	inset-block-end: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(53, 212, 255, 0.76), transparent);
	box-shadow: 0 0 28px rgba(53, 212, 255, 0.48);
	pointer-events: none;
}

.arena5-home-hero__visual > img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	filter: saturate(1.04) contrast(1.04);
}

.arena5-home-visual-empty {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: inherit;
	place-items: center;
	color: var(--arena5-muted);
	padding: 24px;
	text-align: center;
	border: 1px dashed rgba(53, 212, 255, 0.22);
	margin: 28px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.025);
}

.arena5-home-order-card,
.arena5-home-product-stage {
	position: absolute;
	border: 1px solid var(--arena5-border);
	border-radius: 14px;
	background: rgba(7, 11, 18, 0.76);
	backdrop-filter: blur(12px);
}

.arena5-home-order-card {
	inset-block-start: 28px;
	inset-inline-start: 28px;
	width: 232px;
	padding: 20px;
	z-index: 2;
}

.arena5-home-order-card > span,
.arena5-home-order-card__line span,
.arena5-home-order-card__total span {
	color: var(--arena5-muted);
	font-size: 0.82rem;
}

.arena5-home-order-card strong {
	display: block;
	margin-top: 5px;
	color: var(--arena5-text);
}

.arena5-home-order-card__line {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 12px;
	color: var(--arena5-text);
}

.arena5-home-order-card__total {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--arena5-border);
	color: var(--arena5-success);
}

.arena5-home-product-stage {
	inset-block: 92px 30px;
	inset-inline: 94px 30px;
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(176px, 0.42fr);
	align-items: stretch;
	gap: 22px;
	padding: 28px;
}

.arena5-home-shirt {
	position: relative;
	align-self: center;
	width: min(320px, 90%);
	aspect-ratio: 0.86;
	margin-inline: auto;
	border-radius: 34px 34px 18px 18px;
	background:
		linear-gradient(145deg, #f9fbff, #dce5f2);
	box-shadow: inset 0 -28px 50px rgba(16, 23, 34, 0.18), 0 24px 55px rgba(0, 0, 0, 0.35);
}

.arena5-home-shirt::before,
.arena5-home-shirt::after {
	content: "";
	position: absolute;
	inset-block-start: 52px;
	width: 64px;
	height: 140px;
	border-radius: 24px;
	background: #e7edf7;
}

.arena5-home-shirt::before {
	inset-inline-start: -44px;
	transform: rotate(18deg);
}

.arena5-home-shirt::after {
	inset-inline-end: -44px;
	transform: rotate(-18deg);
}

.arena5-home-shirt__neck {
	position: absolute;
	inset-block-start: 16px;
	inset-inline: 50%;
	width: 76px;
	height: 36px;
	border-radius: 0 0 48px 48px;
	background: #cbd6e6;
	transform: translateX(50%);
}

.arena5-home-shirt__mark {
	position: absolute;
	inset-block-start: 44%;
	inset-inline: 0;
	color: #1258d8;
	font-size: 2.05rem;
	font-weight: 900;
	text-align: center;
}

.arena5-home-product-stage__tools {
	display: grid;
	align-content: center;
	gap: 12px;
}

.arena5-home-product-stage__tools span {
	border: 1px solid var(--arena5-border);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.04);
	color: var(--arena5-text);
	padding: 10px 12px;
	font-size: 0.9rem;
}

.arena5-home-swatches {
	display: flex;
	gap: 8px;
}

.arena5-home-swatches i {
	width: 22px;
	height: 22px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: var(--arena5-blue);
}

.arena5-home-swatches i:nth-child(2) {
	background: #fff;
}

.arena5-home-swatches i:nth-child(3) {
	background: #111827;
}

.arena5-home-swatches i:nth-child(4) {
	background: #35d4ff;
}

.arena5-home-category-grid,
.arena5-home-product-grid,
.arena5-home-workflow-grid {
	display: grid;
	gap: 14px;
}

.arena5-home-category-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arena5-home-category-card,
.arena5-home-product-card,
.arena5-home-workflow-card,
.arena5-home-empty-state,
.arena5-home-faq-item,
.arena5-home-business__panel,
.arena5-home-final-cta {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--arena5-radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
		rgba(16, 23, 34, 0.8);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.arena5-home-category-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	align-items: stretch;
	gap: 14px;
	min-height: 280px;
	padding: 16px;
	color: var(--arena5-text);
	text-decoration: none;
}

.arena5-home-category-card:hover {
	border-color: rgba(53, 212, 255, 0.45);
	background: rgba(20, 29, 43, 0.9);
	color: var(--arena5-text);
	box-shadow: 0 18px 52px rgba(15, 98, 254, 0.14);
}

.arena5-home-category-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1.35;
	border: 1px solid rgba(53, 212, 255, 0.34);
	border-radius: 14px;
	background:
		radial-gradient(circle at 50% 40%, rgba(53, 212, 255, 0.16), transparent 48%),
		linear-gradient(145deg, rgba(53, 212, 255, 0.12), rgba(44, 124, 255, 0.08)),
		rgba(5, 11, 22, 0.34);
	color: var(--arena5-cyan);
	font-size: 1.35rem;
	font-weight: 900;
	overflow: hidden;
}

.arena5-home-category-card__icon img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: contain;
	padding: 12px;
}

.arena5-home-category-card__body {
	display: grid;
	align-content: start;
	gap: 7px;
	min-width: 0;
}

.arena5-home-category-card__body strong {
	font-size: 1.02rem;
	font-weight: 800;
	line-height: 1.25;
}

.arena5-home-category-card small,
.arena5-home-card-arrow {
	color: var(--arena5-muted);
}

.arena5-home-category-card small {
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.5;
}

.arena5-home-card-arrow {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(53, 212, 255, 0.2);
	border-radius: 50%;
	background: rgba(44, 124, 255, 0.08);
	color: var(--arena5-cyan);
}

.arena5-home-workflow-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	counter-reset: arena5-workflow;
}

.arena5-home-workflow-card {
	position: relative;
	min-height: 206px;
	padding: 26px;
	overflow: hidden;
}

.arena5-home-workflow-card::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline: 22px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--arena5-cyan), rgba(44, 124, 255, 0.08));
}

.arena5-home-workflow-card::after {
	content: "";
	position: absolute;
	inset-block-end: -34px;
	inset-inline-end: -26px;
	width: 92px;
	height: 92px;
	border: 1px solid rgba(53, 212, 255, 0.12);
	border-radius: 50%;
}

.arena5-home-workflow-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 32px;
	border: 1px solid rgba(53, 212, 255, 0.24);
	border-radius: 999px;
	background: rgba(44, 124, 255, 0.12);
	color: var(--arena5-cyan);
	font-weight: 900;
}

.arena5-home-workflow-card h3,
.arena5-home-product-card h3 {
	margin: 10px 0 0;
	color: var(--arena5-text);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.35;
}

.arena5-home-workflow-card p {
	margin: 12px 0 0;
	color: var(--arena5-muted);
	font-size: 0.94rem;
	font-weight: 500;
	line-height: 1.7;
}

.arena5-home-products {
	background:
		radial-gradient(circle at 16% 24%, rgba(53, 212, 255, 0.1), transparent 30%),
		radial-gradient(circle at 82% 42%, rgba(44, 124, 255, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(44, 124, 255, 0.07)),
		#0f1a2a;
}

.arena5-home-products .arena5-container {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.arena5-home-products .arena5-home-section__header {
	max-width: 820px;
	margin-bottom: 0;
}

.arena5-home-products .arena5-home-product-grid:first-child:last-child,
.arena5-home-products .arena5-home-empty-state:first-child:last-child {
	grid-column: 1 / -1;
}

.arena5-home-product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arena5-home-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	min-height: 410px;
}

.arena5-home-product-card:hover {
	border-color: rgba(53, 212, 255, 0.32);
}

.arena5-home-product-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1.16;
	background:
		radial-gradient(circle at 50% 45%, rgba(53, 212, 255, 0.1), transparent 48%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
		var(--arena5-panel-deep);
	color: var(--arena5-muted);
	text-decoration: none;
}

.arena5-home-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 22px;
}

.arena5-home-product-card__body {
	display: grid;
	grid-template-rows: auto auto 1fr;
	gap: 14px;
	padding: 20px;
}

.arena5-home-product-card h3 {
	margin: 0;
}

.arena5-home-product-card h3 a,
.arena5-home-product-card__link {
	color: var(--arena5-text);
	text-decoration: none;
}

.arena5-home-product-card h3 a {
	line-height: 1.35;
	font-weight: 800;
}

.arena5-home-product-card__price {
	color: var(--arena5-cyan);
	font-size: 1rem;
	font-weight: 900;
}

.arena5-home-product-card__price del {
	color: var(--arena5-muted);
	opacity: 0.72;
}

.arena5-home-product-card__price ins {
	text-decoration: none;
}

.arena5-home-product-card__link {
	align-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid rgba(53, 212, 255, 0.28);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(180deg, rgba(44, 124, 255, 0.18), rgba(44, 124, 255, 0.08));
	color: var(--arena5-cyan);
	font-weight: 900;
}

.arena5-home-empty-state {
	padding: 24px;
	color: var(--arena5-muted);
}

.arena5-home-empty-state h3 {
	margin: 0;
	color: var(--arena5-text);
}

.arena5-team-orders {
	min-height: 70vh;
	background:
		radial-gradient(circle at 18% 18%, rgba(53, 212, 255, 0.12), transparent 28%),
		radial-gradient(circle at 86% 12%, rgba(44, 124, 255, 0.16), transparent 28%),
		var(--arena5-bg);
}

.arena5-team-orders__hero {
	padding-block: clamp(34px, 5vw, 68px) 22px;
	border-bottom: 1px solid rgba(53, 212, 255, 0.1);
}

.arena5-team-orders__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 20px;
}

.arena5-team-orders__eyebrow {
	margin: 0 0 8px;
	color: var(--arena5-cyan);
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.arena5-team-orders h1 {
	margin: 0;
	color: var(--arena5-text);
	font-size: clamp(2.1rem, 4.5vw, 4.6rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
}

.arena5-team-orders__hero p:not(.arena5-team-orders__eyebrow) {
	max-width: 760px;
	margin: 12px 0 0;
	color: var(--arena5-muted);
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.75;
}

.arena5-team-orders__catalog .arena5-container {
	display: grid;
	gap: 22px;
}

.arena5-team-orders__grid {
	width: 100%;
}

.arena5-team-orders__product-cats {
	color: var(--arena5-muted);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.45;
}

.arena5-team-orders__shop-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 13px;
	border: 1px solid rgba(53, 212, 255, 0.2);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.035);
	color: var(--arena5-text);
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.arena5-team-orders__shop-link:hover,
.arena5-team-orders__shop-link:focus-visible {
	border-color: rgba(53, 212, 255, 0.34);
	background: rgba(53, 212, 255, 0.1);
	color: #ffffff;
}

.arena5-home-business__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	padding: clamp(22px, 3vw, 34px);
	border-color: rgba(53, 212, 255, 0.18);
	background:
		radial-gradient(circle at 10% 30%, rgba(53, 212, 255, 0.14), transparent 28%),
		linear-gradient(135deg, rgba(44, 124, 255, 0.22), rgba(53, 212, 255, 0.06)),
		var(--arena5-panel);
	box-shadow: var(--arena5-card-shadow), 0 0 50px rgba(44, 124, 255, 0.13);
}

.arena5-home-business__actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.arena5-home-faq__grid {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.arena5-home-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.arena5-home-faq-item {
	overflow: hidden;
	padding: 22px;
}

.arena5-home-faq-item__summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin: 0;
	outline: 0;
}

.arena5-home-faq-item__summary::-webkit-details-marker {
	display: none;
}

.arena5-home-faq-item__summary::after {
	align-items: center;
	background: rgba(53, 212, 255, 0.1);
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: 999px;
	color: var(--arena5-cyan);
	content: "+";
	display: inline-flex;
	flex: 0 0 30px;
	font-size: 1.1rem;
	font-weight: 800;
	height: 30px;
	justify-content: center;
	line-height: 1;
	transition: background 160ms ease, transform 160ms ease;
	width: 30px;
}

.arena5-home-faq-item[open] .arena5-home-faq-item__summary::after {
	background: rgba(53, 212, 255, 0.18);
	content: "−";
	transform: rotate(180deg);
}

.arena5-home-faq-item__summary:focus-visible {
	border-radius: 12px;
	box-shadow: 0 0 0 3px rgba(53, 212, 255, 0.22);
}

.arena5-home-faq-item__summary span {
	color: var(--arena5-text);
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.35;
}

.arena5-home-faq-item__answer {
	margin-top: 12px;
}

.arena5-home-faq-item__answer p {
	margin: 0;
}

.arena5-home-final-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 20px;
	padding: clamp(20px, 3vw, 30px);
	border-color: rgba(44, 124, 255, 0.42);
	background:
		radial-gradient(circle at 8% 40%, rgba(53, 212, 255, 0.16), transparent 28%),
		linear-gradient(90deg, rgba(44, 124, 255, 0.24), rgba(53, 212, 255, 0.06)),
		var(--arena5-panel-deep);
	box-shadow: 0 0 50px rgba(44, 124, 255, 0.16);
}

.arena5-site-footer {
	border-top-color: rgba(44, 124, 255, 0.18);
	background:
		radial-gradient(circle at 50% 0%, rgba(53, 212, 255, 0.09), transparent 32%),
		linear-gradient(180deg, rgba(44, 124, 255, 0.08), transparent),
		#0b1320;
}

.arena5-site-footer__inner {
	min-height: 76px;
}

.arena5-footer-brand strong {
	font-size: 1.2rem;
}

@media (max-width: 1240px) {
	.arena5-home-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.arena5-home-hero__content {
		max-width: 820px;
	}

	.arena5-home-hero__visual {
		min-height: 540px;
	}

	.arena5-home-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.arena5-home-products .arena5-home-section__header {
		max-width: 820px;
	}

	.arena5-home-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.arena5-site-header__inner {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 10px clamp(6px, 2.4vw, 10px);
		padding-block: 8px;
		direction: ltr;
	}

	.arena5-brand {
		order: 3;
		display: flex;
		justify-content: flex-end;
		flex: 1 1 clamp(92px, 28vw, 150px);
		min-width: 0;
		direction: rtl;
	}

	.arena5-brand__logo {
		max-width: clamp(92px, 30vw, 142px);
		max-height: 46px;
	}

	.arena5-header-actions {
		display: contents;
	}

	.arena5-primary-nav {
		display: none;
	}

	.arena5-mobile-menu-toggle {
		order: 1;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		flex: 0 0 auto;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 1px solid rgba(53, 212, 255, 0.24);
		border-radius: 14px;
		background:
			linear-gradient(135deg, rgba(53, 212, 255, 0.12), rgba(44, 124, 255, 0.05)),
			rgba(7, 13, 25, 0.74);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.08),
			0 0 22px rgba(53, 212, 255, 0.1);
		cursor: pointer;
		direction: rtl;
	}

	.arena5-mobile-menu-toggle span {
		display: block;
		width: 22px;
		height: 3px;
		border-radius: 999px;
		background: var(--arena5-cyan);
		box-shadow: 0 0 12px rgba(53, 212, 255, 0.32);
	}

	.arena5-header-google-login {
		order: 2;
		flex: 0 1 clamp(126px, 36vw, 168px);
		max-width: clamp(126px, 36vw, 168px);
		min-width: 0;
		min-height: 40px;
		box-sizing: border-box;
		margin-inline: clamp(4px, 1.4vw, 8px);
		padding-inline: 14px;
		font-size: clamp(0.76rem, 2.2vw, 0.82rem);
		gap: 8px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		direction: rtl;
	}

	.arena5-theme-toggle {
		order: 4;
		flex: 1 1 112px;
		justify-content: center;
		min-height: 36px;
		direction: rtl;
	}

	.arena5-language-switcher--header {
		display: none;
	}

	.arena5-header-actions > .arena5-header-link:not(.arena5-header-google-login) {
		order: 5;
		flex: 1 1 88px;
		text-align: center;
		direction: rtl;
	}

	.arena5-header-actions > .arena5-button {
		order: 6;
		flex: 1 1 88px;
		justify-content: center;
		direction: rtl;
	}

	.arena5-mobile-menu-overlay {
		position: fixed;
		inset: 0;
		z-index: 98;
		display: block;
		border: 0;
		background: rgba(1, 5, 12, 0.6);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		backdrop-filter: blur(3px);
		transition: opacity 180ms ease, visibility 180ms ease;
	}

	.arena5-mobile-menu {
		position: fixed;
		inset-block: 0;
		inset-inline-start: 0;
		z-index: 100;
		display: block;
		width: min(88vw, 380px);
		min-height: 100dvh;
		padding: 10px;
		pointer-events: none;
		transform: translateX(100%);
		transition: transform 220ms ease;
	}

	.arena5-mobile-menu__panel {
		height: 100%;
		max-height: calc(100dvh - 20px);
		overflow-y: auto;
		padding: 16px;
		border: 1px solid rgba(53, 212, 255, 0.24);
		border-radius: 22px;
		background:
			linear-gradient(135deg, rgba(53, 212, 255, 0.1), rgba(44, 124, 255, 0.04)),
			rgba(8, 15, 26, 0.96);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.08),
			0 22px 60px rgba(0, 0, 0, 0.42),
			0 0 46px rgba(53, 212, 255, 0.16);
		backdrop-filter: blur(16px);
	}

	.arena5-mobile-menu__header {
		position: sticky;
		inset-block-start: 0;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-bottom: 18px;
		padding-bottom: 10px;
		background: transparent;
	}

	.arena5-mobile-menu__title {
		color: var(--arena5-cyan);
		font-size: 0.92rem;
		font-weight: 900;
		letter-spacing: 0.08em;
	}

	.arena5-mobile-menu__brand {
		display: flex;
		align-items: center;
		min-width: 0;
	}

	.arena5-mobile-menu__logo {
		display: block;
		max-width: min(190px, 58vw);
		max-height: 58px;
		width: auto;
		height: auto;
		object-fit: contain;
	}

	.arena5-mobile-menu__logo--day {
		display: none;
	}

	.arena5-mobile-menu__close {
		position: relative;
		width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid rgba(53, 212, 255, 0.22);
		border-radius: 12px;
		background: rgba(53, 212, 255, 0.06);
		cursor: pointer;
	}

	.arena5-mobile-menu__close span {
		position: absolute;
		inset-inline-start: 10px;
		inset-block-start: 18px;
		width: 16px;
		height: 2px;
		border-radius: 999px;
		background: var(--arena5-cyan);
	}

	.arena5-mobile-menu__close span:first-child {
		transform: rotate(45deg);
	}

	.arena5-mobile-menu__close span:last-child {
		transform: rotate(-45deg);
	}

	.arena5-mobile-nav-menu,
	.arena5-mobile-nav-menu .sub-menu {
		display: grid;
		gap: 8px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.arena5-language-switcher--mobile {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
		width: 100%;
		margin: 0 0 12px;
		padding: 6px;
		border-radius: 14px;
	}

	.arena5-language-switcher--mobile .arena5-language-switcher__link {
		min-height: 38px;
		font-size: 0.84rem;
	}

	.arena5-mobile-nav-menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 44px;
		padding: 10px 12px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 13px;
		background: rgba(255, 255, 255, 0.035);
		color: var(--arena5-text);
		font-size: 0.98rem;
		font-weight: 800;
		text-decoration: none;
	}

	.arena5-mobile-nav-menu a:hover,
	.arena5-mobile-nav-menu a:focus-visible,
	.arena5-mobile-nav-menu .current-menu-item > a,
	.arena5-mobile-nav-menu .current_page_item > a,
	.arena5-mobile-nav-menu .current-menu-ancestor > a {
		border-color: rgba(53, 212, 255, 0.26);
		background: rgba(53, 212, 255, 0.08);
		color: var(--arena5-cyan);
	}

	.arena5-mobile-nav-menu .sub-menu {
		padding-block-start: 8px;
		padding-inline-start: 14px;
	}

	.arena5-mobile-nav-menu .sub-menu a {
		min-height: 38px;
		font-size: 0.9rem;
		font-weight: 700;
		background: rgba(53, 212, 255, 0.035);
	}

	.arena5-mobile-menu-open .arena5-mobile-menu-overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.arena5-mobile-menu-open .arena5-mobile-menu {
		pointer-events: auto;
		transform: translateX(0);
	}

	.arena5-site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.arena5-site-footer__copyright {
		text-align: start;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom: 18px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.arena5-footer-contact {
		align-items: stretch;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
	}

	.arena5-footer-social {
		justify-content: flex-start;
	}

	.arena5-footer-contact-action {
		justify-content: flex-start;
		width: 100%;
	}

	.arena5-home-hero__grid,
	.arena5-home-business__panel,
	.arena5-home-team-orders__panel,
	.arena5-team-orders__hero-inner {
		grid-template-columns: 1fr;
	}

	.arena5-home-team-orders__button,
	.arena5-team-orders__hero-inner .arena5-button {
		justify-content: center;
		width: 100%;
	}

	.arena5-home-hero__grid {
		min-height: 0;
	}

	.arena5-home-hero__content {
		max-width: 100%;
	}

	.arena5-home-workflow-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.arena5-home-business__actions,
	.arena5-home-final-cta {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	:root {
		--arena5-gutter: 16px;
		--arena5-section-gap: 30px;
	}

	body.arena5-shell {
		font-size: 15px;
	}

	.arena5-section {
		padding-block: 28px;
	}

	.arena5-action-row {
		align-items: stretch;
		flex-direction: column;
	}

	.arena5-home-section {
		padding-block: 28px;
	}

	.arena5-home-hero {
		padding-block: 30px 20px;
	}

	.arena5-home-hero h1 {
		font-size: clamp(1.85rem, 8.5vw, 2.55rem);
		line-height: 1.03;
	}

	.arena5-home-hero__lead {
		font-size: 1rem;
		line-height: 1.65;
	}

	.arena5-home-hero__visual {
		min-height: 360px;
		border-radius: 16px;
	}

	.arena5-home-hero__visual::before {
		inset: 12px;
		border-radius: 12px;
	}

	.arena5-home-visual-empty {
		margin: 18px;
	}

	.arena5-home-order-card {
		inset-inline: 18px auto;
		width: 190px;
	}

	.arena5-home-product-stage {
		inset: 132px 18px 18px;
		grid-template-columns: 1fr;
	}

	.arena5-home-product-stage__tools {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.arena5-home-category-grid,
	.arena5-home-product-grid,
	.arena5-home-workflow-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: 1fr;
		padding: 10px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation a {
		min-height: 44px;
		padding: 10px 12px;
	}

	.arena5-home-faq-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.arena5-home-faq-item {
		padding: 14px;
	}

	.arena5-home-category-card {
		align-content: start;
		gap: 10px;
		min-height: 220px;
		padding: 10px;
	}

	.arena5-home-category-card__icon {
		width: 100%;
		aspect-ratio: 1.1;
	}

	.arena5-home-category-card__icon img {
		padding: 8px;
	}

	.arena5-home-category-card__body strong,
	.arena5-home-workflow-card h3,
	.arena5-home-product-card h3,
	.arena5-home-faq-item__summary span {
		font-size: 0.9rem;
		line-height: 1.3;
	}

	.arena5-home-category-card small,
	.arena5-home-workflow-card p {
		font-size: 0.8rem;
		line-height: 1.45;
	}

	.arena5-home-workflow-card {
		min-height: 170px;
		padding: 16px;
	}

	.arena5-home-workflow-card span {
		min-width: 38px;
		height: 28px;
		font-size: 0.82rem;
	}

	.arena5-home-product-card {
		min-height: 0;
	}

	.arena5-home-product-card__body {
		padding: 12px;
		gap: 10px;
	}

	.arena5-home-product-card__media img {
		padding: 12px;
	}

	.arena5-home-product-card__link {
		min-height: 38px;
		font-size: 0.85rem;
	}

	.arena5-home-business__actions,
	.arena5-home-final-cta {
		gap: 10px;
	}

	.arena5-home-team-orders {
		padding-block: 14px 6px;
	}

	.arena5-home-team-orders__panel {
		gap: 14px;
		padding: 16px;
	}

	.arena5-home-team-orders h2 {
		font-size: 1.28rem;
	}

	.arena5-home-team-orders p,
	.arena5-team-orders__hero p:not(.arena5-team-orders__eyebrow) {
		font-size: 0.94rem;
		line-height: 1.58;
	}

	.arena5-team-orders__hero {
		padding-block: 28px 12px;
	}
}

@media (max-width: 380px) {
	.arena5-home-product-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 320px) {
	.arena5-home-category-grid,
	.arena5-home-workflow-grid {
		grid-template-columns: 1fr;
	}
}

/* Hero composition rebuild */
.arena5-home .arena5-home-hero {
	min-height: auto;
	padding-block: clamp(18px, 2.4vw, 30px) clamp(22px, 3vw, 38px);
	background:
		radial-gradient(circle at 18% 45%, rgba(15, 98, 254, 0.28), transparent 36%),
		radial-gradient(circle at 78% 20%, rgba(53, 212, 255, 0.18), transparent 32%),
		radial-gradient(circle at 52% 88%, rgba(28, 91, 158, 0.16), transparent 38%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
		#0b1422;
}

.arena5-home .arena5-home-hero__grid {
	grid-template-columns: minmax(620px, 1.18fr) minmax(420px, 0.82fr);
	align-items: center;
	gap: clamp(28px, 4vw, 56px);
	min-height: min(560px, calc(100svh - 190px));
}

.arena5-home .arena5-home-hero__content {
	justify-self: end;
	max-width: 650px;
	text-align: start;
}

.arena5-home .arena5-home-hero h1 {
	max-width: 680px;
	font-size: clamp(2.2rem, 2.9vw, 4rem);
	font-weight: 900;
	line-height: 1.04;
}

.arena5-home .arena5-home-hero h1 span {
	color: var(--arena5-text);
	text-shadow: 0 0 34px rgba(44, 124, 255, 0.2);
}

.arena5-home .arena5-home-hero__lead {
	max-width: 590px;
	font-size: clamp(1rem, 1.15vw, 1.22rem);
	font-weight: 500;
}

.arena5-home .arena5-home-hero__actions {
	display: grid;
	grid-template-columns: minmax(190px, auto) minmax(180px, auto);
	width: fit-content;
	margin-top: 22px;
}

.arena5-home .arena5-home-hero__actions .arena5-button {
	min-height: 58px;
	padding-inline: 28px;
	font-size: 1rem;
	font-weight: 900;
}

.arena5-home-hero__widgets {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 620px;
	margin-top: 18px;
}

.arena5-home-hero-widget {
	--arena5-widget-accent: var(--arena5-cyan);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 78px;
	padding: 13px 14px;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.09), rgba(44, 124, 255, 0.035)),
		rgba(7, 13, 25, 0.7);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 16px 38px rgba(0, 0, 0, 0.2),
		0 0 26px color-mix(in srgb, var(--arena5-widget-accent) 18%, transparent);
}

.arena5-home-hero-widget--blue {
	--arena5-widget-accent: var(--arena5-blue);
}

.arena5-home-hero-widget--green {
	--arena5-widget-accent: var(--arena5-success);
}

.arena5-home-hero-widget--slate {
	--arena5-widget-accent: var(--arena5-muted);
}

.arena5-home-hero-widget--no-icon {
	grid-template-columns: 1fr;
}

.arena5-home-hero-widget__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid color-mix(in srgb, var(--arena5-widget-accent) 38%, transparent);
	border-radius: 12px;
	background: color-mix(in srgb, var(--arena5-widget-accent) 14%, transparent);
	color: var(--arena5-widget-accent);
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1;
}

.arena5-home-hero-widget__content {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.arena5-home-hero-widget__content strong {
	color: var(--arena5-text);
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1.25;
}

.arena5-home-hero-widget__content small {
	color: var(--arena5-muted);
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.35;
}

.arena5-home .arena5-home-hero__checks {
	max-width: 620px;
}

.arena5-home .arena5-home-hero__checks li {
	background: rgba(7, 13, 25, 0.68);
	box-shadow: inset 0 0 22px rgba(44, 124, 255, 0.08);
}

.arena5-home .arena5-home-hero__visual {
	min-height: clamp(560px, 48vw, 720px);
	border-radius: 24px;
	overflow: visible;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.14), rgba(44, 124, 255, 0.08) 42%, rgba(255, 255, 255, 0.035)),
		#07101e;
	box-shadow:
		0 34px 100px rgba(0, 0, 0, 0.42),
		0 0 90px rgba(15, 98, 254, 0.26);
}

.arena5-home .arena5-home-hero__visual::before,
.arena5-home .arena5-home-hero__visual::after {
	display: none;
}

.arena5-home-hero__visual-shell {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
		radial-gradient(circle at 42% 46%, rgba(53, 212, 255, 0.16), transparent 34%),
		rgba(5, 11, 22, 0.88);
	overflow: hidden;
}

.arena5-home-hero__visual-shell::before {
	content: "";
	position: absolute;
	inset: 72px 44px 88px;
	border: 1px solid rgba(53, 212, 255, 0.12);
	border-radius: 999px;
	transform: rotate(-12deg);
}

.arena5-home-hero__visual-shell::after {
	content: "";
	position: absolute;
	inset-inline: 7%;
	inset-block-end: 20px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(53, 212, 255, 0.82), transparent);
	box-shadow: 0 0 30px rgba(53, 212, 255, 0.58);
}

.arena5-home-hero__showcase {
	position: absolute;
	inset: 34px 42px 100px 84px;
	display: grid;
	place-items: center;
	z-index: 2;
}

.arena5-home-hero__showcase--image {
	inset: 28px 28px 108px 28px;
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
		rgba(5, 11, 22, 0.44);
	box-shadow: inset 0 0 54px rgba(44, 124, 255, 0.1);
	overflow: hidden;
}

.arena5-home-hero__showcase img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	filter: saturate(1.05) contrast(1.05);
	transform: scale(1.12);
}

.arena5-home-hero__showcase--image img {
	object-fit: cover;
	transform: none;
}

.arena5-home-hero__showcase .arena5-home-shirt {
	width: min(360px, 76%);
}

.arena5-home-hero__system-card {
	position: absolute;
	z-index: 3;
	display: grid;
	gap: 8px;
	width: auto;
	max-width: min(260px, calc(100% - 72px));
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(5, 10, 20, 0.78);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.arena5-home-hero__system-card--summary {
	inset-block-start: 20px;
	inset-inline-start: 22px;
}

.arena5-home-hero__system-card span {
	display: block;
	color: var(--arena5-cyan);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.35;
	text-transform: uppercase;
}

.arena5-home-hero__tool-rail {
	position: absolute;
	z-index: 3;
	inset-block-start: 122px;
	inset-inline-end: 22px;
	display: grid;
	gap: 12px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(5, 10, 20, 0.7);
	backdrop-filter: blur(14px);
}

.arena5-home-hero__tool-rail span {
	display: block;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(53, 212, 255, 0.26);
	border-radius: 50%;
	background: rgba(44, 124, 255, 0.14);
}

.arena5-home-hero__tool-rail span:nth-child(2) {
	background: rgba(255, 255, 255, 0.18);
}

.arena5-home-hero__tool-rail span:nth-child(3) {
	background: rgba(53, 212, 255, 0.22);
}

.arena5-home-hero__thumb-row {
	position: absolute;
	z-index: 3;
	inset-inline: 30px;
	inset-block-end: 26px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.arena5-home-hero__thumb-row span {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 82px;
	padding: 14px 16px 14px 18px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: 15px;
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.12), rgba(44, 124, 255, 0.05)),
		rgba(6, 13, 26, 0.72);
	backdrop-filter: blur(12px);
	color: var(--arena5-text);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 18px 42px rgba(0, 0, 0, 0.24),
		0 0 28px rgba(44, 124, 255, 0.09);
}

.arena5-home-hero__thumb-row span::before {
	content: "";
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	margin-inline-end: 10px;
	border-radius: 50%;
	background: var(--arena5-cyan);
	box-shadow: 0 0 16px rgba(53, 212, 255, 0.72);
}

@media (max-width: 1240px) {
	.arena5-home .arena5-home-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.arena5-home .arena5-home-hero__visual {
		order: 1;
		min-height: 500px;
	}

	.arena5-home .arena5-home-hero__content {
		order: 2;
		justify-self: stretch;
		max-width: 820px;
	}
}

@media (max-width: 700px) {
	.arena5-home .arena5-home-hero {
		min-height: 0;
	}

	.arena5-home .arena5-home-hero__grid {
		gap: 12px;
	}

	.arena5-home .arena5-home-hero__content {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.arena5-home .arena5-home-hero__visual {
		min-height: clamp(430px, 118vw, 520px);
		border-radius: 18px;
	}

	.arena5-home-hero__visual-shell {
		inset: 12px;
		border-radius: 15px;
	}

	.arena5-home-hero__showcase {
		inset: 24px 16px 108px;
	}

	.arena5-home-hero__showcase--image {
		inset: 22px 16px 108px;
	}

	.arena5-home-hero__showcase img {
		transform: scale(1.08);
	}

	.arena5-home-hero__showcase--image img {
		width: 100%;
		height: 100%;
		max-width: none;
		max-height: none;
		object-fit: cover;
		object-position: center;
		transform: none;
	}

	.arena5-home-hero__system-card {
		width: 142px;
		padding: 12px;
	}

	.arena5-home-hero__tool-rail {
		inset-block-start: 78px;
		inset-inline-end: 12px;
		gap: 8px;
		padding: 8px;
	}

	.arena5-home-hero__tool-rail span {
		width: 22px;
		height: 22px;
	}

	.arena5-home-hero__thumb-row {
		inset-inline: 16px;
		inset-block-end: 16px;
		gap: 9px;
	}

	.arena5-home-hero__thumb-row span {
		min-height: 66px;
		padding: 9px 10px;
		font-size: 0.74rem;
		line-height: 1.35;
	}

	.arena5-home-hero__thumb-row span::before {
		width: 7px;
		height: 7px;
		margin-inline-end: 7px;
	}

	.arena5-home .arena5-home-hero h1 {
		order: 2;
		margin-block: 0;
		font-size: clamp(1.85rem, 8.5vw, 2.55rem);
		line-height: 1.04;
	}

	.arena5-home-eyebrow {
		order: 1;
		width: 100%;
		min-height: 110px;
		margin-block: 0 12px;
		padding: 18px 14px;
		border-radius: 12px;
		font-size: clamp(1.12rem, 5vw, 1.35rem);
		line-height: 1.28;
		gap: 6px;
	}

	.arena5-home-hero__lead {
		order: 3;
		margin-block-start: 12px;
	}

	.arena5-home-top-promo {
		padding-block-start: 12px;
	}

	.arena5-home-top-promo__panel {
		min-height: 0;
		padding: 13px 14px;
		border-radius: 14px;
		font-size: clamp(0.94rem, 4.2vw, 1.08rem);
	}

	.arena5-home .arena5-home-hero__actions {
		order: 4;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.arena5-home-hero__widgets {
		order: 5;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		max-width: none;
		gap: 10px;
	}

	.arena5-home-hero-widget {
		grid-template-columns: 1fr;
		align-items: start;
		min-height: 98px;
		padding: 11px;
	}

	.arena5-home-hero-widget__icon {
		width: 30px;
		height: 30px;
	}

	.arena5-home-hero-widget__content strong {
		font-size: 0.9rem;
	}

	.arena5-home-hero-widget__content small {
		font-size: 0.74rem;
	}
}

@media (max-width: 430px) {
	:root {
		--arena5-gutter: 14px;
		--arena5-section-gap: 24px;
	}

	body.arena5-shell {
		font-size: 14.5px;
	}

	.arena5-site-header__inner {
		gap: 8px 6px;
	}

	.arena5-brand {
		flex-basis: clamp(86px, 28vw, 128px);
	}

	.arena5-brand__logo {
		max-width: clamp(86px, 29vw, 128px);
		max-height: 42px;
	}

	.arena5-mobile-menu-toggle {
		width: 40px;
		height: 40px;
		border-radius: 13px;
	}

	.arena5-mobile-menu-toggle span {
		width: 20px;
		height: 3px;
	}

	.arena5-header-google-login {
		flex-basis: clamp(118px, 36vw, 150px);
		max-width: clamp(118px, 36vw, 150px);
		margin-inline: 5px;
		min-height: 38px;
		padding-inline: 12px;
		font-size: clamp(0.72rem, 2.5vw, 0.78rem);
		gap: 7px;
	}

	.arena5-header-google-login__icon {
		width: 14px;
		height: 14px;
	}

	.arena5-theme-toggle,
	.arena5-header-actions > .arena5-header-link:not(.arena5-header-google-login),
	.arena5-header-actions > .arena5-button {
		min-height: 36px;
		font-size: 0.82rem;
	}

	.arena5-home-top-promo__panel {
		padding: 11px 12px;
		border-radius: 13px;
		font-size: clamp(0.88rem, 4vw, 1rem);
	}

	.arena5-home-section {
		padding-block: 24px;
	}

	.arena5-home-section__header {
		margin-bottom: 16px;
	}

	.arena5-home-section__header h2,
	.arena5-home-business h2,
	.arena5-home-final-cta h2 {
		font-size: clamp(1.55rem, 8vw, 2.1rem);
	}

	.arena5-home-section__header p,
	.arena5-home-business p,
	.arena5-home-faq-item__answer p {
		font-size: 0.92rem;
		line-height: 1.55;
	}

	.arena5-home .arena5-home-hero {
		padding-block: 22px 16px;
	}

	.arena5-home .arena5-home-hero__grid {
		gap: 14px;
	}

	.arena5-home .arena5-home-hero h1 {
		font-size: clamp(1.68rem, 8vw, 2.2rem);
	}

	.arena5-home-hero__lead {
		font-size: 0.94rem;
		line-height: 1.55;
	}

	.arena5-home-eyebrow {
		min-height: 96px;
		padding: 15px 12px;
		font-size: clamp(1rem, 4.5vw, 1.18rem);
	}

	.arena5-home .arena5-home-hero__actions .arena5-button {
		min-height: 48px;
		padding-inline: 18px;
		font-size: 0.92rem;
	}

	.arena5-home-hero__widgets {
		gap: 8px;
	}

	.arena5-home-hero-widget {
		min-height: 86px;
		padding: 10px;
	}

	.arena5-home .arena5-home-hero__visual {
		min-height: clamp(410px, 116vw, 500px);
	}

	.arena5-home-hero__showcase,
	.arena5-home-hero__showcase--image {
		inset: 20px 12px 102px;
	}

	.arena5-home-hero__showcase--image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.arena5-home-hero__thumb-row {
		inset-inline: 14px;
		inset-block-end: 14px;
		gap: 7px;
	}

	.arena5-home-hero__thumb-row span {
		min-height: 60px;
		padding: 8px;
		font-size: 0.69rem;
	}

	.arena5-home-category-grid,
	.arena5-home-product-grid,
	.arena5-home-workflow-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.arena5-home-category-card {
		min-height: 190px;
		padding: 9px;
		gap: 8px;
	}

	.arena5-home-category-card__icon {
		aspect-ratio: 1.05;
	}

	.arena5-home-category-card__body strong,
	.arena5-home-workflow-card h3,
	.arena5-home-product-card h3,
	.arena5-home-faq-item__summary span {
		font-size: 0.88rem;
	}

	.arena5-home-category-card small,
	.arena5-home-workflow-card p {
		font-size: 0.74rem;
		line-height: 1.38;
	}

	.arena5-home-workflow-card {
		min-height: 150px;
		padding: 13px;
	}

	.arena5-home-workflow-card span {
		min-width: 34px;
		height: 26px;
		font-size: 0.76rem;
	}

	.arena5-home-product-card__body {
		padding: 10px;
		gap: 8px;
	}

	.arena5-home-product-card__media img {
		padding: 9px;
	}

	.arena5-home-product-card__price {
		font-size: 0.88rem;
	}

	.arena5-home-product-card__link {
		min-height: 36px;
		font-size: 0.78rem;
		padding-inline: 8px;
	}

	.arena5-home-business__panel,
	.arena5-home-final-cta,
	.arena5-home-faq-item {
		padding: 16px;
	}

	.arena5-site-footer__inner {
		gap: 10px;
		padding-block: 14px;
	}

	.arena5-floating-whatsapp {
		left: auto;
		right: 14px;
		bottom: 16px;
		bottom: calc(16px + env(safe-area-inset-bottom, 0px));
		width: 52px;
		height: 52px;
	}

	.arena5-floating-top {
		left: auto;
		right: 18px;
		bottom: 78px;
		bottom: calc(78px + env(safe-area-inset-bottom, 0px));
		width: 42px;
		height: 42px;
	}

	.arena5-floating-cart {
		left: auto;
		right: 18px;
		bottom: 134px;
		bottom: calc(134px + env(safe-area-inset-bottom, 0px));
		width: 42px;
		height: 42px;
	}

	.arena5-floating-whatsapp svg {
		width: 29px;
		height: 29px;
	}
}

@media (max-width: 390px) {
	:root {
		--arena5-gutter: 12px;
		--arena5-section-gap: 22px;
	}

	.arena5-site-header__inner {
		gap: 7px 5px;
	}

	.arena5-brand {
		flex-basis: clamp(78px, 27vw, 112px);
	}

	.arena5-brand__logo {
		max-width: clamp(78px, 28vw, 112px);
		max-height: 38px;
	}

	.arena5-header-google-login {
		flex-basis: clamp(112px, 35vw, 134px);
		max-width: clamp(112px, 35vw, 134px);
		margin-inline: 4px;
		padding-inline: 10px;
		min-height: 36px;
		font-size: clamp(0.68rem, 2.45vw, 0.74rem);
		gap: 6px;
	}

	.arena5-theme-toggle,
	.arena5-header-actions > .arena5-header-link:not(.arena5-header-google-login),
	.arena5-header-actions > .arena5-button {
		flex-basis: 82px;
		font-size: 0.78rem;
	}

	.arena5-home .arena5-home-hero__visual {
		min-height: clamp(392px, 114vw, 470px);
	}

	.arena5-home-hero__thumb-row span {
		min-height: 56px;
		font-size: 0.66rem;
	}

	.arena5-home-category-card {
		min-height: 176px;
	}

	.arena5-home-workflow-card {
		min-height: 142px;
	}
}

@media (max-width: 360px) {
	body.arena5-shell {
		font-size: 14px;
	}

	.arena5-mobile-menu-toggle {
		width: 38px;
		height: 38px;
	}

	.arena5-mobile-menu-toggle span {
		width: 18px;
	}

	.arena5-header-google-login {
		flex-basis: clamp(104px, 34vw, 126px);
		max-width: clamp(104px, 34vw, 126px);
		margin-inline: 4px;
		padding-inline: 9px;
		font-size: 0.68rem;
	}

	.arena5-header-google-login__icon {
		width: 13px;
		height: 13px;
	}

	.arena5-home-top-promo__panel {
		padding: 10px;
		font-size: 0.84rem;
	}

	.arena5-home .arena5-home-hero h1 {
		font-size: clamp(1.52rem, 7.8vw, 1.95rem);
	}

	.arena5-home-eyebrow {
		min-height: 88px;
		padding: 12px 10px;
		font-size: clamp(0.9rem, 4.3vw, 1.05rem);
	}

	.arena5-home .arena5-home-hero__visual {
		min-height: 380px;
	}

	.arena5-home-hero__showcase,
	.arena5-home-hero__showcase--image {
		inset: 18px 10px 96px;
	}

	.arena5-home-hero__showcase--image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.arena5-home-hero__thumb-row {
		inset-inline: 12px;
		inset-block-end: 12px;
	}

	.arena5-home-hero__thumb-row span {
		min-height: 52px;
		padding: 7px;
		font-size: 0.62rem;
	}

	.arena5-home-category-card {
		min-height: 164px;
		padding: 8px;
	}

	.arena5-home-workflow-card {
		min-height: 134px;
		padding: 11px;
	}

	.arena5-home-category-card__body strong,
	.arena5-home-workflow-card h3,
	.arena5-home-product-card h3,
	.arena5-home-faq-item__summary span {
		font-size: 0.82rem;
	}

	.arena5-home-category-card small,
	.arena5-home-workflow-card p {
		font-size: 0.7rem;
	}
}

@media (max-width: 320px) {
	.arena5-home-category-grid,
	.arena5-home-product-grid,
	.arena5-home-workflow-grid,
	.arena5-home-faq-list {
		grid-template-columns: 1fr;
	}

	.arena5-header-google-login {
		flex-basis: calc(100% - 100px);
		max-width: calc(100% - 100px);
		margin-inline: 4px;
		padding-inline: 12px;
		font-size: 0.72rem;
	}

	.arena5-brand {
		flex-basis: 100%;
		justify-content: center;
	}

	.arena5-brand__logo {
		max-width: 112px;
	}

	.arena5-theme-toggle,
	.arena5-header-actions > .arena5-header-link:not(.arena5-header-google-login),
	.arena5-header-actions > .arena5-button {
		flex-basis: 100%;
	}
}

/* Light / day mode */
html.theme-day {
	color-scheme: light;
	--arena5-bg: #f4f8ff;
	--arena5-panel: #ffffff;
	--arena5-panel-soft: #eef5ff;
	--arena5-panel-deep: #eaf2ff;
	--arena5-text: #071426;
	--arena5-muted: #52657e;
	--arena5-border: rgba(20, 64, 128, 0.14);
	--arena5-blue: #0f62fe;
	--arena5-blue-strong: #064bd8;
	--arena5-cyan: #087fc6;
	--arena5-success: #087f5b;
	--arena5-card-shadow: 0 22px 60px rgba(24, 72, 130, 0.12);
	--arena5-glow: 0 0 70px rgba(15, 98, 254, 0.14);
}

html.theme-day body.arena5-shell {
	background:
		radial-gradient(circle at 50% -10%, rgba(15, 98, 254, 0.14), transparent 34%),
		linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
	color: var(--arena5-text);
}

html.theme-day .arena5-site-header {
	background: rgba(255, 255, 255, 0.86);
	border-bottom-color: rgba(15, 98, 254, 0.14);
	box-shadow: 0 14px 40px rgba(18, 55, 110, 0.08);
}

html.theme-day .arena5-brand,
html.theme-day .arena5-brand a,
html.theme-day .arena5-nav-menu a:hover,
html.theme-day .arena5-footer-menu a:hover,
html.theme-day .arena5-header-link:hover {
	color: var(--arena5-text);
}

html.theme-day .arena5-primary-nav .arena5-nav-menu a:hover,
html.theme-day .arena5-primary-nav .arena5-nav-menu a:focus-visible,
html.theme-day .arena5-primary-nav .arena5-nav-menu .current-menu-item > a,
html.theme-day .arena5-primary-nav .arena5-nav-menu .current_page_item > a,
html.theme-day .arena5-primary-nav .arena5-nav-menu .current-menu-ancestor > a {
	border-color: rgba(15, 98, 254, 0.18);
	background: rgba(15, 98, 254, 0.06);
	color: var(--arena5-blue);
}

html.theme-day .arena5-language-switcher {
	border-color: rgba(15, 98, 254, 0.16);
	background: rgba(15, 98, 254, 0.045);
}

html.theme-day .arena5-language-switcher__link:hover,
html.theme-day .arena5-language-switcher__link:focus-visible,
html.theme-day .arena5-language-switcher__link.is-active {
	border-color: rgba(15, 98, 254, 0.24);
	background: rgba(15, 98, 254, 0.08);
	color: var(--arena5-blue);
}

html.theme-day .arena5-primary-nav .sub-menu {
	border-color: rgba(15, 98, 254, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(255, 255, 255, 0.72)),
		rgba(255, 255, 255, 0.92);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.72),
		0 18px 44px rgba(18, 55, 110, 0.14),
		0 0 28px rgba(15, 98, 254, 0.1);
}

html.theme-day .arena5-nav-menu a,
html.theme-day .arena5-footer-menu a,
html.theme-day .arena5-header-link {
	color: var(--arena5-muted);
}

html.theme-day .arena5-header-google-login {
	background: rgba(15, 98, 254, 0.06);
	border-color: rgba(15, 98, 254, 0.18);
	color: var(--arena5-text);
}

html.theme-day .arena5-header-google-login:hover {
	background: rgba(15, 98, 254, 0.1);
	border-color: rgba(15, 98, 254, 0.32);
}

html.theme-day .arena5-theme-toggle {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(15, 98, 254, 0.16);
	color: var(--arena5-text);
	box-shadow: 0 10px 28px rgba(18, 55, 110, 0.08);
}

html.theme-day .arena5-theme-toggle__track {
	background: rgba(15, 98, 254, 0.1);
	box-shadow: inset 0 0 0 1px rgba(15, 98, 254, 0.18);
}

html.theme-day .arena5-mobile-menu-toggle,
html.theme-day .arena5-mobile-menu__close {
	border-color: rgba(15, 98, 254, 0.18);
	background: rgba(15, 98, 254, 0.06);
}

html.theme-day .arena5-mobile-menu-toggle span,
html.theme-day .arena5-mobile-menu__close span {
	background: var(--arena5-blue);
	box-shadow: 0 0 10px rgba(15, 98, 254, 0.18);
}

html.theme-day .arena5-mobile-menu-overlay {
	background: rgba(9, 24, 48, 0.34);
}

html.theme-day .arena5-mobile-menu__panel {
	border-color: rgba(15, 98, 254, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(255, 255, 255, 0.74)),
		rgba(255, 255, 255, 0.94);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.72),
		0 22px 60px rgba(18, 55, 110, 0.16),
		0 0 42px rgba(15, 98, 254, 0.1);
}

html.theme-day .arena5-mobile-menu__header {
	background: transparent;
}

html.theme-day .arena5-mobile-menu__logo--night:has(+ .arena5-mobile-menu__logo--day) {
	display: none;
}

html.theme-day .arena5-mobile-menu__logo--day {
	display: block;
}

html.theme-day .arena5-mobile-menu__title,
html.theme-day .arena5-mobile-nav-menu a:hover,
html.theme-day .arena5-mobile-nav-menu a:focus-visible,
html.theme-day .arena5-mobile-nav-menu .current-menu-item > a,
html.theme-day .arena5-mobile-nav-menu .current_page_item > a,
html.theme-day .arena5-mobile-nav-menu .current-menu-ancestor > a {
	color: var(--arena5-blue);
}

html.theme-day .arena5-mobile-nav-menu a {
	border-color: rgba(15, 98, 254, 0.1);
	background: rgba(255, 255, 255, 0.64);
	color: var(--arena5-text);
}

html.theme-day .arena5-mobile-nav-menu a:hover,
html.theme-day .arena5-mobile-nav-menu a:focus-visible,
html.theme-day .arena5-mobile-nav-menu .current-menu-item > a,
html.theme-day .arena5-mobile-nav-menu .current_page_item > a,
html.theme-day .arena5-mobile-nav-menu .current-menu-ancestor > a {
	border-color: rgba(15, 98, 254, 0.2);
	background: rgba(15, 98, 254, 0.07);
}

html.theme-day .arena5-button {
	border-color: rgba(15, 98, 254, 0.24);
	background: linear-gradient(180deg, #2275ff, #0f62fe);
	box-shadow: 0 16px 34px rgba(15, 98, 254, 0.22);
}

html.theme-day .arena5-button--ghost {
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(15, 98, 254, 0.18);
	color: var(--arena5-text);
	box-shadow: none;
}

html.theme-day .arena5-home {
	background:
		radial-gradient(circle at 9% 8%, rgba(15, 98, 254, 0.16), transparent 30%),
		radial-gradient(circle at 88% 6%, rgba(53, 212, 255, 0.16), transparent 24%),
		linear-gradient(180deg, #f8fbff 0%, #eef6ff 45%, #f7fbff 100%);
}

html.theme-day .arena5-home-section {
	border-top-color: rgba(15, 98, 254, 0.1);
}

html.theme-day .arena5-home-section::before,
html.theme-day .arena5-home-hero::after {
	background: linear-gradient(90deg, transparent, rgba(15, 98, 254, 0.28), transparent);
}

html.theme-day .arena5-home-eyebrow,
html.theme-day .arena5-home-product-card__price,
html.theme-day .arena5-home-product-card__link,
html.theme-day .arena5-home-card-arrow,
html.theme-day .arena5-home-workflow-card span {
	color: var(--arena5-blue);
}

html.theme-day .arena5-home-eyebrow {
	border-color: rgba(15, 98, 254, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(255, 255, 255, 0.72)),
		rgba(255, 255, 255, 0.74);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.76),
		0 0 24px rgba(15, 98, 254, 0.1);
}

html.theme-day .arena5-home-top-promo {
	background:
		radial-gradient(circle at 24% 0%, rgba(15, 98, 254, 0.12), transparent 28%),
		radial-gradient(circle at 74% 0%, rgba(53, 212, 255, 0.16), transparent 30%);
}

html.theme-day .arena5-home-top-promo__panel {
	border-color: rgba(15, 98, 254, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(255, 255, 255, 0.78)),
		rgba(255, 255, 255, 0.82);
	color: var(--arena5-text);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.78),
		0 0 42px rgba(15, 98, 254, 0.11),
		0 22px 70px rgba(24, 72, 130, 0.1);
}

html.theme-day .arena5-home-top-promo__panel strong {
	color: var(--arena5-blue);
	text-shadow: 0 0 18px rgba(15, 98, 254, 0.14);
}

html.theme-day .arena5-home-team-orders__panel {
	border-color: rgba(15, 98, 254, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(255, 255, 255, 0.82)),
		rgba(255, 255, 255, 0.88);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.78),
		0 18px 52px rgba(29, 84, 150, 0.12);
}

html.theme-day .arena5-team-orders {
	background:
		radial-gradient(circle at 18% 18%, rgba(15, 98, 254, 0.1), transparent 28%),
		radial-gradient(circle at 86% 12%, rgba(53, 212, 255, 0.14), transparent 28%),
		#f6faff;
}

html.theme-day .arena5-team-orders__hero {
	border-bottom-color: rgba(15, 98, 254, 0.12);
}

html.theme-day .arena5-team-orders__eyebrow {
	color: var(--arena5-blue);
}

html.theme-day .arena5-home-hero {
	background:
		radial-gradient(circle at 18% 45%, rgba(15, 98, 254, 0.14), transparent 34%),
		radial-gradient(circle at 78% 20%, rgba(53, 212, 255, 0.18), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 42%),
		#f6faff;
}

html.theme-day .arena5-home .arena5-home-hero h1 span {
	color: var(--arena5-text);
	text-shadow: none;
}

html.theme-day .arena5-home .arena5-home-hero__visual {
	border-color: rgba(15, 98, 254, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.12), rgba(53, 212, 255, 0.08) 42%, rgba(255, 255, 255, 0.72)),
		#edf5ff;
	box-shadow: 0 34px 100px rgba(29, 84, 150, 0.16), 0 0 80px rgba(15, 98, 254, 0.14);
}

html.theme-day .arena5-home-hero__visual-shell {
	border-color: rgba(15, 98, 254, 0.16);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
		radial-gradient(circle at 42% 46%, rgba(53, 212, 255, 0.16), transparent 34%),
		rgba(238, 245, 255, 0.94);
}

html.theme-day .arena5-home-hero__system-card,
html.theme-day .arena5-home-hero__tool-rail,
html.theme-day .arena5-home-hero-widget,
html.theme-day .arena5-home-hero__thumb-row span {
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(255, 255, 255, 0.82)),
		rgba(255, 255, 255, 0.76);
	border-color: rgba(15, 98, 254, 0.18);
	box-shadow: 0 18px 52px rgba(29, 84, 150, 0.14);
}

html.theme-day .arena5-home-hero__checks li,
html.theme-day .arena5-home-product-stage__tools span {
	background: rgba(255, 255, 255, 0.74);
	border-color: rgba(15, 98, 254, 0.13);
	color: var(--arena5-muted);
}

html.theme-day .arena5-home-category-card,
html.theme-day .arena5-home-product-card,
html.theme-day .arena5-home-workflow-card,
html.theme-day .arena5-home-empty-state,
html.theme-day .arena5-home-faq-item,
html.theme-day .arena5-home-business__panel,
html.theme-day .arena5-home-final-cta,
html.theme-day body.woocommerce-account .woocommerce-MyAccount-navigation,
html.theme-day .arena5-entry {
	border-color: rgba(15, 98, 254, 0.13);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.86)),
		#fff;
	box-shadow: var(--arena5-card-shadow);
}

html.theme-day body.woocommerce-account .woocommerce-MyAccount-navigation a {
	background: rgba(15, 98, 254, 0.035);
	color: var(--arena5-muted);
}

html.theme-day body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
html.theme-day body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	border-color: rgba(15, 98, 254, 0.22);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(255, 255, 255, 0.72)),
		#fff;
	color: var(--arena5-text);
}

html.theme-day body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
	border-top-color: rgba(15, 98, 254, 0.1);
}

html.theme-day body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #a3404e;
}

html.theme-day .arena5-home-category-card:hover,
html.theme-day .arena5-home-product-card:hover {
	border-color: rgba(15, 98, 254, 0.28);
	box-shadow: 0 24px 70px rgba(15, 98, 254, 0.14);
}

html.theme-day .arena5-home-category-card__icon,
html.theme-day .arena5-home-card-arrow,
html.theme-day .arena5-home-workflow-card span {
	border-color: rgba(15, 98, 254, 0.18);
	background: rgba(15, 98, 254, 0.08);
}

html.theme-day .arena5-home-category-card__icon {
	background:
		radial-gradient(circle at 50% 40%, rgba(53, 212, 255, 0.16), transparent 48%),
		linear-gradient(145deg, rgba(15, 98, 254, 0.08), rgba(255, 255, 255, 0.72)),
		rgba(255, 255, 255, 0.64);
}

html.theme-day .arena5-home-workflow-card::before {
	background: linear-gradient(90deg, var(--arena5-blue), rgba(15, 98, 254, 0.06));
}

html.theme-day .arena5-home-products {
	background:
		radial-gradient(circle at 16% 24%, rgba(15, 98, 254, 0.1), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(15, 98, 254, 0.06)),
		#f4f8ff;
}

html.theme-day .arena5-home-product-card__media {
	background:
		radial-gradient(circle at 50% 45%, rgba(53, 212, 255, 0.13), transparent 48%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.82)),
		#eef5ff;
}

html.theme-day .arena5-home-product-card h3 a,
html.theme-day .arena5-home-product-card__link {
	color: var(--arena5-text);
}

html.theme-day .arena5-home-product-card__link {
	background: rgba(15, 98, 254, 0.08);
	border-color: rgba(15, 98, 254, 0.18);
	color: var(--arena5-blue);
}

html.theme-day .arena5-shop-page {
	background:
		radial-gradient(circle at 12% 0%, rgba(15, 98, 254, 0.1), transparent 30%),
		radial-gradient(circle at 92% 8%, rgba(53, 212, 255, 0.13), transparent 28%),
		#f6faff;
}

html.theme-day .arena5-shop-hero {
	border-bottom-color: rgba(15, 98, 254, 0.12);
}

html.theme-day .arena5-shop-eyebrow,
html.theme-day .arena5-shop-breadcrumb a:hover,
html.theme-day .arena5-shop-products ul.products li.product .price {
	color: var(--arena5-blue);
}

html.theme-day .arena5-shop-sidebar__inner,
html.theme-day .arena5-shop-toolbar,
html.theme-day .arena5-shop-products ul.products li.product,
html.theme-day .arena5-shop-empty {
	border-color: rgba(15, 98, 254, 0.13);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.86)),
		#ffffff;
	box-shadow: 0 18px 50px rgba(29, 84, 150, 0.12);
}

html.theme-day .arena5-shop-sidebar__header {
	border-bottom-color: rgba(15, 98, 254, 0.1);
}

html.theme-day .arena5-shop-sidebar__header span,
html.theme-day .arena5-shop-category-link small,
html.theme-day .arena5-shop-products .woocommerce-pagination ul li a,
html.theme-day .arena5-shop-products .woocommerce-pagination ul li span,
html.theme-day .arena5-team-orders__shop-link {
	border-color: rgba(15, 98, 254, 0.14);
	background: rgba(15, 98, 254, 0.06);
}

html.theme-day .arena5-shop-category-link {
	background: rgba(15, 98, 254, 0.035);
	color: var(--arena5-muted);
}

html.theme-day .arena5-shop-category-link:hover,
html.theme-day .arena5-shop-category-link:focus-visible,
html.theme-day .arena5-shop-category-list li.is-active > .arena5-shop-category-link,
html.theme-day .arena5-shop-products .woocommerce-pagination ul li span.current,
html.theme-day .arena5-shop-products .woocommerce-pagination ul li a:hover,
html.theme-day .arena5-team-orders__shop-link:hover,
html.theme-day .arena5-team-orders__shop-link:focus-visible {
	border-color: rgba(15, 98, 254, 0.22);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(255, 255, 255, 0.72)),
		#ffffff;
	color: var(--arena5-text);
}

html.theme-day .arena5-shop-category-list li.is-active > .arena5-shop-category-link small {
	background: var(--arena5-blue);
	color: #ffffff;
}

html.theme-day .arena5-shop-toolbar select.orderby {
	border-color: rgba(15, 98, 254, 0.16);
	background: #ffffff;
	color: var(--arena5-text);
}

html.theme-day .arena5-shop-products ul.products li.product:hover {
	border-color: rgba(15, 98, 254, 0.28);
	box-shadow: 0 24px 64px rgba(15, 98, 254, 0.14);
}

html.theme-day .arena5-shop-products ul.products li.product img {
	background:
		radial-gradient(circle at 50% 40%, rgba(53, 212, 255, 0.13), transparent 48%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.82)),
		#eef5ff;
}

html.theme-day .arena5-shop-products ul.products li.product .button {
	border-color: rgba(15, 98, 254, 0.18);
	background: rgba(15, 98, 254, 0.08);
	color: var(--arena5-blue);
}

html.theme-day .arena5-shop-products ul.products li.product .button:hover,
html.theme-day .arena5-shop-products ul.products li.product .button:focus-visible {
	background: rgba(15, 98, 254, 0.13);
	color: var(--arena5-blue-strong);
}

html.theme-day .arena5-floating-cart {
	border-color: rgba(15, 98, 254, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(255, 255, 255, 0.82)),
		#ffffff;
	color: var(--arena5-blue);
	box-shadow: 0 14px 34px rgba(29, 84, 150, 0.16);
}

html.theme-day .arena5-floating-cart .arena5-mini-cart-count {
	border-color: #ffffff;
	background: var(--arena5-blue);
	color: #ffffff;
}

html.theme-day .arena5-mini-cart-overlay {
	background: rgba(9, 20, 38, 0.42);
}

html.theme-day .arena5-mini-cart-drawer {
	border-left-color: rgba(15, 98, 254, 0.16);
	background:
		radial-gradient(circle at 24% 0%, rgba(53, 212, 255, 0.14), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.98));
	box-shadow: -28px 0 70px rgba(29, 84, 150, 0.2);
}

html.theme-day .arena5-mini-cart-drawer__header,
html.theme-day .arena5-mini-cart-drawer__footer,
html.theme-day .arena5-mini-cart-drawer .woocommerce-mini-cart__total {
	border-color: rgba(15, 98, 254, 0.12);
}

html.theme-day .arena5-mini-cart-drawer .woocommerce-mini-cart-item,
html.theme-day .arena5-mini-cart-drawer__close,
html.theme-day .arena5-mini-cart-drawer .button,
html.theme-day .arena5-mini-cart-drawer__link,
html.theme-day .arena5-mini-cart-drawer__checkout,
html.theme-day .arena5-woocommerce.woocommerce-cart td.product-name .variation,
html.theme-day .arena5-woocommerce.woocommerce-cart td.product-remove a.remove {
	border-color: rgba(15, 98, 254, 0.13);
	background: rgba(15, 98, 254, 0.055);
}

html.theme-day .arena5-mini-cart-drawer .checkout,
html.theme-day .arena5-mini-cart-drawer__checkout {
	background:
		linear-gradient(180deg, rgba(83, 156, 255, 0.95), var(--arena5-blue-strong));
	color: #ffffff;
}

html.theme-day .arena5-woocommerce.woocommerce-cart .cart-empty,
html.theme-day .arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product {
	border-color: rgba(15, 98, 254, 0.13);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.86)),
		#ffffff;
	box-shadow: 0 18px 50px rgba(29, 84, 150, 0.12);
}

html.theme-day .arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product img {
	background:
		radial-gradient(circle at 50% 40%, rgba(53, 212, 255, 0.13), transparent 48%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.82)),
		#eef5ff;
}

html.theme-day .arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product .price {
	color: var(--arena5-blue);
}

html.theme-day .arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product .button {
	border-color: rgba(15, 98, 254, 0.18);
	background: rgba(15, 98, 254, 0.08);
	color: var(--arena5-blue);
}

html.theme-day .arena5-home-business__panel,
html.theme-day .arena5-home-final-cta {
	background:
		radial-gradient(circle at 8% 40%, rgba(53, 212, 255, 0.16), transparent 28%),
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(255, 255, 255, 0.86)),
		#fff;
}

html.theme-day .arena5-site-footer {
	background:
		linear-gradient(180deg, rgba(15, 98, 254, 0.08), transparent),
		#eef5ff;
	border-top-color: rgba(15, 98, 254, 0.14);
	color: var(--arena5-muted);
}

html.theme-day .arena5-footer-brand strong {
	color: var(--arena5-text);
}

html.theme-day .arena5-floating-top {
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(53, 212, 255, 0.05)),
		rgba(255, 255, 255, 0.88);
	border-color: rgba(15, 98, 254, 0.2);
	color: var(--arena5-blue);
	box-shadow:
		0 12px 30px rgba(24, 72, 130, 0.12),
		0 0 20px rgba(15, 98, 254, 0.1);
}

html.theme-day .arena5-floating-top:hover,
html.theme-day .arena5-floating-top:focus-visible {
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.16), rgba(53, 212, 255, 0.08)),
		#ffffff;
	color: var(--arena5-blue-strong);
}

html.theme-day .arena5-footer-contact-action {
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(53, 212, 255, 0.04)),
		rgba(255, 255, 255, 0.78);
	border-color: rgba(15, 98, 254, 0.16);
	box-shadow: 0 12px 30px rgba(24, 72, 130, 0.1);
}

html.theme-day .arena5-footer-contact-action:hover,
html.theme-day .arena5-footer-contact-action:focus-visible {
	border-color: rgba(15, 98, 254, 0.3);
	background:
		linear-gradient(135deg, rgba(15, 98, 254, 0.11), rgba(53, 212, 255, 0.06)),
		#ffffff;
	box-shadow: 0 16px 36px rgba(24, 72, 130, 0.14);
}

@media (max-width: 430px) {
	body .arena5-floating-whatsapp {
		left: auto;
		right: 14px;
		bottom: 16px;
		bottom: calc(16px + env(safe-area-inset-bottom, 0px));
	}

	body .arena5-floating-top {
		left: auto;
		right: 18px;
		bottom: 78px;
		bottom: calc(78px + env(safe-area-inset-bottom, 0px));
	}

	body .arena5-floating-cart {
		left: auto;
		right: 18px;
		bottom: 134px;
		bottom: calc(134px + env(safe-area-inset-bottom, 0px));
	}
}

/* Header and footer cleanup */
.arena5-site-header {
	background:
		linear-gradient(180deg, rgba(6, 11, 20, 0.96), rgba(6, 11, 20, 0.9)),
		rgba(5, 9, 16, 0.94);
}

.arena5-site-header__inner {
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 72px;
}

.arena5-brand {
	min-width: 0;
}

.arena5-brand__logo {
	max-width: 230px;
	max-height: 60px;
}

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

.arena5-primary-nav .arena5-nav-menu {
	gap: 8px;
}

.arena5-primary-nav .arena5-nav-menu a {
	min-height: 40px;
	padding-inline: 14px;
	color: rgba(244, 247, 251, 0.76);
	font-size: 0.95rem;
}

.arena5-header-actions {
	justify-content: flex-end;
	gap: 8px;
}

.arena5-header-actions .arena5-theme-toggle,
.arena5-header-actions .arena5-header-link,
.arena5-header-actions .arena5-button {
	min-height: 40px;
}

.arena5-header-link--account {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-inline: 12px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.035);
}

.arena5-header-google-login {
	border-radius: var(--arena5-radius);
}

.arena5-shop-page #secondary,
.arena5-shop-page .widget-area,
.arena5-woocommerce #secondary,
.arena5-woocommerce .widget-area {
	display: none;
}

.arena5-site-footer {
	position: relative;
	overflow: hidden;
	padding-block: 34px 18px;
	border-top: 1px solid rgba(53, 212, 255, 0.16);
	background:
		radial-gradient(circle at 18% 0%, rgba(53, 212, 255, 0.1), transparent 28%),
		linear-gradient(180deg, rgba(8, 17, 31, 0.98), #050810);
}

.arena5-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.1fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr) minmax(220px, 0.9fr);
	align-items: start;
	gap: 24px;
}

.arena5-footer-brand {
	max-width: 480px;
}

.arena5-footer-brand p {
	margin: 12px 0 0;
	color: var(--arena5-muted);
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.7;
}

.arena5-footer-logo {
	max-width: 230px;
	max-height: 72px;
}

.arena5-footer-nav h2,
.arena5-footer-contact h2 {
	margin: 0 0 12px;
	color: var(--arena5-text);
	font-size: 1rem;
	font-weight: 900;
}

.arena5-footer-menu {
	display: grid;
	align-items: start;
	gap: 8px;
}

.arena5-footer-menu a {
	display: inline-flex;
	width: fit-content;
	min-height: 34px;
	align-items: center;
	padding-inline: 10px;
	border: 1px solid transparent;
	border-radius: var(--arena5-radius);
}

.arena5-footer-menu a:hover,
.arena5-footer-menu a:focus-visible {
	border-color: rgba(53, 212, 255, 0.18);
	background: rgba(53, 212, 255, 0.06);
	color: var(--arena5-text);
}

.arena5-footer-contact {
	display: grid;
	gap: 10px;
	width: 100%;
}

.arena5-footer-contact-action {
	width: 100%;
	border-radius: var(--arena5-radius);
}

.arena5-footer-social {
	justify-content: flex-start;
}

.arena5-site-footer__bottom {
	display: flex;
	justify-content: center;
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.arena5-site-footer__copyright {
	padding: 0;
}

html.theme-day .arena5-site-header {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9)),
		rgba(255, 255, 255, 0.92);
}

html.theme-day .arena5-primary-nav .arena5-nav-menu a {
	color: var(--arena5-muted);
}

html.theme-day .arena5-header-link--account {
	border-color: rgba(15, 98, 254, 0.16);
	background: rgba(15, 98, 254, 0.045);
}

html.theme-day .arena5-site-footer {
	background:
		radial-gradient(circle at 18% 0%, rgba(53, 212, 255, 0.13), transparent 28%),
		linear-gradient(180deg, rgba(238, 245, 255, 0.98), #f8fbff);
}

html.theme-day .arena5-site-footer__bottom {
	border-top-color: rgba(15, 98, 254, 0.1);
}

@media (max-width: 1180px) {
	.arena5-brand__logo {
		max-width: 190px;
	}

	.arena5-primary-nav .arena5-nav-menu a {
		padding-inline: 10px;
		font-size: 0.9rem;
	}

	.arena5-header-google-login {
		display: none;
	}
}

@media (max-width: 900px) {
	.arena5-site-header__inner {
		grid-template-columns: auto auto minmax(0, 1fr);
		min-height: 64px;
	}

	.arena5-primary-nav {
		display: none;
	}

	.arena5-mobile-menu-toggle {
		display: inline-flex;
	}

	.arena5-header-actions {
		min-width: 0;
	}

	.arena5-header-link--account {
		display: none;
	}

	.arena5-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.arena5-footer-brand,
	.arena5-footer-nav,
	.arena5-footer-contact {
		max-width: 100%;
	}
}

@media (max-width: 520px) {
	.arena5-site-header__inner {
		gap: 8px;
	}

	.arena5-brand__logo {
		max-width: 150px;
		max-height: 48px;
	}

	.arena5-theme-toggle__label {
		display: none;
	}

	.arena5-header-actions .arena5-button {
		min-width: 0;
		padding-inline: 12px;
	}

	.arena5-site-footer {
		padding-block: 28px 18px;
	}

	.arena5-footer-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.arena5-footer-menu a {
		width: 100%;
	}
}

/* Site-wide storefront polish */
.arena5-page-title-card,
.arena5-entry__header,
.arena5-woocommerce .woocommerce-products-header,
.arena5-shop-hero__content,
body.single-product.arena5-woocommerce div.product .summary .product_title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	min-height: clamp(128px, 16vw, 164px);
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid rgba(53, 212, 255, 0.16);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(53, 212, 255, 0.025)),
		rgba(7, 13, 25, 0.78);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 24px 70px rgba(0, 0, 0, 0.2);
	text-align: start;
}

.arena5-entry__header {
	margin: 0;
}

.arena5-entry__title,
.arena5-woocommerce .woocommerce-products-header__title,
.arena5-shop-hero h1,
body.single-product.arena5-woocommerce div.product .summary .product_title {
	width: 100%;
	text-align: start;
}

body.single-product.arena5-woocommerce div.product .summary .product_title {
	margin: 0 0 clamp(16px, 2.4vw, 24px);
	color: var(--arena5-text);
	font-size: clamp(1.8rem, 3.1vw, 3.4rem);
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: 0;
}

.arena5-shop-hero__content {
	max-width: none;
}

.arena5-shop-hero .arena5-shop-eyebrow {
	width: 100%;
	text-align: start;
}

.arena5-shop-hero .arena5-shop-description {
	width: min(100%, 760px);
	margin-inline-start: 0;
	margin-inline-end: auto;
}

/* ===== ARENA5 single product redesign: editor-first, full-width, two-column form ===== */
/* The WooCommerce gallery is removed (inc/single-product-layout.php) because the design
   editor shows the garment. The title and the editor span the full product width; the
   size/zone/price/note sections reflow into two columns. */
body.arena5-print-product-page div.product {
	display: block;
}

body.arena5-print-product-page div.product .woocommerce-product-gallery {
	display: none !important;
}

body.arena5-print-product-page div.product .summary.entry-summary {
	width: 100%;
	max-width: none;
	margin: 0;
	float: none;
}

body.arena5-print-product-page div.product .summary > .price {
	margin: 4px 0 18px;
}

body.arena5-print-product-page .aria5-print-frontend {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(14px, 1.6vw, 20px);
	align-items: start;
}

body.arena5-print-product-page .aria5-print-frontend > * {
	min-width: 0;
}

/* Workflow order: 1) pick print zones, 2) design in the editor, 3) sizes/qty +
   price, 4) production files + note. Zones must precede the editor because the
   editor designs the zones that are selected here. */
body.arena5-print-product-page .aria5-print-frontend-section-zones {
	grid-column: 1 / -1;
	order: 0;
}

body.arena5-print-product-page .aria5-print-frontend-section-editor {
	grid-column: 1 / -1;
	order: 1;
	margin: 0;
}

body.arena5-print-product-page .aria5-print-frontend-section-sizes {
	grid-column: 1;
	order: 2;
}

body.arena5-print-product-page .aria5-print-frontend-section-price {
	grid-column: 2;
	order: 3;
}

body.arena5-print-product-page .aria5-print-frontend-section-production-file {
	grid-column: 1;
	order: 4;
}

body.arena5-print-product-page .aria5-print-frontend-section-note {
	grid-column: 2;
	order: 5;
}

body.arena5-print-product-page .aria5-print-edit-cart-item-notice {
	grid-column: 1 / -1;
	order: -1;
}

/* ---- Product form section colours (Night default + Day overrides) ----
   The size/zone/price/note/production sections are wrapped as cards so they read
   consistently on the dark site; the editor section stays a transparent host for its
   own (always-light) design surface. */
body.arena5-print-product-page .aria5-print-frontend-section-sizes,
body.arena5-print-product-page .aria5-print-frontend-section-zones,
body.arena5-print-product-page .aria5-print-frontend-section-price,
body.arena5-print-product-page .aria5-print-frontend-section-note,
body.arena5-print-product-page .aria5-print-frontend-section-production-file {
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 10px;
	padding: 18px;
}

body.arena5-print-product-page .aria5-print-frontend-section-editor {
	background: transparent;
	border: 0;
	padding: 0;
}

body.arena5-print-product-page .aria5-print-frontend-title {
	color: #f8fafc;
}

body.arena5-print-product-page .aria5-print-frontend-summary,
body.arena5-print-product-page .aria5-print-frontend-summary span,
body.arena5-print-product-page .aria5-print-minimum-row,
body.arena5-print-product-page .aria5-print-note-label {
	color: #cbd5e1;
}

body.arena5-print-product-page .aria5-print-frontend-summary strong,
body.arena5-print-product-page .aria5-print-minimum-row strong {
	color: #f8fafc;
}

body.arena5-print-product-page .aria5-print-size-label,
body.arena5-print-product-page .aria5-print-zone-choice,
body.arena5-print-product-page .aria5-print-zone-choice span,
body.arena5-print-product-page .aria5-print-zone-cost {
	color: #e2e8f0;
}

body.arena5-print-product-page .aria5-print-price-summary {
	background: rgba(2, 6, 23, 0.45);
	border-color: rgba(148, 163, 184, 0.2);
	color: #cbd5e1;
}

body.arena5-print-product-page .aria5-print-price-row dt {
	color: #94a3b8;
}

body.arena5-print-product-page .aria5-print-price-row dd {
	color: #f8fafc;
}

/* Day theme: light cards, dark text. */
html.theme-day body.arena5-print-product-page .aria5-print-frontend-section-sizes,
html.theme-day body.arena5-print-product-page .aria5-print-frontend-section-zones,
html.theme-day body.arena5-print-product-page .aria5-print-frontend-section-price,
html.theme-day body.arena5-print-product-page .aria5-print-frontend-section-note,
html.theme-day body.arena5-print-product-page .aria5-print-frontend-section-production-file {
	background: #ffffff;
	border-color: rgba(20, 64, 128, 0.14);
	box-shadow: 0 12px 34px rgba(24, 72, 130, 0.07);
}

html.theme-day body.arena5-print-product-page .aria5-print-frontend-title {
	color: #071426;
}

html.theme-day body.arena5-print-product-page .aria5-print-frontend-summary,
html.theme-day body.arena5-print-product-page .aria5-print-frontend-summary span,
html.theme-day body.arena5-print-product-page .aria5-print-minimum-row,
html.theme-day body.arena5-print-product-page .aria5-print-note-label {
	color: #52657e;
}

html.theme-day body.arena5-print-product-page .aria5-print-frontend-summary strong,
html.theme-day body.arena5-print-product-page .aria5-print-minimum-row strong {
	color: #071426;
}

html.theme-day body.arena5-print-product-page .aria5-print-size-label,
html.theme-day body.arena5-print-product-page .aria5-print-zone-choice,
html.theme-day body.arena5-print-product-page .aria5-print-zone-choice span,
html.theme-day body.arena5-print-product-page .aria5-print-zone-cost {
	color: #1e293b;
}

html.theme-day body.arena5-print-product-page .aria5-print-price-summary {
	background: #f4f8ff;
	border-color: rgba(20, 64, 128, 0.12);
	color: #52657e;
}

html.theme-day body.arena5-print-product-page .aria5-print-price-row dt {
	color: #52657e;
}

html.theme-day body.arena5-print-product-page .aria5-print-price-row dd {
	color: #071426;
}

@media (max-width: 820px) {
	body.arena5-print-product-page .aria5-print-frontend {
		grid-template-columns: 1fr;
	}

	body.arena5-print-product-page .aria5-print-frontend > .aria5-print-frontend-section {
		grid-column: 1;
	}
}

/* ===== Product category quantity pricing grid (top of category archive) ===== */
.arena5-category-pricing {
	width: min(var(--arena5-container), calc(100% - (var(--arena5-gutter) * 2)));
	margin: 6px auto 24px;
}

.arena5-category-pricing__title {
	margin: 0 0 12px;
	color: var(--arena5-text);
	font-size: clamp(1.05rem, 1.7vw, 1.4rem);
	font-weight: 900;
	line-height: 1.2;
}

.arena5-category-pricing__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.arena5-category-pricing__tier {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 8px 11px;
	border-radius: 9px;
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.22);
}

.arena5-category-pricing__range {
	color: var(--arena5-muted);
	font-size: 0.78rem;
	font-weight: 800;
}

.arena5-category-pricing__price,
.arena5-category-pricing__price .woocommerce-Price-amount {
	color: var(--arena5-text);
	font-size: 1.02rem;
	font-weight: 900;
	line-height: 1.2;
}

.arena5-category-pricing__units {
	color: var(--arena5-muted);
	font-size: 0.68rem;
	font-weight: 700;
}

html.theme-day .arena5-category-pricing__tier {
	background: #ffffff;
	border-color: rgba(20, 64, 128, 0.14);
	box-shadow: 0 12px 30px rgba(24, 72, 130, 0.06);
}

@media (max-width: 760px) {
	.arena5-category-pricing__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.arena5-woocommerce .woocommerce-breadcrumb,
.arena5-woocommerce .woocommerce-products-header,
.arena5-woocommerce .woocommerce-notices-wrapper,
.arena5-woocommerce .woocommerce-info,
.arena5-woocommerce .woocommerce-message,
.arena5-woocommerce .woocommerce-error {
	width: min(var(--arena5-container), calc(100% - (var(--arena5-gutter) * 2)));
	margin-inline: auto;
}

.arena5-woocommerce .woocommerce-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 16px;
	margin-bottom: 12px;
	color: var(--arena5-muted);
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.4;
}

.arena5-shop-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 12px;
	color: var(--arena5-muted);
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.4;
}

.arena5-shop-breadcrumb a,
.arena5-breadcrumb-current {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding-inline: 9px;
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.025);
	color: var(--arena5-muted);
	text-decoration: none;
}

.arena5-woocommerce .woocommerce-breadcrumb a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding-inline: 9px;
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.025);
	color: var(--arena5-muted);
	text-decoration: none;
}

.arena5-woocommerce .woocommerce-breadcrumb a:hover,
.arena5-woocommerce .woocommerce-breadcrumb a:focus-visible,
.arena5-shop-breadcrumb a:hover,
.arena5-shop-breadcrumb a:focus-visible {
	border-color: rgba(53, 212, 255, 0.28);
	color: var(--arena5-cyan);
}

.arena5-breadcrumb-separator {
	color: rgba(154, 168, 187, 0.62);
}

.arena5-woocommerce .woocommerce-products-header {
	margin-block: 0 clamp(22px, 3vw, 34px);
}

.arena5-woocommerce .woocommerce-products-header__title {
	margin: 0;
	color: var(--arena5-text);
	font-size: clamp(2.15rem, 4.6vw, 5rem);
	font-weight: 950;
	line-height: 1.04;
	letter-spacing: 0;
}

.arena5-woocommerce .term-description,
.arena5-woocommerce .page-description {
	max-width: 760px;
	margin: 12px 0 0;
	color: var(--arena5-muted);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.7;
}

.arena5-woocommerce .woocommerce-notices-wrapper {
	margin-top: 12px;
}

.arena5-woocommerce .woocommerce-info,
.arena5-woocommerce .woocommerce-message,
.arena5-woocommerce .woocommerce-error {
	margin-block: 16px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(135deg, rgba(53, 212, 255, 0.08), rgba(44, 124, 255, 0.04)),
		rgba(7, 13, 25, 0.82);
	color: var(--arena5-text);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.arena5-woocommerce .woocommerce-error {
	border-color: rgba(242, 165, 175, 0.26);
}

.arena5-woocommerce .woocommerce-info::before,
.arena5-woocommerce .woocommerce-message::before {
	color: var(--arena5-cyan);
}

.arena5-woocommerce .woocommerce-error::before {
	color: #f2a5af;
}

.arena5-woocommerce .woocommerce-info a,
.arena5-woocommerce .woocommerce-message a,
.arena5-woocommerce .woocommerce-error a {
	color: var(--arena5-cyan);
	font-weight: 900;
}

.arena5-woocommerce input.input-text,
.arena5-woocommerce textarea,
.arena5-woocommerce select,
.arena5-woocommerce .select2-container--default .select2-selection--single {
	min-height: 44px;
	border: 1px solid rgba(53, 212, 255, 0.18);
	border-radius: var(--arena5-radius);
	background: rgba(5, 11, 20, 0.86);
	color: var(--arena5-text);
	font-family: var(--arena5-font-main);
	font-weight: 700;
}

.arena5-woocommerce input.input-text:focus,
.arena5-woocommerce textarea:focus,
.arena5-woocommerce select:focus {
	outline: 2px solid rgba(53, 212, 255, 0.26);
	outline-offset: 2px;
	border-color: rgba(53, 212, 255, 0.42);
}

.arena5-woocommerce label {
	color: var(--arena5-text);
	font-weight: 800;
}

.arena5-woocommerce .button,
.arena5-woocommerce button.button,
.arena5-woocommerce a.button,
.arena5-woocommerce input.button {
	border: 1px solid rgba(53, 212, 255, 0.3);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(180deg, rgba(83, 156, 255, 0.95), var(--arena5-blue-strong));
	color: #ffffff;
	font-family: var(--arena5-font-main);
	font-weight: 900;
	line-height: 1.1;
}

.arena5-woocommerce .button:hover,
.arena5-woocommerce button.button:hover,
.arena5-woocommerce a.button:hover,
.arena5-woocommerce input.button:hover {
	background:
		linear-gradient(180deg, rgba(104, 174, 255, 1), #0b55df);
	color: #ffffff;
}

.arena5-woocommerce .woocommerce form.login,
.arena5-woocommerce .woocommerce form.register,
.arena5-woocommerce .woocommerce form.checkout_coupon,
.arena5-woocommerce .woocommerce-MyAccount-content,
.arena5-woocommerce .woocommerce-cart-form,
.arena5-woocommerce .cart_totals,
.arena5-woocommerce #customer_details,
.arena5-woocommerce #order_review,
.arena5-woocommerce .woocommerce-order,
.arena5-woocommerce .wp-block-woocommerce-cart,
.arena5-woocommerce .wp-block-woocommerce-checkout {
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
		rgba(7, 13, 25, 0.74);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.arena5-woocommerce .woocommerce-MyAccount-content,
.arena5-woocommerce .woocommerce-cart-form,
.arena5-woocommerce .cart_totals,
.arena5-woocommerce #customer_details,
.arena5-woocommerce #order_review,
.arena5-woocommerce .woocommerce-order {
	padding: clamp(16px, 2.2vw, 24px);
}

.arena5-woocommerce table.shop_table {
	border-color: rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	overflow: hidden;
	background: rgba(7, 13, 25, 0.68);
}

.arena5-woocommerce table.shop_table th,
.arena5-woocommerce table.shop_table td {
	border-color: rgba(255, 255, 255, 0.08);
}

.arena5-woocommerce.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	align-items: start;
	gap: 22px;
}

.arena5-woocommerce.woocommerce-cart .woocommerce-notices-wrapper,
.arena5-woocommerce.woocommerce-cart .woocommerce .woocommerce-info,
.arena5-woocommerce.woocommerce-cart .woocommerce .woocommerce-message,
.arena5-woocommerce.woocommerce-cart .woocommerce .woocommerce-error,
.arena5-woocommerce.woocommerce-cart .cart-empty,
.arena5-woocommerce.woocommerce-cart .return-to-shop,
.arena5-woocommerce.woocommerce-cart .cross-sells {
	grid-column: 1 / -1;
}

.arena5-woocommerce.woocommerce-cart .woocommerce-cart-form,
.arena5-woocommerce.woocommerce-cart .cart-collaterals,
.arena5-woocommerce.woocommerce-cart .cart_totals {
	width: 100%;
}

.arena5-woocommerce.woocommerce-cart .woocommerce-cart-form {
	padding: 0;
	overflow: hidden;
}

.arena5-woocommerce.woocommerce-cart .woocommerce-cart-form table.shop_table {
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.arena5-woocommerce.woocommerce-cart .woocommerce-cart-form table.shop_table th {
	padding: 14px 16px;
	color: var(--arena5-muted);
	font-size: 0.88rem;
	font-weight: 900;
}

.arena5-woocommerce.woocommerce-cart .woocommerce-cart-form table.shop_table td {
	padding: 16px;
	vertical-align: top;
}

.arena5-woocommerce.woocommerce-cart td.product-thumbnail {
	width: 104px;
}

.arena5-woocommerce.woocommerce-cart td.product-thumbnail img {
	width: 86px;
	height: 86px;
	padding: 6px;
	border: 1px solid rgba(53, 212, 255, 0.12);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.9);
	object-fit: contain;
}

.arena5-woocommerce.woocommerce-cart td.product-name {
	min-width: 250px;
	color: var(--arena5-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.arena5-woocommerce.woocommerce-cart td.product-name > a {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--arena5-text);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.35;
}

.arena5-woocommerce.woocommerce-cart td.product-name .variation {
	display: grid;
	gap: 3px;
	margin: 8px 0 0;
	padding: 10px 12px;
	border: 1px solid rgba(53, 212, 255, 0.1);
	border-radius: var(--arena5-radius);
	background: rgba(255, 255, 255, 0.025);
}

.arena5-woocommerce.woocommerce-cart td.product-name .variation dt,
.arena5-woocommerce.woocommerce-cart td.product-name .variation dd {
	margin: 0;
}

.arena5-woocommerce.woocommerce-cart td.product-price,
.arena5-woocommerce.woocommerce-cart td.product-subtotal {
	color: var(--arena5-cyan);
	font-weight: 900;
	white-space: nowrap;
}

.arena5-woocommerce.woocommerce-cart td.product-quantity .quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.arena5-woocommerce.woocommerce-cart td.product-remove {
	width: 54px;
	text-align: center;
}

.arena5-woocommerce.woocommerce-cart td.product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--arena5-muted) !important;
	font-size: 1.3rem;
	line-height: 1;
	text-decoration: none;
}

.arena5-woocommerce.woocommerce-cart td.product-remove a.remove:hover {
	border-color: rgba(255, 99, 132, 0.28);
	background: rgba(255, 99, 132, 0.1);
	color: #ff8fa3 !important;
}

.arena5-woocommerce.woocommerce-cart td.actions {
	padding: 16px;
	background: rgba(255, 255, 255, 0.018);
}

.arena5-woocommerce.woocommerce-cart td.actions .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.arena5-woocommerce.woocommerce-cart td.actions .coupon .input-text {
	min-width: 220px;
}

.arena5-woocommerce.woocommerce-cart .cart-collaterals {
	display: block;
}

.arena5-woocommerce.woocommerce-cart .cart_totals {
	float: none;
	position: sticky;
	top: 86px;
}

.arena5-woocommerce.woocommerce-cart .cart_totals h2 {
	margin: 0 0 14px;
	color: var(--arena5-text);
	font-size: 1.35rem;
	font-weight: 900;
}

.arena5-woocommerce.woocommerce-cart .cart_totals table.shop_table {
	margin-bottom: 16px;
	background: transparent;
}

.arena5-woocommerce.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0;
}

.arena5-woocommerce.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	margin: 0;
	padding: 16px 18px;
	font-size: 1.03rem;
}

.arena5-woocommerce.woocommerce-cart .cart-empty,
.arena5-woocommerce.woocommerce-cart .return-to-shop,
.arena5-woocommerce.woocommerce-cart .cross-sells {
	text-align: center;
}

.arena5-woocommerce.woocommerce-cart .cart-empty {
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
		rgba(7, 13, 25, 0.74);
	color: var(--arena5-muted);
	font-size: 1.08rem;
	font-weight: 800;
}

.arena5-woocommerce.woocommerce-cart .return-to-shop {
	margin-top: -10px;
}

.arena5-woocommerce.woocommerce-cart .cross-sells {
	margin-top: 12px;
}

.arena5-woocommerce.woocommerce-cart .cross-sells h2 {
	margin: 0 0 18px;
	color: var(--arena5-text);
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	font-weight: 900;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products::before,
.arena5-woocommerce.woocommerce-cart .cross-sells ul.products::after {
	display: none;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product {
	float: none;
	width: 100% !important;
	margin: 0;
	padding: 0 0 14px;
	border: 1px solid rgba(53, 212, 255, 0.14);
	border-radius: var(--arena5-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
		rgba(7, 13, 25, 0.74);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
	overflow: hidden;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product:hover {
	border-color: rgba(53, 212, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product a {
	color: inherit;
	text-decoration: none;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	margin: 0;
	padding: 16px;
	background:
		radial-gradient(circle at 50% 40%, rgba(53, 212, 255, 0.12), transparent 48%),
		rgba(255, 255, 255, 0.035);
	object-fit: contain;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
	min-height: 3.1em;
	margin: 0;
	padding: 14px 14px 6px;
	color: var(--arena5-text);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product .price {
	display: block;
	margin: 0;
	padding: 0 14px 14px;
	color: var(--arena5-cyan);
	font-weight: 900;
}

.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin: 0 14px;
	padding: 9px 12px;
	border: 1px solid rgba(53, 212, 255, 0.22);
	border-radius: var(--arena5-radius);
	background: rgba(53, 212, 255, 0.08);
	color: var(--arena5-text);
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.arena5-entry {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.arena5-entry__content {
	margin-top: clamp(18px, 3vw, 28px);
}

.arena5-entry__content a {
	color: var(--arena5-cyan);
	font-weight: 800;
}

.arena5-team-orders__hero {
	background:
		radial-gradient(circle at 18% 24%, rgba(53, 212, 255, 0.12), transparent 30%),
		radial-gradient(circle at 84% 12%, rgba(44, 124, 255, 0.16), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 54%);
}

.arena5-team-orders__catalog {
	padding-top: 26px;
}

html.theme-day .arena5-page-title-card,
html.theme-day .arena5-entry__header,
html.theme-day .arena5-woocommerce .woocommerce-products-header,
html.theme-day .arena5-shop-hero__content,
html.theme-day body.single-product.arena5-woocommerce div.product .summary .product_title,
html.theme-day .arena5-woocommerce .woocommerce-breadcrumb a,
html.theme-day .arena5-shop-breadcrumb a,
html.theme-day .arena5-breadcrumb-current,
html.theme-day .arena5-woocommerce .woocommerce-info,
html.theme-day .arena5-woocommerce .woocommerce-message,
html.theme-day .arena5-woocommerce .woocommerce-error,
html.theme-day .arena5-woocommerce .woocommerce form.login,
html.theme-day .arena5-woocommerce .woocommerce form.register,
html.theme-day .arena5-woocommerce .woocommerce form.checkout_coupon,
html.theme-day .arena5-woocommerce .woocommerce-MyAccount-content,
html.theme-day .arena5-woocommerce .woocommerce-cart-form,
html.theme-day .arena5-woocommerce .cart_totals,
html.theme-day .arena5-woocommerce #customer_details,
html.theme-day .arena5-woocommerce #order_review,
html.theme-day .arena5-woocommerce .woocommerce-order,
html.theme-day .arena5-woocommerce .wp-block-woocommerce-cart,
html.theme-day .arena5-woocommerce .wp-block-woocommerce-checkout {
	border-color: rgba(15, 98, 254, 0.13);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.86)),
		#ffffff;
	box-shadow: 0 18px 50px rgba(29, 84, 150, 0.12);
}

html.theme-day .arena5-entry {
	border: 0;
	background: transparent;
	box-shadow: none;
}

html.theme-day .arena5-woocommerce input.input-text,
html.theme-day .arena5-woocommerce textarea,
html.theme-day .arena5-woocommerce select,
html.theme-day .arena5-woocommerce .select2-container--default .select2-selection--single {
	border-color: rgba(15, 98, 254, 0.16);
	background: rgba(255, 255, 255, 0.92);
	color: var(--arena5-text);
}

html.theme-day .arena5-woocommerce .woocommerce-breadcrumb a:hover,
html.theme-day .arena5-woocommerce .woocommerce-breadcrumb a:focus-visible,
html.theme-day .arena5-shop-breadcrumb a:hover,
html.theme-day .arena5-shop-breadcrumb a:focus-visible,
html.theme-day .arena5-entry__content a {
	color: var(--arena5-blue);
}

html.theme-day .arena5-team-orders__hero {
	background:
		radial-gradient(circle at 18% 24%, rgba(15, 98, 254, 0.1), transparent 30%),
		radial-gradient(circle at 84% 12%, rgba(53, 212, 255, 0.14), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 54%);
}

@media (max-width: 760px) {
	.arena5-woocommerce .woocommerce-breadcrumb {
		margin-top: 8px;
		font-size: 0.8rem;
	}

	.arena5-woocommerce .woocommerce-products-header {
		padding-block: 22px 18px;
	}

	.arena5-woocommerce .woocommerce-products-header__title {
		font-size: clamp(1.9rem, 8vw, 2.8rem);
	}

	.arena5-woocommerce .term-description,
	.arena5-woocommerce .page-description {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.arena5-woocommerce .woocommerce-cart-form,
	.arena5-woocommerce .cart_totals,
	.arena5-woocommerce #customer_details,
	.arena5-woocommerce #order_review,
	.arena5-woocommerce .woocommerce-order {
		padding: 14px;
	}

	.arena5-woocommerce.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.arena5-woocommerce.woocommerce-cart .cart_totals {
		position: static;
	}

	.arena5-woocommerce.woocommerce-cart .woocommerce-cart-form {
		padding: 0;
		overflow-x: auto;
	}

	.arena5-woocommerce.woocommerce-cart .woocommerce-cart-form table.shop_table {
		min-width: 680px;
	}

	.arena5-woocommerce.woocommerce-cart td.product-name {
		min-width: 220px;
	}

	.arena5-woocommerce.woocommerce-cart .cross-sells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.arena5-woocommerce.woocommerce-cart .cross-sells ul.products li.product img {
		padding: 10px;
	}

	.arena5-mini-cart-drawer {
		width: min(390px, calc(100vw - 14px));
	}

	.arena5-mini-cart-drawer__footer,
	.arena5-mini-cart-drawer .woocommerce-mini-cart__buttons {
		grid-template-columns: 1fr;
	}
}

/* Team Orders frontend payment links */
.aria5-team-order-manage-shell__roster-row {
	grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr) minmax(240px, 0.9fr);
}

.aria5-team-order-manage-shell__payment-link-tools {
	display: grid;
	justify-items: stretch;
	gap: 8px;
	width: min(100%, 420px);
}

.aria5-team-order-manage-shell__roster-status .aria5-team-order-manage-shell__payment-link-state,
.aria5-team-order-manage-shell__roster-status .aria5-team-order-manage-shell__copy-status,
.aria5-team-order-manage-shell__payment-link-state {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #cbd5e1;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.45;
}

.aria5-team-order-manage-shell__payment-link-form {
	display: grid;
	gap: 8px;
}

.aria5-team-order-manage-shell__payment-link-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 8px;
}

.aria5-team-order-manage-shell__payment-review {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	color: #dbeafe;
	font-size: 0.84rem;
	font-weight: 800;
}

.aria5-team-order-manage-shell__payment-review input {
	width: 16px;
	height: 16px;
	accent-color: #35d4ff;
}

.aria5-team-order-manage-shell__payment-link-field {
	display: grid;
	gap: 5px;
	text-align: start;
}

.aria5-team-order-manage-shell__roster-status .aria5-team-order-manage-shell__payment-link-field span {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #93c5fd;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.aria5-team-order-manage-shell__payment-link-field input {
	width: 100%;
	min-height: 38px;
	box-sizing: border-box;
	border: 1px solid rgba(53, 212, 255, 0.24);
	border-radius: 8px;
	background: rgba(2, 6, 23, 0.58);
	color: #f8fafc;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 7px 9px;
	direction: ltr;
	text-align: left;
}

.aria5-team-order-manage-shell__payment-link-tools .aria5-team-order-manage-shell__button {
	width: 100%;
	min-height: 38px;
	padding: 8px 12px;
	font-size: 0.84rem;
}

@media (max-width: 760px) {
	.aria5-team-order-manage-shell__roster-row {
		grid-template-columns: 1fr;
	}

	.aria5-team-order-manage-shell__payment-link-actions {
		grid-template-columns: 1fr;
	}

	.aria5-team-order-manage-shell__payment-link-tools {
		width: 100%;
	}

	.aria5-team-order-manage-shell__payment-review {
		justify-content: flex-start;
	}
}

/* Mobile header two-row cleanup */
@media (max-width: 900px) {
	.arena5-site-header__inner {
		display: grid;
		grid-template-areas:
			"brand actions"
			"nav nav";
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px 12px;
		min-height: 0;
		padding-block: 8px;
	}

	.arena5-brand {
		grid-area: brand;
	}

	.arena5-brand__logo {
		max-width: 168px;
		max-height: 48px;
	}

	.arena5-header-actions {
		grid-area: actions;
		justify-content: flex-end;
		min-width: 0;
	}

	.arena5-header-link--account {
		display: inline-flex;
	}

	.arena5-mobile-menu-toggle {
		display: none;
	}

	.arena5-primary-nav {
		display: block;
		grid-area: nav;
		justify-self: stretch;
		min-width: 0;
		overflow-x: auto;
		padding-block-start: 2px;
	}

	.arena5-primary-nav .arena5-nav-menu {
		flex-wrap: nowrap;
		gap: 6px;
		justify-content: flex-start;
		overflow-x: auto;
		padding-block-end: 2px;
	}

	.arena5-primary-nav .arena5-nav-menu a {
		min-height: 34px;
		padding: 6px 10px;
		font-size: 0.84rem;
	}
}

@media (max-width: 520px) {
	.arena5-site-header__inner {
		gap: 7px 10px;
	}

	.arena5-brand__logo {
		max-width: 148px;
		max-height: 44px;
	}

	.arena5-header-actions .arena5-theme-toggle,
	.arena5-header-actions .arena5-header-cart-trigger,
	.arena5-header-actions > .arena5-button {
		display: none;
	}

	.arena5-header-link--account {
		min-height: 36px;
		padding-inline: 11px;
		font-size: 0.88rem;
	}
}

/* ============================================================
   Header dropdown + static content pages (About/FAQ/Terms/etc.)
   ============================================================ */
.arena5-has-submenu { position: relative; }
.arena5-nav-menu .arena5-submenu {
	position: absolute;
	inset-inline-start: 0;
	top: 100%;
	min-width: 220px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--arena5-panel);
	border: 1px solid var(--arena5-border);
	border-radius: var(--arena5-radius);
	box-shadow: var(--arena5-card-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
	z-index: 60;
}
.arena5-has-submenu:hover .arena5-submenu,
.arena5-has-submenu:focus-within .arena5-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.arena5-nav-menu .arena5-submenu li { margin: 0; }
.arena5-nav-menu .arena5-submenu a {
	display: block;
	padding: 8px 12px;
	border-radius: calc(var(--arena5-radius) - 4px);
	white-space: nowrap;
}
.arena5-nav-menu .arena5-submenu a:hover { background: var(--arena5-panel-soft); }
.arena5-submenu-caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-inline-start: 6px;
	border-inline-start: 4px solid transparent;
	border-inline-end: 4px solid transparent;
	border-top: 5px solid currentColor;
	vertical-align: middle;
	opacity: 0.7;
}
.arena5-mobile-subnav {
	list-style: none;
	margin: 4px 0 0;
	padding-inline-start: 14px;
}
.arena5-mobile-subnav li { margin: 0; }
.arena5-mobile-subnav a {
	display: block;
	padding: 8px 0;
	opacity: 0.85;
	font-size: 0.95em;
}

.arena5-content-page__body > * + * { margin-top: 1rem; }
.arena5-content-page__h2 { margin-top: 1.85rem; }
.arena5-content-page__h3 { margin-top: 1.25rem; }
.arena5-content-page__list { padding-inline-start: 1.25rem; }
.arena5-content-page__list li { margin-top: 0.4rem; }
.arena5-content-cta { margin-top: 1.85rem; }

.arena5-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.arena5-faq-item {
	padding: 16px 18px;
	background: var(--arena5-panel);
	border: 1px solid var(--arena5-border);
	border-radius: var(--arena5-radius);
}
.arena5-faq-item__q { margin: 0 0 0.4rem; font-size: 1.05rem; }
.arena5-faq-item__a { margin: 0; color: var(--arena5-muted); }

.arena5-contact-card { margin-top: 1rem; }
.arena5-contact-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.arena5-contact-card__list > li {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: baseline;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--arena5-border);
}
.arena5-contact-card__label {
	min-width: 120px;
	font-weight: 600;
	color: var(--arena5-muted);
}
.arena5-contact-card__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Static content pages: readable typography. Layout follows the standard
   page + category-sidebar grid like the rest of the site. */
.arena5-content-page .arena5-entry__title { margin-bottom: 0.4rem; }
.arena5-content-page__body {
	font-size: 1.02rem;
	line-height: 1.7;
	max-width: 72ch;
}

/* Hero image on static content pages */
.arena5-content-page__figure { margin: 0 0 1.4rem; }
.arena5-content-page__figure img {
	display: block;
	width: 100%;
	max-width: 480px;
	height: auto;
	border-radius: var(--arena5-radius);
	border: 1px solid var(--arena5-border);
}

/* ============================================================
   Slide-out site menu (all viewports) + compact header icons
   Drawer opens from the side opposite the category sidebar:
   LTR (EN/RU) sidebar = left  -> menu opens from the right.
   RTL (HE)    sidebar = right -> menu opens from the left.
   ============================================================ */
.arena5-menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--arena5-border);
	border-radius: 12px;
	background: transparent;
	color: var(--arena5-text);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	cursor: pointer;
}
.arena5-menu-toggle__bars {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 20px;
}
.arena5-menu-toggle__bars span {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}
.arena5-menu-toggle__label { white-space: nowrap; }
.arena5-menu-toggle:hover { border-color: var(--arena5-blue); }

.arena5-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.arena5-header-icon svg { width: 22px; height: 22px; }
.arena5-header-link.arena5-header-icon { width: 44px; height: 44px; padding: 0; }
.arena5-header-link.arena5-header-icon--labeled {
	width: auto;
	height: 44px;
	padding: 0 14px;
	gap: 7px;
	font-size: 0.9rem;
	font-weight: 700;
}
.arena5-header-icon__label { white-space: nowrap; }

.arena5-site-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 98;
	display: block;
	border: 0;
	background: rgba(1, 5, 12, 0.6);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	cursor: pointer;
	transition: opacity 180ms ease, visibility 180ms ease;
}
.arena5-site-menu {
	position: fixed;
	inset-block: 0;
	inset-inline-end: 0;
	z-index: 100;
	width: min(86vw, 340px);
	padding: 10px;
	pointer-events: none;
	transform: translateX(100%);
	transition: transform 220ms ease;
}
html[dir="rtl"] .arena5-site-menu { transform: translateX(-100%); }
.arena5-mobile-menu-open .arena5-site-menu-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.arena5-mobile-menu-open .arena5-site-menu {
	pointer-events: auto;
	transform: translateX(0);
}
html[dir="rtl"] .arena5-mobile-menu-open .arena5-site-menu {
	transform: translateX(0);
}

.arena5-site-menu__panel {
	height: 100%;
	max-height: calc(100dvh - 20px);
	overflow-y: auto;
	padding: 18px;
	border: 1px solid var(--arena5-border);
	border-radius: 18px;
	background: var(--arena5-panel);
	box-shadow: var(--arena5-card-shadow);
}
.arena5-site-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.arena5-site-menu__title {
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--arena5-text);
}
.arena5-site-menu__close {
	position: relative;
	width: 36px;
	height: 36px;
	border: 1px solid var(--arena5-border);
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
}
.arena5-site-menu__close span {
	position: absolute;
	inset-inline-start: 9px;
	inset-block-start: 17px;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: var(--arena5-text);
}
.arena5-site-menu__close span:first-child { transform: rotate(45deg); }
.arena5-site-menu__close span:last-child { transform: rotate(-45deg); }
.arena5-site-menu__list {
	list-style: none;
	margin: 0 0 6px;
	padding: 0;
	display: grid;
	gap: 6px;
}
.arena5-site-menu__list a {
	display: block;
	padding: 10px 12px;
	border-radius: 11px;
	border: 1px solid transparent;
	color: var(--arena5-text);
	font-weight: 700;
	text-decoration: none;
}
.arena5-site-menu__list a:hover,
.arena5-site-menu__list a:focus-visible {
	background: var(--arena5-panel-soft);
	border-color: var(--arena5-border);
}
.arena5-site-menu__sublist {
	list-style: none;
	margin: 4px 0;
	padding-inline-start: 12px;
	display: grid;
	gap: 4px;
}
.arena5-site-menu__sublist a { font-weight: 600; font-size: 0.95em; opacity: 0.92; }
.arena5-site-menu__heading {
	margin: 14px 0 8px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--arena5-muted);
}

/* ===== ARENA5 CHECKOUT/CART READABILITY (2026-07-06) START =====
   Night: WooCommerce table text (order review, cart items, item meta) sat on
   the muted grey token and was hard to read on the dark panels — values now
   use the main text token, column headers stay muted.
   Day: table.shop_table kept the Night dark background inside the white
   panels (owner-reported dark box on the checkout page) — light background
   and borders under html.theme-day. Purely additive block. */

.arena5-woocommerce table.shop_table {
	color: var(--arena5-text);
}

.arena5-woocommerce table.shop_table thead th {
	color: var(--arena5-muted);
}

.arena5-woocommerce #ship-to-different-address,
.arena5-woocommerce .woocommerce-billing-fields > h3,
.arena5-woocommerce .woocommerce-shipping-fields > h3,
.arena5-woocommerce #order_review_heading {
	color: var(--arena5-text);
}

html.theme-day .arena5-woocommerce table.shop_table {
	background: rgba(255, 255, 255, 0.92);
}

html.theme-day .arena5-woocommerce table.shop_table th,
html.theme-day .arena5-woocommerce table.shop_table td {
	border-color: rgba(7, 20, 38, 0.08);
}

/* The ARIA5 print item meta family is hardcoded dark (#111827/#1f2933/...,
   built for the light cart page) — invisible in the Night order tables.
   Same fix the mini-cart drawer already uses; the tokens resolve dark
   again in Day. */
.arena5-woocommerce table.shop_table .aria5-print-cart-meta-inline,
.arena5-woocommerce table.shop_table .aria5-print-cart-meta-label,
.arena5-woocommerce table.shop_table .aria5-print-cart-meta-value,
.arena5-woocommerce table.shop_table .aria5-print-cart-meta-text,
.arena5-woocommerce table.shop_table .aria5-print-cart-meta-price {
	color: var(--arena5-text);
}

.arena5-woocommerce table.shop_table .aria5-print-cart-meta-bullet,
.arena5-woocommerce table.shop_table .aria5-print-cart-meta-note {
	color: var(--arena5-muted);
}

/* The CART page uses the WooCommerce BLOCKS cart (.wp-block-woocommerce-cart),
   not table.shop_table — same hardcoded-dark ARIA5 meta problem there
   (owner-reported grey text in Night). Same token-based fix. */
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-meta-inline,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-meta-label,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-meta-value,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-meta-text,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-meta-price,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-preview-zone {
	color: var(--arena5-text);
}

.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-meta-bullet,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-meta-note,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-preview-filename,
.arena5-woocommerce .wp-block-woocommerce-cart .aria5-print-cart-preview-status {
	color: var(--arena5-muted);
}

/* ===== ARENA5 CHECKOUT/CART READABILITY END ===== */
