/* HES Hızlı Arama — öneri kutusu
   Temanın kendi görünümüne karışmaz; yalnız arama alanının altına
   kendi listesini çizer. 25.09.2026 */

.hes-ara-kutu {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	z-index: 99999;
	max-height: 70vh;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
	padding: 6px;
	font-size: 14px;
	line-height: 1.35;
	-webkit-overflow-scrolling: touch;
}

.hes-ara-sat {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 8px 10px;
	border-radius: 10px;
	text-decoration: none;
	color: #1d1d1f;
}

.hes-ara-sat:hover,
.hes-ara-sat:focus {
	background: #f4f4f5;
	outline: none;
	color: #1d1d1f;
}

.hes-ara-sat:focus-visible { box-shadow: inset 0 0 0 2px #111; }

/* İlk satır Enter ile gidilecek olan - hafifçe belirgin */
.hes-ara-sat.ilk { background: #fafafa; }

.hes-ara-sat img,
.hes-ara-bos {
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	object-fit: contain;
	border-radius: 8px;
	background: #f2f2f2;
}

.hes-ara-bilgi { flex: 1; min-width: 0; }

.hes-ara-ad {
	display: block;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hes-ara-alt {
	display: block;
	font-size: 12px;
	color: #777;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 1px;
}

.hes-ara-yok { color: #b3261e; font-weight: 700; }

.hes-ara-fiyat {
	flex: 0 0 auto;
	font-weight: 700;
	font-size: 13.5px;
	white-space: nowrap;
	color: #111;
}

.hes-ara-dip {
	padding: 7px 10px 4px;
	font-size: 11.5px;
	color: #9a9a9a;
	text-align: right;
	letter-spacing: .02em;
}

/* Telefonda kutu ekran genişliğine yayılır, satırlar biraz daha ferah */
@media (max-width: 600px) {
	.hes-ara-kutu { border-radius: 12px; max-height: 62vh; }
	.hes-ara-sat { padding: 9px 8px; gap: 9px; }
	.hes-ara-sat img,
	.hes-ara-bos { width: 40px; height: 40px; flex-basis: 40px; }
	.hes-ara-fiyat { font-size: 13px; }
}

.hes-ara-yoksa {
	padding: 18px 14px;
	text-align: center;
	color: #555;
	font-weight: 600;
}
.hes-ara-yoksa span {
	display: block;
	margin-top: 5px;
	font-size: 12.5px;
	font-weight: 500;
	color: #999;
}
.hes-ara-dip {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.hes-ara-dip a {
	color: #111;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.hes-ara-tumu {
	border: 0;
	background: transparent;
	color: #111;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
	border-bottom: 1px solid currentColor;
}
.hes-ara-tumu:hover { opacity: .7; }
