:root {
	--ivm-black: #000000;
	--ivm-bordeaux: #2A000E;
	--ivm-green: #062219;
	--ivm-gold: #A3835F;
	--ivm-white: #FFFFFF;
	--ivm-black-rgb: 0, 0, 0;
	--ivm-bordeaux-rgb: 42, 0, 14;
	--ivm-green-rgb: 6, 34, 25;
	--ivm-gold-rgb: 163, 131, 95;
	--ivm-white-rgb: 255, 255, 255;
	--ivm-font-main: "Montserrat", Arial, sans-serif;
}
@font-face {
	font-family: "Sofia Sans";
	font-style: normal;
	font-weight: 300 900;
	font-display: swap;
	src: url("../fonts/sofia-sans/SofiaSans-VariableFont_wght.ttf") format("truetype");
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 300 900;
	font-display: swap;
	src: url("../fonts/montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
}

.ivm-menu,
.ivm-menu * {
	box-sizing: border-box;
}

.ivm-menu {
	--ivm-bg: var(--ivm-black);
	--ivm-bg-soft: #1b1813;
	--ivm-panel: #201c16;
	--ivm-panel-alt: #282219;
	--ivm-burgundy: var(--ivm-bordeaux);
	--ivm-green: #062219;
	--ivm-gold: #A3835F;
	--ivm-gold-strong: var(--ivm-gold);
	--ivm-cream: var(--ivm-white);
	--ivm-muted: rgba(var(--ivm-white-rgb), 0.72);
	--ivm-border: rgba(var(--ivm-gold-rgb), 0.25);
	--ivm-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
	background:
		linear-gradient(180deg, rgba(var(--ivm-white-rgb), 0.04), transparent 280px),
		var(--ivm-bg);
	color: var(--ivm-cream);
	font-family: var(--ivm-font-main);
	letter-spacing: 0;
	margin: 0 auto;
	max-width: 1180px;
	min-height: 520px;
	overflow: clip;
	padding: 20px 14px 112px;
	position: relative;
}

.ivm-menu a {
	color: inherit;
	text-decoration: none;
}

.ivm-menu button {
	font-family: inherit;
	letter-spacing: 0;
}

.ivm-menu-header {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 10px 0 22px;
}

.ivm-menu-brand {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 88px;
	width: 100%;
}

.ivm-logo {
	display: block;
	height: auto;
	max-height: 96px;
	max-width: min(280px, 76vw);
	object-fit: contain;
}

.ivm-logo-fallback {
	color: var(--ivm-gold-strong);
	font-family: var(--ivm-font-main);
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.ivm-language-switcher {
	background: rgba(var(--ivm-white-rgb), 0.06);
	border: 1px solid var(--ivm-border);
	border-radius: 8px;
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	max-width: 520px;
	padding: 6px;
	width: 100%;
}

.ivm-language-button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--ivm-muted);
	cursor: pointer;
	display: flex;
	gap: 6px;
	justify-content: center;
	min-height: 40px;
	padding: 8px 6px;
	transition: background 160ms ease, color 160ms ease;
}

.ivm-language-button img {
	display: block;
	height: 20px;
	width: 20px;
}

.ivm-language-button span {
	font-size: 12px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ivm-language-button:hover,
.ivm-language-button:focus-visible,
.ivm-language-button.is-active {
	background: rgba(var(--ivm-gold-rgb), 0.18);
	color: var(--ivm-white);
	outline: none;
}

.ivm-categories {
	display: flex;
	gap: 8px;
	margin: 0 -14px 24px;
	overflow-x: auto;
	padding: 0 14px 10px;
	position: sticky;
	scrollbar-width: thin;
	top: 0;
	z-index: 2;
}

.ivm-category-link {
	background: rgba(var(--ivm-white-rgb), 0.07);
	border: 1px solid var(--ivm-border);
	border-radius: 999px;
	color: var(--ivm-cream);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.1;
	min-height: 40px;
	padding: 12px 16px;
	white-space: nowrap;
}

.ivm-category-link:hover,
.ivm-category-link:focus-visible {
	background: var(--ivm-gold);
	color: #17130e;
	outline: none;
}

.ivm-category-list {
	display: grid;
	gap: 36px;
}

.ivm-category-section {
	scroll-margin-top: 72px;
}

.ivm-category-heading {
	border-bottom: 1px solid var(--ivm-border);
	margin-bottom: 16px;
	padding-bottom: 10px;
}

.ivm-category-heading h2,
.ivm-allergens-list-heading h2,
.ivm-menu-empty h2 {
	color: var(--ivm-gold-strong);
	font-family: var(--ivm-font-main);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.08;
	margin: 0;
	text-transform: uppercase;
}

.ivm-category-heading p,
.ivm-menu-empty p {
	color: var(--ivm-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: 8px 0 0;
}

.ivm-product-grid {
	display: grid;
	gap: 14px;
}

.ivm-product-card {
	background:
		linear-gradient(180deg, rgba(var(--ivm-white-rgb), 0.05), rgba(var(--ivm-white-rgb), 0.018)),
		var(--ivm-burgundy);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.11);
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	min-height: 132px;
	overflow: hidden;
}

.ivm-product-media {
	background: #0d0c09;
	min-height: 132px;
}

.ivm-product-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ivm-product-image-placeholder {
	align-items: center;
	color: rgba(var(--ivm-gold-rgb), 0.7);
	display: flex;
	font-family: var(--ivm-font-main);
	font-size: 28px;
	font-weight: 900;
	justify-content: center;
	min-height: 132px;
}

.ivm-product-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	padding: 14px;
}

.ivm-product-main {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.ivm-product-title {
	color: var(--ivm-white);
	font-size: 18px;
	font-weight: 850;
	line-height: 1.12;
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
}

.ivm-product-price {
	color: var(--ivm-gold-strong);
	flex: 0 0 auto;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.1;
	margin: 0;
	white-space: nowrap;
}

.ivm-product-description {
	color: var(--ivm-muted);
	font-size: 14px;
	line-height: 1.42;
}

.ivm-product-description p {
	margin: 0 0 7px;
}

.ivm-product-description p:last-child {
	margin-bottom: 0;
}

.ivm-allergens {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ivm-allergen,
.ivm-allergens-legend-item {
	align-items: center;
	background: rgba(var(--ivm-white-rgb), 0.08);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.1);
	border-radius: 999px;
	color: var(--ivm-cream);
	display: inline-flex;
	font-size: 12px;
	font-weight: 750;
	gap: 6px;
	line-height: 1.15;
	min-height: 28px;
	padding: 5px 9px;
}

.ivm-allergen-icon {
	display: block;
	height: 18px;
	object-fit: contain;
	width: 18px;
}

.ivm-add-to-summary {
	align-items: center;
	align-self: flex-start;
	background: var(--ivm-gold);
	border: 1px solid var(--ivm-gold-strong);
	border-radius: 8px;
	color: #17130e;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	gap: 8px;
	justify-content: center;
	line-height: 1.1;
	min-height: 42px;
	padding: 11px 14px;
	transition: background 160ms ease, transform 160ms ease;
}

.ivm-add-to-summary:hover,
.ivm-add-to-summary:focus-visible {
	background: var(--ivm-gold-strong);
	outline: none;
	transform: translateY(-1px);
}

.ivm-add-to-summary.is-added {
	background: var(--ivm-white);
}

.ivm-add-to-summary::before {
	background: url("../icons/menu/aggiungi-al-riepilogo.svg") center / contain no-repeat;
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	height: 18px;
	width: 18px;
}

.ivm-allergens-list {
	background:
		linear-gradient(180deg, rgba(var(--ivm-white-rgb), 0.045), rgba(var(--ivm-white-rgb), 0.015)),
		var(--ivm-green);
	border: 1px solid var(--ivm-border);
	border-radius: 8px;
	margin-top: 42px;
	padding: 18px;
}

.ivm-allergens-list-heading {
	margin-bottom: 14px;
}

.ivm-allergens-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ivm-menu-empty {
	background: rgba(var(--ivm-white-rgb), 0.05);
	border: 1px solid var(--ivm-border);
	border-radius: 8px;
	padding: 24px;
	text-align: center;
}

.ivm-summary-toggle {
	align-items: center;
	background: var(--ivm-gold);
	border: 1px solid var(--ivm-gold-strong);
	border-radius: 999px;
	bottom: max(18px, env(safe-area-inset-bottom));
	box-shadow: var(--ivm-shadow);
	color: #15110d;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	gap: 9px;
	min-height: 54px;
	padding: 12px 14px 12px 16px;
	position: fixed;
	right: 16px;
	z-index: 99998;
}

.ivm-summary-toggle:focus-visible,
.ivm-summary-toggle:hover {
	background: var(--ivm-gold-strong);
	outline: none;
}

.ivm-summary-toggle-icon {
	background: url("../icons/menu/riepilogo.svg") center / contain no-repeat;
	display: inline-block;
	height: 18px;
	width: 16px;
}

.ivm-summary-count {
	align-items: center;
	background: #15110d;
	border-radius: 999px;
	color: var(--ivm-gold-strong);
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	height: 24px;
	justify-content: center;
	min-width: 24px;
	padding: 0 7px;
}

.ivm-summary-count[hidden],
.ivm-summary-badge[hidden] {
	display: none !important;
}

.ivm-plus-one {
	align-items: center;
	background: rgba(42, 0, 14, 0.9);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.72);
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 24px;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	left: 0;
	line-height: 1;
	min-width: 48px;
	padding: 0 11px;
	pointer-events: none;
	position: fixed;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18), 0 2px 10px rgba(0, 0, 0, 0.5);
	top: 0;
	transform: translate(-50%, -50%);
	z-index: 999999;
	animation: ivmPlusOneFloat 900ms ease-out forwards;
}

@keyframes ivmPlusOneFloat {
	0% {
		opacity: 0;
		transform: translate(-50%, -42%) scale(0.78);
	}

	16% {
		opacity: 1;
		transform: translate(-50%, -72%) scale(1.08);
	}

	44% {
		opacity: 1;
		transform: translate(-50%, -105%) scale(1);
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -168%) scale(0.92);
	}
}

.ivm-summary-backdrop {
	background: rgba(0, 0, 0, 0.62);
	inset: 0;
	position: fixed;
	z-index: 99998;
}

.ivm-summary-backdrop[hidden] {
	display: none;
}

.ivm-summary-panel {
	background:
		linear-gradient(180deg, rgba(var(--ivm-white-rgb), 0.035), transparent 260px),
		#0f0e0c;
	border-left: 1px solid var(--ivm-border);
	box-shadow: var(--ivm-shadow);
	color: var(--ivm-cream);
	display: flex;
	flex-direction: column;
	height: 100dvh;
	max-width: 430px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(104%);
	transition: transform 220ms ease;
	width: min(100vw, 430px);
	z-index: 99999;
}

.ivm-summary-panel[hidden] {
	display: none;
}

.ivm-summary-panel.ivm-summary-panel--open {
	transform: translateX(0);
}

.ivm-summary-header {
	align-items: center;
	border-bottom: 1px solid var(--ivm-border);
	display: flex;
	justify-content: space-between;
	min-height: 76px;
	padding: 18px;
}

.ivm-summary-header h2 {
	color: var(--ivm-gold-strong);
	font-family: var(--ivm-font-main);
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.ivm-summary-close {
	align-items: center;
	background: rgba(var(--ivm-white-rgb), 0.08);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.12);
	border-radius: 999px;
	color: var(--ivm-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 26px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	width: 42px;
}

.ivm-summary-close:hover,
.ivm-summary-close:focus-visible {
	background: rgba(var(--ivm-gold-rgb), 0.18);
	outline: none;
}

.ivm-summary-body {
	flex: 1;
	overflow: auto;
	padding: 18px;
}

.ivm-summary-empty {
	color: var(--ivm-muted);
	font-size: 16px;
	line-height: 1.45;
	margin: 0;
}

.ivm-summary-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ivm-summary-item {
	background: var(--ivm-panel-alt);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.1);
	border-radius: 8px;
	display: grid;
	gap: 10px;
	padding: 14px;
}

.ivm-summary-item-main {
	align-items: start;
	display: grid;
	gap: 6px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ivm-summary-item-name {
	color: var(--ivm-white);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.18;
	margin: 0;
	overflow-wrap: anywhere;
}

.ivm-summary-item-qty {
	background: rgba(var(--ivm-gold-rgb), 0.2);
	border: 1px solid var(--ivm-border);
	border-radius: 999px;
	color: var(--ivm-gold-strong);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	padding: 7px 9px;
}

.ivm-summary-item-allergens {
	color: var(--ivm-muted);
	font-size: 13px;
	line-height: 1.35;
	margin: 0;
}

.ivm-summary-remove {
	align-self: start;
	background: transparent;
	border: 1px solid rgba(var(--ivm-white-rgb), 0.18);
	border-radius: 8px;
	color: var(--ivm-cream);
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	justify-self: start;
	min-height: 36px;
	padding: 8px 11px;
}

.ivm-summary-remove:hover,
.ivm-summary-remove:focus-visible {
	background: rgba(var(--ivm-white-rgb), 0.08);
	outline: none;
}

.ivm-summary-footer {
	border-top: 1px solid var(--ivm-border);
	padding: 16px 18px;
}

.ivm-summary-clear {
	background: transparent;
	border: 1px solid rgba(var(--ivm-white-rgb), 0.22);
	border-radius: 8px;
	color: var(--ivm-cream);
	cursor: pointer;
	font-size: 14px;
	font-weight: 900;
	min-height: 44px;
	padding: 10px 14px;
	width: 100%;
}

.ivm-summary-clear:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.ivm-summary-clear:not(:disabled):hover,
.ivm-summary-clear:not(:disabled):focus-visible {
	background: rgba(var(--ivm-gold-rgb), 0.14);
	outline: none;
}

.ivm-screen {
	--ivm-bg: var(--ivm-black);
	--ivm-bg-soft: #1b1813;
	--ivm-panel: #201c16;
	--ivm-panel-alt: #282219;
	--ivm-burgundy: var(--ivm-bordeaux);
	--ivm-green: #062219;
	--ivm-gold: #A3835F;
	--ivm-gold-strong: var(--ivm-gold);
	--ivm-cream: var(--ivm-white);
	--ivm-muted: rgba(var(--ivm-white-rgb), 0.72);
	--ivm-border: rgba(var(--ivm-gold-rgb), 0.25);
	--ivm-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
	background:
		linear-gradient(180deg, rgba(var(--ivm-white-rgb), 0.035), transparent 320px),
		var(--ivm-black);
	color: var(--ivm-cream, var(--ivm-white));
	font-family: var(--ivm-font-main);
	margin: 0 auto;
	max-width: 430px;
	min-height: 100dvh;
	overflow: clip;
	padding: 18px 18px 0;
	position: relative;
}

.ivm-language-screen {
	align-items: center;
	display: flex;
	justify-content: center;
	padding-bottom: 42px;
}

.ivm-language-card {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: min(100%, 330px);
}

.ivm-language-logo {
	display: block;
	max-width: 190px;
	width: 70%;
}

.ivm-language-card h1 {
	border-bottom: 1px solid var(--ivm-border);
	border-top: 1px solid var(--ivm-border);
	color: var(--ivm-white);
	font-size: 18px;
	font-weight: 650;
	line-height: 1;
	margin: 4px 0 16px;
	padding: 16px 0;
	text-align: center;
	width: 100%;
}

.ivm-language-list {
	display: grid;
	gap: 12px;
	width: min(220px, 100%);
}

.ivm-language-choice {
	align-items: center;
	background: rgba(var(--ivm-white-rgb), 0.035);
	border: 1px solid var(--ivm-border);
	border-radius: 5px;
	color: var(--ivm-cream);
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	min-height: 38px;
	padding: 9px 14px;
}

.ivm-language-choice img {
	height: 20px;
	width: 20px;
}

.ivm-app-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 44px;
	position: relative;
	z-index: 3;
}

