.ns-search-wrap {
	display: flex;
	width: 100%;
	max-width: 100%;
	overflow: visible;
	box-sizing: border-box;
	--ns-text: #1f2937;
	--ns-input-text: #1f2937;
	--ns-input-bg: #ffffff;
	--ns-button-bg: #111827;
	--ns-button-text: #ffffff;
	--ns-radius: 8px;
	--ns-border: #d1d5db;
	--ns-height: 48px;
	--ns-width: 640px;
	--ns-suggest-bg: #ffffff;
	--ns-suggest-text: #1f2937;
	--ns-suggest-border: #d1d5db;
	--ns-suggest-hover: #f3f4f6;
	--ns-suggest-radius: 8px;
	--ns-suggest-max-height: 360px;
}

.ns-search-wrap--left {
	justify-content: flex-start;
}

.ns-search-wrap--center {
	justify-content: center;
}

.ns-search-wrap--right {
	justify-content: flex-end;
}

.ns-search {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: var(--ns-width);
	max-width: 100%;
	min-width: 0;
	font-family: inherit;
	box-sizing: border-box;
	overflow: visible;
	z-index: 1;
}

.ns-search-wrap--pct .ns-search {
	flex: 0 0 var(--ns-width);
	width: var(--ns-width);
	max-width: 100%;
}

.ns-search--full {
	flex: 1 1 100%;
	width: 100%;
	max-width: 100%;
}

.ns-search *,
.ns-search *::before,
.ns-search *::after {
	box-sizing: border-box;
}

.ns-search__bar {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: var(--ns-height);
	height: var(--ns-height);
	background: var(--ns-input-bg);
	border: 1px solid var(--ns-border);
	border-radius: var(--ns-radius);
	overflow: hidden;
}

.ns-search__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: inherit;
	line-height: 0;
}

.ns-search__icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.ns-search__icon-img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	display: block;
}

.ns-search__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ns-search__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--ns-input-text) !important;
	-webkit-text-fill-color: var(--ns-input-text) !important;
	caret-color: var(--ns-input-text);
	font-size: 16px;
	line-height: 1.4;
	padding: 10px 14px;
	outline: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

.ns-search__input:focus,
.ns-search__input:active {
	color: var(--ns-input-text) !important;
	-webkit-text-fill-color: var(--ns-input-text) !important;
	background: transparent !important;
}

.ns-search__input::placeholder {
	color: var(--ns-input-text);
	-webkit-text-fill-color: var(--ns-input-text);
	opacity: 0.55;
}

.ns-search__input:-webkit-autofill,
.ns-search__input:-webkit-autofill:hover,
.ns-search__input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--ns-input-text) !important;
	color: var(--ns-input-text) !important;
	box-shadow: 0 0 0 1000px var(--ns-input-bg) inset !important;
	transition: background-color 99999s ease-in-out 0s;
}

.ns-search__input::-webkit-search-decoration,
.ns-search__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.ns-search__bar:focus-within {
	outline: 2px solid var(--ns-button-bg);
	outline-offset: 1px;
}

.ns-search__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: var(--ns-button-bg);
	color: var(--ns-button-text);
	font-size: 14px;
	font-weight: 600;
	padding: 0 16px;
	cursor: pointer;
	line-height: 1;
}

.ns-search__button:hover:not(:disabled) {
	filter: brightness(1.08);
}

.ns-search__button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.ns-search__suggestions,
.ns-search__suggestions * {
	box-sizing: border-box;
}

.ns-search__suggestions {
	position: absolute;
	z-index: 2147483000;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: var(--ns-suggest-bg);
	color: var(--ns-suggest-text);
	border: 1px solid var(--ns-suggest-border);
	border-radius: var(--ns-suggest-radius);
	box-shadow: 0 12px 40px rgba(17, 24, 39, 0.18);
	max-height: var(--ns-suggest-max-height);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	font-family: inherit;
}

.ns-search__suggestions.is-open {
	position: fixed;
	right: auto;
}

.ns-search__suggestions[hidden] {
	display: none;
}

.ns-search__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	cursor: pointer;
	color: var(--ns-suggest-text);
	text-decoration: none;
}

.ns-search__item:hover,
.ns-search__item.is-active {
	background: var(--ns-suggest-hover);
}

.ns-search__thumb {
	width: 44px;
	height: 44px;
	border-radius: calc(var(--ns-radius) / 2);
	object-fit: cover;
	background: var(--ns-border);
	flex: 0 0 44px;
}

.ns-search__meta {
	min-width: 0;
	flex: 1 1 auto;
}

.ns-search__name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ns-search__price {
	display: block;
	font-size: 13px;
	opacity: 0.8;
	margin-top: 2px;
}

.ns-search__price del {
	opacity: 0.6;
	margin-right: 6px;
}

.ns-search__empty {
	padding: 12px 14px;
	font-size: 14px;
	color: var(--ns-suggest-text);
	opacity: 0.7;
}

@media (max-width: 480px) {
	.ns-search__button {
		padding: 0 12px;
		font-size: 13px;
		gap: 6px;
	}
}
