/*
 * Metabolixia — WooCommerce pages.
 *
 * Product, cart and checkout pages are rendered by the active theme, so this
 * file cannot assume the site design tokens are present. Everything here is
 * self-contained and scoped to the mx-shop-* classes the product hooks emit,
 * which means it restyles the Metabolixia blocks without fighting the theme
 * for control of the rest of the page.
 *
 * Dense on purpose. Price, duration, what is included and the button belong
 * close enough together to be read in one pass.
 */

.mx-shop-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 10px;
}

.mx-shop-fact {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	padding: 6px 10px;
	border: 1px solid rgba(23, 19, 49, .12);
	border-radius: 8px;
	background: rgba(23, 19, 49, .03);
	font-size: 13px;
	line-height: 1.3;
	color: #4a4560;
}

.mx-shop-fact strong {
	font-weight: 700;
	color: #171331;
}

.mx-shop-safety {
	margin: 0 0 16px;
	font-size: 12.5px;
	line-height: 1.5;
	color: #6b6880;
	max-width: 60ch;
}

/* ---------------------------------------------------------- family plan */

.mx-shop-how {
	margin: 32px 0;
	padding: 22px clamp(18px, 3vw, 28px);
	border: 1px solid rgba(23, 19, 49, .12);
	border-radius: 14px;
	background: #fff;
}

.mx-shop-how h2 {
	margin: 0 0 16px;
	font-size: 20px;
	line-height: 1.2;
	color: #171331;
}

.mx-shop-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.mx-shop-steps li {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 12px;
	align-items: start;
	margin: 0;
	padding: 0;
}

.mx-shop-step-n {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	color: #6d5cf5;
	padding-top: 2px;
}

.mx-shop-steps li > span:last-child {
	display: grid;
	gap: 2px;
}

.mx-shop-steps strong {
	font-size: 14.5px;
	font-weight: 650;
	color: #171331;
}

.mx-shop-steps span span {
	font-size: 13px;
	line-height: 1.45;
	color: #6b6880;
}

.mx-shop-privacy {
	margin: 18px 0 0;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(109, 92, 245, .06);
	font-size: 13px;
	line-height: 1.5;
	color: #4a4560;
}

.mx-shop-privacy strong {
	color: #171331;
}

@media (min-width: 700px) {
	.mx-shop-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 28px;
	}
}