.ivm-back-link {
	color: rgba(var(--ivm-white-rgb), 0.72);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.ivm-back-link::before {
	content: "< ";
}

.ivm-header-summary {
	align-items: center;
	background: rgba(var(--ivm-white-rgb), 0.08);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.13);
	border-radius: 999px;
	color: var(--ivm-gold-strong);
	display: inline-flex;
	gap: 8px;
	min-height: 38px;
	padding: 8px 10px;
	overflow: visible;
	position: relative;
	text-decoration: none;
}

.ivm-header-summary .ivm-summary-count {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.85);
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 9px;
	height: 16px;
	min-width: 16px;
	padding: 0 4px;
	position: absolute;
	right: -7px;
	top: -7px;
	z-index: 2;
}

.ivm-app-title {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 10px 0 20px;
	text-align: center;
}

.ivm-app-logo {
	display: block;
	max-height: 74px;
	max-width: 190px;
	object-fit: contain;
}

.ivm-app-title h1 {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-size: 34px;
	font-weight: 650;
	line-height: 1;
	margin: 0;
}

.ivm-menu-tools {
	align-items: center;
	border-bottom: 1px solid var(--ivm-border);
	border-top: 1px solid var(--ivm-border);
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr auto;
	margin: 0 0 18px;
	padding: 10px 0;
}

.ivm-menu-tools a,
.ivm-menu-tools button,
.ivm-menu-tools span {
	background: rgba(var(--ivm-white-rgb), 0.04);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.12);
	border-radius: 6px;
	color: var(--ivm-cream);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.1;
	min-height: 34px;
	padding: 9px 10px;
	text-align: center;
	text-decoration: none;
}

.ivm-menu-tools button {
	cursor: default;
}

.ivm-menu-category-cards {
	display: grid;
	gap: 10px;
}

.ivm-menu-category-card {
	align-items: end;
	background:
		linear-gradient(90deg, rgba(58, 7, 23, 0.92), rgba(6, 44, 34, 0.62)),
		var(--ivm-burgundy);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.25);
	border-radius: 7px;
	color: var(--ivm-white);
	display: grid;
	min-height: 86px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.ivm-menu-category-card img {
	filter: saturate(0.92) contrast(1.02);
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.62;
	position: absolute;
	width: 100%;
}

.ivm-menu-category-card::after {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
	content: "";
	inset: 0;
	position: absolute;
}

.ivm-menu-category-card span {
	font-family: var(--ivm-font-main);
	font-size: 19px;
	font-weight: 850;
	line-height: 1.05;
	padding: 18px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.ivm-app-links {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
}

.ivm-app-links a,
.ivm-gallery-link {
	background: rgba(var(--ivm-white-rgb), 0.045);
	border: 1px solid var(--ivm-border);
	border-radius: 6px;
	color: var(--ivm-gold-strong);
	display: block;
	font-size: 14px;
	font-weight: 850;
	min-height: 40px;
	padding: 12px 14px;
	text-align: center;
	text-decoration: none;
}

.ivm-category-product-list {
	display: grid;
	gap: 12px;
}

.ivm-category-product-list .ivm-product-card {
	grid-template-columns: 118px minmax(0, 1fr);
	min-height: 152px;
}

.ivm-category-product-list .ivm-product-media,
.ivm-category-product-list .ivm-product-image-placeholder {
	min-height: 152px;
}

.ivm-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ivm-product-badges li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	color: var(--ivm-white);
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	padding: 6px 8px;
}

.ivm-product-read-more {
	align-self: flex-start;
	background: transparent;
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.4);
	border-radius: 7px;
	color: var(--ivm-gold-strong);
	cursor: pointer;
	font-size: 13px;
	font-weight: 850;
	min-height: 36px;
	padding: 8px 10px;
}

.ivm-summary-qty-controls {
	align-items: center;
	display: flex;
	gap: 8px;
}

.ivm-summary-qty-controls .ivm-summary-item-qty {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-width: 26px;
}

