/* Deliberately minimal and namespaced (mm- prefix) so this doesn't fight
   with whatever theme is active — a theme can override any of this simply
   by having more specific CSS of its own. */

.mm-pricing-table {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.mm-pricing-card {
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 6px;
	padding: 1.75rem 1.5rem;
	text-align: center;
	background: #fff;
}

.mm-pricing-card__label {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
}

.mm-pricing-card__price {
	margin-bottom: 1.5rem;
}

.mm-pricing-card__amount {
	font-size: 1.8rem;
	font-weight: 700;
}

.mm-pricing-card__period {
	color: #666;
	font-size: 0.85rem;
}

.mm-checkout-btn {
	display: inline-block;
	padding: 0.7rem 1.5rem;
	border: none;
	border-radius: 4px;
	background: #123832;
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	text-decoration: none;
}

.mm-checkout-btn:hover:not(:disabled) {
	background: #0a211d;
	color: #fff;
}

.mm-checkout-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.mm-checkout-btn--login {
	background: #6b7570;
}

.mm-checkout-status {
	margin-top: 0.6rem;
	font-size: 0.85rem;
	min-height: 1.2em;
}

.mm-checkout-status--error {
	color: #a00;
}

.mm-checkout-status--info {
	color: #0a7c3a;
}
