/**
 * WebXtrm Pricing Plans Widget Styles
 */

.wx-pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: 18px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.wx-pricing-grid * {
	box-sizing: border-box;
}

/* Card */
.wx-plan {
	background: #0f131a;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 32px 24px 28px;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wx-plan:hover {
	transform: translateY(-3px);
}

.wx-plan--featured {
	background: #0d1c2e;
	border: 1.5px solid #00c9f0;
	box-shadow: 0 0 40px rgba(0, 201, 240, 0.12);
}

/* Popular Badge */
.wx-plan-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 18px;
	background: #00c9f0;
	color: #000;
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-radius: 4px;
	white-space: nowrap;
}

/* Plan Name */
.wx-plan-name {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 18px;
}

/* Price */
.wx-plan-price {
	text-align: center;
	margin-bottom: 24px;
}

.wx-plan-price-main {
	font-family: 'Inter', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #00c9f0;
	line-height: 1;
}

.wx-plan-price-suffix {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #00c9f0;
	font-weight: 500;
	margin-left: 2px;
}

/* Custom price (Custom | Pricing) */
.wx-plan-price-custom {
	display: inline-flex;
	align-items: center;
	gap: 0;
	font-family: 'Inter', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #00c9f0;
}

.wx-plan-price-custom-1 {
	padding-right: 14px;
	border-right: 1px solid rgba(0, 201, 240, 0.3);
}

.wx-plan-price-custom-2 {
	padding-left: 14px;
}

/* Features list */
.wx-plan-feats {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
	flex: 1;
}

.wx-plan-feat {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #9aacbd;
	line-height: 1.5;
}

.wx-plan-feat-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(0, 201, 240, 0.12);
	border: 1px solid rgba(0, 201, 240, 0.4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.wx-plan-feat-icon svg {
	width: 10px;
	height: 10px;
	fill: #00c9f0;
	color: #00c9f0;
	display: block;
}

.wx-plan-feat-icon i {
	font-size: 9px;
	color: #00c9f0;
	line-height: 1;
}

.wx-plan-feat-text {
	flex: 1;
	min-width: 0;
}

/* CTA Button */
.wx-plan-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 11px 0;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	background: transparent;
	border: 1.5px solid rgba(0, 201, 240, 0.4);
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
	box-sizing: border-box;
}

.wx-plan-btn:hover {
	background: rgba(0, 201, 240, 0.08);
	border-color: #00c9f0;
}

/* Featured plan button = filled */
.wx-plan--featured .wx-plan-btn {
	background: #00c9f0;
	color: #000000;
	border-color: #00c9f0;
	font-weight: 700;
}

.wx-plan--featured .wx-plan-btn:hover {
	background: #00e8ff;
	border-color: #00e8ff;
	color: #000000;
}
