/**
 * Pricing Page Styles
 *
 * @package Aomo_Web
 * @since 1.0.0
 */

.pricing-page {
	padding: 2rem 0;
}

.pricing-table-section {
	padding: 3rem 0;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.pricing-card {
	background-color: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 2rem;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
	border-color: #0073aa;
	box-shadow: 0 4px 16px rgba(0, 115, 170, 0.2);
}

.popular-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

.pricing-header {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.plan-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

.plan-description {
	font-size: 0.9375rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.plan-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
}

.price-currency {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
}

.price-amount {
	font-size: 3rem;
	font-weight: 700;
	color: #0073aa;
	line-height: 1;
}

.price-period {
	font-size: 1rem;
	color: #666;
}

.pricing-features {
	flex: 1;
	margin-bottom: 2rem;
}

.features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.features-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 0.9375rem;
	color: #666;
}

.features-list li:last-child {
	border-bottom: none;
}

.feature-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-color: #0073aa;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	margin-top: 2px;
}

.pricing-footer {
	margin-top: auto;
}

.btn-block {
	width: 100%;
	text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card {
		padding: 1.5rem;
	}

	.price-amount {
		font-size: 2.5rem;
	}
}
