.dpc-container {
	margin: 20px 0;
	padding: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	background: #fdfdfd;
}
.dpc-field-wrapper {
	margin-bottom: 15px;
}
.dpc-field-label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
}
.dpc-field-label .required {
	color: red;
}
.dpc-field-input {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.dpc-radio-group, .dpc-checkbox-group {
	margin-top: 5px;
}
.dpc-radio-group label, .dpc-checkbox-group label {
	display: inline-block;
	margin-right: 15px;
	cursor: pointer;
}
.dpc-radio-group input, .dpc-checkbox-group input {
	width: auto;
}
.dpc-price-summary {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px dashed #ccc;
}
.dpc-price-summary h4 {
	margin: 0 0 5px 0;
	font-size: 1.25em;
	color: #007cba;
}
.dpc-note {
	font-size: 0.85em;
	color: #777;
}

/* Theme Compatibility Reset Wrapper */
.dpc-configurator-wrap {
	box-sizing: border-box;
	font-family: inherit;
	line-height: 1.6;
}
.dpc-configurator-wrap *,
.dpc-configurator-wrap *::before,
.dpc-configurator-wrap *::after {
	box-sizing: inherit;
}
.dpc-configurator-wrap select,
.dpc-configurator-wrap input[type="text"],
.dpc-configurator-wrap input[type="number"] {
	max-width: 100%;
	font-size: 14px;
	line-height: 1.5;
	padding: 8px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
	color: #1f2937;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.dpc-configurator-wrap select:focus,
.dpc-configurator-wrap input:focus {
	outline: none;
	border-color: var(--dpc-primary, #3b82f6);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Color Picker Premium Polish */
.dpc-configurator-wrap input[type="color"] {
	cursor: pointer;
	border: 2px solid #d1d5db;
	border-radius: 8px;
	padding: 2px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.dpc-configurator-wrap input[type="color"]:hover {
	border-color: var(--dpc-primary, #3b82f6);
	box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Upsell Banner */
.dpc-upsell-banner {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border: 1px solid #f59e0b;
	border-radius: 8px;
	padding: 12px 16px;
	margin-top: 12px;
	font-size: 14px;
	color: #92400e;
}

/* Wizard Controls */
.dpc-configurator-wrap .button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
}

