/* ---------- booking__menu_variants step ----------
 *
 * One card per variant group. Each card has a title (base_name) and
 * a row of buttons (one per variant). Buttons split the row width
 * evenly via auto-fit grid — 2 variants give 50/50, 3 give 33/33/33.
 * Selected button uses the brand teal #3FA88E to match the rest of
 * ChefGo's accent system. */

.lp-variant-step-w {
	padding: 4px 2px 12px;
}

.lp-variant-intro {
	font-size: 13px;
	color: var(--latepoint-color-soft, #6b6b6b);
	line-height: 1.5;
	margin: 0 0 14px;
}

.lp-variant-group {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 10px;
	background: #fff;
}

.lp-variant-group-title {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	margin-bottom: 8px;
}

.lp-variant-options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.lp-variant-option {
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	color: #555;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	transition: background 120ms ease, border-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
	line-height: 1.3;
	min-height: 40px;
}

.lp-variant-option:hover {
	border-color: rgba(63, 168, 142, 0.45);
	color: #222;
}

.lp-variant-option.is-selected {
	background: rgba(63, 168, 142, 0.10);
	border-color: #3FA88E;
	color: #2d7a66;
	box-shadow: 0 0 0 1px #3FA88E inset;
}

.lp-variant-option:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(63, 168, 142, 0.25);
}

/* Variant hint shown next to plates in the menu-builder admin grid. */
.lp-variant-grid-hint {
	display: block;
	font-size: 11px;
	color: #999;
	font-weight: 400;
	margin-top: 2px;
	font-style: italic;
}

@media (max-width: 480px) {
	.lp-variant-option { font-size: 12px; padding: 9px 10px; min-height: 38px; }
}