.ivm-summary-qty-button {
	align-items: center;
	background: rgba(var(--ivm-gold-rgb), 0.16);
	border: 1px solid var(--ivm-border);
	border-radius: 999px;
	color: var(--ivm-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 20px;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 2px;
	width: 34px;
}

.ivm-product-modal-backdrop {
	background: rgba(0, 0, 0, 0.68);
	inset: 0;
	position: fixed;
	z-index: 99998;
}

.ivm-product-modal-backdrop[hidden],
.ivm-product-modal[hidden] {
	display: none;
}

html.ivm-product-modal-lock,
body.ivm-product-modal-lock {
	overflow: hidden !important;
	overscroll-behavior: none;
}

.ivm-product-modal {
	background: #180411;
	border-left: 1px solid var(--ivm-border);
	box-shadow: var(--ivm-shadow);
	color: var(--ivm-cream);
	display: flex;
	flex-direction: column;
	height: 100dvh;
	max-width: 430px;
	overflow: auto;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(104%);
	transition: transform 220ms ease;
	width: min(100vw, 430px);
	z-index: 99999;
}

.ivm-product-modal.ivm-product-modal--open {
	transform: translateX(0);
}

.ivm-product-modal-close {
	align-items: center;
	background: rgba(0, 0, 0, 0.46);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: var(--ivm-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 26px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 42px;
	z-index: 2;
}

.ivm-product-modal-media {
	background: #090806;
	min-height: 270px;
}

.ivm-product-modal-media img,
.ivm-product-modal-media .ivm-product-image-placeholder {
	height: 270px;
	object-fit: cover;
	width: 100%;
}

.ivm-product-modal-content {
	display: grid;
	gap: 14px;
	padding: 18px;
}

.ivm-product-modal-heading {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ivm-product-modal-heading h2 {
	color: var(--ivm-white);
	font-size: 24px;
	font-weight: 850;
	line-height: 1.05;
	margin: 0;
	overflow-wrap: anywhere;
}

.ivm-product-modal-heading p {
	color: var(--ivm-gold-strong);
	font-size: 18px;
	font-weight: 900;
	margin: 0;
}

.ivm-product-modal-description {
	color: var(--ivm-muted);
	font-size: 15px;
	line-height: 1.45;
}

.ivm-summary-page-box {
	border-bottom: 1px solid var(--ivm-border);
	border-top: 1px solid var(--ivm-border);
	padding: 16px 0;
}

.ivm-service-message {
	background: var(--ivm-burgundy);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.22);
	border-radius: 8px;
	color: var(--ivm-white);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.35;
	margin: 20px 0;
	padding: 16px;
	text-align: center;
}

.ivm-allergen-table {
	display: grid;
	gap: 12px;
}

.ivm-allergen-row {
	align-items: start;
	background: rgba(var(--ivm-white-rgb), 0.035);
	border: 1px solid var(--ivm-border);
	border-radius: 8px;
	display: grid;
	gap: 12px;
	grid-template-columns: 48px minmax(0, 1fr);
	padding: 13px;
}

.ivm-allergen-row-icon {
	align-items: center;
	background: rgba(var(--ivm-white-rgb), 0.08);
	border-radius: 999px;
	display: flex;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.ivm-allergen-row-icon img {
	height: 32px;
	object-fit: contain;
	width: 32px;
}

.ivm-allergen-row span {
	color: var(--ivm-gold);
	font-size: 11px;
	font-weight: 900;
}

.ivm-allergen-row h2 {
	color: var(--ivm-gold-strong);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.05;
	margin: 2px 0 5px;
}

.ivm-allergen-row p {
	color: var(--ivm-muted);
	font-size: 13px;
	line-height: 1.35;
	margin: 0;
}

.ivm-event-intro,
.ivm-event-details,
.ivm-event-form-section {
	background: rgba(var(--ivm-white-rgb), 0.035);
	border: 1px solid var(--ivm-border);
	border-radius: 8px;
	display: grid;
	gap: 10px;
	margin-bottom: 16px;
	padding: 16px;
}

.ivm-event-intro p,
.ivm-event-details p,
.ivm-event-form-section p,
.ivm-event-contacts p {
	color: var(--ivm-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.ivm-event-details h2,
.ivm-event-form-section h2 {
	color: var(--ivm-gold-strong);
	font-size: 20px;
	line-height: 1.1;
	margin: 0;
}

.ivm-event-gallery {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
	overflow-x: auto;
	padding-bottom: 8px;
}

.ivm-event-gallery img {
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.22);
	border-radius: 8px;
	flex: 0 0 74%;
	height: 150px;
	object-fit: cover;
}

.ivm-event-form {
	display: grid;
	gap: 10px;
}

.ivm-event-form label {
	display: grid;
	gap: 5px;
}

.ivm-event-form span {
	color: var(--ivm-muted);
	font-size: 12px;
	font-weight: 850;
}

.ivm-event-form input {
	background: var(--ivm-white);
	border: 0;
	border-radius: 5px;
	color: #15110d;
	font: inherit;
	min-height: 40px;
	padding: 9px 10px;
}

.ivm-event-form button {
	background: var(--ivm-gold);
	border: 0;
	border-radius: 7px;
	color: #17130e;
	font-size: 14px;
	font-weight: 900;
	min-height: 44px;
}

.ivm-app-footer {
	background: var(--ivm-green);
	border-top: 1px solid rgba(var(--ivm-gold-rgb), 0.22);
	margin: 28px -18px 0;
	padding: 28px 18px 34px;
	text-align: center;
}

.ivm-footer-logo {
	display: block;
	margin: 0 auto 18px;
	max-width: 180px;
	width: 62%;
}

.ivm-footer-logo-text {
	color: var(--ivm-gold-strong);
	display: block;
	font-size: 24px;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.ivm-footer-awards {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: center;
	margin-bottom: 16px;
}

.ivm-footer-awards img {
	display: block;
	max-height: 62px;
	max-width: 88px;
	object-fit: contain;
}

.ivm-footer-note {
	border-top: 1px solid rgba(var(--ivm-white-rgb), 0.18);
	color: var(--ivm-muted);
	font-size: 11px;
	line-height: 1.35;
	margin: 18px auto;
	max-width: 320px;
	padding-top: 14px;
}

.ivm-footer-social {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 16px;
}

.ivm-footer-social a {
	align-items: center;
	display: inline-flex;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.ivm-footer-social img {
	max-height: 22px;
	max-width: 22px;
}

.ivm-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	justify-content: center;
}

.ivm-footer-links a {
	color: rgba(var(--ivm-white-rgb), 0.74);
	font-size: 11px;
	text-decoration: none;
}

@media (min-width: 680px) {
	.ivm-menu {
		padding: 30px 26px 120px;
	}

	.ivm-menu-header {
		flex-direction: row;
		justify-content: space-between;
		padding-bottom: 32px;
	}

	.ivm-menu-brand {
		justify-content: flex-start;
		min-height: 96px;
		width: auto;
	}

	.ivm-language-switcher {
		max-width: 470px;
	}

	.ivm-categories {
		margin-left: -26px;
		margin-right: -26px;
		padding-left: 26px;
		padding-right: 26px;
	}

	.ivm-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ivm-product-card {
		grid-template-columns: 132px minmax(0, 1fr);
		min-height: 168px;
	}

	.ivm-product-media,
	.ivm-product-image-placeholder {
		min-height: 168px;
	}
}

@media (min-width: 980px) {
	.ivm-menu {
		padding: 38px 34px 126px;
	}

	.ivm-category-heading h2,
	.ivm-allergens-list-heading h2,
	.ivm-menu-empty h2 {
		font-size: 30px;
	}

	.ivm-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ivm-product-card {
		grid-template-columns: 1fr;
	}

	.ivm-product-media,
	.ivm-product-image-placeholder {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}

	.ivm-product-content {
		min-height: 250px;
	}

	.ivm-add-to-summary {
		margin-top: auto;
	}
}

/* PDF fidelity pass: mobile app proportions. */
body .ivm-screen {
	background: #030303;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
	max-width: 430px;
	padding: 18px 22px 0;
	width: 100%;
}

body .ivm-language-screen {
	background: var(--ivm-black);
	box-sizing: border-box;
	display: block;
	min-height: 100dvh;
	overflow: hidden;
	padding: 112px 0 54px;
}

.ivm-language-screen * {
	box-sizing: border-box;
}

body .ivm-language-card {
	align-items: center;
	gap: 18px;
	margin: 0 auto;
	width: calc(100vw - 36px);
}

body .ivm-language-logo {
	display: block;
	filter: none;
	height: auto;
	margin: 0 auto 44px;
	opacity: 1;
	position: relative;
	visibility: visible;
	max-width: 125px;
	object-fit: contain;
	width: 125px;
	z-index: 2;
}

body .ivm-language-card h1 {
	border: 0;
	color: var(--ivm-white);
	font-size: 26px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
	opacity: 1;
	padding: 0 0 17px;
	position: relative;
	text-align: center;
	-webkit-text-fill-color: var(--ivm-white);
	visibility: visible;
	width: 100%;
	z-index: 2;
}

body .ivm-language-card h1::after {
	background: rgba(var(--ivm-gold-rgb), 0.92);
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
}

body .ivm-language-list {
	display: grid;
	gap: 31px;
	margin-top: 73px;
	opacity: 1;
	visibility: visible;
	width: 181px;
	z-index: 2;
}

body .ivm-language-choice {
	align-items: center;
	background: var(--ivm-black);
	border-color: rgba(var(--ivm-gold-rgb), 0.94);
	border-style: solid;
	border-width: 1px;
	border-radius: 7px;
	color: #d9d2ca;
	display: flex;
	font-size: 19px;
	font-weight: 300;
	gap: 17px;
	justify-content: flex-start;
	line-height: 1;
	min-height: 46px;
	opacity: 1;
	padding: 0 15px;
	text-decoration: none;
	-webkit-text-fill-color: #d9d2ca;
	visibility: visible;
}

body .ivm-language-choice:hover,
body .ivm-language-choice:focus-visible {
	background: #080806;
	border-color: var(--ivm-gold);
	color: var(--ivm-white);
	outline: none;
	text-decoration: none;
}

body .ivm-language-choice span {
	color: #d9d2ca;
	text-decoration: none;
	-webkit-text-fill-color: #d9d2ca;
}

body .ivm-language-choice img {
	display: block;
	height: 25px;
	opacity: 1;
	visibility: visible;
	width: 25px;
}

@media (min-width: 560px) {
	body .ivm-language-screen {
		box-shadow: none;
		max-width: none;
		padding: 118px clamp(42px, 10vw, 96px) 84px;
		width: 100%;
	}

	body .ivm-language-card {
		width: min(100%, 520px);
	}

	body .ivm-language-logo {
		margin-bottom: 54px;
		width: 132px;
	}

	body .ivm-language-card h1 {
		font-size: 32px;
		padding-bottom: 20px;
	}

	body .ivm-language-list {
		gap: 24px;
		margin-top: 76px;
		width: min(100%, 360px);
	}

	body .ivm-language-choice {
		border-radius: 8px;
		font-size: 21px;
		gap: 20px;
		min-height: 56px;
		padding: 0 24px;
	}

	body .ivm-language-choice img {
		height: 29px;
		width: 29px;
	}
}

@media (min-width: 900px) {
	body .ivm-language-screen {
		display: grid;
		place-items: center;
		padding: 8vh clamp(72px, 9vw, 128px);
	}

	body .ivm-language-card {
		margin: 0 auto;
		width: min(100%, 680px);
	}

	body .ivm-language-logo {
		margin-bottom: 50px;
		width: 140px;
	}

	body .ivm-language-card h1 {
		font-size: 38px;
		padding-bottom: 24px;
	}

	body .ivm-language-list {
		gap: 20px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 64px;
		width: min(100%, 560px);
	}

	body .ivm-language-choice {
		justify-content: center;
		min-height: 62px;
	}
}

@media (min-width: 1180px) {
	body .ivm-language-card {
		width: min(100%, 860px);
	}

	body .ivm-language-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		width: min(100%, 820px);
	}
}

.ivm-app-header {
	min-height: 32px;
	padding-top: 2px;
}

.ivm-back-link {
	color: rgba(var(--ivm-white-rgb), 0.64);
	font-size: 12px;
	font-weight: 500;
}

.ivm-header-summary {
	background: transparent;
	border: 0;
	gap: 5px;
	min-height: 28px;
	padding: 0;
}

.ivm-header-summary .ivm-summary-count {
	height: 20px;
	min-width: 20px;
}

.ivm-app-title {
	gap: 8px;
	padding: 0 0 18px;
}

.ivm-app-logo {
	max-height: 46px;
	max-width: 118px;
}

.ivm-app-title h1 {
	color: var(--ivm-white);
	font-size: 36px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.08;
}

.ivm-menu-home .ivm-app-title h1 {
	font-size: 26px;
	margin-top: 2px;
}

.ivm-menu-tools {
	align-items: center;
	border-color: rgba(var(--ivm-gold-rgb), 0.35);
	display: grid;
	gap: 8px;
	grid-template-columns: auto 1fr 1fr;
	margin-bottom: 13px;
	padding: 9px 0;
}

.ivm-filter-label {
	background: transparent !important;
	border: 0 !important;
	color: #c9bfb2 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	min-height: auto !important;
	padding: 0 !important;
	text-align: left !important;
}

.ivm-menu-tools a,
.ivm-menu-tools button {
	background: var(--ivm-black);
	border-color: rgba(var(--ivm-gold-rgb), 0.38);
	border-radius: 6px;
	color: var(--ivm-white);
	font-size: 12px;
	font-weight: 700;
	min-height: 34px;
	padding: 9px 10px;
}

.ivm-service-label {
	background: transparent !important;
	border: 0 !important;
	color: var(--ivm-white) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	grid-column: 1 / -1;
	min-height: auto !important;
	padding: 0 !important;
	text-align: left !important;
}

.ivm-menu-category-cards {
	gap: 9px;
}

.ivm-menu-category-card {
	background: #16080b;
	border-color: rgba(var(--ivm-gold-rgb), 0.36);
	border-radius: 5px;
	min-height: 92px;
}

.ivm-menu-category-card img {
	filter: saturate(0.98) contrast(1.08);
	opacity: 0.9;
}

.ivm-menu-category-card::after {
	background:
		linear-gradient(90deg, rgba(var(--ivm-bordeaux-rgb), 0.7), rgba(var(--ivm-green-rgb), 0.36) 62%, rgba(0, 0, 0, 0.08)),
		linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
}

.ivm-menu-category-card span {
	font-size: 18px;
	font-weight: 850;
	padding: 16px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.ivm-app-links {
	margin-top: 13px;
}

.ivm-app-links a,
.ivm-gallery-link {
	background: var(--ivm-black);
	border-color: rgba(var(--ivm-gold-rgb), 0.45);
	border-radius: 5px;
	color: var(--ivm-gold);
	font-weight: 650;
}

.ivm-category-product-list {
	gap: 14px;
}

.ivm-category-product-list .ivm-product-card {
	background: var(--ivm-bordeaux);
	border-color: rgba(var(--ivm-gold-rgb), 0.25);
	border-radius: 7px;
	display: block;
	min-height: 0;
}

.ivm-category-product-list .ivm-product-media {
	background: #071a14;
	height: 160px;
	min-height: 0;
	width: 100%;
}

.ivm-category-product-list .ivm-product-image,
.ivm-category-product-list .ivm-product-image-placeholder {
	height: 160px;
	min-height: 0;
	object-fit: cover;
	width: 100%;
}

.ivm-category-product-list .ivm-product-content {
	background: var(--ivm-bordeaux);
	gap: 9px;
	padding: 15px 16px 16px;
}

.ivm-category-product-list .ivm-product-main {
	align-items: baseline;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ivm-category-product-list .ivm-product-title {
	font-size: 19px;
	font-weight: 850;
}

.ivm-category-product-list .ivm-product-price {
	color: var(--ivm-white);
	font-size: 15px;
}

.ivm-category-product-list .ivm-product-description {
	color: #d9cfc1;
	display: -webkit-box;
	font-size: 13px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.28;
	max-width: 28em;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ivm-category-product-list .ivm-product-description p {
	display: inline;
	margin: 0;
}

.ivm-product-badges li {
	background: transparent;
	border-color: rgba(var(--ivm-gold-rgb), 0.45);
	color: #d7b97a;
	font-size: 11px;
	font-weight: 600;
}

.ivm-category-product-list .ivm-allergen {
	background: transparent;
	border: 0;
	color: var(--ivm-white);
	font-size: 10px;
	gap: 0;
	font-weight: 800;
	min-height: 0;
	padding: 0;
	text-transform: uppercase;
}

.ivm-category-product-list .ivm-allergen-icon {
	background: transparent;
	border-radius: 0;
	height: 22px;
	padding: 0;
	width: 22px;
}

.ivm-category-product-list .ivm-allergen span,
.ivm-product-modal .ivm-allergen span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.ivm-category-product-list .ivm-product-read-more {
	border-color: rgba(var(--ivm-gold-rgb), 0.5);
	border-radius: 999px;
	color: var(--ivm-gold);
	font-size: 12px;
	min-height: 28px;
	padding: 6px 10px;
}

.ivm-category-product-list .ivm-product-read-more::after {
	content: " ↓";
}

.ivm-category-product-list .ivm-add-to-summary {
	align-self: flex-end;
	border-radius: 6px;
	font-size: 12px;
	min-height: 38px;
	padding: 9px 12px;
}

.ivm-product-modal {
	background: #030303;
	border-left: 0;
	max-width: 430px;
	padding: 56px 16px 18px;
}

.ivm-product-modal-close {
	background: rgba(0, 0, 0, 0.45);
	border-color: rgba(var(--ivm-white-rgb), 0.72);
	height: 32px;
	right: 26px;
	top: 70px;
	width: 32px;
}

.ivm-product-modal-media {
	background: var(--ivm-green);
	border-radius: 10px 10px 0 0;
	min-height: 0;
	overflow: hidden;
}

.ivm-product-modal-media img,
.ivm-product-modal-media .ivm-product-image-placeholder {
	height: 250px;
	object-fit: cover;
	width: 100%;
}

.ivm-product-modal-content {
	background: var(--ivm-bordeaux);
	border-radius: 0 0 10px 10px;
	gap: 13px;
	padding: 18px 17px 20px;
}

.ivm-product-modal-heading h2 {
	font-size: 22px;
	font-weight: 850;
}

.ivm-product-modal-heading p {
	color: var(--ivm-white);
	font-size: 16px;
}

.ivm-product-modal-description {
	color: #d9cfc1;
	font-size: 13px;
	line-height: 1.3;
}

.ivm-product-modal .ivm-allergen {
	background: transparent;
	border: 0;
	color: var(--ivm-white);
	font-size: 10px;
	gap: 0;
	font-weight: 800;
	min-height: 0;
	padding: 0;
	text-transform: uppercase;
}

.ivm-product-modal .ivm-allergen-icon {
	background: transparent;
	border-radius: 0;
	height: 26px;
	padding: 0;
	width: 26px;
}

.ivm-product-modal .ivm-add-to-summary {
	justify-self: end;
	margin-left: auto;
}

.ivm-summary-page .ivm-app-title,
.ivm-allergens-page .ivm-app-title,
.ivm-events-page .ivm-app-title {
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.56);
	margin-bottom: 14px;
	padding-bottom: 15px;
}

.ivm-summary-page .ivm-app-title h1,
.ivm-allergens-page .ivm-app-title h1,
.ivm-events-page .ivm-app-title h1 {
	font-size: 31px;
}

.ivm-summary-page-box {
	border: 0;
	padding: 0;
}

.ivm-summary-page .ivm-summary-list {
	gap: 0;
}

.ivm-summary-page .ivm-summary-item {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.34);
	border-radius: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 7px 0;
}

.ivm-summary-page .ivm-summary-item-main {
	display: block;
}

.ivm-summary-page .ivm-summary-item-name {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.1;
}

.ivm-summary-page .ivm-summary-item-qty {
	background: transparent;
	border: 0;
	color: var(--ivm-white);
	font-size: 13px;
	padding: 0;
}

.ivm-summary-page .ivm-summary-item-allergens {
	display: none;
}

.ivm-summary-page .ivm-summary-qty-controls {
	gap: 7px;
	grid-column: 2;
	grid-row: 1;
}

.ivm-summary-page .ivm-summary-qty-button {
	background: transparent;
	border: 0;
	color: var(--ivm-gold);
	height: 18px;
	font-size: 16px;
	width: 18px;
}

.ivm-summary-page .ivm-summary-clear {
	margin-top: 13px;
}

.ivm-service-message {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.32);
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	margin: 20px auto 24px;
	max-width: 286px;
	padding: 16px 14px;
}

.ivm-allergen-table {
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.64);
	border-radius: 8px;
	gap: 0;
	padding: 8px;
}

.ivm-allergen-row {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.22);
	border-radius: 0;
	grid-template-columns: 42px minmax(0, 1fr);
	padding: 10px 4px;
}

.ivm-allergen-row:last-child {
	border-bottom: 0;
}

.ivm-allergen-row-icon {
	background: transparent;
	height: 36px;
	width: 36px;
}

.ivm-allergen-row-icon img {
	height: 32px;
	width: 32px;
}

.ivm-allergen-row h2 {
	color: var(--ivm-gold);
	font-size: 15px;
	margin-bottom: 4px;
}

.ivm-allergen-row p {
	color: #c9bfb2;
	font-size: 11px;
	line-height: 1.3;
}

.ivm-screen.ivm-allergens-page {
	background: var(--ivm-black);
	box-sizing: border-box;
	overflow: visible;
	padding: 47px 18px 0;
	width: 100%;
}

.ivm-screen.ivm-allergens-page * {
	box-sizing: border-box;
}

.ivm-allergens-hero {
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.92);
	margin-bottom: 31px;
	padding: 0 0 13px;
}

.ivm-allergens-logo {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: none;
	max-width: none;
	width: 89px;
}

.ivm-allergens-topbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 17px;
	min-height: 31px;
}

.ivm-allergens-page .ivm-back-link {
	align-items: center;
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 17px;
	font-weight: 400;
	gap: 8px;
	line-height: 1;
	text-decoration: none;
}

.ivm-allergens-page .ivm-back-link::before {
	border-bottom: 2px solid var(--ivm-gold);
	border-left: 2px solid var(--ivm-gold);
	content: "";
	display: inline-block;
	height: 10px;
	transform: rotate(45deg);
	width: 10px;
}

.ivm-allergens-page .ivm-header-summary {
	background: transparent;
	border: 0;
	height: 31px;
	justify-content: center;
	min-height: 31px;
	padding: 0;
	position: relative;
	width: 31px;
}

.ivm-allergens-page .ivm-summary-toggle-icon {
	background: transparent;
	border: 2px solid var(--ivm-gold);
	border-radius: 1px;
	height: 29px;
	opacity: 1;
	position: relative;
	width: 24px;
}

.ivm-allergens-page .ivm-summary-toggle-icon::before {
	background: var(--ivm-gold);
	box-shadow: 0 6px 0 var(--ivm-gold), 0 12px 0 var(--ivm-gold);
	content: "";
	height: 2px;
	left: 5px;
	position: absolute;
	top: 7px;
	width: 11px;
}

.ivm-allergens-page .ivm-summary-toggle-icon::after {
	border-left: 2px solid var(--ivm-gold);
	border-right: 2px solid var(--ivm-gold);
	content: "";
	height: 6px;
	left: 5px;
	position: absolute;
	top: -5px;
	width: 10px;
}

.ivm-allergens-page .ivm-header-summary .ivm-summary-count {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.9);
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 9px;
	height: 16px;
	min-width: 16px;
	padding: 0 4px;
	position: absolute;
	right: -7px;
	top: -7px;
}

.ivm-allergens-hero h1 {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-size: 30px;
	font-weight: 360;
	letter-spacing: 0;
	line-height: 1;
	margin: 27px 0 0;
	text-align: center;
}

.ivm-allergens-page .ivm-allergen-table {
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.92);
	border-radius: 23px;
	display: grid;
	gap: 0;
	margin: 0 0 0;
	max-width: 100%;
	overflow: hidden;
	padding: 18px 14px 18px;
	width: 100%;
}

