/* Arama otomatik tamamlama açılır listesi (assets/js/search-autocomplete.js).
   `.dga-search-autocomplete-anchor` — JS tarafından, [data-dga-autocomplete="product"]
   işaretli HER arama kutusunun (header, mağaza filtre paneli, parça bulucu SKU arama)
   kendi ebeveynine dinamik eklenir; tek bir CSS tanımı üç bağlamda da çalışır.
   Token kullanımı zorunlu — ham hex/px yok (01-TASARIM-SISTEMI.md kuralı). */

.dga-search-autocomplete-anchor {
	position: relative;
}

.dga-search-suggest {
	position: absolute;
	top: calc(100% + var(--space-1));
	left: 0;
	right: 0;
	min-width: 320px;
	max-height: 400px;
	overflow-y: auto;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
	z-index: 60;
}

.dga-search-suggest__item {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-1) var(--space-2);
	text-decoration: none;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-border);
}
.dga-search-suggest__item:last-child { border-bottom: none; }

.dga-search-suggest__item:hover,
.dga-search-suggest__item.is-active {
	background: var(--color-surface-alt);
	color: var(--color-primary);
}

.dga-search-suggest__img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--color-surface-alt);
}

.dga-search-suggest__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.dga-search-suggest__name {
	font-size: 13px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dga-search-suggest__price {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--color-text-muted);
}
.dga-search-suggest__item.is-active .dga-search-suggest__price,
.dga-search-suggest__item:hover .dga-search-suggest__price {
	color: var(--color-primary);
}

@media (max-width: 1023.98px) {
	.dga-search-suggest {
		position: fixed;
		top: auto;
		left: var(--gutter-mobile);
		right: var(--gutter-mobile);
	}
}
