/* ── Elemance Pricing Table Widget ────────────── */
.elmc-pt {
	position: relative;
	border-radius: 16px;
	padding: 36px 32px;
	border: 1.5px solid #e5e7eb;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* ── Card styles ──────────────────────────────── */
.elmc-pt--light {
	background: #ffffff;
	color: #1f2937;
}

.elmc-pt--dark {
	background: #1a1a2e;
	color: #f0f0f8;
	border-color: rgba(255,255,255,0.1);
}

.elmc-pt--gradient {
	background: linear-gradient(145deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
	color: #f0f0f8;
	border-color: rgba(108,99,255,0.3);
}

/* featured lift */
.elmc-pt--featured {
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(108,99,255,0.18);
	border-color: #6c63ff;
}

.elmc-pt:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.elmc-pt--featured:hover {
	transform: translateY(-8px);
}

/* ── Badge ────────────────────────────────────── */
.elmc-pt__badge {
	display: inline-block;
	background: #6c63ff;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 20px;
}

/* ── Header ───────────────────────────────────── */
.elmc-pt__header {
	margin-bottom: 24px;
}

.elmc-pt__title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 8px;
	line-height: 1.2;
}

.elmc-pt--light  .elmc-pt__title { color: #111827; }
.elmc-pt--dark   .elmc-pt__title,
.elmc-pt--gradient .elmc-pt__title { color: #ffffff; }

.elmc-pt__desc {
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
	opacity: 0.65;
}

/* ── Pricing ──────────────────────────────────── */
.elmc-pt__pricing {
	margin-bottom: 24px;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 6px;
}

.elmc-pt__price-row {
	display: flex;
	align-items: flex-start;
	line-height: 1;
}

.elmc-pt__currency {
	font-size: 20px;
	font-weight: 700;
	margin-top: 8px;
	opacity: 0.8;
}

.elmc-pt--light .elmc-pt__currency    { color: #374151; }
.elmc-pt--dark .elmc-pt__currency,
.elmc-pt--gradient .elmc-pt__currency { color: #d1d5db; }

.elmc-pt__price-val {
	font-size: 52px;
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 1;
	color: #6c63ff;
}

.elmc-pt__period {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 4px;
	opacity: 0.55;
}

.elmc-pt__original {
	font-size: 13px;
	text-decoration: line-through;
	opacity: 0.4;
	margin-left: 4px;
	align-self: flex-end;
	margin-bottom: 4px;
}

/* ── Divider ──────────────────────────────────── */
.elmc-pt__divider {
	height: 1px;
	background: currentColor;
	opacity: 0.1;
	margin-bottom: 24px;
}

/* ── Features ─────────────────────────────────── */
.elmc-pt__features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.elmc-pt__feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.elmc-pt__feature--no .elmc-pt__feature-text {
	opacity: 0.35;
	text-decoration: line-through;
}

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

.elmc-pt__feature-icon--yes {
	color: #6c63ff;
	background: rgba(108,99,255,0.1);
}

.elmc-pt__feature-icon--no {
	color: #9ca3af;
	background: rgba(156,163,175,0.1);
}

.elmc-pt__feature-text {
	font-size: 14px;
	line-height: 1.4;
}

.elmc-pt--light .elmc-pt__feature-text    { color: #374151; }
.elmc-pt--dark .elmc-pt__feature-text,
.elmc-pt--gradient .elmc-pt__feature-text { color: #d1d5db; }

/* ── Button ───────────────────────────────────── */
.elmc-pt__btn {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background: #6c63ff;
	color: #fff;
	transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
	border: none;
	cursor: pointer;
	margin-top: auto;
}

.elmc-pt__btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(108,99,255,0.35);
	color: #fff;
	text-decoration: none;
}

/* Ghost button for non-featured on light */
.elmc-pt--light:not(.elmc-pt--featured) .elmc-pt__btn {
	background: transparent;
	color: #6c63ff;
	border: 2px solid #6c63ff;
}

.elmc-pt--light:not(.elmc-pt--featured) .elmc-pt__btn:hover {
	background: #6c63ff;
	color: #fff;
}

/* ── Note ─────────────────────────────────────── */
.elmc-pt__note {
	text-align: center;
	font-size: 12px;
	margin: 10px 0 0;
	opacity: 0.45;
}