.ivm-allergens-page .ivm-allergen-row {
	--ivm-allergen-color: var(--ivm-gold);
	align-items: start;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: grid;
	gap: 16px;
	grid-template-columns: 46px minmax(0, 1fr);
	padding: 0 0 25px;
}

.ivm-allergens-page .ivm-allergen-row:last-child {
	padding-bottom: 0;
}

.ivm-allergens-page .ivm-allergen-row-icon {
	align-items: flex-start;
	background: transparent;
	display: flex;
	height: 42px;
	justify-content: center;
	padding-top: 1px;
	width: 42px;
}

.ivm-allergens-page .ivm-allergen-row-icon img {
	display: block;
	height: 40px;
	object-fit: contain;
	width: 40px;
}

.ivm-allergens-page .ivm-allergen-copy {
	min-width: 0;
	padding-top: 2px;
}

.ivm-allergens-page .ivm-allergen-row h2 {
	color: var(--ivm-allergen-color);
	font-size: 15.5px;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 2px;
	overflow-wrap: anywhere;
	text-transform: uppercase;
}

.ivm-allergens-page .ivm-allergen-number {
	color: var(--ivm-allergen-color);
	font-size: inherit;
	font-weight: 850;
}

.ivm-allergens-page .ivm-allergen-name {
	color: var(--ivm-allergen-color);
}

.ivm-allergens-page .ivm-allergen-row p {
	color: #c9c0b6;
	font-size: 13.3px;
	font-weight: 400;
	line-height: 1.11;
	margin: 0;
	overflow-wrap: anywhere;
}

.ivm-allergens-page .ivm-allergen-row--cereali-glutine {
	--ivm-allergen-color: #ffc400;
}

.ivm-allergens-page .ivm-allergen-row--crostacei {
	--ivm-allergen-color: #ff312f;
}

.ivm-allergens-page .ivm-allergen-row--uova {
	--ivm-allergen-color: #f59b92;
}

.ivm-allergens-page .ivm-allergen-row--pesce {
	--ivm-allergen-color: #5ec9e8;
}

.ivm-allergens-page .ivm-allergen-row--arachidi {
	--ivm-allergen-color: #df8717;
}

.ivm-allergens-page .ivm-allergen-row--soia {
	--ivm-allergen-color: #a9dc24;
}

.ivm-allergens-page .ivm-allergen-row--latte {
	--ivm-allergen-color: #78cfe8;
}

.ivm-allergens-page .ivm-allergen-row--frutta-a-guscio {
	--ivm-allergen-color: #a56a2b;
}

.ivm-allergens-page .ivm-allergen-row--sedano {
	--ivm-allergen-color: #4fc14f;
}

.ivm-allergens-page .ivm-allergen-row--senape {
	--ivm-allergen-color: #d3a529;
}

.ivm-allergens-page .ivm-allergen-row--semi-di-sesamo {
	--ivm-allergen-color: #ed9820;
}

.ivm-allergens-page .ivm-allergen-row--anidride-solforosa-solfiti {
	--ivm-allergen-color: #7b64c7;
}

.ivm-allergens-page .ivm-allergen-row--lupini {
	--ivm-allergen-color: #c8dc1b;
}

.ivm-allergens-page .ivm-allergen-row--molluschi {
	--ivm-allergen-color: #89a9ad;
}

.ivm-allergens-page .ivm-app-footer {
	margin: 32px -18px 0;
}

.ivm-event-intro,
.ivm-event-details,
.ivm-event-form-section {
	background: transparent;
	border-color: rgba(var(--ivm-gold-rgb), 0.42);
	border-radius: 6px;
	padding: 15px;
}

.ivm-event-intro p,
.ivm-event-details p,
.ivm-event-form-section p,
.ivm-event-contacts p {
	font-size: 12px;
	line-height: 1.42;
}

.ivm-event-details h2,
.ivm-event-form-section h2 {
	color: var(--ivm-gold);
	font-size: 18px;
}

.ivm-event-details p {
	border-left: 2px solid rgba(var(--ivm-gold-rgb), 0.5);
	padding-left: 9px;
}

.ivm-event-gallery img {
	border-color: rgba(var(--ivm-gold-rgb), 0.44);
	border-radius: 5px;
	flex-basis: 72%;
	height: 150px;
}

.ivm-event-form input {
	border-radius: 8px;
	font-size: 13px;
	min-height: 34px;
}

.ivm-event-form button {
	background: var(--ivm-gold);
	border-radius: 8px;
}

.ivm-app-footer {
	background: var(--ivm-green);
	margin-top: 28px;
	padding-top: 31px;
}

.ivm-footer-logo {
	max-width: 168px;
}

.ivm-footer-awards {
	border-bottom: 1px solid rgba(var(--ivm-white-rgb), 0.2);
	border-top: 1px solid rgba(var(--ivm-white-rgb), 0.2);
	margin: 18px auto 14px;
	max-width: 310px;
	padding: 16px 0;
}

.ivm-footer-note {
	border-top: 0;
	font-size: 10px;
	margin-top: 0;
	padding-top: 0;
}

@media (min-width: 680px) {
	body .ivm-screen {
		padding-left: 22px;
		padding-right: 22px;
	}

	.ivm-category-product-list .ivm-product-card {
		display: block;
	}
}

/* Step 2: menu page visual fidelity pass, scoped to /menu/. */
body .ivm-menu-home {
	background: var(--ivm-black);
	box-shadow: 0 0 0 1px rgba(var(--ivm-white-rgb), 0.06);
	box-sizing: border-box;
	inline-size: min(430px, 100vw);
	max-inline-size: 100vw;
	max-width: 430px;
	overflow: hidden;
	padding: 18px 18px 0;
	width: min(430px, 100vw);
}

.ivm-menu-home *,
.ivm-menu-home *::before,
.ivm-menu-home *::after {
	box-sizing: border-box;
}

.ivm-menu-home .ivm-app-header {
	align-items: flex-start;
	min-height: 112px;
	padding: 78px 0 0;
	position: relative;
	z-index: 2;
}

.ivm-menu-home .ivm-back-link {
	align-items: center;
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 14px;
	font-weight: 400;
	gap: 8px;
	line-height: 1;
}

.ivm-menu-home .ivm-back-link::before {
	content: "< ";
	border-bottom: 2px solid var(--ivm-gold);
	border-left: 2px solid var(--ivm-gold);
	content: "";
	display: inline-block;
	height: 10px;
	transform: rotate(45deg);
	width: 10px;
}

.ivm-menu-home .ivm-header-summary {
	align-items: center;
	border-radius: 0;
	height: 28px;
	justify-content: center;
	min-height: 28px;
	width: 32px;
}

.ivm-menu-home .ivm-header-summary .ivm-summary-count {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.85);
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 9px;
	height: 15px;
	min-width: 15px;
	padding: 0 4px;
	position: absolute;
	right: -7px;
	top: -7px;
}

.ivm-menu-home .ivm-summary-toggle-icon {
	background-size: contain;
	filter: brightness(1.2) sepia(0.35) saturate(1.05);
	height: 26px;
	opacity: 1;
	width: 24px;
}

.ivm-menu-home .ivm-app-title {
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.86);
	gap: 0;
	margin-top: -107px;
	padding: 0 0 21px;
	position: relative;
	z-index: 1;
}

.ivm-menu-home .ivm-app-logo {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: none;
	max-width: none;
	width: 92px;
}

.ivm-menu-home .ivm-app-title h1 {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-size: 39px;
	font-weight: 330;
	letter-spacing: 0;
	line-height: 1;
	margin: 104px 0 0;
	text-align: center;
}

.ivm-menu-home .ivm-menu-tools {
	align-items: center;
	border: 0;
	display: grid;
	gap: 8px 10px;
	grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
	margin: 31px 0 31px;
	padding: 0 20px;
}

.ivm-menu-home .ivm-filter-label {
	align-self: center;
	color: #c9bfb2 !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1;
	white-space: nowrap;
}

.ivm-menu-home .ivm-menu-tools a,
.ivm-menu-home .ivm-menu-tools button {
	align-items: center;
	background: var(--ivm-green);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.22);
	border-radius: 7px;
	color: var(--ivm-white);
	display: inline-flex;
	font-size: 15px;
	font-weight: 400;
	gap: 5px;
	justify-content: center;
	line-height: 1;
	min-height: 38px;
	padding: 9px 12px;
}

.ivm-menu-home .ivm-menu-tools a::after,
.ivm-menu-home .ivm-menu-tools button::after {
	border-bottom: 1px solid rgba(var(--ivm-white-rgb), 0.62);
	border-right: 1px solid rgba(var(--ivm-white-rgb), 0.62);
	content: "";
	height: 5px;
	margin-top: -4px;
	transform: rotate(45deg);
	width: 5px;
}

.ivm-menu-home .ivm-service-label {
	color: var(--ivm-white) !important;
	font-size: 18px !important;
	font-weight: 300 !important;
	grid-column: 1 / -1;
	justify-self: center;
	line-height: 1;
	margin-top: 32px;
	text-align: center !important;
}

.ivm-menu-home .ivm-menu-service-label {
	color: var(--ivm-white);
	display: block;
	font-size: 18px;
	font-weight: 300;
	line-height: 1;
	margin: 31px 0 31px;
	text-align: center;
}

.ivm-menu-home .ivm-menu-category-cards {
	display: grid;
	gap: 24px;
	padding: 0;
}

.ivm-menu-home .ivm-menu-category-card {
	align-items: stretch;
	background: var(--ivm-green);
	border: 0;
	border-radius: 7px;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.ivm-menu-home .ivm-menu-category-card::after {
	display: none;
}

.ivm-menu-home .ivm-menu-category-card img {
	display: block;
	filter: saturate(1.04) contrast(1.04);
	height: clamp(166px, 45vw, 184px);
	inset: auto;
	object-fit: cover;
	object-position: center center;
	opacity: 1;
	position: static;
	width: 100%;
}

.ivm-menu-home .ivm-menu-category-card span {
	background: var(--ivm-green);
	color: var(--ivm-white);
	display: block;
	font-family: var(--ivm-font-main);
	font-size: 25px;
	font-weight: 680;
	letter-spacing: 0;
	line-height: 1.05;
	padding: 13px 20px 16px;
	position: static;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
	text-transform: none;
	z-index: 1;
}

.ivm-menu-home .ivm-menu-category-card:nth-child(odd) span {
	background: var(--ivm-bordeaux);
}

.ivm-menu-home .ivm-menu-category-card--antipasti img {
	object-position: center 54%;
}

.ivm-menu-home .ivm-menu-category-card--insalate img {
	object-position: center 48%;
}

.ivm-menu-home .ivm-menu-category-card--pizze-in-teglia img {
	object-position: center 52%;
}

.ivm-menu-home .ivm-menu-category-card--mattonella-romana img {
	object-position: center 47%;
}

.ivm-menu-home .ivm-menu-category-card--pizza-in-pala img {
	object-position: center 48%;
}

.ivm-menu-home .ivm-menu-category-card--le-napoletane-in-tripla-cottura img {
	object-position: center 52%;
}

.ivm-menu-home .ivm-menu-category-card--cotte-a-legna img {
	object-position: center 58%;
}

.ivm-menu-home .ivm-menu-category-card--soft-drinks img,
.ivm-menu-home .ivm-menu-category-card--birre-e-vino img {
	object-position: center 50%;
}

.ivm-menu-home .ivm-menu-category-card--dolci img {
	object-position: center 48%;
}

.ivm-menu-home .ivm-menu-category-card--le-napoletane-in-tripla-cottura span {
	font-size: 26px;
	padding-bottom: 14px;
	padding-top: 10px;
}

.ivm-menu-home .ivm-menu-category-card--le-napoletane-in-tripla-cottura small {
	color: rgba(var(--ivm-white-rgb), 0.78);
	display: block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.ivm-menu-home .ivm-menu-home-links {
	display: grid;
	gap: 22px;
	margin: 29px 0 0;
}

.ivm-menu-home .ivm-menu-allergens-link {
	align-items: center;
	background: var(--ivm-black);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.86);
	border-radius: 18px;
	color: var(--ivm-gold);
	display: flex;
	font-size: 24px;
	font-weight: 500;
	justify-content: center;
	min-height: 92px;
	padding: 18px;
}

.ivm-menu-home .ivm-menu-events-card {
	align-items: center;
	background: #030303;
	border: 0;
	border-radius: 0;
	color: var(--ivm-white);
	display: flex;
	justify-content: center;
	margin-left: -18px;
	margin-right: -18px;
	min-height: 166px;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.ivm-menu-home .ivm-menu-events-card img {
	filter: saturate(0.95) contrast(1.04);
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center center;
	opacity: 0.72;
	position: absolute;
	width: 100%;
}

.ivm-menu-home .ivm-menu-events-card::after {
	background: rgba(0, 0, 0, 0.34);
	content: "";
	inset: 0;
	position: absolute;
}

.ivm-menu-home .ivm-menu-events-card span {
	font-size: 27px;
	font-weight: 700;
	position: relative;
	text-align: center;
	z-index: 1;
}

.ivm-menu-home .ivm-app-footer {
	margin: 0 -18px;
	padding: 43px 18px 31px;
}

.ivm-menu-home .ivm-footer-logo {
	max-width: 178px;
}

.ivm-menu-home .ivm-footer-awards {
	margin-top: 20px;
	max-width: 310px;
	padding: 17px 0;
}

.ivm-menu-home .ivm-footer-note {
	font-size: 10px;
	line-height: 1.25;
	margin-left: auto;
	margin-right: auto;
	max-width: 290px;
}

@media (min-width: 431px) {
	body .ivm-menu-home {
		max-width: 430px;
	}
}

/* Step 3: standard category and product detail templates. */
body .ivm-category-app {
	background: var(--ivm-black);
	box-shadow: 0 0 0 1px rgba(var(--ivm-white-rgb), 0.05);
	box-sizing: border-box;
	inline-size: min(430px, 100vw);
	max-inline-size: 100vw;
	max-width: 430px;
	overflow: hidden;
	padding: 41px 10px 0;
	width: min(430px, 100vw);
}

.ivm-category-app *,
.ivm-category-app *::before,
.ivm-category-app *::after {
	box-sizing: border-box;
}

.ivm-category-app .ivm-app-header {
	align-items: flex-start;
	min-height: 96px;
	padding: 78px 0 0;
	position: relative;
	z-index: 2;
}

.ivm-category-app .ivm-back-link {
	align-items: center;
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 15px;
	font-weight: 400;
	gap: 8px;
	line-height: 1;
}

.ivm-category-app .ivm-back-link::before {
	border-bottom: 1.5px solid var(--ivm-gold);
	border-left: 1.5px solid var(--ivm-gold);
	content: "";
	display: inline-block;
	height: 11px;
	transform: rotate(45deg);
	width: 11px;
}

.ivm-category-app .ivm-header-summary {
	background: transparent;
	border: 0;
	height: 32px;
	justify-content: center;
	min-height: 32px;
	padding: 0;
	position: relative;
	width: 34px;
}

.ivm-category-app .ivm-header-summary .ivm-summary-count {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.85);
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 10px;
	height: 17px;
	min-width: 17px;
	padding: 0 4px;
	position: absolute;
	right: -8px;
	top: -8px;
}

.ivm-category-app .ivm-summary-toggle-icon {
	background-size: contain;
	filter: brightness(1.18) sepia(0.35) saturate(1.05);
	height: 31px;
	opacity: 1;
	width: 28px;
}

.ivm-category-app .ivm-app-title {
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.72);
	gap: 0;
	margin-top: -94px;
	padding: 0 0 22px;
	position: relative;
	z-index: 1;
}

