.tada-mc-wrap {
	--tada-primary: #004892;
	--tada-accent: #003366;
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 20px;
	font-family: inherit;
	box-sizing: border-box;
}
.tada-mc-wrap * {
	box-sizing: border-box;
}

.tada-mc-disclaimer {
	color: var(--tada-primary);
	text-align: center;
	font-size: 14px;
	max-width: 900px;
	margin: 0 auto 28px;
	line-height: 1.5;
}

.tada-mc-card {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.tada-mc-form {
	flex: 1 1 520px;
	padding: 36px;
}

.tada-mc-row {
	display: flex;
	gap: 24px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.tada-mc-field {
	flex: 1 1 200px;
}
.tada-mc-field-full {
	flex: 1 1 100%;
}

.tada-mc-field label {
	display: block;
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 6px;
}

.tada-mc-field input[type="number"],
.tada-mc-field input[type="email"],
.tada-mc-field select {
	width: 100%;
	padding: 10px 12px;
	border: none;
	border-bottom: 1px solid #d1d5db;
	font-size: 17px;
	color: #111827;
	background: transparent;
	outline: none;
}
.tada-mc-field input[type="number"]:focus,
.tada-mc-field input[type="email"]:focus,
.tada-mc-field select:focus {
	border-bottom-color: var(--tada-primary);
}

.tada-mc-field input[type="range"] {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	height: 4px;
	background: #e5e7eb;
	border-radius: 2px;
	margin-top: 6px;
}
.tada-mc-field input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--tada-accent);
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px var(--tada-accent);
}
.tada-mc-field input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--tada-accent);
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px var(--tada-accent);
}

.tada-mc-slider-value {
	display: block;
	font-size: 12px;
	color: #6b7280;
	margin-top: 4px;
}

.tada-mc-email-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.tada-mc-email-row input {
	flex: 1 1 220px;
}
#tada-send-results {
	background: var(--tada-primary);
	color: #fff;
	border: none;
	padding: 0 22px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 3px;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.15s ease;
}
#tada-send-results:hover {
	opacity: 0.9;
}
#tada-send-results:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.tada-mc-msg {
	font-size: 13px;
	margin-top: 8px;
	min-height: 18px;
}
.tada-mc-msg.success { color: #15803d; }
.tada-mc-msg.error { color: #b91c1c; }

.tada-mc-results {
	flex: 1 1 320px;
	background: var(--tada-primary);
	color: #fff;
	padding: 40px 36px;
}

.tada-mc-total {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
}

.tada-mc-total-label {
	letter-spacing: 2px;
	font-size: 12px;
	opacity: 0.75;
	margin-top: 6px;
	margin-bottom: 28px;
	text-transform: uppercase;
}

.tada-mc-breakdown {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding-top: 18px;
}

.tada-mc-line {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.tada-mc-line span:first-child {
	opacity: 0.85;
}
.tada-mc-line span:last-child {
	font-weight: 600;
}

@media (max-width: 640px) {
	.tada-mc-form,
	.tada-mc-results {
		padding: 24px;
	}
}
