.pte-wrapper {
	direction: rtl;
	text-align: right;
}

/* Toggle switch */
.pte-toggle-row {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.pte-toggle-pill {
	position: relative;
	display: flex;
	align-items: stretch;
	background-color: var(--pte-toggle-track, #F0F1F4);
	border-radius: 999px;
	padding: 4px;
	min-width: 220px;
}

.pte-toggle-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.pte-toggle-option {
	position: relative;
	z-index: 1;
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	color: var(--pte-toggle-inactive-text, #8A90A0);
	cursor: pointer;
	transition: color 0.28s cubic-bezier( 0.4, 0, 0.2, 1 );
	user-select: none;
	text-align: center;
}

.pte-toggle-radio:checked + .pte-toggle-option {
	color: var(--pte-toggle-active-text, #1E2432);
}

.pte-toggle-radio:focus-visible + .pte-toggle-option {
	outline: 2px solid var(--pte-toggle-active-bg, #FFFFFF);
	outline-offset: 2px;
}

.pte-toggle-thumb {
	position: absolute;
	z-index: 0;
	top: 4px;
	bottom: 4px;
	right: 4px;
	width: calc(50% - 4px);
	background-color: var(--pte-toggle-active-bg, #FFFFFF);
	border-radius: 999px;
	box-shadow: 0 1px 4px rgba(20, 30, 60, 0.15);
	transition: transform 0.28s cubic-bezier( 0.4, 0, 0.2, 1 );
}

.pte-toggle-radio[value="annual"]:checked ~ .pte-toggle-thumb {
	transform: translateX(-100%);
}

/* Columns layout */
.pte-columns {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: var(--pte-gap, 24px);
}

.pte-card {
	background: var(--pte-card-bg, #FFFFFF);
	border-radius: var(--pte-radius, 16px);
	padding: 32px 28px;
	flex: 1 1 280px;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 12px 30px rgba(20, 30, 60, 0.08);
}

.pte-card.featured {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(20, 30, 60, 0.14);
}

.pte-plan-name {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--pte-accent, #E8622C);
	margin-bottom: 18px;
}

.pte-price-block {
	margin-bottom: 6px;
}

.pte-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	line-height: 1;
}

.pte-period-suffix {
	font-size: 13px;
	font-weight: 400;
	color: #9AA1B4;
	margin-inline-start: 4px;
}

.pte-currency {
	font-size: 20px;
	font-weight: 700;
	color: #1E2432;
}

.pte-price-num {
	font-size: 42px;
	font-weight: 800;
	color: #1E2432;
}

.pte-annual-total {
	font-size: 13px;
	color: #9AA1B4;
	margin-bottom: 20px;
}

.pte-subtitle {
	font-size: 14px;
	line-height: 1.7;
	color: #7A8296;
	margin-bottom: 24px;
	min-height: 0;
}

.pte-features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	flex-grow: 1;
}

.pte-feature {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #EDEFF3;
	font-size: 14px;
	color: #3B4256;
}

.pte-feature:last-child {
	border-bottom: none;
}

.pte-feature-text {
	flex: 1;
}

.pte-feature.unavailable {
	color: #ABB1C0;
}

.pte-feature.unavailable .pte-feature-text {
	text-decoration: line-through;
}

.pte-feature-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pte-feature.included .pte-feature-icon {
	background-color: #3AB795;
}

.pte-feature.excluded .pte-feature-icon {
	background-color: #EE4B4B;
}

.pte-feature.unavailable .pte-feature-icon {
	background-color: #C3C9D5;
}

.pte-button {
	display: block;
	text-align: center;
	padding: 14px 20px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid #2C6FE0;
	color: #2C6FE0;
	background: transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.pte-button.featured {
	background: var(--pte-accent, #E8622C);
	border-color: var(--pte-accent, #E8622C);
	color: #fff;
}

.pte-button.featured:hover {
	opacity: 0.85;
}

.pte-button:not(.featured):hover {
	background: var(--pte-accent, #E8622C);
	border-color: var(--pte-accent, #E8622C) !important;
	color: #fff !important;
}

.pte-button-slot {
	width: 100%;
	text-align: center;
}

.pte-button-slot > * {
	width: 100%;
}

@media (max-width: 767px) {
	.pte-card.featured {
		transform: none;
	}

	.pte-columns {
		flex-direction: column;
		align-items: stretch;
	}

	.pte-card {
		max-width: 100%;
	}
}