.ivm-category-app .ivm-app-logo {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: none;
	max-width: none;
	width: 83px;
}

.ivm-category-app .ivm-app-title h1 {
	align-items: center;
	color: var(--ivm-white);
	display: flex;
	font-family: var(--ivm-font-main);
	font-size: 40px;
	font-weight: 320;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
	position: relative;
	text-align: center;
	width: 100%;
}

.ivm-category-app .ivm-category-title-row {
	align-items: center;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	margin: 92px 0 0;
	width: 100%;
}

.ivm-category-app .ivm-category-nav,
.ivm-category-app .ivm-category-nav-placeholder {
	align-items: center;
	background: transparent;
	border: 0;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	text-decoration: none;
	width: 48px;
}

.ivm-category-app .ivm-category-nav span {
	border-right: 2px solid var(--ivm-gold);
	border-top: 2px solid var(--ivm-gold);
	height: 27px;
	display: block;
	width: 27px;
}

.ivm-category-app .ivm-category-nav--next span {
	transform: rotate(45deg);
}

.ivm-category-app .ivm-category-nav--prev span {
	transform: rotate(-135deg);
}

.ivm-category-app .ivm-category-nav:focus-visible {
	border-radius: 999px;
	box-shadow: 0 0 0 2px rgba(var(--ivm-gold-rgb), 0.72);
	outline: none;
}

.ivm-category-app .ivm-menu-tools {
	align-items: center;
	border: 0;
	display: grid;
	gap: 10px 12px;
	grid-template-columns: auto auto auto;
	justify-content: start;
	margin: 42px 0 22px;
	padding: 0 28px;
}

.ivm-category-app--grouped .ivm-menu-tools {
	grid-template-columns: minmax(0, 1fr);
	justify-content: stretch;
}

.ivm-category-app .ivm-filter-scroll {
	display: contents;
}

.ivm-category-app--grouped .ivm-filter-scroll {
	align-items: center;
	display: flex;
	gap: 12px;
	grid-column: 1 / -1;
	justify-content: flex-start;
	margin: 0 -20px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	padding: 0 20px 2px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.ivm-category-app--grouped .ivm-filter-scroll::-webkit-scrollbar {
	display: none;
}

.ivm-category-app--grouped .ivm-filter-scroll > * {
	flex: 0 0 auto;
}

.ivm-category-app--grouped .ivm-filter-trigger {
	min-width: max-content;
	padding-left: 17px;
	padding-right: 17px;
}

.ivm-category-app--grouped .ivm-filter-panels,
.ivm-category-app--grouped .ivm-service-label {
	grid-column: 1 / -1;
}

.ivm-category-app .ivm-filter-label {
	color: #c9bfb2 !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1;
	white-space: nowrap;
}

.ivm-category-app .ivm-menu-tools a,
.ivm-category-app .ivm-menu-tools button {
	align-items: center;
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.28);
	border-radius: 8px;
	color: var(--ivm-white);
	display: inline-flex;
	font-size: 15px;
	font-weight: 500;
	justify-content: center;
	line-height: 1;
	min-height: 37px;
	min-width: 103px;
	padding: 9px 13px;
	position: relative;
}

.ivm-category-app .ivm-menu-tools a::after,
.ivm-category-app .ivm-menu-tools button::after {
	border-bottom: 1px solid rgba(var(--ivm-white-rgb), 0.72);
	border-right: 1px solid rgba(var(--ivm-white-rgb), 0.72);
	content: "";
	height: 5px;
	margin-left: 9px;
	transform: translateY(-2px) rotate(45deg);
	width: 5px;
}

.ivm-category-app .ivm-service-label {
	color: var(--ivm-white) !important;
	font-size: 20px !important;
	font-weight: 300 !important;
	grid-column: 1 / -1;
	justify-self: center;
	line-height: 1;
	margin-top: 30px;
	text-align: center !important;
}

