.foodord-pro-price {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	align-items: center;
}

.foodord-pro-bogo-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.foodord-pro-price__row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.foodord-pro-price__current {
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}

.foodord-pro-price__badge {
	align-self: auto;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 50px;
	background: linear-gradient(120deg, #059669, #10b981);
	color: #ffffff;
	border: 1px solid rgba(16, 185, 129, 0.3);
	opacity: 0.9;
	transition: all 0.2s ease;
}

.foodord-pro-price__badge:hover {
	opacity: 1;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.foodord-pro-bogo-badge {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	padding: 3px 6px;
	border-radius: 999px;
	background: linear-gradient(120deg, #059669, #10b981);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	position: relative;
	border: none;
	outline: none;
}

.foodord-pro-bogo-badge:hover,
.foodord-pro-bogo-badge:focus-visible {
	opacity: 1;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.foodord-pro-bogo-icon {
	display: inline-block;
	width: 11px;
	height: 11px;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	vertical-align: middle;
}


@media (max-width: 480px) {
	.foodord-pro-price__current {
		font-size: 1.25rem;
	}

	.foodord-pro-price__badge {
		font-size: 0.625rem;
	}

	.foodord-pro-bogo-badge {
		font-size: 0.625rem;
		padding: 4px 6px;
	}
}

@media (max-width: 1024px) {
	.foodord-pro-price {
		gap: 4px 8px;
	}

	.foodord-pro-bogo-wrap {
		gap: 6px;
	}
}


.foodord-bogo-sheet-content {
	padding: 0 20px 40px;
	text-align: center;
}

.foodord-bogo-sheet-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px auto 24px;
	color: #ffffff;
	box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.foodord-bogo-sheet-message {
	font-size: 1.125rem;
	font-weight: 600;
	color: #0f172a;
	line-height: 1.5;
	margin: 0;
}

@media (min-width: 769px) {
	.foodord-bogo-sheet-backdrop {
		position: fixed;
		inset: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 24px;
		background: rgba(15, 23, 42, 0.2);
		backdrop-filter: blur(6px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.28s ease;
		z-index: 10000;
	}

	.foodord-bogo-sheet-backdrop.is-visible {
		opacity: 1;
		pointer-events: auto;
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet {
		width: 100%;
		max-width: 520px;
		margin: 0;
		background: #ffffff;
		border-radius: 16px;
		box-shadow: 0 16px 48px rgba(15, 23, 42, 0.16);
		transform: translateY(8px);
		transition: transform 0.3s ease;
		display: flex;
		flex-direction: column;
		max-height: min(80vh, 560px);
		overflow: hidden;
	}

	.foodord-bogo-sheet-backdrop.is-visible .foodord-sheet {
		transform: translateY(0);
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__handle {
		display: none;
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 18px;
		border-bottom: 1px solid rgba(226, 232, 240, 0.75);
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__title {
		margin: 0;
		font-size: 16px;
		font-weight: 600;
		color: #0f172a;
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__close {
		border: none;
		background: transparent;
		color: #0f172a;
		width: 36px;
		height: 36px;
		border-radius: 18px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: color 0.2s ease;
		position: relative;
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__close::before,
	.foodord-bogo-sheet-backdrop .foodord-sheet__close::after {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		width: 14px;
		height: 2px;
		background: currentColor;
		border-radius: 1px;
		transform-origin: center;
		transition: opacity 0.2s ease;
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__close::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__close::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__close:hover,
	.foodord-bogo-sheet-backdrop .foodord-sheet__close:focus-visible {
		color: rgba(15, 23, 42, 0.6);
		outline: none;
		background: transparent;
	}

	.foodord-bogo-sheet-backdrop .foodord-sheet__body {
		overflow-y: auto;
		padding: 12px 0 18px;
		overscroll-behavior: contain;
	}

	body.foodord-sheet-open {
		overflow: hidden;
	}
}