.pt-card {
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	background-color: #fff; /* Default, overridden by controls */
	overflow: hidden; /* For border radius and badge cropping */
	display: flex;
	flex-direction: column;
}

/* --- Banner Section --- */
.pt-banner {
	position: relative;
	padding: 40px 20px 80px 20px; /* Extra bottom padding for slant */
	text-align: center;
	/* Slanted Clip Path */
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
	z-index: 2;
}

.pt-title {
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.pt-subtitle {
	font-size: 14px;
	margin: 0;
}

/* --- Badge --- */
.pt-badge-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	overflow: hidden;
	z-index: 10;
}

.pt-badge {
	position: absolute;
	top: 15px;
	right: -35px;
	width: 120px;
	text-align: center;
	transform: rotate(45deg);
	padding: 8px 0;
	font-size: 10px;
	text-transform: uppercase;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- Body Section --- */
.pt-body {
	padding: 0 30px 40px 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

/* --- Icon Circle --- */
.pt-icon-wrapper {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -60px; /* Pull up into banner */
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	position: relative;
	z-index: 3;
}

.pt-icon-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* --- Pricing --- */
.pt-pricing {
	margin-bottom: 25px;
}

.pt-original-price {
	font-size: 16px;
	text-decoration: line-through;
	margin-bottom: 5px;
}

.pt-current-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 5px;
}

.pt-price-period {
	font-size: 16px;
	color: #666;
}

/* --- Features --- */
.pt-features {
	margin-bottom: 30px;
	width: 100%;
	text-align: left;
}

.pt-feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 15px;
}

.pt-feature-icon {
	margin-right: 12px;
	width: 20px;
	text-align: center;
}

.pt-feature-icon svg,
.pt-feature-icon i {
	width: 1em;
	height: 1em;
	font-size: 14px;
}

/* --- Actions --- */
.pt-actions {
	margin-top: auto;
	width: 100%;
}

.pt-button {
	display: inline-block;
	text-decoration: none;
	width: 100%;
	padding: 12px 0;
	text-align: center;
	transition: opacity 0.3s;
	border: none;
	cursor: pointer;
}

.pt-button:hover {
	opacity: 0.9;
}

.pt-footer-text {
	margin-top: 15px;
	font-size: 13px;
	color: #999;
}