.ivm-category-app .ivm-category-product-list {
	display: grid;
	gap: 32px;
	padding: 2px 9px 0;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.18);
	border-radius: 8px;
	display: block;
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.ivm-category-app .ivm-category-product-list .ivm-product-media {
	background: #071a14;
	height: 138px;
	min-height: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.ivm-category-app .ivm-category-product-list .ivm-product-image,
.ivm-category-app .ivm-category-product-list .ivm-product-image-placeholder {
	display: block;
	height: 138px;
	min-height: 0;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.ivm-category-app .ivm-category-product-list .ivm-product-content {
	background: var(--ivm-bordeaux);
	display: grid;
	gap: 10px 10px;
	grid-template-areas:
		"main main"
		"desc desc"
		"allergens read";
	grid-template-columns: minmax(0, 1fr) auto;
	min-height: 137px;
	padding: 16px 29px 18px 28px;
}

.ivm-category-app .ivm-category-product-list .ivm-product-main {
	align-items: baseline;
	display: grid;
	gap: 12px;
	grid-area: main;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ivm-category-app .ivm-category-product-list .ivm-product-title {
	color: var(--ivm-white);
	font-size: 25px;
	font-weight: 780;
	line-height: 1.05;
	margin: 0;
}

.ivm-category-app .ivm-category-product-list .ivm-product-price {
	color: var(--ivm-white);
	font-size: 25px;
	font-weight: 760;
	line-height: 1;
	margin: 0;
	white-space: nowrap;
}

.ivm-category-app .ivm-category-product-list .ivm-product-description {
	color: #cdbfae;
	display: -webkit-box;
	font-size: 14.5px;
	grid-area: desc;
	line-height: 1.2;
	margin: 0;
	max-width: 15.8em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ivm-category-app .ivm-category-product-list .ivm-product-description p {
	margin: 0;
}

.ivm-category-app .ivm-category-product-list .ivm-product-media > .ivm-product-badges {
	gap: 4px;
	left: 16px;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 23px;
	z-index: 2;
}

.ivm-category-app .ivm-category-product-list .ivm-product-media > .ivm-product-badges li {
	background: rgba(var(--ivm-white-rgb), 0.84);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.9);
	border-radius: 999px;
	color: #8e6a3e;
	font-size: 13px;
	font-style: italic;
	font-weight: 600;
	line-height: 1;
	padding: 4px 11px;
}

.ivm-category-app .ivm-category-product-list .ivm-allergens {
	gap: 6px;
	grid-area: allergens;
	margin: 2px 0 0;
	padding: 0;
}

.ivm-category-app .ivm-category-product-list .ivm-allergen {
	background: transparent;
	border: 0;
	color: var(--ivm-white);
	font-size: 0;
	font-weight: 760;
	gap: 0;
	letter-spacing: 0;
	line-height: 1;
	min-height: 0;
	padding: 0;
	text-transform: uppercase;
}

.ivm-category-app .ivm-category-product-list .ivm-allergen span {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.ivm-category-app .ivm-category-product-list .ivm-allergen-icon {
	background: var(--ivm-white);
	border-radius: 999px;
	height: 25px;
	padding: 2px;
	width: 25px;
}

.ivm-category-app .ivm-category-product-list .ivm-product-read-more {
	align-self: end;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(var(--ivm-white-rgb), 0.72);
	border-radius: 0;
	color: var(--ivm-white);
	font-size: 9.5px;
	font-weight: 500;
	grid-area: read;
	justify-self: end;
	line-height: 1;
	min-height: 0;
	padding: 0 0 2px;
	text-transform: uppercase;
}

.ivm-category-app .ivm-category-product-list .ivm-product-read-more::after {
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: "";
	display: inline-block;
	height: 5px;
	margin-left: 4px;
	transform: translateY(-1px) rotate(45deg);
	width: 5px;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug="soft-drink"] .ivm-product-media {
	display: none;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug="soft-drink"] .ivm-product-content {
	border-radius: 8px;
	grid-template-areas: "main main";
	min-height: 132px;
	padding: 22px 74px 21px 29px;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug="soft-drink"] .ivm-product-description,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug="soft-drink"] .ivm-allergens {
	display: none;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug="soft-drink"] .ivm-product-read-more {
	display: none;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug="soft-drink"] .ivm-add-to-summary {
	right: 23px;
	top: 49px;
}

.ivm-category-app .ivm-category-product-list .ivm-add-to-summary {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	height: 35px;
	justify-content: center;
	min-height: 0;
	padding: 0;
	position: absolute;
	right: 13px;
	top: 21px;
	width: 35px;
	z-index: 2;
}

.ivm-category-app .ivm-category-product-list .ivm-add-to-summary span {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.ivm-category-app .ivm-category-product-list .ivm-add-to-summary::before {
	filter: brightness(1.16) sepia(0.22);
	height: 34px;
	margin: 0;
	width: 34px;
}

.ivm-category-links {
	display: grid;
	margin: 20px 5px 0;
}

.ivm-category-app > .ivm-summary-toggle {
	display: none;
}

.ivm-category-allergens-link {
	align-items: center;
	background: var(--ivm-black);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.82);
	border-radius: 8px;
	color: var(--ivm-gold);
	display: flex;
	font-size: 15px;
	font-weight: 500;
	justify-content: center;
	min-height: 58px;
	text-decoration: none;
}

.ivm-category-app .ivm-app-footer {
	margin: 24px -12px 0;
	padding: 28px 18px 26px;
}

.ivm-category-app .ivm-footer-logo {
	max-width: 118px;
}

.ivm-category-app .ivm-footer-awards {
	margin: 15px auto 12px;
	max-width: 270px;
	padding: 13px 0;
}

.ivm-category-app .ivm-footer-note {
	font-size: 8px;
	line-height: 1.25;
	margin-left: auto;
	margin-right: auto;
	max-width: 245px;
}

.ivm-category-app .ivm-product-modal-backdrop {
	background: rgba(0, 0, 0, 0.78);
}

.ivm-category-app .ivm-product-modal {
	background: transparent;
	border: 0;
	bottom: 0;
	box-shadow: none;
	color: var(--ivm-white);
	height: 100dvh;
	left: 50%;
	max-height: 100dvh;
	max-width: 430px;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 250px 0 0;
	right: auto;
	top: 0;
	transform: translateX(-50%) translateY(14px);
	transition: opacity 180ms ease, transform 180ms ease;
	width: min(430px, 100vw);
}

.ivm-category-app .ivm-product-modal.ivm-product-modal--open {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.ivm-category-app .ivm-product-modal-close {
	align-items: center;
	background: rgba(0, 0, 0, 0.28);
	border: 2px solid rgba(var(--ivm-white-rgb), 0.86);
	border-radius: 999px;
	color: var(--ivm-white);
	display: flex;
	font-size: 31px;
	font-weight: 300;
	height: 44px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 23px;
	top: 272px;
	width: 44px;
	z-index: 3;
}

.ivm-category-app .ivm-product-modal-close span {
	display: block;
	line-height: 0.8;
	margin-top: -3px;
}

.ivm-category-app .ivm-product-modal-media {
	background: var(--ivm-green);
	border-radius: 14px 14px 0 0;
	flex: 0 0 280px;
	height: 280px;
	min-height: 0;
	overflow: hidden;
}

.ivm-category-app .ivm-product-modal-media img,
.ivm-category-app .ivm-product-modal-media .ivm-product-image-placeholder {
	display: block;
	height: 280px;
	min-height: 0;
	object-fit: cover;
	object-position: center 52%;
	width: 100%;
}

.ivm-category-app aside.ivm-product-modal .ivm-product-modal-media > .ivm-product-image {
	height: 280px;
	min-height: 280px;
	width: 100%;
}

.ivm-category-app .ivm-product-modal-content {
	background: var(--ivm-bordeaux);
	border-radius: 0;
	box-sizing: border-box;
	display: grid;
	flex: 0 0 auto;
	gap: 12px;
	min-height: max(408px, calc(100dvh - 530px));
	padding: 29px 26px max(34px, env(safe-area-inset-bottom));
	position: relative;
}

.ivm-category-app .ivm-product-modal-heading {
	align-items: baseline;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ivm-category-app .ivm-product-modal-heading h2 {
	color: var(--ivm-white);
	font-size: 25px;
	font-weight: 780;
	line-height: 1;
	margin: 0;
}

.ivm-category-app .ivm-product-modal-heading p {
	color: var(--ivm-white);
	font-size: 25px;
	font-weight: 760;
	line-height: 1;
	margin: 0;
	white-space: nowrap;
}

.ivm-category-app .ivm-product-modal-description {
	color: var(--ivm-gold);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.34;
	max-width: 18em;
}

.ivm-category-app .ivm-product-modal-description p {
	margin: 0;
}

.ivm-category-app .ivm-product-modal-meta {
	align-items: center;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-top: 0;
}

.ivm-category-app .ivm-product-modal-allergens .ivm-allergens {
	gap: 16px;
	margin: 0;
	padding: 0;
}

.ivm-category-app .ivm-product-modal .ivm-allergen {
	background: transparent;
	border: 0;
	color: var(--ivm-white);
	font-size: 13px;
	font-weight: 760;
	gap: 8px;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0;
	text-transform: uppercase;
}

.ivm-category-app .ivm-product-modal .ivm-allergen-icon {
	background: var(--ivm-white);
	border-radius: 999px;
	height: 24px;
	padding: 2px;
	width: 24px;
}

.ivm-category-app .ivm-product-modal-action {
	align-items: center;
	display: flex;
	justify-content: end;
}

.ivm-category-app .ivm-product-modal .ivm-add-to-summary {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	height: 56px;
	justify-content: center;
	margin: 0;
	min-height: 0;
	padding: 0;
	width: 56px;
}

.ivm-category-app .ivm-product-modal .ivm-add-to-summary span {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.ivm-category-app .ivm-product-modal .ivm-add-to-summary::before {
	filter: brightness(1.18) sepia(0.22);
	height: 54px;
	margin: 0;
	width: 54px;
}

.ivm-category-app .ivm-product-modal-badges {
	margin-top: 6px;
}

.ivm-category-app .ivm-product-modal-badges .ivm-product-badges {
	margin: 0;
	padding: 0;
}

.ivm-category-app .ivm-product-modal-badges .ivm-product-badges li {
	background: transparent;
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.9);
	border-radius: 999px;
	color: #d0ad77;
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
	line-height: 1;
	padding: 7px 14px;
}

/* Global footer fidelity pass. */
.ivm-app-footer {
	background: var(--ivm-green);
	border-top: 0;
	box-sizing: border-box;
	margin-top: 28px;
	min-height: 400px;
	padding: 30px 22px 29px;
	text-align: center;
}

.ivm-footer-logo {
	display: block;
	height: auto;
	margin: 0 auto 43px;
	max-width: 126px;
	width: 126px;
}

.ivm-footer-logo-text {
	color: var(--ivm-white);
	display: block;
	font-size: 23px;
	letter-spacing: 0.08em;
	line-height: 1;
	margin: 0 auto 34px;
	text-transform: uppercase;
}

.ivm-footer-awards {
	align-items: center;
	border: 0;
	display: flex;
	gap: 42px;
	justify-content: center;
	margin: 0 auto 31px;
	max-width: 350px;
	padding: 30px 0 0;
	position: relative;
}

.ivm-footer-awards::before,
.ivm-footer-awards::after {
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
}

.ivm-footer-awards::before {
	background: rgba(var(--ivm-gold-rgb), 0.78);
	top: 0;
}

.ivm-footer-awards::after {
	background: rgba(var(--ivm-gold-rgb), 0.08);
	bottom: -17px;
	left: 26px;
	right: 26px;
}

.ivm-footer-award,
.ivm-footer-awards img {
	display: block;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.ivm-footer-award-tc {
	max-width: 70px;
	width: 70px;
}

.ivm-footer-award-gambero {
	max-width: 91px;
	width: 91px;
}

.ivm-footer-note {
	border-top: 0;
	color: rgba(var(--ivm-white-rgb), 0.92);
	font-size: 13.5px;
	font-weight: 300;
	letter-spacing: 0.01em;
	line-height: 0.98;
	margin: 18px auto 21px;
	max-width: 330px;
	padding: 0;
}

.ivm-footer-note span {
	display: block;
}

.ivm-footer-social {
	align-items: center;
	display: flex;
	gap: 23px;
	justify-content: center;
	margin: 0 0 27px;
}

.ivm-footer-social a {
	align-items: center;
	display: inline-flex;
	height: 25px;
	justify-content: center;
	width: 25px;
}

.ivm-footer-social img {
	display: block;
	height: 25px;
	max-height: 25px;
	max-width: 25px;
	object-fit: contain;
	width: 25px;
}

.ivm-footer-social a[aria-label="TikTok"] img {
	filter: invert(1);
}

.ivm-footer-links {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	justify-content: center;
}

.ivm-footer-links a {
	color: rgba(var(--ivm-white-rgb), 0.86);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.ivm-footer-links-separator {
	color: rgba(var(--ivm-white-rgb), 0.86);
	font-size: 13px;
	line-height: 1;
	transform: translateY(-1px);
}

.ivm-menu-home .ivm-app-footer {
	margin: 0 -18px;
	padding: 30px 22px 29px;
}

.ivm-category-app .ivm-app-footer {
	margin: 24px -12px 0;
	padding: 30px 22px 29px;
}

.ivm-menu-home .ivm-footer-logo,
.ivm-category-app .ivm-footer-logo {
	margin: 0 auto 43px;
	max-width: 126px;
	width: 126px;
}

.ivm-menu-home .ivm-footer-awards,
.ivm-category-app .ivm-footer-awards {
	border: 0;
	gap: 42px;
	margin: 0 auto 31px;
	max-width: 350px;
	padding: 30px 0 0;
}

.ivm-menu-home .ivm-footer-note,
.ivm-category-app .ivm-footer-note {
	border-top: 0;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 0.98;
	margin: 18px auto 21px;
	max-width: 330px;
	padding: 0;
}

/* Functional filters for category pages. */
.ivm-category-app .ivm-menu-tools {
	position: relative;
}

.ivm-category-app .ivm-filter-trigger {
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.ivm-category-app .ivm-filter-trigger.is-active,
.ivm-category-app .ivm-filter-trigger[aria-expanded="true"] {
	background: var(--ivm-bordeaux);
	border-color: rgba(var(--ivm-gold-rgb), 0.62);
	color: var(--ivm-white);
}

.ivm-category-app .ivm-filter-panels {
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 2px 0 -10px;
	width: 100%;
}

.ivm-category-app .ivm-filter-panel[hidden],
.ivm-category-app .ivm-filter-clear[hidden],
.ivm-category-app .ivm-filter-results-empty[hidden],
.ivm-category-app .ivm-category-product-list .ivm-product-card[hidden] {
	display: none !important;
}

.ivm-category-app .ivm-filter-panel {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.34);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
	box-sizing: border-box;
	margin-top: 8px;
	max-height: 230px;
	overflow: auto;
	padding: 12px;
	width: 100%;
}

.ivm-category-app .ivm-filter-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ivm-category-app .ivm-filter-help {
	background: rgba(0, 0, 0, 0.16);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.24);
	border-radius: 9px;
	color: rgba(var(--ivm-white-rgb), 0.86);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0 0 10px;
	padding: 9px 10px;
}

.ivm-category-app .ivm-filter-option {
	display: inline-flex;
	position: relative;
}

.ivm-category-app .ivm-filter-option input {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.ivm-category-app .ivm-filter-option span {
	align-items: center;
	background: rgba(0, 0, 0, 0.16);
	border: 1px solid rgba(var(--ivm-white-rgb), 0.26);
	border-radius: 999px;
	color: var(--ivm-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	min-height: 29px;
	padding: 7px 10px;
}

.ivm-category-app .ivm-filter-option small {
	color: rgba(var(--ivm-gold-rgb), 0.92);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	margin-right: 6px;
}

.ivm-category-app .ivm-filter-option input:checked + span {
	background: var(--ivm-gold);
	border-color: var(--ivm-gold);
	color: #24000b;
}

.ivm-category-app .ivm-filter-option input:checked + span small {
	color: #24000b;
}

.ivm-category-app .ivm-filter-panel-empty {
	color: rgba(var(--ivm-white-rgb), 0.8);
	font-size: 12px;
	line-height: 1.25;
	margin: 0;
}

.ivm-category-app .ivm-filter-clear {
	background: transparent !important;
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.48) !important;
	border-radius: 999px !important;
	color: var(--ivm-gold) !important;
	display: inline-flex !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	margin: 10px 0 0 !important;
	min-height: 30px !important;
	min-width: 0 !important;
	padding: 7px 12px !important;
}

.ivm-category-app .ivm-filter-clear::after {
	display: none !important;
}

.ivm-category-app .ivm-service-label {
	grid-row: 3;
}

.ivm-category-app .ivm-filter-results-empty {
	background: rgba(var(--ivm-bordeaux-rgb), 0.64);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.28);
	border-radius: 10px;
	color: var(--ivm-white);
	font-size: 15px;
	line-height: 1.3;
	margin: 0 9px 24px;
	padding: 18px;
	text-align: center;
}

.ivm-screen.ivm-summary-page {
	background: var(--ivm-black);
	box-sizing: border-box;
	max-width: 430px;
	overflow: visible;
	padding: 69px 36px 0;
	width: 100%;
}

.ivm-screen.ivm-summary-page * {
	box-sizing: border-box;
}

.ivm-summary-hero {
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.92);
	margin: 0 0 40px;
	padding: 0 0 30px;
}

.ivm-summary-logo {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: none;
	max-width: none;
	width: 100px;
}

.ivm-summary-topbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 43px;
	min-height: 34px;
}

.ivm-summary-page .ivm-back-link {
	align-items: center;
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 19px;
	font-weight: 360;
	gap: 10px;
	line-height: 1;
	text-decoration: none;
}

.ivm-summary-page .ivm-back-link::before {
	border-bottom: 3px solid var(--ivm-gold);
	border-left: 3px solid var(--ivm-gold);
	content: "";
	display: inline-block;
	height: 15px;
	transform: rotate(45deg);
	width: 15px;
}

.ivm-summary-page .ivm-header-summary {
	background: transparent;
	border: 0;
	height: 34px;
	justify-content: center;
	min-height: 34px;
	padding: 0;
	position: relative;
	width: 32px;
}

.ivm-summary-page .ivm-summary-toggle-icon {
	background: transparent;
	border: 2px solid var(--ivm-gold);
	border-radius: 1px;
	height: 34px;
	opacity: 1;
	position: relative;
	width: 29px;
}

.ivm-summary-page .ivm-summary-toggle-icon::before {
	background: var(--ivm-gold);
	box-shadow: 0 7px 0 var(--ivm-gold), 0 14px 0 var(--ivm-gold);
	content: "";
	height: 2px;
	left: 7px;
	position: absolute;
	top: 9px;
	width: 13px;
}

.ivm-summary-page .ivm-summary-toggle-icon::after {
	border-left: 2px solid var(--ivm-gold);
	border-right: 2px solid var(--ivm-gold);
	content: "";
	height: 7px;
	left: 7px;
	position: absolute;
	top: -7px;
	width: 13px;
}

.ivm-summary-page .ivm-header-summary .ivm-summary-count {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.9);
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 10px;
	height: 17px;
	min-width: 17px;
	padding: 0 4px;
	position: absolute;
	right: -8px;
	top: -10px;
}

.ivm-summary-hero h1 {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-size: 43px;
	font-weight: 330;
	letter-spacing: 0;
	line-height: 0.96;
	margin: 47px 0 0;
	text-align: center;
}

.ivm-summary-page .ivm-summary-page-box {
	border: 0;
	padding: 0 7px;
}

.ivm-summary-page .ivm-summary-list {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ivm-summary-page .ivm-summary-item {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.78);
	border-radius: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	min-height: 52px;
	padding: 0 0 0 12px;
}

.ivm-summary-page .ivm-summary-item-main {
	display: block;
	min-width: 0;
}

.ivm-summary-page .ivm-summary-item-name {
	color: #e8e2da;
	font-size: 18px;
	font-weight: 360;
	line-height: 1.08;
	margin: 0;
	overflow-wrap: anywhere;
}

.ivm-summary-page .ivm-summary-item-allergens {
	display: none;
}

.ivm-summary-page .ivm-summary-qty-controls {
	align-items: center;
	display: inline-grid;
	gap: 5px;
	grid-column: 2;
	grid-row: 1;
	grid-template-columns: auto auto auto;
	justify-content: end;
	min-width: 68px;
}

.ivm-summary-page .ivm-summary-item-qty {
	background: transparent;
	border: 0;
	color: var(--ivm-gold);
	font-size: 23px;
	font-weight: 430;
	line-height: 1;
	min-width: 32px;
	padding: 0;
	text-align: center;
}

.ivm-summary-page .ivm-summary-qty-button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ivm-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 22px;
	font-weight: 520;
	height: 26px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 15px;
}

.ivm-summary-page .ivm-summary-empty {
	color: #d6cec4;
	font-size: 22px;
	font-weight: 360;
	line-height: 1.25;
	margin: 0 0 42px;
	text-align: center;
}

.ivm-summary-page .ivm-service-message {
	background: var(--ivm-bordeaux);
	border: 0;
	border-radius: 15px;
	color: var(--ivm-gold);
	font-size: 18px;
	font-weight: 320;
	line-height: 1.24;
	margin: 62px auto 0;
	max-width: 286px;
	padding: 28px 25px;
	text-align: center;
}

.ivm-summary-page .ivm-summary-clear--quiet {
	background: transparent;
	border: 0;
	color: rgba(var(--ivm-gold-rgb), 0.72);
	display: block;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin: 26px auto 0;
	min-height: 0;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ivm-summary-page .ivm-summary-clear--quiet:disabled {
	display: none;
}

.ivm-summary-page .ivm-summary-clear--quiet:not(:disabled):hover,
.ivm-summary-page .ivm-summary-clear--quiet:not(:disabled):focus-visible {
	background: transparent;
	color: var(--ivm-gold);
	outline: none;
}

.ivm-summary-page .ivm-app-footer {
	margin: 126px -36px 0;
}

/* Step 6: private events page visual matching. */
.ivm-screen.ivm-events-page {
	background: var(--ivm-black);
	box-sizing: border-box;
	max-width: 430px;
	overflow: visible;
	padding: 49px 19px 0;
	width: 100%;
}

.ivm-screen.ivm-events-page * {
	box-sizing: border-box;
}

.ivm-events-hero {
	border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.94);
	margin: 0 0 32px;
	padding: 0 0 15px;
}

.ivm-events-logo {
	display: block;
	height: auto;
	margin: 0 auto 25px;
	max-height: none;
	max-width: none;
	width: 91px;
}

.ivm-events-topbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 0 29px;
}

.ivm-events-page .ivm-back-link {
	align-items: center;
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 17px;
	font-weight: 360;
	gap: 8px;
	line-height: 1;
	text-decoration: none;
}

.ivm-events-page .ivm-back-link::before {
	border-bottom: 2px solid var(--ivm-gold);
	border-left: 2px solid var(--ivm-gold);
	content: "";
	display: inline-block;
	height: 10px;
	transform: rotate(45deg);
	width: 10px;
}

.ivm-events-page .ivm-header-summary {
	background: transparent;
	border: 0;
	height: 31px;
	justify-content: center;
	min-height: 31px;
	padding: 0;
	position: relative;
	width: 31px;
}

.ivm-events-page .ivm-summary-toggle-icon {
	background-image: none;
	border: 2px solid var(--ivm-gold);
	border-radius: 1px;
	height: 29px;
	position: relative;
	width: 22px;
}

.ivm-events-page .ivm-summary-toggle-icon::before {
	border: 2px solid var(--ivm-gold);
	border-bottom: 0;
	border-radius: 3px 3px 0 0;
	content: "";
	height: 6px;
	left: 4px;
	position: absolute;
	top: -6px;
	width: 10px;
}

.ivm-events-page .ivm-summary-toggle-icon::after {
	background:
		linear-gradient(var(--ivm-gold), var(--ivm-gold)) 0 0 / 100% 2px no-repeat,
		linear-gradient(var(--ivm-gold), var(--ivm-gold)) 0 7px / 100% 2px no-repeat,
		linear-gradient(var(--ivm-gold), var(--ivm-gold)) 0 14px / 100% 2px no-repeat;
	content: "";
	height: 16px;
	left: 4px;
	position: absolute;
	top: 6px;
	width: 10px;
}

.ivm-events-page .ivm-header-summary .ivm-summary-count {
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.9);
	color: var(--ivm-gold);
	display: inline-flex;
	font-size: 9px;
	height: 16px;
	min-width: 16px;
	padding: 0 4px;
	right: -8px;
	top: -8px;
}

