/**
 * Buscador de productos AJAX (reemplaza al plugin Ajax Search Lite).
 * Estilo propio, limpio, con el verde de acento del tema (#4da92c).
 */
.ozado-search {
	position: relative;
	width: 100%;
	max-width: 420px;
}
.ozado-search-form {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin: 0;
	background: #fff;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	overflow: visible;
}
.ozado-search-input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	outline: none;
	padding: 10px 14px;
	font-size: 15px;
	line-height: 1.3;
	color: #333;
	background: transparent;
	box-shadow: none;
	border-radius: 4px 0 0 4px;
}
.ozado-search-input::placeholder {
	color: #999;
}
.ozado-search-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: #4da92c;
	border-radius: 0 4px 4px 0;
	transition: background .15s ease;
}
.ozado-search-btn:hover {
	background: #428f25;
}

/* Dropdown de resultados */
.ozado-search-results {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	margin-top: 4px;
	max-height: 70vh;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	text-align: left;
}
.ozado-search-results.is-open {
	display: block;
}
.ozado-search-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.ozado-search-item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f0f0f0;
}
.ozado-search-item:last-child {
	border-bottom: 0;
}
.ozado-search-item > a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	text-decoration: none;
	color: #333;
}
.ozado-search-item > a:hover {
	background: #f6faf3;
}
.ozado-search-thumb {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
}
.ozado-search-thumb img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	display: block;
}
.ozado-search-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.ozado-search-title {
	font-size: 14px;
	line-height: 1.3;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.ozado-search-price {
	font-size: 13px;
	color: #4da92c;
	font-weight: 600;
	margin-top: 2px;
}
.ozado-search-price del {
	color: #999;
	font-weight: 400;
	margin-right: 5px;
}
.ozado-search-all {
	display: block;
	padding: 11px 12px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: #4da92c;
}
.ozado-search-all:hover {
	background: #428f25;
	color: #fff;
}
.ozado-search-noresults {
	padding: 16px 14px;
	text-align: center;
	color: #888;
	font-size: 14px;
}

/* Spinner de carga */
.ozado-search-results.is-loading {
	padding: 18px;
	text-align: center;
}
.ozado-search-spinner {
	display: inline-block;
	width: 26px;
	height: 26px;
	border: 3px solid #e0e0e0;
	border-top-color: #4da92c;
	border-radius: 50%;
	animation: ozado-search-spin .8s linear infinite;
}
@keyframes ozado-search-spin {
	100% { transform: rotate(360deg); }
}
