header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(12px);
	border-bottom: 0 solid var(--border);
}

.nav {
	max-width: 1200px;
	margin: 20px auto;
	height: 72px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
/*
.nav {
	max-width: 1200px;
	margin: 0 auto;
	height: 72px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
*/

.nav .brand {
	display: flex;
	margin: auto 0;
	height: 100%;
}

.nav .brand img {
	height: 200%;
}

.logo {
	font-size: 1.45rem;
	font-weight: 800;
	color: var(--text);
	text-decoration: none;
}

.logo span {
	color: var(--primary);
}

nav {
	display: flex;
	gap: 25px;
}

nav a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.95rem;
}

nav a:hover {
	color: var(--primary);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.language-switch {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 700;
}

.language-switch a {
	color: var(--muted);
	text-decoration: none;
}

.language-switch a:hover,
.language-switch a.active {
	color: var(--primary);
}

.language-switch span {
	color: var(--border);
}

.cart-button {
	border: 0;
	background: var(--text);
	color: white;
	border-radius: 999px;
	padding: 10px 17px;
	font-weight: 700;
}