.ivm-events-hero h1 {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-size: 39px;
	font-weight: 330;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	text-align: center;
}

.ivm-events-page .ivm-event-intro,
.ivm-events-page .ivm-event-details,
.ivm-events-page .ivm-event-form-section {
	background: transparent;
	border: 0;
	border-radius: 0;
	display: block;
	margin: 0;
	padding: 0;
}

.ivm-events-page .ivm-event-intro {
	margin: 0 19px 59px;
}

.ivm-events-page .ivm-event-intro p,
.ivm-events-page .ivm-event-form-section p {
	color: #9f805d;
	font-size: 17px;
	font-weight: 360;
	line-height: 1.14;
	margin: 0;
}

.ivm-events-page .ivm-event-details {
	margin: 0 19px 35px;
}

.ivm-events-page .ivm-event-details h2,
.ivm-events-page .ivm-event-form-section h2 {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-size: 25px;
	font-weight: 760;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
}

.ivm-events-page .ivm-event-details h2 {
	max-width: 265px;
}

.ivm-events-page .ivm-event-details ul {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 21px 0 0;
	padding: 0 0 0 11px;
}

.ivm-events-page .ivm-event-details li {
	color: #8e6f4e;
	font-size: 16.5px;
	font-weight: 350;
	line-height: 1.13;
	padding-left: 11px;
	position: relative;
}

.ivm-events-page .ivm-event-details li::before {
	color: var(--ivm-gold);
	content: "·";
	left: 0;
	position: absolute;
	top: 0;
}

.ivm-events-page .ivm-event-gallery {
	display: flex;
	gap: 14px;
	margin: 0 -19px 13px;
	overflow-x: auto;
	padding: 0 0 4px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.ivm-events-page .ivm-event-gallery::-webkit-scrollbar {
	display: none;
}

.ivm-events-page .ivm-event-gallery img {
	border: 0;
	border-radius: 7px;
	flex: 0 0 250px;
	height: 200px;
	max-width: 250px;
	object-fit: cover;
	object-position: center;
	width: 250px;
}

.ivm-events-page .ivm-event-gallery img:first-child {
	margin-left: -190px;
}

.ivm-events-page .ivm-gallery-link {
	background: transparent;
	border: 0;
	color: var(--ivm-gold);
	display: table;
	font-size: 17px;
	font-weight: 360;
	line-height: 1.1;
	margin: 0 auto 53px;
	min-height: 0;
	padding: 0 0 4px;
	text-align: center;
	text-decoration: underline;
	text-decoration-color: rgba(var(--ivm-gold-rgb), 0.82);
	text-decoration-thickness: 1px;
	text-underline-offset: 6px;
}

.ivm-events-page .ivm-event-form-section {
	margin: 0 19px 50px;
}

.ivm-events-page .ivm-event-form-section h2 {
	margin: 0 0 9px;
}

.ivm-events-page .ivm-event-form-section p + p {
	margin-top: 18px;
}

.ivm-events-page .ivm-event-contacts {
	color: #9f805d;
	display: grid;
	font-size: 15.5px;
	font-weight: 360;
	gap: 2px;
	line-height: 1.08;
	list-style: none;
	margin: 3px 0 22px 12px;
	padding: 0;
}

.ivm-events-page .ivm-event-contacts li {
	align-items: baseline;
	display: flex;
	gap: 4px;
}

.ivm-events-page .ivm-event-contacts span {
	color: var(--ivm-gold);
	display: inline-block;
	font-family: "Segoe UI Symbol", Arial, sans-serif;
	font-size: 13px;
	line-height: 1;
	min-width: 15px;
	text-align: center;
}

.ivm-events-page .ivm-event-contacts strong {
	color: inherit;
	font-weight: 560;
}

.ivm-events-page .ivm-event-form {
	display: grid;
	gap: 16px;
	margin-top: 12px;
}

.ivm-events-page .ivm-event-form label {
	display: block;
	position: relative;
}

.ivm-events-page .ivm-event-form label:nth-child(n+4)::after {
	border-bottom: 1.5px solid #9d9d9d;
	border-right: 1.5px solid #9d9d9d;
	content: "";
	height: 7px;
	position: absolute;
	right: 13px;
	top: 12px;
	transform: rotate(45deg);
	width: 7px;
}

.ivm-events-page .ivm-event-form span {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.ivm-events-page .ivm-event-form input {
	appearance: none;
	background: var(--ivm-white);
	border: 0;
	border-radius: 8px;
	color: #15110d;
	display: block;
	font-family: var(--ivm-font-main);
	font-size: 15px;
	font-weight: 360;
	height: 34px;
	line-height: 1;
	min-height: 34px;
	padding: 6px 31px 6px 12px;
	width: 100%;
}

.ivm-events-page .ivm-event-form input::placeholder {
	color: #9c9c9c;
	opacity: 1;
}

.ivm-events-page .ivm-event-form input[type="number"] {
	-moz-appearance: textfield;
}

.ivm-events-page .ivm-event-form input::-webkit-outer-spin-button,
.ivm-events-page .ivm-event-form input::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}

.ivm-events-page .ivm-event-form-trap {
	display: none;
}

.ivm-events-page .ivm-event-form-message {
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.55);
	border-radius: 8px;
	color: var(--ivm-white);
	font-size: 14px;
	line-height: 1.35;
	margin: 14px 0 8px;
	padding: 10px 12px;
}

.ivm-events-page .ivm-event-form-message--success {
	background: rgba(6, 34, 25, 0.85);
}

.ivm-events-page .ivm-event-form-message--error {
	background: rgba(42, 0, 14, 0.85);
}

.ivm-events-page .ivm-event-form button {
	appearance: none;
	background: var(--ivm-gold);
	border: 0;
	border-radius: 8px;
	color: var(--ivm-black);
	display: block;
	font-family: var(--ivm-font-main);
	font-size: 15px;
	font-weight: 700;
	min-height: 42px;
	padding: 11px 16px;
	width: 100%;
}

.ivm-events-page .ivm-app-footer {
	margin: 32px -19px 0;
}

/* Official design-system alignment. */
.ivm-menu,
.ivm-screen,
.ivm-menu button,
.ivm-screen button,
.ivm-menu input,
.ivm-screen input,
.ivm-menu textarea,
.ivm-screen textarea {
	font-family: var(--ivm-font-main);
}

.ivm-screen,
.ivm-language-screen,
.ivm-menu-home,
.ivm-category-app,
.ivm-screen.ivm-summary-page,
.ivm-allergens-page,
.ivm-events-page {
	background: var(--ivm-black);
	color: var(--ivm-white);
}

.ivm-app-logo,
.ivm-language-logo,
.ivm-summary-logo,
.ivm-allergens-logo,
.ivm-events-logo {
	display: block;
	height: auto;
	max-height: none;
	object-fit: contain;
	width: auto;
}

.ivm-language-logo {
	max-width: 184px;
}

.ivm-menu-home .ivm-app-logo,
.ivm-category-app .ivm-app-logo,
.ivm-summary-page .ivm-app-logo,
.ivm-allergens-page .ivm-app-logo,
.ivm-events-page .ivm-app-logo {
	max-width: 164px;
}

.ivm-back-link,
.ivm-menu-home .ivm-back-link,
.ivm-category-app .ivm-back-link,
.ivm-summary-page .ivm-back-link,
.ivm-allergens-page .ivm-back-link,
.ivm-events-page .ivm-back-link {
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-weight: 600;
}

.ivm-language-card h1,
.ivm-language-choice,
.ivm-app-title h1,
.ivm-summary-hero h1,
.ivm-allergens-page .ivm-app-title h1,
.ivm-events-page .ivm-app-title h1,
.ivm-service-label,
.ivm-filter-label,
.ivm-filter-trigger,
.ivm-product-title,
.ivm-product-price,
.ivm-product-read-more,
.ivm-summary-item-name,
.ivm-summary-item-qty,
.ivm-summary-qty-button,
.ivm-summary-clear,
.ivm-allergen-title,
.ivm-events-page h2,
.ivm-footer-links a {
	font-family: var(--ivm-font-main);
	font-weight: 600;
}

.ivm-product-description,
.ivm-product-description p,
.ivm-product-modal-description,
.ivm-product-modal-description p,
.ivm-summary-page,
.ivm-summary-page p,
.ivm-filter-help,
.ivm-filter-option span,
.ivm-allergens-page,
.ivm-events-page,
.ivm-app-footer {
	font-family: var(--ivm-font-main);
}

.ivm-menu-home .ivm-service-label,
.ivm-category-app .ivm-service-label,
.ivm-summary-page .ivm-service-message {
	color: var(--ivm-white);
	font-weight: 600;
}

.ivm-menu-home .ivm-menu-category-card span,
.ivm-category-app .ivm-product-content,
.ivm-category-app .ivm-product-modal-content,
.ivm-summary-page .ivm-service-message {
	background: var(--ivm-bordeaux);
}

.ivm-menu-home .ivm-menu-category-card:nth-child(even) span,
.ivm-menu-home .ivm-menu-events-card,
.ivm-app-footer {
	background: var(--ivm-green);
}

.ivm-language-card h1,
.ivm-menu-home .ivm-app-title h1,
.ivm-category-app .ivm-app-title h1,
.ivm-summary-hero h1,
.ivm-allergens-page .ivm-app-title h1,
.ivm-events-page .ivm-app-title h1 {
	color: var(--ivm-white);
	letter-spacing: 0;
}

.ivm-language-card h1::after,
.ivm-app-title::after,
.ivm-summary-hero::after,
.ivm-allergens-page .ivm-app-title::after,
.ivm-events-page .ivm-app-title::after {
	background: var(--ivm-gold);
}

.ivm-language-choice,
.ivm-menu-home .ivm-menu-allergens-link,
.ivm-category-app .ivm-category-allergens-link,
.ivm-events-page .ivm-event-form input {
	border-color: var(--ivm-gold);
}

.ivm-language-choice {
	color: var(--ivm-white);
	font-weight: 600;
}

.ivm-header-summary,
.ivm-summary-toggle,
.ivm-category-app .ivm-add-to-summary {
	color: var(--ivm-gold);
}

.ivm-summary-count,
.ivm-summary-badge {
	background: var(--ivm-bordeaux);
	border-color: var(--ivm-gold);
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-weight: 600;
}

.ivm-category-app .ivm-filter-trigger {
	background: var(--ivm-bordeaux);
	border-color: rgba(var(--ivm-gold-rgb), 0.72);
	color: var(--ivm-white);
	font-weight: 600;
}

.ivm-category-app .ivm-filter-trigger::after {
	border-color: var(--ivm-white);
}

.ivm-category-app .ivm-filter-trigger.is-active,
.ivm-category-app .ivm-filter-trigger[aria-expanded="true"] {
	background: var(--ivm-bordeaux);
	border-color: var(--ivm-gold);
	color: var(--ivm-white);
}

.ivm-category-app .ivm-filter-panel {
	background: var(--ivm-black);
	border-color: var(--ivm-gold);
	color: var(--ivm-white);
	box-shadow: 0 18px 42px rgba(var(--ivm-black-rgb), 0.56);
	font-family: var(--ivm-font-main);
}

.ivm-category-app .ivm-filter-help {
	background: rgba(var(--ivm-gold-rgb), 0.08);
	border-color: rgba(var(--ivm-gold-rgb), 0.55);
	color: var(--ivm-white);
	font-weight: 600;
}

.ivm-category-app .ivm-filter-option span {
	background: transparent;
	border-color: rgba(var(--ivm-gold-rgb), 0.56);
	color: var(--ivm-white);
	font-weight: 600;
}

.ivm-category-app .ivm-filter-option small {
	color: var(--ivm-gold);
	font-weight: 600;
}

.ivm-category-app .ivm-filter-option input:checked + span {
	background: var(--ivm-gold);
	border-color: var(--ivm-gold);
	color: var(--ivm-black);
}

.ivm-category-app .ivm-filter-option input:checked + span small {
	color: var(--ivm-black);
}

.ivm-category-app .ivm-filter-clear {
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-weight: 600;
}

.ivm-category-app .ivm-product-card,
.ivm-category-app .ivm-product-content {
	border-color: rgba(var(--ivm-gold-rgb), 0.35);
}

.ivm-category-app .ivm-product-title,
.ivm-category-app .ivm-product-price {
	color: var(--ivm-white);
	font-weight: 600;
}

.ivm-category-app .ivm-product-description,
.ivm-category-app .ivm-product-description p {
	color: rgba(var(--ivm-white-rgb), 0.76);
	font-family: var(--ivm-font-main);
	font-weight: 500;
}

.ivm-category-app .ivm-product-badges li {
	background: rgba(var(--ivm-white-rgb), 0.72);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.72);
	box-shadow: none;
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-weight: 600;
}

