.dreamteam-upsell-swatches {
	margin: 10px 0 15px;
}

.dreamteam-upsell-swatches__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.dreamteam-upsell-swatch {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 2px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
	cursor: pointer;
}

.dreamteam-upsell-swatch:hover {
	border-color: #333;
	box-shadow: 0 0 0 1px #333;
}

.dreamteam-upsell-swatch.is-active {
	border-color: #000;
	box-shadow: 0 0 0 1px #000;
	pointer-events: none;
}

.dreamteam-upsell-swatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dreamteam-upsell-swatch__placeholder {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	text-transform: uppercase;
}

.dreamteam-upsell-swatch.is-hidden {
	display: none;
}

.dreamteam-upsell-swatch__show-more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 2px dashed #bbb;
	border-radius: 6px;
	background: #f5f5f5;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
	padding: 0;
}

.dreamteam-upsell-swatch__show-more:hover {
	border-color: #333;
	background: #eee;
}
