.ssm-global-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.ssm-global-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ssm-global-header__nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	overflow-x: auto;
	padding: 14px 0;
	scrollbar-width: thin;
}

.ssm-global-header__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #f8fafc;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.18s ease, transform 0.18s ease;
	white-space: nowrap;
}

.ssm-global-header__link:hover,
.ssm-global-header__link:focus {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	transform: translateY(-1px);
}

.ssm-global-header__link.is-current {
	background: #f59e0b;
	color: #111827;
}

body.admin-bar .ssm-global-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .ssm-global-header {
		top: 46px;
	}

	.ssm-global-header__inner {
		padding: 0 14px;
	}

	.ssm-global-header__nav {
		gap: 10px;
		padding: 12px 0;
	}
}