.ivm-category-app .ivm-category-product-list .ivm-allergen-icon,
.ivm-product-modal .ivm-allergen-icon {
	background: transparent;
	border: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.ivm-category-app .ivm-product-read-more {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-weight: 600;
}

.ivm-product-modal-backdrop {
	background: rgba(var(--ivm-black-rgb), 0.74);
}

.ivm-category-app .ivm-product-modal {
	font-family: var(--ivm-font-main);
}

.ivm-category-app .ivm-product-modal-content {
	background: var(--ivm-bordeaux);
	padding: 28px 32px 24px;
}

.ivm-category-app .ivm-product-modal-heading {
	margin-bottom: 18px;
}

.ivm-category-app .ivm-product-modal-heading h2,
.ivm-category-app .ivm-product-modal-heading p {
	color: var(--ivm-white);
	font-family: var(--ivm-font-main);
	font-weight: 600;
}

.ivm-category-app .ivm-product-modal-description,
.ivm-category-app .ivm-product-modal-description p {
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-weight: 500;
	margin-bottom: 0;
}

.ivm-category-app .ivm-product-modal-meta {
	margin-top: 22px;
}

.ivm-category-app .ivm-product-modal-badges {
	margin-top: 20px;
}

.ivm-category-app .ivm-product-modal-badges .ivm-product-badges li {
	background: transparent;
	border-color: var(--ivm-gold);
	color: var(--ivm-gold);
}

.ivm-category-app .ivm-product-modal .ivm-add-to-summary {
	color: var(--ivm-white);
}

.ivm-summary-page .ivm-summary-item {
	border-color: rgba(var(--ivm-gold-rgb), 0.66);
}

.ivm-summary-page .ivm-summary-item-name,
.ivm-summary-page .ivm-summary-qty-button {
	color: var(--ivm-white);
}

.ivm-summary-page .ivm-summary-item-qty {
	color: var(--ivm-gold);
}

.ivm-summary-page .ivm-service-message {
	background: var(--ivm-bordeaux);
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-weight: 500;
}

.ivm-summary-page .ivm-summary-clear--quiet {
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-weight: 500;
}

.ivm-allergens-page .ivm-allergens-table,
.ivm-events-page .ivm-event-intro,
.ivm-events-page .ivm-event-details,
.ivm-events-page .ivm-event-form-wrap {
	border-color: var(--ivm-gold);
}

.ivm-events-page .ivm-event-intro,
.ivm-events-page .ivm-event-details,
.ivm-events-page .ivm-event-copy,
.ivm-events-page .ivm-event-contacts {
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
}

.ivm-app-footer,
.ivm-app-footer * {
	font-family: var(--ivm-font-main);
}

.ivm-app-footer {
	background: var(--ivm-green);
}

.ivm-footer-awards::before,
.ivm-footer-awards::after {
	background: var(--ivm-gold);
}

.ivm-footer-note,
.ivm-footer-links a,
.ivm-footer-links-separator {
	color: var(--ivm-white);
	font-weight: 500;
}

.ivm-footer-social a[aria-label="TikTok"] img {
	filter: brightness(0) invert(1);
}

.ivm-footer-awards {
	flex-wrap: wrap;
	gap: 18px 24px;
	max-width: 330px;
	padding-left: 4px;
	padding-right: 4px;
}

.ivm-menu-home .ivm-footer-awards,
.ivm-category-app .ivm-footer-awards {
	gap: 18px 24px;
	max-width: 330px;
}

.ivm-footer-award-tc {
	width: 66px;
}

.ivm-footer-award-tc-hotel {
	width: 66px;
}

.ivm-footer-award-gambero {
	width: 86px;
}

.ivm-footer-award-mattino {
	width: 72px;
}

.ivm-footer-award-golosario {
	width: 78px;
}

.ivm-footer-award-pizza-maxima {
	width: 72px;
}

.ivm-footer-award-50top {
	width: 70px;
}

.ivm-footer-award-best-chef {
	width: 66px;
}

/* Normalize the top app header across every internal page. */
.ivm-menu-home .ivm-app-header,
.ivm-category-app .ivm-app-header,
.ivm-summary-page .ivm-summary-topbar,
.ivm-allergens-page .ivm-allergens-topbar,
.ivm-events-page .ivm-events-topbar {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	min-height: 28px;
	position: relative;
	z-index: 5;
}

.ivm-menu-home .ivm-back-link,
.ivm-category-app .ivm-back-link,
.ivm-summary-page .ivm-back-link,
.ivm-allergens-page .ivm-back-link,
.ivm-events-page .ivm-back-link {
	align-items: center;
	color: #A3835F;
	display: inline-flex;
	font-family: var(--ivm-font-main);
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
}

.ivm-menu-home .ivm-back-link::before,
.ivm-category-app .ivm-back-link::before,
.ivm-summary-page .ivm-back-link::before,
.ivm-allergens-page .ivm-back-link::before,
.ivm-events-page .ivm-back-link::before {
	border-bottom: 2px solid #A3835F;
	border-left: 2px solid #A3835F;
	content: "";
	display: inline-block;
	height: 10px;
	transform: rotate(45deg);
	width: 10px;
}

.ivm-menu-home .ivm-header-summary,
.ivm-category-app .ivm-header-summary,
.ivm-summary-page .ivm-header-summary,
.ivm-allergens-page .ivm-header-summary,
.ivm-events-page .ivm-header-summary {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #A3835F;
	display: inline-flex;
	height: 28px;
	justify-content: center;
	min-height: 28px;
	padding: 0;
	position: relative;
	width: 32px;
}

.ivm-menu-home .ivm-summary-toggle-icon,
.ivm-category-app .ivm-summary-toggle-icon,
.ivm-summary-page .ivm-summary-toggle-icon,
.ivm-allergens-page .ivm-summary-toggle-icon,
.ivm-events-page .ivm-summary-toggle-icon {
	background-image: url("../icons/menu/riepilogo.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border: 0;
	border-radius: 0;
	display: block;
	filter: brightness(1.2) sepia(0.35) saturate(1.05);
	height: 26px;
	opacity: 1;
	position: relative;
	width: 24px;
}

.ivm-menu-home .ivm-summary-toggle-icon::before,
.ivm-menu-home .ivm-summary-toggle-icon::after,
.ivm-category-app .ivm-summary-toggle-icon::before,
.ivm-category-app .ivm-summary-toggle-icon::after,
.ivm-summary-page .ivm-summary-toggle-icon::before,
.ivm-summary-page .ivm-summary-toggle-icon::after,
.ivm-allergens-page .ivm-summary-toggle-icon::before,
.ivm-allergens-page .ivm-summary-toggle-icon::after,
.ivm-events-page .ivm-summary-toggle-icon::before,
.ivm-events-page .ivm-summary-toggle-icon::after {
	content: none;
}

.ivm-menu-home .ivm-header-summary .ivm-summary-count,
.ivm-category-app .ivm-header-summary .ivm-summary-count,
.ivm-summary-page .ivm-header-summary .ivm-summary-count,
.ivm-allergens-page .ivm-header-summary .ivm-summary-count,
.ivm-events-page .ivm-header-summary .ivm-summary-count {
	align-items: center;
	background: var(--ivm-bordeaux);
	border: 1px solid rgba(var(--ivm-gold-rgb), 0.85);
	border-radius: 999px;
	color: #A3835F;
	display: inline-flex;
	font-family: var(--ivm-font-main);
	font-size: 9px;
	font-weight: 600;
	height: 15px;
	justify-content: center;
	line-height: 1;
	min-width: 15px;
	padding: 0 4px;
	position: absolute;
	right: -7px;
	top: -7px;
}

.ivm-category-app .ivm-product-modal {
	padding-top: 216px;
}

.ivm-category-app .ivm-product-modal-close {
	top: 238px;
}

.ivm-category-app .ivm-product-modal-media {
	flex-basis: 248px;
	height: 248px;
}

/* UX mobile fixes */
.ivm-app,
.ivm-app *,
.ivm-screen,
.ivm-screen *,
.ivm-menu,
.ivm-menu *,
.ivm-product-card,
.ivm-product-card *,
.ivm-product-modal,
.ivm-product-modal *,
.ivm-summary-page,
.ivm-summary-page * {
	-webkit-tap-highlight-color: transparent;
}

.ivm-app a,
.ivm-app button,
.ivm-screen a,
.ivm-screen button,
.ivm-menu a,
.ivm-menu button,
.ivm-product-card,
.ivm-add-to-summary,
.ivm-product-read-more,
.ivm-summary-toggle,
.ivm-header-summary,
.ivm-language-option,
.ivm-language-choice,
.ivm-menu-category-card {
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.ivm-app button:focus:not(:focus-visible),
.ivm-app a:focus:not(:focus-visible),
.ivm-screen button:focus:not(:focus-visible),
.ivm-screen a:focus:not(:focus-visible),
.ivm-menu button:focus:not(:focus-visible),
.ivm-menu a:focus:not(:focus-visible) {
	outline: none;
}

.ivm-menu-category-card {
	scroll-margin-top: 32px;
}

.ivm-category-app .ivm-product-modal-close,
.ivm-product-modal-close {
	align-items: center;
	display: flex;
	height: 42px;
	justify-content: center;
	line-height: 1;
	min-height: 42px;
	min-width: 42px;
	padding: 0;
	width: 42px;
}

.ivm-category-app .ivm-product-modal-close span,
.ivm-product-modal-close span {
	align-items: center;
	display: flex;
	justify-content: center;
	line-height: 1;
	margin: 0;
	transform: translateY(-1px);
}

.ivm-summary-category-title {
	color: var(--ivm-gold);
	font-family: var(--ivm-font-main);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
	list-style: none;
	margin: 22px 0 8px;
}

.ivm-summary-category-title:first-child {
	margin-top: 0;
}

.ivm-category-app .ivm-product-modal-media img,
.ivm-category-app .ivm-product-modal-media .ivm-product-image-placeholder,
.ivm-category-app aside.ivm-product-modal .ivm-product-modal-media > .ivm-product-image {
	height: 248px;
	min-height: 248px;
}

.ivm-category-app .ivm-product-modal-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: calc(100dvh - 464px);
	padding: 24px 32px max(24px, env(safe-area-inset-bottom));
}

.ivm-category-app .ivm-product-modal-description {
	font-size: 15.5px;
	line-height: 1.32;
	max-width: 17.5em;
}

.ivm-category-app .ivm-product-modal-meta {
	margin-top: 14px;
}

.ivm-category-app .ivm-product-modal-badges {
	margin-top: 14px;
}

.ivm-event-gallery img,
.ivm-gallery-link {
  cursor: pointer;
}

.ivm-event-lightbox-lock {
  overflow: hidden !important;
}

.ivm-event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 0;
  width: 100vw;
  height: 100dvh;
  padding: 64px 10px 34px;
  background: rgba(0, 0, 0, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.ivm-event-lightbox[hidden] {
  display: none;
}

.ivm-event-lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.ivm-event-lightbox-frame {
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.ivm-event-lightbox-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 150px);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.44);
}

.ivm-event-lightbox-frame figcaption {
  margin-top: 16px;
  color: var(--ivm-gold, #A3835F);
  font-family: var(--ivm-font-main, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 600;
}

.ivm-event-lightbox-close,
.ivm-event-lightbox-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(163, 131, 95, 0.75);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--ivm-white, #FFFFFF);
  font-family: var(--ivm-font-main, 'Montserrat', sans-serif);
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ivm-event-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  padding: 0 0 3px;
  font-size: 38px;
  font-weight: 300;
}

.ivm-event-lightbox-arrow {
  width: 44px;
  height: 58px;
  padding: 0 0 6px;
  border-color: transparent;
  background: transparent;
  color: var(--ivm-gold, #A3835F);
  font-size: 62px;
  font-weight: 300;
}

.ivm-event-lightbox-prev {
  justify-self: start;
}

.ivm-event-lightbox-next {
  justify-self: end;
}

.ivm-events-page .ivm-event-form label::after {
  display: none !important;
  content: none !important;
}

.ivm-events-page .ivm-event-form input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.ivm-events-page .ivm-event-form input[type='number']::-webkit-outer-spin-button,
.ivm-events-page .ivm-event-form input[type='number']::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.ivm-events-page .ivm-event-contacts a {
  color: #9f805d;
  text-decoration: none;
}

.ivm-events-page .ivm-event-contacts a:hover,
.ivm-events-page .ivm-event-contacts a:focus-visible {
  color: #9f805d;
  text-decoration: none;
}

.ivm-product-subcategory {
  display: grid;
  gap: 18px;
}

.ivm-product-subcategory + .ivm-product-subcategory {
  margin-top: 24px;
}

.ivm-product-subcategory > h2 {
  border-bottom: 1px solid rgba(var(--ivm-gold-rgb), 0.56);
  color: var(--ivm-gold);
  font-family: var(--ivm-font-main, 'Montserrat', sans-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 2px 0 2px;
  padding-bottom: 10px;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-media,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-media,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-media {
  display: none;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'],
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'],
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] {
  min-height: 0;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-content,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-content,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-content {
  border-radius: 8px;
  gap: 12px;
  grid-template-areas: 'main main' 'desc desc' 'allergens read';
  min-height: 178px;
  padding: 20px 72px 18px 22px;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-main,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-main,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-main {
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-right: 0;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-title,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-title,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-title {
  font-size: 20px;
  line-height: 1.12;
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-price,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-price,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-price {
  color: var(--ivm-white);
  font-size: 20px;
  line-height: 1.05;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-description,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-description,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-description {
  -webkit-line-clamp: 4;
  color: #9f805d;
  font-size: 13.5px;
  line-height: 1.34;
  max-width: none;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-description p,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-description p,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-description p {
  display: block;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-add-to-summary,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-add-to-summary,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-add-to-summary {
  right: 22px;
  top: 22px;
}

.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-delle-birre'] .ivm-product-read-more,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='carta-dei-vini'] .ivm-product-read-more,
.ivm-category-app .ivm-category-product-list .ivm-product-card[data-ivm-category-slug='cocktail-bar'] .ivm-product-read-more {
  align-self: end;
  justify-self: start;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-media {
  display: none;
}

.ivm-app-logo-link {
  display: inline-flex;
  justify-content: center;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}

.ivm-product-subcategory[hidden] {
  display: none !important;
}

.ivm-category-app .ivm-product-modal--textual {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  padding-top: 216px;
}

.ivm-category-app .ivm-product-modal[hidden] {
  display: none !important;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-content {
  border-radius: 14px 14px 0 0;
  gap: 16px;
  min-height: calc(100dvh - 216px);
  overflow: visible;
  padding: 68px 32px max(34px, env(safe-area-inset-bottom));
  width: 100%;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-close {
  right: 22px;
  top: 238px;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-heading {
  align-items: start;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: stretch;
  margin: 30px 0 0;
  padding: 0;
  text-align: left;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-heading h2 {
  font-size: 25px;
  line-height: 1.05;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-heading p {
  color: var(--ivm-white);
  font-size: 25px;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-description {
  color: #9f805d;
  font-size: 17px;
  line-height: 1.38;
  max-width: none;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-description p {
  margin: 0;
}

.ivm-category-app .ivm-product-modal--textual .ivm-product-modal-action {
  margin-top: auto;
}

section.ivm-app-title {
  position: relative;
  z-index: 10;
}

.ivm-product-card--sold-out .ivm-product-media,
.ivm-product-modal--sold-out .ivm-product-modal-media {
  position: relative;
}

.ivm-product-card--sold-out .ivm-product-media::before,
.ivm-product-modal--sold-out .ivm-product-modal-media::before {
  background: rgba(0, 0, 0, 0.34);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.ivm-product-sold-out-label {
  align-items: center;
  background: #bd002c;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
  color: var(--ivm-white);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: center;
  left: 10px;
  letter-spacing: 0;
  line-height: 1;
  max-width: calc(100% - 20px);
  padding: 5px 11px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  white-space: nowrap;
  z-index: 4;
}

.ivm-product-card--sold-out .ivm-product-badges {
  position: relative;
  z-index: 3;
}

.ivm-product-card--sold-out .ivm-add-to-summary,
.ivm-product-card--sold-out .ivm-add-to-summary:hover,
.ivm-product-card--sold-out .ivm-add-to-summary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  cursor: not-allowed;
  transform: none;
}

.ivm-product-card--sold-out .ivm-add-to-summary::before {
  filter: grayscale(1);
  opacity: 0.55;
}

.ivm-category-app .ivm-category-product-list .ivm-product-sold-out-label,
.ivm-product-modal .ivm-product-sold-out-label {
  border-width: 1.5px;
  font-size: 15px;
  font-weight: 650;
  left: 18px;
  padding: 6px 18px;
  top: 15px;
}

.ivm-product-modal .ivm-product-sold-out-label {
  left: 22px;
  top: 20px;
}
