.cfp-customizer {
	margin: 0 0 24px;
	padding: clamp(18px, 3vw, 26px);
	border: 1px solid #d9dee8;
	border-radius: 12px;
	background: #f8fafc;
	color: #172033;
}

.cfp-customizer__heading {
	margin-bottom: 20px;
}

.cfp-customizer__heading h3 {
	margin: 0 0 5px;
	font-size: clamp(20px, 2vw, 25px);
	line-height: 1.2;
	color: inherit;
}

.cfp-customizer__heading p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: #566074;
}

.cfp-customizer__fields {
	display: grid;
	gap: 18px;
}

.cfp-field {
	min-width: 0;
}

.cfp-field[hidden] {
	display: none !important;
}

.cfp-field__label {
	display: block;
	margin: 0 0 7px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: inherit;
}

.cfp-required {
	color: #c62828;
}

.cfp-field input[type="text"],
.cfp-field input[type="number"],
.cfp-field textarea,
.cfp-field select {
	box-sizing: border-box;
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid #aeb7c6;
	border-radius: 7px;
	background: #fff;
	color: #172033;
	font: inherit;
	font-size: 16px;
}

.cfp-field textarea {
	min-height: 100px;
	resize: vertical;
}

.cfp-field input:focus,
.cfp-field textarea:focus,
.cfp-field select:focus {
	border-color: #174ea6;
	outline: 2px solid rgba(23, 78, 166, 0.18);
	outline-offset: 1px;
}

.cfp-choices {
	display: grid;
	gap: 9px;
}

.cfp-choice {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	cursor: pointer;
}

.cfp-choice input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
}

.cfp-choice--image {
	display: grid;
	grid-template-columns: auto 72px 1fr;
	align-items: center;
	padding: 8px;
	border: 1px solid #d9dee8;
	border-radius: 8px;
	background: #fff;
}

.cfp-choice--image img {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 6px;
	object-fit: contain;
	background: #fff;
}

.cfp-customizer__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid #d9dee8;
	font-size: 16px;
}

.cfp-customizer__total[hidden] {
	display: none !important;
}

.cfp-customizer__total strong {
	font-size: 18px;
	color: #0f6b3f;
}

@media (max-width: 480px) {
	.cfp-customizer {
		border-radius: 8px;
	}
}
