/**
 * Lease/Purchase pricing box — theme-agnostic, no framework dependency.
 * Colors/sizing are exposed as custom properties on .wclp-pricing-box so a
 * theme or child theme can override them without touching this file.
 */
.wclp-pricing-box {
	--wclp-radius: 12px;
	--wclp-border-color: #e2e4e8;
	--wclp-accent: #2563eb;
	--wclp-accent-bg: rgba(37, 99, 235, 0.06);
	--wclp-now-color: #15803d;
	--wclp-regular-color: #9aa1ab;
	--wclp-text-color: #1f2328;
	--wclp-text-muted: #6b7280;
	--wclp-transition: 160ms ease;

	box-sizing: border-box;
	display: block;
	margin: 0 0 24px;
	padding: 0;
	border: 1px solid var(--wclp-border-color);
	border-radius: var(--wclp-radius);
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.06);
	font-size: 15px;
	line-height: 1.4;
	text-align: left;
	list-style: none;
}

.wclp-pricing-box *,
.wclp-pricing-box *::before,
.wclp-pricing-box *::after {
	box-sizing: border-box;
}

.wclp-pricing-option {
	position: relative;
	border-bottom: 1px solid var(--wclp-border-color);
}

.wclp-pricing-option:last-child {
	border-bottom: none;
}

.wclp-pricing-option input[type="radio"] {
	position: absolute;
	top: 50%;
	left: 16px;
	width: 19px;
	height: 19px;
	margin: 0;
	transform: translateY(-50%);
	accent-color: var(--wclp-accent);
	cursor: pointer;
}

.wclp-option-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 16px;
	row-gap: 4px;
	margin: 0;
	padding: 14px 18px 14px 48px;
	cursor: pointer;
	color: var(--wclp-text-color);
	transition: background-color var(--wclp-transition);
}

.wclp-pricing-option:hover .wclp-option-content {
	background: #fafafa;
}

.wclp-pricing-option input[type="radio"]:checked + .wclp-option-content {
	background: var(--wclp-accent-bg);
	box-shadow: inset 3px 0 0 var(--wclp-accent);
}

.wclp-pricing-option input[type="radio"]:focus-visible {
	outline: none;
}

.wclp-pricing-option:focus-within {
	position: relative;
	z-index: 1;
	box-shadow: 0 0 0 2px var(--wclp-accent);
	border-radius: 6px;
}

.wclp-option-heading {
	display: inline-block;
	margin: 0;
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wclp-text-muted);
}

.wclp-option-months {
	display: inline-block;
	margin: 0;
	font-weight: 600;
	color: var(--wclp-text-color);
}

.wclp-option-prices {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-left: auto;
	white-space: nowrap;
}

.wclp-price-regular {
	color: var(--wclp-regular-color);
	text-decoration: line-through;
	font-size: 0.9em;
}

.wclp-price-now {
	color: var(--wclp-now-color);
	font-weight: 700;
	font-size: 1.05em;
}

@media screen and (max-width: 480px) {
	.wclp-option-content {
		padding: 12px 14px 12px 42px;
	}

	.wclp-option-prices {
		margin-left: 0;
		flex-basis: 100%;
	}
}

.wclp-standard-bullets {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.wclp-standard-bullets li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 8px;
	line-height: 1.5;
}

.wclp-standard-bullets li::before {
	content: "\2714";
	position: absolute;
	top: 0;
	left: 0;
	color: #15803d;
	font-weight: 700;
}
