/**
 * Live search dropdown.
 */
.bajsziteszta-search {
	position: relative;
	flex: 1;
	max-width: 360px;
}

.bajsziteszta-search__input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.bajsziteszta-search__input {
	width: 100%;
	padding: 10px 14px 10px 38px;
	border: 1px solid var(--wheat-dark);
	border-radius: 999px;
	background: var(--wheat);
	font-family: inherit;
	font-size: 0.88rem;
	outline: none;
	transition: var(--ease);
}

.bajsziteszta-search__input:focus {
	border-color: var(--forest-light);
	background: var(--white);
	box-shadow: var(--shadow);
}

.bajsziteszta-search__icon {
	position: absolute;
	left: 12px;
	color: var(--ink-muted);
	pointer-events: none;
}

.bajsziteszta-search__dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: var(--white);
	border: 1px solid var(--wheat-dark);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	max-height: 420px;
	overflow: auto;
	z-index: 120;
	display: none;
}

.bajsziteszta-search.is-open .bajsziteszta-search__dropdown {
	display: block;
}

.bajsziteszta-search__status {
	padding: 12px 16px;
	font-size: 0.85rem;
	color: var(--ink-muted);
}

.bajsziteszta-search__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-bottom: 1px solid var(--wheat-dark);
	transition: var(--ease);
}

.bajsziteszta-search__item:last-child {
	border-bottom: none;
}

.bajsziteszta-search__item:hover,
.bajsziteszta-search__item.is-active {
	background: var(--forest-ghost);
}

.bajsziteszta-search__item img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid var(--wheat-dark);
	flex-shrink: 0;
	background: var(--wheat);
}

.bajsziteszta-search__item-body {
	min-width: 0;
	flex: 1;
}

.bajsziteszta-search__item-title {
	font-weight: 700;
	font-size: 0.88rem;
	line-height: 1.3;
	color: var(--ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bajsziteszta-search__item-meta {
	font-size: 0.78rem;
	color: var(--ink-muted);
	margin-top: 2px;
}

.bajsziteszta-search__item-label {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--forest-light);
	flex-shrink: 0;
}

.bajsziteszta-search__footer {
	padding: 10px 14px;
	border-top: 1px solid var(--wheat-dark);
	background: var(--wheat);
}

.bajsziteszta-search__footer a {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--accent);
}

@media (max-width: 960px) {
	.bajsziteszta-search {
		display: none;
	}
}

.mob-nav .bajsziteszta-search {
	display: block;
	max-width: none;
	margin-bottom: 20px;
}

.mob-nav .bajsziteszta-search__dropdown {
	position: static;
	max-height: 240px;
	margin-top: 8px;
}
