.searchProductItemRow {
	display: flex;
	align-items: stretch;
	gap: 4px;
}

.searchProductItemRow .searchItemLink {
	flex: 1;
	min-width: 0;
}

.searchItemAddToCartIcon {
	flex-shrink: 0;
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-right: 8px;
	padding: 0;
	border: none;
	border-radius: 4px;
	background: transparent;
	color: var(--cbACCartIcon, #333333);
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.searchItemAddToCartIcon:hover {
	background: var(--cbACHoverBackground, #f6f6f6);
}

.searchItemAddToCartIcon:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.searchItemAddToCartIcon.is-loading .searchItemAddToCartSvg {
	opacity: 0.3;
}

.searchItemAddToCartIcon.is-added {
	color: #46b450;
}

.searchItemAddToCartSvg {
	display: block;
	pointer-events: none;
}

.searchItemAddToCartIcon.is-loading::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: cbACCartSpin 0.6s linear infinite;
}

.searchItemAddToCartIcon.is-loading {
	position: relative;
}

@keyframes cbACCartSpin {
	to {
		transform: rotate(360deg);
	}
}

.searchItemPicture {
	position: relative;
	width: 100%;
}

.searchItemPicture .cbStockBadge {
	position: absolute;
	top: 4px;
	left: 4px;
	z-index: 2;
	display: inline-block;
	padding: 0;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	background: transparent;
	border-radius: 0;
	pointer-events: none;
	white-space: nowrap;
}

.searchItemPicture .cbStockBadge--in {
	color: #0064a0;
	background: transparent;
}

.searchItemPicture .cbStockBadge--out {
	color: #888888;
	background: transparent;
}

.searchProductItem .searchItemContentTitle {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-break: break-word;
}

