/* Mise Pro — order chooser modal. Neutral, theme-agnostic styling. */
.msp-chooser-scrim {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba( 0, 0, 0, 0.5 );
	opacity: 0;
	transition: opacity 0.2s ease;
}
.msp-chooser-scrim.is-open {
	opacity: 1;
}
.msp-chooser {
	position: relative;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	color: #1a1a1a;
	border-radius: 14px;
	padding: 28px 24px 24px;
	box-shadow: 0 18px 50px rgba( 0, 0, 0, 0.3 );
	transform: translateY( 8px );
	transition: transform 0.2s ease;
}
.msp-chooser-scrim.is-open .msp-chooser {
	transform: translateY( 0 );
}
.msp-chooser-close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #666;
}
.msp-chooser-title {
	margin: 0 0 18px;
	font-size: 1.4rem;
	text-align: center;
}
.msp-chooser-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
@media ( max-width: 540px ) {
	.msp-chooser-cols {
		grid-template-columns: 1fr;
	}
}
.msp-chooser-col {
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}
.msp-chooser-col h3 {
	margin: 0 0 8px;
	font-size: 1.1rem;
}
.msp-chooser-pitch {
	margin: 0 0 14px;
	color: #555;
	font-size: 0.95rem;
}
.msp-chooser-state {
	margin: 0 0 14px;
	padding: 10px 12px;
	background: #fdf1d6;
	border: 1px solid #f3c964;
	border-radius: 8px;
	color: #6b4e12;
	font-size: 0.9rem;
}
.msp-chooser-continue {
	display: inline-block;
	padding: 11px 18px;
	background: #b3420b;
	color: #fff;
	border-radius: 9px;
	text-decoration: none;
	font-weight: 700;
}
.msp-chooser-continue:hover {
	filter: brightness( 0.95 );
}
.msp-chooser-partners {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.msp-chooser-partner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 9px;
	text-decoration: none;
	color: #1a1a1a;
	font-weight: 600;
	background: #fafafa;
}
.msp-chooser-partner:hover {
	border-color: #b3420b;
}
/* Fixed-height contain box so mixed-size/aspect logos line up uniformly; the
   name text is ALWAYS shown alongside (name-only when a partner has no logo). */
.msp-chooser-partner-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 28px;
	flex: 0 0 40px;
}
.msp-chooser-partner-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.msp-chooser-partner-name {
	line-height: 1.2;
}

/* ── Delivery hints (one renderer, three placements) ── */
.msp-delivery-hint {
	margin: 10px 0;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var( --ink-60, #6b5c4a );
}
.msp-delivery-hint-lead {
	font-weight: 600;
}
.msp-delivery-hint a {
	color: var( --action-primary, #b3420b );
}
/* Checkout: one legibility step up — the theme small-text token instead of the
   tiniest — but still muted and link-only (never a button/background; the
   defend-direct-orders rationale stands). */
.msp-delivery-hint--checkout {
	font-size: var( --fs-small, 0.9rem );
}
.msp-delivery-hint--checkout a {
	text-decoration: underline;
}
.msp-delivery-hint--dish {
	margin: 8px 0 0;
}
