/* Search Wizard Results Container */
.search-wizard-results {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: fit-content;
	max-width: 800px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	margin-top: 8px;
	max-height: 600px;
	overflow-y: auto;

	@media (max-width: 800px) {
		width: 100vw;
		max-width: 100vw;
		left: 50%;
		right: auto;
	}
}

#search-wizard-results-desktop {
	min-width: 100%;
	max-width: max-content;
}

/* Results Inner Container */
.search-wizard-results-inner {
	padding: 16px;
	width: fit-content;
	min-width: 100%;
}

/* Products List */
.search-wizard-products {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Product Item */
.search-wizard-item {
	display: flex;
	align-items: center;
	padding: 0;
	cursor: pointer;
	border-radius: 25px;
	background: #F6F6F8;
	margin-bottom: 8px;
}

/* Product Image */
.search-wizard-item-image {
	flex-shrink: 0;
	margin-right: 35px;
	border-radius: 25px;
	border: 3px solid #171D5833;
	background: #fff;
}

.search-wizard-item-image img {
	width: 25px;
	height: 25px;
	object-fit: cover;
	margin: 12px;
}

/* Product Content */
.search-wizard-item-content {
	flex: 1;
	min-width: 0;
	padding: 14px 0;
	display: grid;
	grid-template-areas:
		"name price"
		"annot price";
}

.search-wizard-item-name {
	grid-area: name;
	font-family: var(--bs-headings-font-family), sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.05rem;
	margin-bottom: 2px;
	color: #000;
	white-space: nowrap;
	text-align: left;
}

.search-wizard-item-annotation {
	grid-area: annot;
	font-weight: 600;
	color: gray;
	font-size: 10px;
	letter-spacing: 0.05rem;
	text-align: left;
}

.search-wizard-item-price {
	grid-area: price;
	justify-self: end;
	font-weight: 700;
	color: #4B4D59;
	font-size: 12px;
	line-height: 1.6;
	white-space: nowrap;
	text-align: center;
	margin-left: 12px;
}

/* Product Actions */
.search-wizard-item-actions {
	flex-shrink: 0;
	margin-left: 12px;
}

.search-wizard-item-actions .btn {
	position: static !important;
	white-space: nowrap;
}

/* Footer */
.search-wizard-footer {
	padding: 21px 10px;
	text-align: center;
}

.search-wizard-footer .btn {
	background: #9A9A9A;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	border:none;
}

.search-wizard-show-all {
	position: static !important;
	width: 100%;
}
