.novi-ppc-calc {
	max-width: 820px;
	margin: 2rem auto;
	padding: 24px;
	border-radius: 16px;
	background: #f9f9f9;
	box-sizing: border-box;
}
.novi-ppc-calc * {
	box-sizing: border-box;
}
.novi-ppc-calc__selector {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding: 4px 4px 16px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.novi-ppc-calc__selector::-webkit-scrollbar {
	height: 6px;
}
.novi-ppc-calc__selector::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 3px;
}
.novi-ppc-calc__tab {
	flex: 0 0 auto;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 12px 18px;
	border: 2px solid #e2e2e2;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
	font-size: 13px;
	white-space: nowrap;
	color: inherit;
}
.novi-ppc-calc__tab img {
	height: 22px;
	width: auto;
	object-fit: contain;
}
.novi-ppc-calc__tab.is-active {
	border-color: #333;
	background: #efefef;
	font-weight: 600;
}
.novi-ppc-calc__body {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 8px;
}
.novi-ppc-calc__inputs {
	flex: 1 1 240px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.novi-ppc-calc__inputs label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
}
.novi-ppc-calc__inputs input,
.novi-ppc-calc__inputs select {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
}
.novi-ppc-calc__platform-name {
	font-size: 13px;
	color: #666;
	margin: 0;
}
.novi-ppc-calc__results {
	flex: 1 1 240px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	align-content: start;
}
.novi-ppc-calc__results > div {
	background: #fff;
	border-radius: 12px;
	padding: 14px 10px;
	text-align: center;
	border: 1px solid #eee;
}
.novi-ppc-calc__results span {
	display: block;
	font-size: 22px;
	font-weight: 700;
}
.novi-ppc-calc__results small {
	display: block;
	font-size: 11px;
	color: #666;
	margin-top: 4px;
}
.novi-ppc-calc__disclaimer {
	font-size: 12px;
	color: #888;
	margin: 18px 0 0;
}
@media (max-width: 480px) {
	.novi-ppc-calc__results {
		grid-template-columns: 1fr;
	}
}
