.belzap-search-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	max-height: 520px;
	overflow-y: auto;
	font-size: 13px;
	line-height: 1.4;
}

.bz-section { border-bottom: 1px solid #f0f0f0; }
.bz-section:last-of-type { border-bottom: none; }

.bz-section-title {
	padding: 8px 14px 4px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	color: #999;
	letter-spacing: .5px;
}

.bz-cat-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 14px;
	color: #333;
	text-decoration: none;
	transition: background .15s;
}
.bz-cat-item:hover { background: #f5f7fa; color: #333; text-decoration: none; }

.bz-cat-count {
	font-size: 11px;
	color: #999;
	background: #f0f0f0;
	border-radius: 10px;
	padding: 1px 7px;
	min-width: 24px;
	text-align: center;
}

.bz-product-item {
	display: flex;
	align-items: center;
	padding: 8px 14px;
	color: #333;
	text-decoration: none;
	transition: background .15s;
	gap: 10px;
}
.bz-product-item:hover { background: #f5f7fa; color: #333; text-decoration: none; }
.bz-product-item.bz-out-of-stock { opacity: .65; }

.bz-thumb {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 4px;
	flex-shrink: 0;
	background: #fafafa;
}

.bz-info { flex: 1; min-width: 0; }

.bz-name {
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bz-name mark { background: #fff3cd; padding: 0 1px; border-radius: 2px; }

.bz-meta { display: flex; gap: 8px; margin-top: 2px; }

.bz-model {
	font-size: 11px;
	color: #888;
	font-family: monospace;
}

.bz-category {
	font-size: 11px;
	color: #aaa;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 140px;
}

.bz-price-col {
	flex-shrink: 0;
	text-align: right;
	min-width: 90px;
}

.bz-price {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
}

.bz-stock {
	display: block;
	font-size: 10px;
	margin-top: 2px;
}
.bz-stock.bz-in { color: #28a745; }
.bz-stock.bz-out { color: #dc3545; }

.bz-show-all {
	display: block;
	text-align: center;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 500;
	color: #007bff;
	text-decoration: none;
	border-top: 1px solid #f0f0f0;
	transition: background .15s;
}
.bz-show-all:hover { background: #f5f7fa; text-decoration: none; }

.bz-no-results {
	padding: 20px 14px;
	text-align: center;
	color: #999;
	font-size: 13px;
}

.bz-loading {
	padding: 16px 14px;
	text-align: center;
	color: #888;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.bz-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid #e0e0e0;
	border-top-color: #007bff;
	border-radius: 50%;
	animation: bz-spin .6s linear infinite;
}

@keyframes bz-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
	.belzap-search-dropdown {
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		max-height: 70vh;
		border-radius: 12px 12px 0 0;
		border: none;
		box-shadow: 0 -4px 24px rgba(0,0,0,.15);
	}
}
