@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: #11100d;
	--ivm-bg-soft: #1b1813;
	--ivm-panel: #201c16;
	--ivm-panel-alt: #282219;
	--ivm-burgundy: #3a0717;
	--ivm-green: #062c22;
	--ivm-gold: #c9a45d;
	--ivm-gold-strong: #e2c176;
	--ivm-cream: #fff5df;
	--ivm-muted: #d8c9a9;
	--ivm-border: rgba(226, 193, 118, 0.25);
	--ivm-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
	background:
		linear-gradient(180deg, rgba(255, 245, 223, 0.04), transparent 280px),
		var(--ivm-bg);
	color: var(--ivm-cream);
	font-family: "Sofia Sans", "Montserrat", Arial, sans-serif;
	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: "Montserrat", "Sofia Sans", Arial, sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.ivm-language-switcher {
	background: rgba(255, 245, 223, 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(226, 193, 118, 0.18);
	color: #fff;
	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(255, 245, 223, 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: "Montserrat", "Sofia Sans", Arial, sans-serif;
	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(255, 245, 223, 0.05), rgba(255, 245, 223, 0.018)),
		var(--ivm-burgundy);
	border: 1px solid rgba(255, 245, 223, 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(226, 193, 118, 0.7);
	display: flex;
	font-family: "Montserrat", "Sofia Sans", Arial, sans-serif;
	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: #fff;
	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(255, 245, 223, 0.08);
	border: 1px solid rgba(255, 245, 223, 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: #fff;
}

.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(255, 245, 223, 0.045), rgba(255, 245, 223, 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(255, 245, 223, 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-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(255, 245, 223, 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: "Montserrat", "Sofia Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.ivm-summary-close {
	align-items: center;
	background: rgba(255, 245, 223, 0.08);
	border: 1px solid rgba(255, 245, 223, 0.12);
	border-radius: 999px;
	color: #fff;
	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(226, 193, 118, 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(255, 245, 223, 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: #fff;
	font-size: 16px;
	font-weight: 850;
	line-height: 1.18;
	margin: 0;
	overflow-wrap: anywhere;
}

.ivm-summary-item-qty {
	background: rgba(226, 193, 118, 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(255, 245, 223, 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(255, 245, 223, 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(255, 245, 223, 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(226, 193, 118, 0.14);
	outline: none;
}

.ivm-screen {
	--ivm-bg: #11100d;
	--ivm-bg-soft: #1b1813;
	--ivm-panel: #201c16;
	--ivm-panel-alt: #282219;
	--ivm-burgundy: #3a0717;
	--ivm-green: #062c22;
	--ivm-gold: #c9a45d;
	--ivm-gold-strong: #e2c176;
	--ivm-cream: #fff5df;
	--ivm-muted: #d8c9a9;
	--ivm-border: rgba(226, 193, 118, 0.25);
	--ivm-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
	background:
		linear-gradient(180deg, rgba(255, 245, 223, 0.035), transparent 320px),
		#050504;
	color: var(--ivm-cream, #fff5df);
	font-family: "Sofia Sans", "Montserrat", Arial, sans-serif;
	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: #fff;
	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(255, 245, 223, 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(255, 245, 223, 0.72);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

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

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

.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: #fff;
	font-family: "Montserrat", "Sofia Sans", Arial, sans-serif;
	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(255, 245, 223, 0.04);
	border: 1px solid rgba(255, 245, 223, 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(226, 193, 118, 0.25);
	border-radius: 7px;
	color: #fff;
	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: "Montserrat", "Sofia Sans", Arial, sans-serif;
	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(255, 245, 223, 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: #fff;
	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(226, 193, 118, 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(226, 193, 118, 0.16);
	border: 1px solid var(--ivm-border);
	border-radius: 999px;
	color: #fff;
	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;
}

.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: #fff;
	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: #fff;
	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(226, 193, 118, 0.22);
	border-radius: 8px;
	color: #fff;
	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(255, 245, 223, 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(255, 245, 223, 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(255, 245, 223, 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(226, 193, 118, 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: #fff;
	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(226, 193, 118, 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(255, 245, 223, 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(255, 245, 223, 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%;
}

.ivm-language-screen {
	background: #000;
	min-height: 100dvh;
	padding: 0 38px 54px;
}

.ivm-language-card {
	gap: 18px;
	margin-top: -18px;
	width: 100%;
}

.ivm-language-logo {
	max-width: 150px;
	width: 52%;
}

.ivm-language-card h1 {
	border-color: rgba(185, 154, 99, 0.44);
	color: #f7f2ea;
	font-size: 19px;
	font-weight: 500;
	margin: 22px 0 24px;
	padding: 17px 0;
}

.ivm-language-list {
	gap: 15px;
	width: 172px;
}

.ivm-language-choice {
	background: #050505;
	border-color: rgba(247, 242, 234, 0.58);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	min-height: 36px;
	padding: 7px 12px;
}

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

.ivm-back-link {
	color: rgba(247, 242, 234, 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: #f7f2ea;
	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(185, 154, 99, 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: #050505;
	border-color: rgba(185, 154, 99, 0.38);
	border-radius: 6px;
	color: #f7f2ea;
	font-size: 12px;
	font-weight: 700;
	min-height: 34px;
	padding: 9px 10px;
}

.ivm-service-label {
	background: transparent !important;
	border: 0 !important;
	color: #f7f2ea !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(185, 154, 99, 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(59, 0, 18, 0.7), rgba(0, 52, 38, 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: #050505;
	border-color: rgba(185, 154, 99, 0.45);
	border-radius: 5px;
	color: #c5a56b;
	font-weight: 650;
}

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

.ivm-category-product-list .ivm-product-card {
	background: #3b0012;
	border-color: rgba(185, 154, 99, 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: #3b0012;
	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: #f7f2ea;
	font-size: 15px;
}

.ivm-category-product-list .ivm-product-description {
	color: #d9cfc1;
	font-size: 13px;
	line-height: 1.28;
	max-width: 28em;
}

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

.ivm-category-product-list .ivm-allergen {
	background: transparent;
	border: 0;
	color: #f7f2ea;
	font-size: 10px;
	font-weight: 800;
	padding: 0 7px 0 0;
	text-transform: uppercase;
}

.ivm-category-product-list .ivm-allergen-icon {
	background: #fff;
	border-radius: 999px;
	height: 17px;
	padding: 2px;
	width: 17px;
}

.ivm-category-product-list .ivm-product-read-more {
	border-color: rgba(185, 154, 99, 0.5);
	border-radius: 999px;
	color: #c5a56b;
	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(247, 242, 234, 0.72);
	height: 32px;
	right: 26px;
	top: 70px;
	width: 32px;
}

.ivm-product-modal-media {
	background: #003426;
	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: #3b0012;
	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: #f7f2ea;
	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: #f7f2ea;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.ivm-product-modal .ivm-allergen-icon {
	background: #fff;
	border-radius: 999px;
	height: 18px;
	padding: 2px;
	width: 18px;
}

.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(185, 154, 99, 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(185, 154, 99, 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: #f7f2ea;
	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: #c5a56b;
	height: 18px;
	font-size: 16px;
	width: 18px;
}

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

.ivm-service-message {
	background: #3b0012;
	border: 1px solid rgba(185, 154, 99, 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(185, 154, 99, 0.64);
	border-radius: 8px;
	gap: 0;
	padding: 8px;
}

.ivm-allergen-row {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(185, 154, 99, 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: #c5a56b;
	font-size: 15px;
	margin-bottom: 4px;
}

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

.ivm-event-intro,
.ivm-event-details,
.ivm-event-form-section {
	background: transparent;
	border-color: rgba(185, 154, 99, 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: #c5a56b;
	font-size: 18px;
}

.ivm-event-details p {
	border-left: 2px solid rgba(185, 154, 99, 0.5);
	padding-left: 9px;
}

.ivm-event-gallery img {
	border-color: rgba(185, 154, 99, 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: #c5a56b;
	border-radius: 8px;
}

.ivm-app-footer {
	background: #002f25;
	margin-top: 28px;
	padding-top: 31px;
}

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

.ivm-footer-awards {
	border-bottom: 1px solid rgba(247, 242, 234, 0.2);
	border-top: 1px solid rgba(247, 242, 234, 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;
	}
}
