/* ── How to Order strip ──────────────────────────────────────── */

.pm-how-to-order {
	margin-top: 32px;
	padding: 28px 24px;
	background: #f8f9fc;
	border-radius: 10px;
}

.pm-how-to-order .pm-product-section-title {
	text-align: center;
	margin-bottom: 24px;
}

.pm-how-to-order-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}

.pm-how-to-order-step {
	flex: 1 1 160px;
	max-width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	position: relative;
}

/* Arrow */
.pm-how-to-order-step:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -1px;
	top: 20px;
	width: 2px;
	height: 2px;
	border-top: 2px solid #d0d5e8;
	border-right: 2px solid #d0d5e8;
	transform: rotate(45deg) translateY(-50%);
}

@media (min-width: 560px) {
	.pm-how-to-order-step:not(:last-child)::after {
		top: 22px;
		right: -8px;
		width: 12px;
		height: 12px;
	}
}

.pm-how-to-order-circle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ps-blue, #223D90);
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	flex-shrink: 0;
	font-family: "Inter", "Segoe UI", sans-serif;
}

.pm-how-to-order-label {
	font-family: "Inter", "Segoe UI", sans-serif;
	font-size: .84rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	margin-bottom: 5px;
}

.pm-how-to-order-desc {
	font-size: .76rem;
	color: #666;
	line-height: 1.5;
}

.pm-how-to-order-cta {
	text-align: center;
	margin-top: 24px;
}

.pm-how-to-order-cta a {
	display: inline-block;
	background: var(--ps-blue, #223D90);
	color: #fff !important;
	text-decoration: none !important;
	padding: 10px 24px;
	border-radius: 5px;
	font-family: "Inter", "Segoe UI", sans-serif;
	font-size: .88rem;
	font-weight: 700;
	letter-spacing: .02em;
	transition: opacity .15s ease;
}

@media (hover: hover) {
	.pm-how-to-order-cta a:hover {
		opacity: .88;
	}
}

@media (max-width: 559px) {
	.pm-how-to-order-steps {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.pm-how-to-order-step {
		flex-direction: row;
		text-align: left;
		max-width: 100%;
		padding: 0;
		gap: 14px;
	}

	.pm-how-to-order-step::after {
		display: none;
	}

	.pm-how-to-order-circle {
		margin-bottom: 0;
	}
}
