/**
 * Offers styles
 *
 * @package MioPizza
 */

.mio-offer-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	z-index: 2147483000;
}

.mio-offer-card {
	background: #fff;
	max-width: 440px;
	margin: 12vh auto;
	padding: 18px;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.mio-offer-grid {
	display: grid;
	gap: 12px;
	margin-top: 10px;
}

.mio-offer-opt {
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.12s;
}

.mio-offer-opt:hover {
	outline: 3px solid #111;
}

.mio-offer-opt.active {
	background: #f2fff4;
	border-color: #1d7a33;
	outline: 3px solid #1d7a33;
}

.mio-offer-change {
	position: fixed;
	left: 5px;
	bottom: calc(5px + env(safe-area-inset-bottom));
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 50%;
	background: #e02b20;
	color: #fff;
	padding: 0;
	font-weight: 700;
	font-size: 10px;
	line-height: 1.1;
	text-align: center;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	z-index: 2147483646;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(2px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}

.mio-offer-change.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

