.pkhb-header {
	--pkhb-hd-accent: #f6b100;
	--pkhb-hd-text: #1f2733;
	--pkhb-hd-muted: #8a92a0;
	--pkhb-hd-border: #e7eaef;
	--pkhb-hd-bg: #ffffff;
	background: var(--pkhb-hd-bg);
	border-bottom: 1px solid var(--pkhb-hd-border);
}

.pkhb-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 14px 24px;
}

.pkhb-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	text-decoration: none;
}

.pkhb-header__logo img {
	height: 38px;
	width: auto;
	max-width: none;
}

.pkhb-header__logo-mark {
	display: flex;
	align-items: center;
}

.pkhb-header__logo-text {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--pkhb-hd-accent);
}

.pkhb-header__search {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}

.pkhb-header__search input[type="search"] {
	width: 100%;
	height: 46px;
	padding: 0 46px 0 18px;
	border: 1px solid var(--pkhb-hd-accent);
	border-radius: 8px;
	background: #fff;
	font-size: 15px;
	color: var(--pkhb-hd-text);
	box-shadow: none;
}

.pkhb-header__search input[type="search"]:focus {
	outline: none;
	border-color: var(--pkhb-hd-accent);
	box-shadow: 0 0 0 3px rgba(246, 177, 0, 0.18);
}

.pkhb-header__search input[type="search"]::placeholder {
	color: var(--pkhb-hd-muted);
}

.pkhb-header__search button {
	position: absolute;
	right: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 6px;
	background: none;
	color: var(--pkhb-hd-muted);
	cursor: pointer;
	transition: color 0.2s ease;
}

.pkhb-header__search button:hover {
	color: var(--pkhb-hd-accent);
}

.pkhb-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 0 auto;
}

.pkhb-header__action {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	color: var(--pkhb-hd-text);
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
}

.pkhb-header__action:hover {
	color: var(--pkhb-hd-accent);
	background: rgba(246, 177, 0, 0.1);
}

.pkhb-header__badge {
	display: none;
}

.pkhb-header__badge.is-filled {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--pkhb-hd-accent);
	color: #1a1300;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

@media (max-width: 900px) {
	.pkhb-header__inner {
		flex-wrap: wrap;
		gap: 14px;
		padding: 12px 16px;
	}
	.pkhb-header__search {
		order: 3;
		flex-basis: 100%;
	}
	.pkhb-header__actions {
		margin-left: auto;
		gap: 8px;
	}
	.pkhb-header__search input[type="search"] {
		height: 42px;
	}
}
