.header-container {
	background-color: rgb(250 250 250 / 0.75);
	backdrop-filter: blur(8px); /* backdrop-blur (common value) */
	border-bottom: 1px solid #e5e7eb; /* border-b border-gray-200 */
	position: sticky;
	top: 0;
	z-index: 50;
	margin-bottom: -1px; /* -mb-px */
}

.header-inner {
	max-width: 100%;
	width: calc(100% - 24px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 12px;
	padding-right: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	height: var(--header-height, 64px);
}
@media (min-width: 1024px) {
	.header-inner {
		width: calc(100% - 12%);
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 1280px) {
	.header-inner {
		width: 1224px;
	}
}

.header-logo-section {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 6px;
}
@media (min-width: 1024px) {
	.header-logo-section {
		flex: 1;
	}
}

.header-logo-link {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	font-weight: 700;
	font-size: 1.25rem;
	color: #000;
	text-decoration: none;
	flex-shrink: 0;
}

.header-logo-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-direction: row-reverse;
}

.header-nav {
	display: none;
	align-items: center;
	gap: 32px;
}
@media (min-width: 1024px) {
	.header-nav {
		display: flex;
	}
}

.header-nav-item {
	position: relative;
	list-style: none;
}

.header-nav-link {
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
}
.header-nav-link:hover {
	color: #6366f1; /* assuming primary color */
}

.header-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
}
@media (min-width: 1024px) {
	.header-right {
		flex: 1;
	}
}

.header-button {
	display: none;
	align-items: center;
	padding: 0.375rem 0.625rem;
	background-color: #111827;
	color: #ffffff;
	font-weight: 500;
	border-radius: 6px;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-button:hover {
	background-color: #374151;
}
@media (min-width: 1024px) {
	.header-button {
		display: flex;
		gap: 5px;
	}
}

.mobile-menu-button {
	display: inline-flex;
	padding: 6px;
	background: none;
	border: none;
	cursor: pointer;
	color: #374151;
}
@media (min-width: 1024px) {
	.mobile-menu-button {
		display: none;
	}
}

.globe-button {
	flex-shrink: 0;
	font-weight: 500;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px;
	border-radius: 6px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: rgb(107, 114, 128); /* text-primary-500 */
	outline: none;
	transition: all 0.2s;
}

.globe-button:hover {
	background-color: rgba(99, 102, 241, 0.1); /* hover:bg-primary-50 */
}

.globe-button:focus-visible {
	box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5); /* focus-visible:ring-primary-500 */
}
