/* WPBakery Pricing Table Add-on styles */

.wpbpt-pricing-table {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #e1e8e1;
	border-radius: 0px;
	overflow: hidden;
}

.wpbpt-plan {
	flex: 1 1 0;
	min-width: 260px;
	padding: 40px 35px;
	position: relative;
	border-right: 1px solid #e1e8e1;
}

.wpbpt-plan:last-child {
	border-right: none;
}

.wpbpt-plan-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.wpbpt-plan-title {
	font-size: 24px;
	font-weight: 500;
	color: #24312c;
	margin: 0;
}

.wpbpt-plan-badge {
	display: inline-block;
	white-space: nowrap;
	background: #cf9b95;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 6px 14px;
	border-radius: 20px;
	text-transform: uppercase;
}

.wpbpt-plan-description {
	color: #7d8a83;
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0 0 30px;
}

.wpbpt-plan-price {
	margin: 0 0 20px;
}

.wpbpt-plan-price-amount {
	font-size: 34px;
	font-weight: 500;
	color: #24312c;
}

.wpbpt-plan-price-period {
	font-size: 14px;
	color: #7d8a83;
	margin-left: 2px;
}

.wpbpt-plan-button {
	display: block;
	text-align: center;
	background: #263029;
	color: #ffffff !important;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 30px;
	transition: background 0.2s ease;
}

.wpbpt-plan-button:hover,
.wpbpt-plan-button:focus {
	background: #3a463f;
	color: #ffffff !important;
}

.wpbpt-plan-divider {
	border-top: 1px solid #d8e0d8;
	margin: 30px 0 20px;
}

.wpbpt-plan-features-label {
	color: #24312c;
	font-weight: 600;
	font-size: 15px;
	margin: 0 0 12px;
}

.wpbpt-plan-features {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.wpbpt-plan-features li {
	list-style: none !important;
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
	color: #3b4740;
	font-size: 14.5px;
	line-height: 1.5;
}

.wpbpt-plan-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #3b4740;
}

/* Responsive: stack on smaller screens */
@media (max-width: 782px) {
	.wpbpt-plan {
		flex: 1 1 100%;
		border-right: none;
		border-bottom: 1px solid #e1e8e1;
	}

	.wpbpt-plan:last-child {
		border-bottom: none;
	}
}
