/* Shaer Silver — Sticky top bar (visible on every page, stays on scroll) */

.shsl-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #0a0806;
	border-bottom: 1px solid rgba(201,162,39,.25);
	font-family: 'Vazirmatn', 'Tajawal', sans-serif;
}

.shsl-topbar__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 9px 16px;
	flex-wrap: wrap;
}

.shsl-topbar__link {
	color: #d8d1c2;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease;
	position: relative;
}
.shsl-topbar__link:hover {
	color: #efd696;
}
.shsl-topbar__link:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -14px;
	width: 1px;
	height: 12px;
	background: rgba(201,162,39,.3);
}

/* Push page content down so the theme header isn't hidden underneath. */
body.shsl-has-topbar {
	padding-top: 38px !important;
}
body.shsl-has-topbar .wpadminbar ~ * {
	/* no-op placeholder kept for future theme-specific overrides */
}

@media (max-width: 600px) {
	.shsl-topbar__inner { gap: 16px; padding: 8px 10px; }
	.shsl-topbar__link { font-size: 11.5px; }
	.shsl-topbar__link:not(:last-child)::after { left: -8px; height: 10px; }
	body.shsl-has-topbar { padding-top: 34px !important; }
}
