.wcpp-selector {
	--wcpp-blue: #087df1;
	--wcpp-dark: #102a43;
	--wcpp-border: #d5e2ee;
	clear: both;
	margin: 20px 0;
	padding: 20px;
	border: 1px solid var(--wcpp-border);
	border-radius: 18px;
	background: #f8fbff;
	box-shadow: 0 8px 28px rgba(21, 61, 96, .06);
}

.wcpp-selector__heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.wcpp-selector__heading h3,
.wcpp-selector__heading p {
	margin: 0;
}

.wcpp-selector__heading h3 {
	color: var(--wcpp-dark);
	font-size: 1.35rem;
	line-height: 1.25;
}

.wcpp-selector__heading p {
	margin-top: 3px;
	color: #627d98;
	font-size: .94rem;
}

.wcpp-step {
	display: inline-flex;
	flex: 0 0 48px;
	align-items: center;
	justify-content: center;
	height: 48px;
	border-radius: 13px;
	background: linear-gradient(145deg, #1594ff, #0064de);
	box-shadow: 0 7px 16px rgba(0, 115, 230, .22);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 800;
}

.wcpp-plan-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.wcpp-plan-card {
	position: relative;
	display: grid;
	grid-template-columns: 26px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 112px;
	margin: 0;
	padding: 18px;
	border: 2px solid var(--wcpp-border);
	border-radius: 15px;
	background: #fff;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.wcpp-plan-card:hover {
	border-color: #8fc8ff;
	transform: translateY(-1px);
}

.wcpp-plan-card.is-selected {
	border-color: var(--wcpp-blue);
	box-shadow: 0 0 0 3px rgba(8, 125, 241, .12);
}

.wcpp-plan-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wcpp-radio-dot {
	box-sizing: border-box;
	display: block;
	width: 25px;
	height: 25px;
	border: 2px solid #94a3b1;
	border-radius: 50%;
	background: #fff;
}

.wcpp-plan-card.is-selected .wcpp-radio-dot {
	border: 7px solid var(--wcpp-blue);
}

.wcpp-card-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.wcpp-card-copy strong {
	color: var(--wcpp-dark);
	font-size: 1rem;
	line-height: 1.35;
}

.wcpp-card-copy small {
	margin-top: 6px;
	color: #627d98;
	font-size: .84rem;
	line-height: 1.25;
}

.wcpp-card-price {
	white-space: nowrap;
	color: #056bd8;
	font-size: 1.18rem;
	font-weight: 800;
}

.wcpp-card-price .woocommerce-Price-currencySymbol {
	margin-right: 2px;
}

.wcpp-required-message {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 14px;
	padding: 12px 15px;
	border: 1px solid #f5bd57;
	border-radius: 11px;
	background: #fff8e8;
	color: #a64b0a;
	font-size: .9rem;
}

.wcpp-required-message.is-complete {
	border-color: #72d2a4;
	background: #effcf6;
	color: #087443;
}

.wcpp-price-prefix {
	font-size: .72em;
	font-weight: 500;
}

form.cart .single_add_to_cart_button.wcpp-awaiting-plan,
form.cart .single_add_to_cart_button.wcpp-awaiting-plan:hover {
	cursor: not-allowed;
	opacity: .55;
}

@media (max-width: 680px) {
	.wcpp-selector {
		padding: 15px;
		border-radius: 14px;
	}

	.wcpp-plan-grid {
		grid-template-columns: 1fr;
	}

	.wcpp-plan-card {
		min-height: 96px;
		padding: 15px;
	}

	.wcpp-required-message {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}
}

