.useup-complementary-products {
	margin: 22px 0;
	padding: 18px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
}

.useup-complementary-products__title {
	margin: 0 0 4px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 500;
	color: #111;
}

.useup-complementary-products__subtitle {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.45;
	color: #666;
}

.useup-complementary-products__list {
	display: flex;
	flex-direction: column;
}

.useup-complementary-product {
	display: grid;
	grid-template-columns: 22px 64px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 14px 0;
	border-top: 1px solid #eee;
}

.useup-complementary-product:first-child {
	padding-top: 12px;
	border-top: 0;
}

.useup-complementary-product:last-child {
	padding-bottom: 0;
}

.useup-complementary-product__checkbox {
	align-self: start;
	padding-top: 22px;
}

.useup-complementary-product__checkbox input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: #111;
}

.useup-complementary-product__thumb {
	width: 64px;
	height: 64px;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
	background: #f7f7f7;
}

.useup-complementary-product__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.useup-complementary-product__body {
	min-width: 0;
}

.useup-complementary-product__title {
	margin: 0 0 3px;
	font-size: 13px;
	line-height: 1.25;
	font-weight: 600;
	color: #111;
}

.useup-complementary-product__description {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.35;
	color: #666;
}

.useup-complementary-product__variations {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.useup-complementary-product__variation-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	padding: 0 10px;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	background: #fff;
	font-size: 12px;
	line-height: 1;
	color: #111;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.useup-complementary-product__variation-option.is-selected {
	border-color: #111;
	box-shadow: inset 0 0 0 1px #111;
}

.useup-complementary-product__price {
	min-width: 130px;
	text-align: right;
	white-space: nowrap;
}

.useup-complementary-product__wholesale {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 600;
	color: #111;
}

.useup-complementary-product__wholesale .useup-price-mode {
	font-weight: 400;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.useup-complementary-product__retail {
	margin-top: 3px;
	font-size: 12px;
	line-height: 1.3;
	color: #777;
}

.useup-complementary-product__message {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.35;
	color: #8a1f1f;
}

@media (max-width: 768px) {
	.useup-complementary-products {
		padding: 16px;
	}

	.useup-complementary-product {
		grid-template-columns: 22px 58px minmax(0, 1fr);
	}

	.useup-complementary-product__thumb {
		width: 58px;
		height: 58px;
	}

	.useup-complementary-product__price {
		grid-column: 3 / -1;
		min-width: 0;
		margin-top: 4px;
		text-align: left;
		white-space: normal;
	}
}
