.santak-ups-calculator {
	--santak-red: #d81f26;
	--santak-red-dark: #a8181d;
	max-width: 900px;
	margin: 0 auto;
	font-family: inherit;
}

.santak-calc-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 24px;
	align-items: start;
}

@media (max-width: 700px) {
	.santak-calc-grid {
		grid-template-columns: 1fr;
	}
}

.santak-calc-form-col {
	background: #fff;
	border: 1px solid #eee;
	border-top: 3px solid var(--santak-red);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.santak-calc-result-col {
	position: sticky;
	top: 20px;
}

.santak-ups-calculator .santak-field {
	margin-bottom: 18px;
}

.santak-ups-calculator label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

.santak-icon {
	width: 17px;
	height: 17px;
	flex: none;
	color: var(--santak-red);
}

.santak-ups-calculator input[type="number"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 15px;
	transition: border-color 0.15s;
}

.santak-ups-calculator input[type="number"]:focus {
	outline: none;
	border-color: var(--santak-red);
}

.santak-pill-group {
	display: flex;
	gap: 10px;
}

.santak-pill {
	position: relative;
	flex: 1;
	display: block;
	text-align: center;
	margin: 0;
	padding: 9px 10px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	color: #555;
	transition: all 0.15s;
}

.santak-pill input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.santak-pill:has(input:checked) {
	background: var(--santak-red);
	border-color: var(--santak-red);
	color: #fff;
}

.santak-pill:has(input:focus-visible) {
	outline: 2px solid var(--santak-red-dark);
	outline-offset: 2px;
}

.santak-ups-calculator .santak-submit-btn {
	width: 100%;
	background: var(--santak-red);
	color: #fff;
	border: none;
	padding: 13px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: background 0.15s;
}

.santak-ups-calculator .santak-submit-btn:hover {
	background: var(--santak-red-dark);
}

.santak-ups-result {
	min-height: 100%;
}

.santak-result-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	height: 100%;
	min-height: 220px;
	padding: 24px;
	border: 1px dashed #ddd;
	border-radius: 10px;
	color: #999;
	background: #fafafa;
}

.santak-result-placeholder .santak-icon {
	width: 34px;
	height: 34px;
	color: #ccc;
}

.santak-result-placeholder p {
	margin: 0;
	font-size: 14px;
}

.santak-loading {
	color: #666;
	padding: 24px;
	text-align: center;
}

.santak-result-card {
	border: 1px solid #eee;
	border-top: 3px solid var(--santak-red);
	background: #fff;
	border-radius: 10px;
	padding: 22px 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.santak-result-badge {
	display: inline-block;
	background: #fdeceb;
	color: var(--santak-red-dark);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.santak-result-card h3 {
	margin: 0 0 2px;
	font-size: 21px;
	color: var(--santak-red-dark);
}

.santak-result-va {
	margin: 0 0 14px;
	color: #888;
	font-size: 14px;
}

.santak-result-card ul {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	border-top: 1px solid #f0f0f0;
}

.santak-result-card li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.santak-result-card li span {
	color: #777;
}

.santak-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--santak-red);
	color: #fff !important;
	text-decoration: none !important;
	padding: 12px 20px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 15px;
	margin-top: 4px;
	transition: background 0.15s;
}

.santak-cta-btn:hover {
	background: var(--santak-red-dark);
}

.santak-result-disclaimer {
	margin: 12px 0 0;
	padding-top: 10px;
	border-top: 1px dashed #e5e5e5;
	font-size: 12px;
	color: #999;
	font-style: italic;
}

.santak-ups-result.santak-error {
	color: #a94442;
	background: #f9eaea;
	border: 1px solid #e6b3b3;
	border-radius: 10px;
	padding: 16px 20px;
}
