.shop-product-sidebar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.shop-product-sidebar-head h2 {
	margin: 0;
	color: var(--shop-text-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
}

.shop-product-sidebar-head > a {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 3px;
	color: var(--shop-text-color);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.shop-product-sidebar-head > a:hover,
.shop-product-sidebar-head > a:focus-visible {
	color: var(--liuer-accent-strong);
}

.shop-product-sidebar-head .shop-icon {
	width: 14px;
	height: 14px;
	opacity: 0.72;
}

.shop-product-sidebar-list {
	display: grid;
	gap: 12px;
}

.shop-product-sidebar-list > a {
	display: grid;
	grid-template-columns: 66px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	color: inherit;
}

.shop-product-sidebar-list img {
	display: block;
	width: 66px;
	height: 58px;
	border: 1px solid var(--shop-card-border-color);
	border-radius: var(--shop-radius-sm);
	background: color-mix(in srgb, var(--liuer-bg) 72%, var(--liuer-surface));
	object-fit: contain;
}

.shop-product-sidebar-list strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--shop-text-color);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	transition: color 0.18s ease;
}

.shop-product-sidebar-list em {
	display: block;
	margin-top: 3px;
	color: var(--liuer-accent-strong);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.35;
}

.shop-product-sidebar-list em del {
	margin-right: 5px;
	color: var(--shop-subtle-color);
	font-size: 11px;
	font-weight: 500;
}

.shop-product-sidebar-list em ins {
	color: inherit;
	text-decoration: none;
}

.shop-product-sidebar-list small {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 2px;
	color: var(--shop-muted-color);
	font-size: 12px;
	font-weight: 500;
}

.shop-sidebar-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--shop-rating-color);
	line-height: 1;
}

.shop-sidebar-stars i {
	display: block;
	width: 13px;
	height: 13px;
	background: #d5ddd9;
	-webkit-mask: var(--shop-rating-star-icon) center / contain no-repeat;
	mask: var(--shop-rating-star-icon) center / contain no-repeat;
}

.shop-sidebar-stars i.is-active {
	background: currentColor;
	-webkit-mask-image: var(--shop-rating-star-solid-icon);
	mask-image: var(--shop-rating-star-solid-icon);
}

.shop-product-sidebar-list > a:hover strong,
.shop-product-sidebar-list > a:focus-visible strong {
	color: var(--liuer-accent-strong);
}
