/* Elementor Addon Nextra - Pricing Table */

.ean-widget-pricing-table {
	position: relative;
}

.ean-widget-pricing-table .ean-pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 32px;
	background: #ffffff;
	border: 1px solid #e8e8ef;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(20, 20, 40, .06);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.ean-widget-pricing-table .ean-pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(20, 20, 40, .12);
}

.ean-widget-pricing-table .ean-pricing-card.is-featured {
	border-color: #6c63ff;
	border-width: 2px;
	background: linear-gradient(180deg, #fbfaff 0%, #ffffff 60%);
	box-shadow: 0 10px 34px rgba(108, 99, 255, .18);
}

.ean-widget-pricing-table .ean-pricing-card.is-featured::before {
	content: "Featured";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	padding: 6px 16px;
	background: #6c63ff;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .8px;
	text-transform: uppercase;
	border-radius: 999px;
	white-space: nowrap;
}

.ean-widget-pricing-table .ean-pricing-header {
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f5;
}

.ean-widget-pricing-table .ean-pricing-plan {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: .3px;
}

.ean-widget-pricing-table .ean-pricing-price-wrap {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
}

.ean-widget-pricing-table .ean-pricing-price {
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
	color: #6c63ff;
	letter-spacing: -1px;
}

.ean-widget-pricing-table .ean-pricing-period {
	font-size: 14px;
	color: #999999;
}

.ean-widget-pricing-table .ean-pricing-description {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #777777;
}

.ean-widget-pricing-table .ean-pricing-features {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	flex: 1;
}

.ean-widget-pricing-table .ean-pricing-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	font-size: 15px;
	color: #555555;
}

.ean-widget-pricing-table .ean-pricing-feature + .ean-pricing-feature {
	border-top: 1px solid #f4f4f7;
}

.ean-widget-pricing-table .ean-pricing-feature.is-disabled {
	color: #bbbbbb;
	text-decoration: line-through;
}

.ean-widget-pricing-table .ean-pricing-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, .35);
	border-radius: 50%;
	background: rgba(76, 175, 80, .08);
}

.ean-widget-pricing-table .ean-pricing-feature.is-disabled .ean-pricing-check {
	color: #bbbbbb;
	border-color: #e3e3e8;
	background: #f7f7f9;
}

.ean-widget-pricing-table .ean-pricing-feature-text {
	flex: 1;
}

.ean-widget-pricing-table .ean-pricing-footer {
	margin-top: 24px;
	text-align: center;
}

.ean-widget-pricing-table .ean-pricing-button {
	display: inline-block;
	padding: 13px 30px;
	background: #6c63ff;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ean-widget-pricing-table .ean-pricing-button:hover,
.ean-widget-pricing-table .ean-pricing-button:focus {
	background: #554cd6;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(108, 99, 255, .3);
	transform: translateY(-1px);
}

.ean-widget-pricing-table .ean-pricing-card.is-featured .ean-pricing-button {
	background: #6c63ff;
}
