.wcpc-product-complements {
	margin: 1.5rem 0;
	padding: 1rem;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 12px;
	background: rgba(0, 0, 0, .015);
}

.wcpc-title {
	margin: 0 0 1rem;
	font-size: 1.1rem;
}

.wcpc-list {
	display: grid;
	gap: .75rem;
}

.wcpc-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: .75rem;
	align-items: center;
	padding: .75rem;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 10px;
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.wcpc-item.is-selected {
	border-color: rgba(0, 0, 0, .25);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.wcpc-item-body {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: .75rem;
	align-items: center;
	margin: 0;
	cursor: pointer;
}

.wcpc-image img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
}

.wcpc-info {
	display: grid;
	gap: .2rem;
}

.wcpc-name {
	font-weight: 600;
}

.wcpc-price {
	font-size: .95rem;
}

.wcpc-price small {
	display: block;
	opacity: .75;
}

.wcpc-description {
	font-size: .9rem;
	opacity: .75;
}

.wcpc-badge,
.wcpc-cart-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: .15rem .45rem;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 600;
	background: rgba(0, 0, 0, .08);
}

.wcpc-qty {
	min-width: 86px;
	text-align: right;
}

.wcpc-qty-input {
	max-width: 70px;
}

.wcpc-sync-note {
	font-size: .85rem;
	opacity: .75;
}

.wcpc-selected-total {
	min-height: 1.4rem;
	margin-top: .75rem;
	font-weight: 600;
	text-align: right;
}

.wcpc-synced-cart-qty {
	display: inline-block;
	min-width: 2rem;
	text-align: center;
}

@media (max-width: 640px) {
	.wcpc-item {
		grid-template-columns: auto 1fr;
	}

	.wcpc-qty {
		grid-column: 2;
		text-align: left;
	}
}
