/**
 * Poliottica Search - Autocomplete styles.
 * Minimal / luxury. Tutte le property sono facilmente sovrascrivibili.
 */

.poliottica-ac-wrap {
	position: relative;
	display: block;
}

.poliottica-ac-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-top: none;
	box-shadow: 0 8px 24px rgba( 0, 0, 0, 0.08 );
	max-height: 480px;
	overflow-y: auto;
	font-family: inherit;
}

.poliottica-ac-empty {
	padding: 16px;
	color: #666;
	font-size: 14px;
	text-align: center;
}

.poliottica-ac-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.poliottica-ac-item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f0f0f0;
}

.poliottica-ac-item:last-child {
	border-bottom: none;
}

.poliottica-ac-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	color: #1a1a1a;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.poliottica-ac-link:hover,
.poliottica-ac-link:focus {
	background: #fafafa;
	text-decoration: none;
	color: inherit;
}

.poliottica-ac-thumb {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	overflow: hidden;
}

.poliottica-ac-thumb img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
}

.poliottica-ac-thumb--empty {
	background: #eee;
}

.poliottica-ac-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.poliottica-ac-brand {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #666;
	line-height: 1.2;
}

.poliottica-ac-title {
	font-size: 14px;
	font-weight: 500;
	color: #111;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.poliottica-ac-price {
	font-size: 13px;
	color: #111;
	font-weight: 600;
	margin-top: 2px;
}

.poliottica-ac-price del {
	font-weight: 400;
	color: #999;
	margin-right: 4px;
}

.poliottica-ac-stock {
	font-size: 11px;
	color: #c00;
	font-weight: 500;
}

.poliottica-ac-stock--onbackorder {
	color: #b87100;
}

.poliottica-ac-viewall {
	display: block;
	padding: 10px 14px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
	background: #fafafa;
	border-top: 1px solid #eee;
}

.poliottica-ac-viewall:hover {
	background: #f0f0f0;
	text-decoration: none;
}

.poliottica-ac-dropdown mark {
	background: transparent;
	color: inherit;
	font-weight: 700;
}
