.ohp-pricing-toggle-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.ohp-pricing-toggle-label {
	font-weight: 600;
	font-size: var(--wp--preset--font-size--f2, 1.125rem);
}

.ohp-pricing-switch {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 30px;
	flex-shrink: 0;
}

.ohp-pricing-switch input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.ohp-pricing-slider {
	position: absolute;
	inset: 0;
	background: var(--wp--preset--color--foreground, #141414);
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.ohp-pricing-slider::before {
	content: "";
	position: absolute;
	height: 24px;
	width: 24px;
	left: 3px;
	top: 3px;
	background: var(--wp--preset--color--background, #ffffff);
	border-radius: 999px;
	transition: transform 0.2s ease;
}

.ohp-pricing-switch input:checked+.ohp-pricing-slider::before {
	transform: translateX(22px);
}

.ohp-price-note {
	display: block;
	font-family: var(--wp--preset--font-family--inter, "Inter", sans-serif);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.0025em;
}

.ohp-price-note.ohp-annual-hidden {
	display: none !important;
}

.ohp-pricing-discount {
	background: #f7e5dc;
	color: #b33f13;
	padding: 6px 14px;
	border-radius: 999px;
	font-weight: 600;
	font-size: var(--wp--preset--font-size--label-2, 1rem);
	white-space: nowrap;
}