section.cart-section .cart .cart-content .products li.sauce-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.sauce-info {
	display: flex;
	gap: 12px;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
}
.sauce-img {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	object-fit: cover;
	background: #f2f2f2;
	flex: none;
}
.sauce-text { min-width: 0; }
.sauce-text .name { font-weight: 600; font-size: 14px; color: #17181f; }
.sauce-desc { font-size: 11px; color: #8a8a8a; margin-top: 3px; line-height: 1.3; }
.sauce-hint { font-size: 11px; color: #b3b3b3; margin-top: 3px; }
.sauce-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	flex: none;
}
.sauce-side .price { font-weight: 600; font-size: 14px; color: #17181f; }
.sauce-switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.sauce-switch input { opacity: 0; width: 0; height: 0; margin: 0; }
.sauce-switch span {
	position: absolute;
	inset: 0;
	background: #d3d3d3;
	border-radius: 26px;
	cursor: pointer;
	transition: background 0.2s ease;
}
.sauce-switch span::before {
	content: '';
	position: absolute;
	height: 20px;
	width: 20px;
	left: 3px;
	top: 3px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
}
.sauce-switch input:checked + span { background: #17181f; }
.sauce-switch input:checked + span::before { transform: translateX(20px); }
.sauce-banner {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #17181f;
	color: #fff;
	border-radius: 14px;
	padding: 14px 16px;
	margin-bottom: 16px;
}
.sauce-banner b { font-size: 14px; letter-spacing: 0.2px; }
.sauce-banner span { font-size: 13px; opacity: 0.85; line-height: 1.35; }
@media (max-width: 480px) {
	.sauce-img { width: 46px; height: 46px; border-radius: 10px; }
	.sauce-text .name { font-size: 13px; }
	.sauce-banner { padding: 12px 14px; border-radius: 12px; }
}
