.elementor-widget-bazokala-product-search,
.elementor-widget-bazokala-product-search > .elementor-widget-container {
	overflow: visible;
}

.bzk-product-search__wrapper {
	position: relative;
	max-width: 100%;
	direction: rtl;
}

.bzk-product-search {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	padding: 0;
	overflow: hidden;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bzk-search-button-left .bzk-product-search {
	direction: rtl;
}

.bzk-search-button-right .bzk-product-search {
	direction: ltr;
}

.bzk-product-search__input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 100%;
	margin: 0;
	font: inherit;
	background: transparent;
	border: 0;
	border-radius: 0;
	outline: 0;
	box-shadow: none;
	direction: rtl;
	text-align: right;
	-webkit-appearance: none;
	appearance: none;
}

.bzk-product-search__input:hover,
.bzk-product-search__input:focus {
	background: transparent;
	border: 0;
	outline: 0;
	box-shadow: none;
}

.bzk-product-search__input::-webkit-search-decoration,
.bzk-product-search__input::-webkit-search-cancel-button,
.bzk-product-search__input::-webkit-search-results-button,
.bzk-product-search__input::-webkit-search-results-decoration {
	display: none;
}

.bzk-product-search__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	flex: 0 0 auto;
	height: 100%;
	margin: 0;
	padding: 0;
	font: inherit;
	border: 0;
	outline: 0;
	box-shadow: none;
	cursor: pointer;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.bzk-product-search__button:hover,
.bzk-product-search__button:focus,
.bzk-product-search__button:focus-visible {
	border: 0;
	outline: 0;
	box-shadow: none;
}

.bzk-product-search__button svg {
	display: block;
	height: 1em;
	width: 1em;
}

.bzk-product-search__button i {
	display: block;
	line-height: 1;
}

.bzk-product-search__results[hidden] {
	display: none !important;
}

.bzk-product-search__results {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	max-height: 420px;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e5eaf2;
	border-radius: 12px;
	box-shadow: 0 12px 35px rgba(16, 36, 82, 0.12);
	direction: rtl;
	text-align: right;
	box-sizing: border-box;
	overscroll-behavior: contain;
}

.bzk-product-search__results-list {
	display: flex;
	flex-direction: column;
}

.bzk-product-search__result-item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px 12px;
	color: inherit;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #eef1f5;
	border-radius: 0;
	text-decoration: none !important;
	box-sizing: border-box;
	transition: background-color 0.18s ease;
}

.bzk-product-search__result-item:last-child {
	border-bottom: 0;
}

.bzk-product-search__result-item:hover,
.bzk-product-search__result-item:focus {
	background: #f5f8fd;
	outline: 0;
	text-decoration: none;
}

.bzk-product-search__result-image {
	display: block;
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	margin: 0;
	object-fit: cover;
	border-radius: 8px;
}

.bzk-product-search__result-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	min-width: 0;
}

.bzk-product-search__result-title {
	display: block;
	width: 100%;
	overflow: hidden;
	color: #1c1c1c;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	text-align: right;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bzk-product-search__result-price {
	display: block;
	color: #192f68;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
	text-align: right;
}

.bzk-product-search__result-price del {
	margin-inline-end: 5px;
	opacity: 0.55;
}

.bzk-product-search__result-price ins {
	background: transparent;
	text-decoration: none;
}

.bzk-product-search__status {
	position: relative;
	padding: 18px 16px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.8;
	text-align: center;
}

.bzk-product-search__status--loading {
	padding-top: 45px;
}

.bzk-product-search__status--loading::before {
	position: absolute;
	top: 15px;
	left: calc(50% - 10px);
	width: 20px;
	height: 20px;
	border: 2px solid #dbe4f2;
	border-top-color: #192f68;
	border-radius: 50%;
	content: '';
	animation: bzk-search-spin 0.75s linear infinite;
}

.bzk-product-search__view-all {
	display: block;
	width: 100%;
	padding: 11px 14px;
	color: #192f68;
	background: #f7f9fc;
	border-top: 1px solid #e5eaf2;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
	text-decoration: none !important;
	box-sizing: border-box;
}

.bzk-product-search__view-all:hover,
.bzk-product-search__view-all:focus {
	color: #102452;
	text-decoration: none;
}

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

@media (max-width: 767px) {
	.bzk-product-search__wrapper--mobile-design .bzk-product-search {
		min-height: 72px;
		background: #f1f5fa;
		border: 0 !important;
		border-radius: 18px;
		box-shadow: none !important;
		direction: rtl !important;
	}
	.bzk-product-search__wrapper--mobile-design .bzk-product-search__input {
		order: 1;
		padding: 0 18px 0 8px;
		color: #8e8e8e;
		font-family: "Yekan Bakh","YekanBakh",Tahoma,sans-serif;
		font-size: 18px;
		font-weight: 700;
		text-align: center;
	}
	.bzk-product-search__wrapper--mobile-design .bzk-product-search__button {
		order: 2;
		width: 58px !important;
		min-width: 58px !important;
		color: #8d8d8d !important;
		background: transparent !important;
		font-size: 28px;
	}
	.bzk-product-search__results {
		max-height: min(60vh, 360px);
	}

	.bzk-product-search__result-item {
		gap: 9px;
	}

	.bzk-product-search__result-image {
		width: 52px;
		height: 52px;
	}

	.bzk-product-search__result-title {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bzk-product-search,
	.bzk-product-search__button,
	.bzk-product-search__result-item {
		transition: none;
	}

	.bzk-product-search__status--loading::before {
		animation-duration: 1.5s;
	}
}
