/* ================================================================
   BeamReactor Shop — Top Navigation Bar
   ================================================================ */

.shop-topnav {
	position: sticky;
	top: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0 30px;
	height: 54px;
	background: #111314;
	border-bottom: 2px solid #FFC735;
	box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Brand */
.topnav-brand {
	text-decoration: none;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.topnav-logo {
	height: 32px;
	width: auto;
	display: block;
}

.topnav-shop-label {
	color: #FFC735;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.topnav-sep {
	color: #333;
	font-size: 22px;
	font-weight: 100;
	user-select: none;
}

/* Main links */
.topnav-links {
	display: flex;
	gap: 2px;
	flex: 1;
}

.topnav-links a {
	color: #ccc;
	text-decoration: none;
	padding: 7px 14px;
	border-radius: 4px;
	font-size: 14px;
	transition: color 0.15s, background 0.15s;
}

.topnav-links a:hover {
	color: #FFC735;
	background: rgba(255, 199, 53, 0.08);
}

.topnav-links a.topnav-active {
	color: #FFC735;
	background: rgba(255, 199, 53, 0.12);
	font-weight: 600;
}

/* Right side */
.topnav-right {
	display: flex;
	align-items: center;
	gap: 4px;
}

.topnav-lang {
	color: #666;
	text-decoration: none;
	padding: 4px 7px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.5px;
	transition: color 0.15s;
}

.topnav-lang:hover {
	color: #FFC735;
}

.topnav-lang.topnav-active {
	color: #FFC735;
	border-bottom: 1px solid #FFC735;
}

.topnav-right-sep {
	color: #333;
	margin: 0 4px;
}

.topnav-login {
	color: #1a1a1a;
	background: #FFC735;
	text-decoration: none;
	padding: 6px 16px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: bold;
	margin-left: 8px;
	transition: background 0.15s;
}

.topnav-login:hover {
	background: #E6B330;
}

/* Mobile */
@media (max-width: 900px) {
	.shop-topnav {
		flex-wrap: wrap;
		height: auto;
		padding: 10px 16px;
		gap: 8px;
	}

	.topnav-sep {
		display: none;
	}

	.topnav-links {
		flex-wrap: wrap;
		flex: none;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.topnav-logo {
		height: 26px;
	}

	.topnav-shop-label {
		display: none;
	}
}
