.iew-catalog-search {
	position: relative;
	width: 100%;
}

/* ── Toggle mode ─────────────────────────────────────────────────────────── */

.iew-catalog-search--toggle {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.iew-catalog-search .iew-catalog-search__toggle-btn {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #d6d9e3;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	color: #4b556c;
	transition: background 0.2s, color 0.2s;
	padding:0;
}

.iew-catalog-search .iew-catalog-search__toggle-icon {
	width: 20px;
	height: 20px;
}

.iew-catalog-search .iew-catalog-search__toggle-btn:hover {
	background: #f3f5fb;
	color: #1b2340;
}

.iew-catalog-search--toggle .iew-catalog-search__field {
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-width 0.3s ease, opacity 0.2s ease;
	border: 0;
	padding: 0;
}

.iew-catalog-search--toggle.is-toggle-open .iew-catalog-search__field {
	max-width: 400px;
	opacity: 1;
	border: 1px solid #d6d9e3;
	padding: 0 12px;
}

.iew-catalog-search--toggle.is-toggle-open .iew-catalog-search__toggle-btn {
	display: none;
}

.iew-catalog-search.iew-catalog-search--toggle.is-toggle-open .iew-catalog-search__toggle-btn {
display:none;
}

/* ── Input field ─────────────────────────────────────────────────────────── */

.iew-catalog-search__field {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #d6d9e3;
	border-radius: 12px;
	background: #fff;
	padding: 0 12px;
}

.iew-catalog-search__search-icon {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: #94a3b8;
	pointer-events: none;
}

.iew-catalog-search .iew-catalog-search__input {
	flex: 1;
	min-width: 0;
	width: auto !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	color: #1a1a1a;
	font-size: 16px;
	line-height: 1.4;
	padding: 12px 0 !important;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.iew-catalog-search .iew-catalog-search__input:focus,
.iew-catalog-search .iew-catalog-search__input:hover,
.iew-catalog-search .iew-catalog-search__input:active {
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
}

.iew-catalog-search__input::placeholder {
	color: #7b8193;
}

/* ── Clear button ────────────────────────────────────────────────────────── */

.iew-catalog-search .iew-catalog-search__clear {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 50%;
	background: #e8eaf0;
	color: #4b556c;
	cursor: pointer;
	transition: background 0.15s;
	padding: 0;
}

.iew-catalog-search .iew-catalog-search__clear:hover {
	background: #d0d4e0;
}

/* ── Results panel ───────────────────────────────────────────────────────── */

.iew-catalog-search__results {
	position: absolute;
	inset-inline: 0;
	top: calc(100% + 8px);
	z-index: 30;
	border: 1px solid #d6d9e3;
	border-radius: 12px;
	background: #fff;
	max-height: 420px;
	overflow: auto;
	box-shadow: 0 12px 28px rgba(14, 22, 41, 0.12);
}

.iew-catalog-search__status {
	margin: 0;
	padding: 12px 14px;
	font-size: 14px;
	color: #6b7388;
}

/* ── Tabs ────────────────────────────────────────────────────────────────── */

.iew-catalog-search__tabs {
	display: flex;
	border-bottom: 1px solid #edf0f6;
	padding: 0 8px;
}

.iew-catalog-search .iew-catalog-search__tab {
	flex: 1;
	border: 0;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	background: transparent;
	padding: 10px 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.15s, border-color 0.15s;
}

.iew-catalog-search .iew-catalog-search__tab:hover {
	opacity: 0.8;
}

.iew-catalog-search .iew-catalog-search__tab-count {
	font-weight: 400;
	font-size: 12px;
}

/* ── Groups ──────────────────────────────────────────────────────────────── */

.iew-catalog-search__group {
	border-top: 1px solid #edf0f6;
}

.iew-catalog-search__group:first-child {
	border-top: 0;
}

.iew-catalog-search__group-title {
	margin: 0;
	padding: 10px 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #4b556c;
	background: #fafbff;
}

.iew-catalog-search__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.iew-catalog-search__item {
	margin: 0;
	padding: 0;
}

.iew-catalog-search__item-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	text-decoration: none;
	color: #1b2340;
	transition: background-color .2s ease;
}

.iew-catalog-search__item-link:hover,
.iew-catalog-search__item-link:focus {
	background: #f3f5fb;
}

.iew-catalog-search__thumb {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #f4f6fb;
	object-fit: cover;
}

.iew-catalog-search__text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.iew-catalog-search__title {
	font-size: 15px;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iew-catalog-search__meta {
	font-size: 13px;
	line-height: 1.3;
	color: #6f768a;
}

/* ── View All footer ─────────────────────────────────────────────────────── */

.iew-catalog-search__footer {
	border-top: 1px solid #edf0f6;
	padding: 0;
}

.iew-catalog-search__view-all {
	display: block;
	padding: 12px 14px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #4b556c;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.iew-catalog-search__view-all:hover {
	background: #f3f5fb;
	color: #1b2340;
}
