@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&family=Barlow:wght@400;600&display=swap');

/* ── Wrapper ─────────────────────────────────────────────── */

.ecm-fcm-calculator {
	max-width: 960px;
	margin: 0 auto;
	font-family: 'Barlow', sans-serif;
	background: transparent;
}

/* ── Hide header (no title bar in this design) ───────────── */

.ecm-fcm-calculator .ecm-fcm-header {
	display: none;
}

/* ── Input Card ──────────────────────────────────────────── */

.ecm-fcm-calculator .ecm-fcm-inputs {
	display: flex;
	gap: 24px;
	padding: 40px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.ecm-fcm-calculator .ecm-fcm-field {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ecm-fcm-calculator .ecm-fcm-field label {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	color: #3a86c8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1;
}

.ecm-fcm-calculator .ecm-fcm-field input {
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 1.1rem;
	color: #333;
	background: #f0f0f0;
	border: none;
	border-radius: 6px;
	padding: 12px 14px;
	width: 100%;
	box-sizing: border-box;
	transition: box-shadow 0.2s ease;
	/* keep native number spinners for increment/decrement control */
}

.ecm-fcm-calculator .ecm-fcm-field input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(58, 134, 200, 0.35);
}

/* ── Results Row ─────────────────────────────────────────── */

.ecm-fcm-calculator .ecm-fcm-results {
	display: flex;
	gap: 16px;
	margin-top: 24px;
	padding: 0;
	background: transparent;
}

.ecm-fcm-calculator .ecm-fcm-result-box {
	flex: 1;
	min-height: 140px;
	background: #3a86c8;
	border: none;
	border-left: none;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ecm-fcm-calculator .ecm-fcm-result-value {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 3.5rem;
	color: #ffffff;
	line-height: 1.1;
	order: 1;
}

.ecm-fcm-calculator .ecm-fcm-result-label {
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 0.85rem;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 1;
	order: 2;
	margin-top: 6px;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 640px) {
	.ecm-fcm-calculator .ecm-fcm-inputs {
		flex-direction: column;
		gap: 16px;
		padding: 28px 24px;
	}

	.ecm-fcm-calculator .ecm-fcm-results {
		flex-direction: column;
		gap: 12px;
		margin-top: 16px;
	}

	.ecm-fcm-calculator .ecm-fcm-result-box {
		min-height: 120px;
	}

	.ecm-fcm-calculator .ecm-fcm-result-value {
		font-size: 2.8rem;
	}
}
