.dpc-configurator {
	margin: 24px 0;
	font-family: inherit;
}
.dpc-attribute-block {
	margin-bottom: 22px;
}
.dpc-attribute-title {
	margin: 0 0 10px;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: .01em;
}
.dpc-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.dpc-option {
	position: relative;
	border: 1.5px solid #e3dad6;
	border-radius: 8px;
	padding: 10px 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.dpc-option:hover {
	border-color: #C97B6B;
	transform: translateY(-1px);
}
.dpc-option.dpc-selected {
	border-color: #C97B6B;
	box-shadow: 0 0 0 1.5px #C97B6B;
	background: #FAF3F1;
}
.dpc-option.dpc-selected .dpc-swatch-label {
	color: #C97B6B;
	font-weight: 600;
}
.dpc-option.dpc-disabled {
	opacity: .35;
	cursor: not-allowed;
	pointer-events: none;
}
.dpc-swatch-label {
	font-size: 14px;
	color: #3A332C;
}
.dpc-swatch-color {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-block;
	border: 1px solid #ddd;
}
.dpc-swatch-image {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 5px;
}
.dpc-extra-option {
	display: none;
}
.dpc-see-all {
	background: none;
	border: none;
	color: #C97B6B;
	text-decoration: underline;
	cursor: pointer;
	margin-top: 8px;
	padding: 0;
	font-size: 13px;
}
.dpc-badge {
	position: absolute;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 2px 7px;
}
.dpc-badge-top-right { top: -9px; right: -9px; }
.dpc-badge-top-left { top: -9px; left: -9px; }
.dpc-badge-bottom-right { bottom: -9px; right: -9px; }
.dpc-badge-bottom-left { bottom: -9px; left: -9px; }
.dpc-price-summary {
	font-weight: 600;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #eee;
	font-size: 15px;
}

.dpc-required-mark {
	color: #C97B6B;
	font-weight: 700;
}
.dpc-attribute-block.dpc-attribute-missing .dpc-attribute-title {
	color: #b32d2e;
}
.dpc-attribute-block.dpc-attribute-missing .dpc-options {
	outline: 1.5px solid #b32d2e;
	outline-offset: 6px;
	border-radius: 8px;
}
