:root {
	--sp-ink: #121212;
	--sp-ink-soft: #2a2927;
	--sp-cream: #f7f0e5;
	--sp-paper: #fffdf8;
	--sp-red: #c62137;
	--sp-red-dark: #981527;
	--sp-orange: #f28b20;
	--sp-blue: #0879b9;
	--sp-green: #287a47;
	--sp-muted: #716e68;
	--sp-border: #e5ded2;
	--sp-shadow: 0 22px 70px rgba(18, 18, 18, .11);
	--sp-radius: 22px;
}

html { scroll-behavior: smooth; }
body {
	background: var(--sp-paper);
	color: var(--sp-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}
body, button, input, textarea { -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
.sp-logo-image {
	display: block;
	width: 100%;
	height: auto !important;
	max-height: none !important;
	aspect-ratio: 566 / 584;
	object-fit: contain !important;
}
a { color: var(--sp-red); }
a:hover { color: var(--sp-red-dark); text-decoration: none; }
button, a, input, textarea { transition: border-color .2s, background .2s, color .2s, box-shadow .2s, transform .2s; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
	outline: 3px solid rgba(8, 121, 185, .32);
	outline-offset: 3px;
}
.container { max-width: 1240px; }
.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.sp-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 99999;
	padding: 11px 18px;
	background: #fff;
	color: #111;
	border-radius: 10px;
	transform: translateY(-150%);
}
.sp-skip-link:focus { transform: none; }
.sp-eyebrow {
	display: block;
	margin-bottom: 9px;
	color: var(--sp-red);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.sp-eyebrow i { margin-right: 5px; }
.sp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 12px 22px;
	border: 2px solid transparent;
	border-radius: 14px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}
.sp-button:hover { transform: translateY(-2px); }
.sp-button-primary {
	background: var(--sp-red);
	box-shadow: 0 12px 24px rgba(198, 33, 55, .23);
	color: #fff;
}
.sp-button-primary:hover { background: var(--sp-red-dark); color: #fff; }
.sp-button-secondary { border-color: var(--sp-ink); background: transparent; color: var(--sp-ink); }
.sp-button-secondary:hover { background: var(--sp-ink); color: #fff; }
.sp-button-light { background: #fff; color: var(--sp-ink); }
.sp-button-block { width: 100%; }
.sp-button.is-disabled, .sp-button:disabled {
	opacity: .45;
	pointer-events: none;
	box-shadow: none;
}
.sp-text-link { font-weight: 800; }

/* Header */
.sp-site-header {
	position: relative;
	z-index: 1000;
	background: var(--sp-paper);
	box-shadow: 0 1px 0 var(--sp-border);
}
.sp-topline { background: var(--sp-ink); color: #fff; font-size: 13px; }
.sp-topline-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 20px;
}
.sp-topline a { color: #fff; }
.sp-topline i { color: var(--sp-orange); margin-right: 6px; }
.sp-service-state { display: flex; align-items: center; gap: 7px; }
.sp-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #aaa; }
.sp-status-dot.is-open { background: #4bd477; box-shadow: 0 0 0 4px rgba(75, 212, 119, .15); }
.sp-status-dot.is-closed { background: #ef4e60; }
.sp-navbar { background: rgba(255, 253, 248, .96); }
.sp-navbar-inner { min-height: 88px; display: flex; align-items: center; gap: 18px; }
.sp-brand { display: block; width: 86px; flex: 0 0 86px; margin-top: -22px; }
.sp-brand img { display: block; filter: drop-shadow(0 7px 8px rgba(0, 0, 0, .15)); }
.sp-navigation { flex: 1 1 auto; min-width: 0; }
.sp-nav-links {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	gap: 4px;
	margin: 0;
}
.sp-nav-links li { list-style: none; }
.sp-nav-links .nav-link, .sp-nav-links a {
	display: block;
	padding: 12px 9px !important;
	color: var(--sp-ink);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}
.sp-nav-links a:hover { color: var(--sp-red); }
.sp-navigation .dropdown-menu {
	margin-top: 0;
	padding: 8px;
	border: 1px solid var(--sp-border);
	border-radius: 13px;
	background: #fff;
	box-shadow: var(--sp-shadow);
}
.sp-navigation .dropdown-item {
	padding: 9px 11px !important;
	border-radius: 8px;
	font-size: 12px;
}
.sp-navigation .dropdown-item:hover { background: var(--sp-cream); }
.sp-header-actions { display: flex; align-items: center; gap: 9px; margin-left: auto; }
.sp-account-link, .sp-header-cart {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 8px 13px;
	border: 1px solid var(--sp-border);
	border-radius: 14px;
	color: var(--sp-ink);
}
.sp-account-link { background: #fff; cursor: pointer; }
.sp-account-dropdown .dropdown-toggle:after { margin-left: 4px; }
.sp-account-menu {
	min-width: 210px;
	padding: 8px;
	border: 1px solid var(--sp-border);
	border-radius: 13px;
	box-shadow: var(--sp-shadow);
}
.sp-account-menu li { display: block; margin: 0; list-style: none; }
.sp-account-menu a {
	display: block;
	padding: 9px 11px;
	border-radius: 8px;
	color: var(--sp-ink);
	font-size: 12px;
	font-weight: 800;
}
.sp-account-menu a:hover { background: var(--sp-cream); color: var(--sp-red); }
.sp-account-link > i, .sp-header-cart > i { font-size: 24px; color: var(--sp-red); }
.sp-account-link span, .sp-header-cart span:last-child { display: flex; flex-direction: column; }
.sp-account-link small, .sp-header-cart small { color: var(--sp-muted); font-size: 10px; line-height: 1.1; }
.sp-account-link strong, .sp-header-cart strong { font-size: 12px; line-height: 1.3; white-space: nowrap; }
.sp-header-cart { position: relative; background: var(--sp-cream); }
.sp-cart-badge {
	position: absolute;
	top: -7px;
	left: 31px;
	display: grid !important;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--sp-red);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
}
.sp-menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.sp-menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--sp-ink); }

@media (min-width: 992px) {
	.sp-navigation.collapse {
		display: flex !important;
		height: auto !important;
		overflow: visible !important;
	}
}

/* Hero */
.sp-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 81% 38%, rgba(242, 139, 32, .22), transparent 25%),
		linear-gradient(135deg, #fffaf2 0%, var(--sp-cream) 100%);
	border-bottom: 1px solid var(--sp-border);
}
.sp-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .24;
	background-image: radial-gradient(var(--sp-ink) .7px, transparent .7px);
	background-size: 18px 18px;
	pointer-events: none;
}
.sp-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	min-height: 610px;
	padding: 65px 0;
}
.sp-hero-copy { position: relative; z-index: 2; max-width: 670px; }
.sp-hero h1, .sp-page-hero h1 {
	margin: 0 0 20px;
	color: var(--sp-ink);
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: clamp(54px, 6.6vw, 92px);
	font-weight: 400;
	line-height: .93;
	letter-spacing: .01em;
	text-transform: uppercase;
}
.sp-hero h1 span { color: var(--sp-red); }
.sp-hero-copy > p { max-width: 600px; margin: 0 0 28px; color: #514e48; font-size: 19px; }
.sp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sp-service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.sp-service-pills span, .sp-service-pills a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 11px;
	border: 1px solid rgba(18, 18, 18, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .6);
	font-size: 12px;
	font-weight: 800;
	color: var(--sp-ink);
}
.sp-service-pills i { color: var(--sp-red); font-size: 17px; }
.sp-service-pills a:hover { border-color: var(--sp-red); color: var(--sp-red); }
.sp-hero-art { position: relative; display: grid; place-items: center; min-height: 470px; }
.sp-hero-art img {
	position: relative;
	z-index: 2;
	width: min(94%, 490px);
	height: auto;
	filter: drop-shadow(0 28px 25px rgba(18, 18, 18, .2));
	transform: rotate(2deg);
}
.sp-hero-orbit {
	position: absolute;
	width: 430px;
	height: 430px;
	border: 2px dashed rgba(198, 33, 55, .25);
	border-radius: 50%;
}
.sp-hero-stamp {
	position: absolute;
	right: 2%;
	bottom: 13%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	background: var(--sp-blue);
	box-shadow: 0 12px 24px rgba(8, 121, 185, .28);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	transform: rotate(-8deg);
}

/* Menu */
.sp-ordering { padding: 82px 0 100px; background: var(--sp-paper); scroll-margin-top: 20px; }
.sp-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.sp-section-heading h2, .sp-bonus-section h2, .sp-story h2 {
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 400;
	letter-spacing: .01em;
	text-transform: uppercase;
	line-height: 1;
}
.sp-section-heading p { margin: 4px 0 0; color: var(--sp-muted); }
.sp-search { position: relative; width: min(100%, 380px); }
.sp-search i { position: absolute; left: 17px; top: 50%; color: var(--sp-muted); font-size: 22px; transform: translateY(-50%); }
.sp-search input {
	width: 100%;
	height: 52px;
	padding: 0 18px 0 49px;
	border: 1px solid var(--sp-border);
	border-radius: 15px;
	background: #fff;
	font-size: 15px;
}
.sp-search input:focus { border-color: var(--sp-blue); box-shadow: 0 0 0 4px rgba(8, 121, 185, .09); outline: 0; }
.sp-catalog-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 -14px 36px;
	padding: 11px 14px;
	border: 1px solid var(--sp-border);
	border-radius: 18px;
	background: rgba(255, 253, 248, .95);
	box-shadow: 0 10px 30px rgba(18, 18, 18, .06);
	backdrop-filter: blur(12px);
}
.sp-category-scroll, .sp-filters { display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.sp-category-scroll { flex: 1 1 auto; min-width: 0; }
.sp-filters { flex: 0 0 auto; }
.sp-category-scroll::-webkit-scrollbar, .sp-filters::-webkit-scrollbar { display: none; }
.sp-category-scroll a, .sp-filters button {
	flex: 0 0 auto;
	padding: 8px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--sp-ink);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}
.sp-category-scroll a:hover { background: var(--sp-cream); }
.sp-filters { padding-left: 9px; border-left: 1px solid var(--sp-border); }
.sp-filters button { border: 1px solid var(--sp-border); background: #fff; }
.sp-filters button.is-active { border-color: var(--sp-ink); background: var(--sp-ink); color: #fff; }
.sp-filter-short { display: none; }
.sp-order-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; gap: 36px; }
.sp-menu-section { margin-bottom: 52px; scroll-margin-top: 96px; }
.sp-menu-section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 17px; }
.sp-menu-section-heading span { color: var(--sp-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.sp-menu-section-heading h3 {
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 34px;
	font-weight: 400;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.sp-menu-section-heading a { color: var(--sp-muted); font-size: 12px; font-weight: 800; }
.sp-food-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.sp-food-card {
	position: relative;
	display: flex;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	background: #fff;
	box-shadow: 0 8px 24px rgba(18, 18, 18, .045);
	cursor: pointer;
}
.sp-food-card:hover { border-color: #d1c7b7; box-shadow: 0 16px 38px rgba(18, 18, 18, .09); transform: translateY(-2px); }
.sp-food-card:focus-visible { outline: 3px solid rgba(8,121,185,.3); outline-offset: 3px; }
.sp-food-image { position: relative; flex: 0 0 40%; min-height: 220px; overflow: hidden; background: var(--sp-cream); }
.sp-food-image > img { width: 100%; height: 100%; object-fit: cover; }
.sp-placeholder-image { padding: 10%; background: var(--sp-cream) !important; object-fit: contain !important; }
.sp-food-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 5px; }
.sp-badge { padding: 4px 7px; border-radius: 7px; color: #fff; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.sp-badge.is-primary { background: var(--sp-ink); }
.sp-badge.is-green { background: var(--sp-green); }
.sp-badge.is-red { background: var(--sp-red); }
.sp-food-content { display: flex; flex: 1; min-width: 0; flex-direction: column; padding: 17px; }
.sp-food-title-row { display: flex; justify-content: space-between; gap: 10px; }
.sp-food-title-row h4 { margin: 0; font-size: 17px; font-weight: 900; line-height: 1.25; }
.sp-food-title-row span { color: var(--sp-muted); font-size: 11px; }
.sp-food-title-row > strong { color: var(--sp-red); font-size: 18px; white-space: nowrap; }
.sp-food-content > p {
	display: -webkit-box;
	margin: 10px 0 14px;
	overflow: hidden;
	color: var(--sp-muted);
	font-size: 12px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.sp-food-footer { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: auto; }
.sp-allergens { display: flex; align-items: center; flex-wrap: wrap; gap: 3px; }
.sp-allergens span { color: var(--sp-muted); font-size: 9px; }
.sp-allergens b { display: grid; place-items: center; min-width: 18px; height: 18px; border-radius: 50%; background: var(--sp-cream); font-size: 9px; }
.sp-add-button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 38px;
	padding: 8px 12px;
	border: 0;
	border-radius: 11px;
	background: var(--sp-red);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}
.sp-add-button:hover { background: var(--sp-red-dark); transform: translateY(-1px); }
.sp-no-results, .sp-state-card { padding: 60px 25px; border: 1px dashed var(--sp-border); border-radius: var(--sp-radius); text-align: center; }
.sp-no-results > i, .sp-state-card > i { display: block; margin-bottom: 12px; color: var(--sp-red); font-size: 48px; }
.sp-no-results h3, .sp-state-card h2 { margin-bottom: 8px; }
.sp-allergen-link { display: inline-flex; gap: 8px; color: var(--sp-muted); font-size: 13px; font-weight: 700; }

/* Cart */
.sp-cart-panel {
	position: sticky;
	top: 94px;
	overflow: hidden;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	background: #fff;
	box-shadow: var(--sp-shadow);
}
.sp-cart-heading { display: flex; align-items: center; justify-content: space-between; padding: 21px 22px; border-bottom: 1px solid var(--sp-border); }
.sp-cart-heading h2 { margin: 0; font-size: 23px; }
.sp-cart-heading h2 b { display: inline-grid; place-items: center; min-width: 22px; height: 22px; border-radius: 99px; background: var(--sp-red); color: #fff; font-size: 11px; line-height: 1; }
.sp-cart-heading > i { color: var(--sp-red); font-size: 30px; }
#spCartContent { padding: 0 20px 20px; }
.sp-cart-empty { padding: 42px 12px 28px; text-align: center; }
.sp-cart-empty-icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 15px; border-radius: 50%; background: var(--sp-cream); color: var(--sp-red); font-size: 32px; }
.sp-cart-empty h3 { margin-bottom: 5px; font-size: 18px; }
.sp-cart-empty p { margin: 0; color: var(--sp-muted); font-size: 13px; }
.sp-cart-items { max-height: 400px; overflow-y: auto; }
.sp-cart-item { display: flex; gap: 11px; padding: 15px 0; border-bottom: 1px solid var(--sp-border); }
.sp-cart-item-thumb {
	display: block;
	flex: 0 0 62px;
	width: 62px;
	height: 62px;
	min-width: 62px;
	min-height: 62px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--sp-cream);
}
.sp-cart-item-thumb > img {
	display: block !important;
	width: 62px !important;
	height: 62px !important;
	min-width: 62px;
	min-height: 62px;
	max-width: none;
	padding: 0;
	object-fit: cover;
}
.sp-cart-item-thumb > img.sp-placeholder-image { padding: 7px; object-fit: contain; }
.sp-cart-item-main { flex: 1; min-width: 0; }
.sp-cart-item-title { display: flex; align-items: start; justify-content: space-between; gap: 5px; }
.sp-cart-item-title strong { font-size: 13px; line-height: 1.3; }
.sp-icon-button { flex: 0 0 auto; border: 0; background: transparent; color: var(--sp-muted); font-size: 18px; }
.sp-cart-item-main > small { display: block; margin: 3px 0 8px; color: var(--sp-muted); font-size: 10px; line-height: 1.35; }
.sp-cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.sp-qty { display: inline-flex; align-items: center; overflow: hidden; border: 1px solid var(--sp-border); border-radius: 9px; }
.sp-qty button { display: grid; place-items: center; width: 28px; height: 27px; padding: 0; border: 0; background: var(--sp-cream); font-weight: 900; }
.sp-qty span, .sp-qty input { width: 31px; border: 0; background: #fff; text-align: center; font-size: 11px; font-weight: 900; }
.sp-bonus-card { display: flex; gap: 10px; margin: 14px 0; padding: 12px; border-radius: 12px; background: #eaf5fb; color: #125572; }
.sp-bonus-card i { font-size: 24px; }
.sp-bonus-card div { display: flex; flex-direction: column; }
.sp-bonus-card strong { font-size: 12px; }
.sp-bonus-card span { font-size: 10px; }
.sp-cart-total, .sp-summary-total { display: flex; align-items: center; justify-content: space-between; margin: 18px 0 13px; }
.sp-cart-total span { font-weight: 700; }
.sp-cart-total strong { font-size: 24px; }
.sp-cart-minimum { padding: 10px; border-radius: 10px; background: #fff0dc; color: #82511c; font-size: 11px; text-align: center; }

/* Bonus, story and footer */
.sp-bonus-section { padding: 75px 0; background: var(--sp-ink); color: #fff; }
.sp-bonus-grid { display: grid; grid-template-columns: 130px minmax(0, 700px); align-items: center; justify-content: center; gap: 38px; }
.sp-bonus-mark { display: grid; place-items: center; width: 130px; height: 130px; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; background: var(--sp-red); font-size: 52px; transform: rotate(-7deg); }
.sp-bonus-section h2 { color: #fff; }
.sp-bonus-section p { color: #c9c6c0; }
.sp-bonus-section .sp-text-link { color: var(--sp-orange); }
.sp-story { padding: 92px 0; background: var(--sp-cream); }
.sp-story .container { display: grid; grid-template-columns: 1fr 320px; align-items: center; gap: 70px; }
.sp-story-content { max-width: 720px; }
.sp-rich-text { color: #5c5851; }
.sp-story-logo img { filter: drop-shadow(0 18px 20px rgba(0,0,0,.14)); transform: rotate(3deg); }
.sp-contact-strip { padding: 22px 0; background: var(--sp-red); color: #fff; }
.sp-contact-strip .container { display: flex; justify-content: space-between; gap: 20px; }
.sp-contact-strip .container > div { display: flex; align-items: center; gap: 9px; }
.sp-contact-strip i { font-size: 22px; }
.sp-contact-strip a { color: #fff; font-weight: 900; }
.sp-footer, .sp-site-footer { padding: 70px 0 24px; background: #0e0e0e; color: #aaa; }
.sp-footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 50px; }
.sp-footer-brand img { width: 140px; height: auto; margin-bottom: 15px; filter: drop-shadow(0 8px 10px rgba(0,0,0,.3)); }
.sp-footer h3, .sp-site-footer h3 { color: #fff; font-size: 15px; }
.sp-footer ul, .sp-site-footer ul { padding: 0; margin: 0; }
.sp-footer li, .sp-site-footer li { margin: 8px 0; list-style: none; font-size: 13px; }
.sp-footer a, .sp-site-footer a { color: #d7d4ce; }
.sp-footer-menu > li { margin-bottom: 10px; }
.sp-footer-submenu { margin: 5px 0 0 10px !important; padding-left: 9px !important; border-left: 1px solid #343434; }
.sp-footer-submenu li { margin: 3px 0; }
.sp-footer-submenu a { color: #999; font-size: 11px; }
.sp-social-links { display: flex; gap: 8px; margin-top: 15px; }
.sp-social-links a { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid #333; border-radius: 50%; font-size: 17px; }
.sp-footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid #292929; font-size: 11px; }
.sp-mobile-cart { display: none; }

/* Modal */
.modal-content { overflow: hidden; border: 0; border-radius: 22px; box-shadow: var(--sp-shadow); }
.modal-header { padding: 18px 22px; border-bottom: 1px solid var(--sp-border); }
.modal-title { font-weight: 900; }
.modal-body { max-height: calc(100vh - 190px); padding: 0; overflow-y: auto; }
.modal-footer { align-items: center; padding: 14px 20px; border-top: 1px solid var(--sp-border); }
.sp-loading { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 200px; }
.sp-food-options { padding-bottom: 10px; }
.sp-modal-food { display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 20px; padding: 20px; background: var(--sp-cream); }
.sp-modal-food img { width: 190px; height: 142px; border-radius: 16px; object-fit: cover; }
.sp-modal-food h3 { margin: 0 0 5px; font-size: 23px; font-weight: 900; }
.sp-modal-food p { margin: 0; color: var(--sp-muted); font-size: 12px; }
.sp-option-group { padding: 18px 20px 0; }
.sp-option-group h4 { margin: 0 0 11px; font-size: 15px; font-weight: 900; }
.sp-option-group h4 small { color: var(--sp-muted); font-size: 10px; font-weight: 500; }
.sp-option-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.sp-option-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sp-choice { position: relative; margin: 0; cursor: pointer; }
.sp-choice input { position: absolute; opacity: 0; }
.sp-choice span {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 10px 8px 32px;
	border: 1px solid var(--sp-border);
	border-radius: 10px;
	color: #4f4c47;
	font-size: 11px;
	line-height: 1.25;
}
.sp-choice span:before { content: ""; position: absolute; left: 11px; width: 13px; height: 13px; border: 2px solid #bdb5a9; border-radius: 4px; }
.sp-choice input:checked + span { border-color: var(--sp-red); background: #fff4f4; color: var(--sp-ink); font-weight: 800; }
.sp-choice input:checked + span:before { border-color: var(--sp-red); background: var(--sp-red); box-shadow: inset 0 0 0 3px #fff; }
.sp-choice-addon span { padding-right: 53px; }
.sp-choice-addon strong { position: absolute; top: 50%; right: 9px; color: var(--sp-red); font-size: 10px; transform: translateY(-50%); }
.sp-option-quantity { display: flex; align-items: center; justify-content: space-between; margin: 20px 20px 10px; padding-top: 16px; border-top: 1px solid var(--sp-border); font-weight: 800; }
.sp-option-quantity input { height: 27px; }
.sp-toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	max-width: 330px;
	padding: 13px 18px;
	border-radius: 12px;
	background: var(--sp-green);
	box-shadow: var(--sp-shadow);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}
.sp-toast.is-visible { opacity: 1; transform: none; }
.sp-toast.is-error { background: var(--sp-red); }

/* Checkout and content pages */
.sp-page-hero { padding: 66px 0 55px; background: var(--sp-cream); border-bottom: 1px solid var(--sp-border); }
.sp-page-hero h1 { max-width: 950px; margin-bottom: 12px; font-size: clamp(42px, 6vw, 70px); }
.sp-page-hero p { max-width: 720px; margin: 0; color: var(--sp-muted); font-size: 18px; }
.sp-back-link { display: inline-block; margin-bottom: 26px; color: var(--sp-muted); font-size: 13px; font-weight: 800; }
.sp-checkout, .sp-confirmation { padding: 58px 0 90px; }
.sp-checkout-layout, .sp-confirmation-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: start; gap: 28px; }
.sp-checkout-main { display: grid; gap: 20px; }
.sp-checkout-card { padding: 25px; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); background: #fff; box-shadow: 0 8px 26px rgba(18,18,18,.045); }
.sp-checkout-card-heading { display: flex; gap: 14px; margin-bottom: 20px; }
.sp-checkout-card-heading > span { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: var(--sp-ink); color: #fff; font-size: 13px; font-weight: 900; }
.sp-checkout-card h2 { margin: 0 0 2px; font-size: 21px; font-weight: 900; }
.sp-checkout-card-heading p { margin: 0; color: var(--sp-muted); font-size: 12px; }
.sp-choice-cards { display: grid; gap: 10px; }
.sp-choice-cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sp-large-choice { position: relative; margin: 0; cursor: pointer; }
.sp-large-choice input { position: absolute; opacity: 0; }
.sp-large-choice-body { display: flex; flex-direction: column; min-height: 118px; padding: 15px; border: 2px solid var(--sp-border); border-radius: 15px; }
.sp-large-choice-body > i { margin-bottom: 10px; color: var(--sp-red); font-size: 27px; }
.sp-large-choice-body strong { font-size: 15px; }
.sp-large-choice-body small { color: var(--sp-muted); font-size: 11px; }
.sp-large-choice input:checked + .sp-large-choice-body { border-color: var(--sp-red); background: #fff7f6; box-shadow: inset 0 0 0 1px var(--sp-red); }
.sp-large-choice input:focus-visible + .sp-large-choice-body { outline: 3px solid rgba(8,121,185,.25); }
.sp-login-hint { margin: 0 0 18px; padding: 11px 13px; border-radius: 11px; background: #edf6fb; color: #23556d; font-size: 12px; }
.sp-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sp-field { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.sp-field-wide { grid-column: 1 / -1; }
.sp-field > span { font-size: 11px; font-weight: 800; }
.sp-field input, .sp-field textarea {
	width: 100%;
	padding: 12px 13px;
	border: 1px solid var(--sp-border);
	border-radius: 11px;
	background: #fff;
	color: var(--sp-ink);
	font-size: 15px;
}
.sp-field input { height: 46px; }
.sp-field textarea { resize: vertical; }
.sp-field input:focus, .sp-field textarea:focus { border-color: var(--sp-blue); box-shadow: 0 0 0 4px rgba(8,121,185,.08); outline: 0; }
.sp-inline-check { display: flex; align-items: start; gap: 9px; margin: 17px 0 0; color: #4e4b46; font-size: 12px; cursor: pointer; }
.sp-inline-check input { width: 16px; height: 16px; accent-color: var(--sp-red); }
.sp-company-fields { margin-top: 16px; }
.sp-checkout-summary, .sp-confirmation-details { position: sticky; top: 22px; }
.sp-summary-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 17px; }
.sp-summary-heading h2 { margin: 0; }
.sp-summary-heading a { font-size: 11px; font-weight: 800; }
.sp-summary-items { margin: 0 -4px 13px; }
.sp-summary-item { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 10px; padding: 10px 4px; border-bottom: 1px solid var(--sp-border); }
.sp-summary-item img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; background: var(--sp-cream); }
.sp-summary-item div { min-width: 0; }
.sp-summary-item strong { display: block; font-size: 11px; }
.sp-summary-item small { display: block; overflow: hidden; color: var(--sp-muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.sp-summary-item b { font-size: 11px; white-space: nowrap; }
.sp-summary-line { display: flex; justify-content: space-between; padding: 7px 0; color: var(--sp-muted); font-size: 12px; }
.sp-summary-line strong { color: var(--sp-ink); }
.sp-credit-box { margin: 15px 0; padding: 13px; border-radius: 12px; background: #edf6fb; }
.sp-credit-box > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sp-credit-box strong { font-size: 11px; }
.sp-credit-box span { color: #477285; font-size: 9px; }
.sp-credit-box input[type="range"] { width: 100%; margin: 13px 0 5px; accent-color: var(--sp-blue); }
.sp-credit-value { display: flex; justify-content: space-between; }
.sp-bonus-choice { position: relative; display: block; margin: 13px 0; cursor: pointer; }
.sp-bonus-choice input { position: absolute; opacity: 0; }
.sp-bonus-choice > span { display: grid; grid-template-columns: 28px 1fr; padding: 12px; border: 1px solid var(--sp-border); border-radius: 12px; }
.sp-bonus-choice i { grid-row: 1 / 3; color: var(--sp-orange); font-size: 21px; }
.sp-bonus-choice strong, .sp-bonus-choice small { display: block; }
.sp-bonus-choice strong { font-size: 11px; }
.sp-bonus-choice small { color: var(--sp-muted); font-size: 9px; }
.sp-bonus-choice input:checked + span { border-color: var(--sp-orange); background: #fff9e9; }
.sp-summary-total { padding-top: 14px; border-top: 2px solid var(--sp-ink); }
.sp-summary-total span { font-weight: 900; }
.sp-summary-total strong { color: var(--sp-red); font-size: 26px; }
.sp-submit-note { margin: 10px 0 0; color: var(--sp-muted); font-size: 10px; text-align: center; }
.sp-alert { display: flex; gap: 12px; margin-bottom: 20px; padding: 14px 17px; border-radius: 13px; }
.sp-alert-warning { background: #fff0dc; color: #74471a; }
.sp-alert a { font-weight: 900; }
.sp-success-icon, .sp-error-icon { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 18px; border-radius: 50%; color: #fff; font-size: 32px; }
.sp-success-icon { background: var(--sp-green); }
.sp-error-icon { background: var(--sp-red); }
.sp-status-pill { padding: 7px 10px; border-radius: 999px; background: #e6f5eb; color: var(--sp-green); font-size: 10px; font-weight: 900; }
.sp-order-details { margin: 15px 0 22px; }
.sp-order-details div { display: grid; grid-template-columns: 92px 1fr; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--sp-border); }
.sp-order-details dt { color: var(--sp-muted); font-size: 10px; }
.sp-order-details dd { margin: 0; font-size: 11px; font-weight: 700; text-align: right; }
.sp-content-page .page-breadcrumb { padding: 68px 0; background-color: var(--sp-ink); background-size: cover; background-position: center; }
.sp-content-page .page-breadcrumb h1 { color: #fff; font-weight: 900; }
.sp-content-page main > .container { padding-top: 40px; padding-bottom: 60px; }
.sp-cms-hero[style] { background-color: var(--sp-ink); background-position: center; background-size: cover; }
.sp-cms-hero[style] h1 { color: #fff; }
.sp-cms-hero[style] p { color: #e0ddd7; }
.sp-cms-page { padding: 60px 0 90px; }
.sp-page-food-grid { margin-bottom: 20px; }
.sp-cms-content { max-width: 880px; margin: 45px auto 0; color: #4f4c47; font-size: 17px; line-height: 1.75; }
.sp-cms-content h2, .sp-cms-content h3 { color: var(--sp-ink); font-weight: 900; }
.sp-cms-content img { height: auto; border-radius: var(--sp-radius); }
.sp-subpages { margin-top: 35px; }
.sp-map { height: 390px; margin-top: 35px; overflow: hidden; border-radius: var(--sp-radius); }
.sp-map iframe { width: 100%; height: 100%; border: 0; }
.sp-wide-banner img { width: 100%; height: auto; }

/* Account, authentication and CRM content */
.sp-account-page { min-height: 480px; padding: 58px 0 90px; background: var(--sp-paper); }
.sp-auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
	max-width: 980px;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid var(--sp-border);
	border-radius: 26px;
	background: #fff;
	box-shadow: var(--sp-shadow);
}
.sp-auth-card { padding: 46px; }
.sp-auth-card h2, .sp-auth-benefits h2, .sp-account-card h2, .sp-orders-toolbar h2,
.sp-contact-page h2 {
	margin: 0 0 8px;
	color: var(--sp-ink);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.15;
}
.sp-auth-card > p, .sp-account-card p { color: var(--sp-muted); }
.sp-modern-form { margin-top: 25px; }
.sp-modern-form .sp-field { margin-bottom: 14px; }
.sp-modern-form .sp-field input[type="password"],
.sp-modern-form .sp-field input[type="tel"] {
	width: 100%;
	height: 46px;
	padding: 12px 13px;
	border: 1px solid var(--sp-border);
	border-radius: 11px;
	background: #fff;
	color: var(--sp-ink);
	font-size: 15px;
}
.sp-modern-form .sp-field input:focus { border-color: var(--sp-blue); box-shadow: 0 0 0 4px rgba(8,121,185,.08); outline: 0; }
.sp-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 20px; }
.sp-form-actions > a { color: var(--sp-muted); font-size: 12px; font-weight: 700; }
.sp-auth-benefits {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 46px;
	background:
		radial-gradient(circle at 85% 15%, rgba(242,139,32,.25), transparent 30%),
		var(--sp-ink);
	color: #fff;
}
.sp-auth-benefits h2 { color: #fff; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 42px; font-weight: 400; text-transform: uppercase; }
.sp-auth-benefits ul { padding: 0; margin: 20px 0 28px; }
.sp-auth-benefits li { display: flex; align-items: center; gap: 13px; margin: 14px 0; list-style: none; }
.sp-auth-benefits li > i { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.09); color: var(--sp-orange); font-size: 22px; }
.sp-auth-benefits li span { display: flex; flex-direction: column; color: #aaa; font-size: 11px; }
.sp-auth-benefits li strong { color: #fff; font-size: 13px; }
.sp-auth-benefits .sp-button { align-self: flex-start; }
.sp-guest-link { display: inline-block; margin-top: 16px; color: var(--sp-red); font-size: 12px; font-weight: 900; text-align: center; }
.sp-auth-benefits .sp-guest-link { color: #fff; text-align: left; opacity: .78; }
.sp-auth-single { max-width: 560px; margin: 0 auto; border: 1px solid var(--sp-border); border-radius: 24px; background: #fff; box-shadow: var(--sp-shadow); }

.sp-profile-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 26px; margin-top: 0; }
.sp-profile-main { display: grid; gap: 18px; }
.sp-profile-sidebar { position: sticky; top: 22px; display: grid; gap: 18px; }
.sp-account-card { padding: 25px; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); background: #fff; box-shadow: 0 8px 26px rgba(18,18,18,.045); }
.sp-account-card-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.sp-account-card-heading > i {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--sp-cream);
	color: var(--sp-red);
	font-size: 23px;
}
.sp-account-card-heading h2 { font-size: 20px; }
.sp-account-card-heading p { margin: 0; font-size: 11px; }
.sp-panel-toggle { display: block; margin: 0; cursor: pointer; }
.sp-panel-toggle + .sp-toggle-panel, .sp-toggle-panel + .sp-panel-toggle { margin-top: 16px; }
.sp-panel-toggle input { position: absolute; opacity: 0; }
.sp-panel-toggle > span {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 13px 14px;
	border: 1px solid var(--sp-border);
	border-radius: 12px;
	background: var(--sp-cream);
	font-size: 13px;
	font-weight: 900;
}
.sp-panel-toggle > span:after { content: "+"; margin-left: auto; color: var(--sp-red); font-size: 19px; }
.sp-panel-toggle input:checked + span { border-color: var(--sp-red); background: #fff5f4; }
.sp-panel-toggle input:checked + span:after { content: "−"; }
.sp-toggle-panel { padding: 16px; border-radius: 13px; background: #faf8f4; }
.sp-bonus-account-card { overflow: hidden; background: var(--sp-ink); color: #fff; }
.sp-bonus-account-card > i { float: right; color: rgba(255,255,255,.09); font-size: 74px; }
.sp-bonus-account-card h2 { color: #fff; }
.sp-bonus-account-card p { color: #aaa; font-size: 12px; }
.sp-credit-balance { display: block; margin: 4px 0 10px; color: #fff; font-size: 42px; line-height: 1; }
.sp-bonus-account-card .sp-inline-check { margin-bottom: 18px; color: #c9c6c0; }
.sp-bonus-account-card .sp-guest-link { display: block; color: #fff; opacity: .75; }
.sp-account-danger h3 { margin: 0 0 5px; font-size: 15px; font-weight: 900; }
.sp-account-danger p { margin-bottom: 9px; font-size: 10px; }
.sp-danger-link { padding: 0; border: 0; background: transparent; color: var(--sp-red); font-size: 11px; font-weight: 900; cursor: pointer; }

.sp-orders-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.sp-orders-toolbar h2 { font-size: 34px; }
.sp-orders-list { display: grid; gap: 10px; }
.sp-order-card {
	display: grid;
	grid-template-columns: 75px minmax(160px, 1fr) 110px 120px 20px;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid var(--sp-border);
	border-radius: 16px;
	background: #fff;
	color: var(--sp-ink);
	box-shadow: 0 7px 20px rgba(18,18,18,.035);
}
.sp-order-card:hover { border-color: #d2c6b4; color: var(--sp-ink); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(18,18,18,.07); }
.sp-order-number { color: var(--sp-red); font-size: 14px; font-weight: 900; }
.sp-order-card-main { display: flex; flex-direction: column; }
.sp-order-card-main strong { font-size: 13px; }
.sp-order-card-main small { color: var(--sp-muted); font-size: 10px; }
.sp-order-price { text-align: right; white-space: nowrap; }
.sp-order-card .sp-status-pill { text-align: center; }

.sp-contact-page { padding: 58px 0 0; }
.sp-contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: 26px; padding-bottom: 60px; }
.sp-contact-primary { display: grid; gap: 20px; }
.sp-venue-card h2 { margin-bottom: 22px; }
.sp-contact-detail { display: flex; align-items: center; gap: 13px; margin: 11px 0; padding: 12px; border: 1px solid var(--sp-border); border-radius: 13px; color: var(--sp-ink); }
.sp-contact-detail:hover { border-color: var(--sp-red); color: var(--sp-ink); }
.sp-contact-detail > i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--sp-cream); color: var(--sp-red); font-size: 22px; }
.sp-contact-detail span { display: flex; flex-direction: column; }
.sp-contact-detail strong { font-size: 13px; }
.sp-contact-detail small { color: var(--sp-muted); font-size: 10px; }
.sp-venue-card .sp-button { margin-top: 12px; }
.sp-contact-primary .sp-cms-content { max-width: none; margin: 0; font-size: 14px; }
.sp-contact-form-card { padding: 32px; }
.sp-contact-form-card .sp-modern-form { margin-top: 20px; }
.sp-contact-map { height: 420px; overflow: hidden; background: var(--sp-cream); }
.sp-contact-map iframe { width: 100%; height: 100%; border: 0; }

.sp-subpages .subPages {
	padding: 15px;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	background: #fff;
}
.sp-subpages .subPages img { width: 100%; height: 260px; border-radius: 14px; object-fit: cover; }
.sp-subpages .subPages h2 { margin-top: 14px; font-size: 22px; font-weight: 900; }

@media (max-width: 1199px) {
	.sp-order-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; }
	.sp-food-grid { grid-template-columns: 1fr; }
	.sp-food-image { flex-basis: 35%; }
	.sp-filter-long { display: none; }
	.sp-filter-short { display: inline; }
	.sp-nav-links .nav-link, .sp-nav-links a { padding-right: 7px !important; padding-left: 7px !important; font-size: 12px; }
}

@media (max-width: 991px) {
	.sp-navbar-inner { flex-wrap: wrap; padding: 8px 0; }
	.sp-menu-toggle { display: block; order: 3; margin-left: 0; }
	.sp-navigation { order: 4; flex: 0 0 100%; }
	.sp-navigation:not(.show) { display: none; }
	.sp-navigation.collapse.show { display: block; width: 100%; height: auto; max-height: calc(100vh - 130px); overflow-y: auto; }
	.sp-nav-links { flex-direction: column; align-items: stretch; padding: 10px 0; }
	.sp-nav-links .nav-link, .sp-nav-links a { padding: 11px 8px !important; font-size: 14px; }
	.sp-navigation .dropdown-menu { position: static; float: none; margin: 0 0 8px 12px; border: 0; box-shadow: none; }
	.sp-header-actions { margin-left: auto; }
	.sp-hero-grid { min-height: 540px; grid-template-columns: 1.1fr .9fr; }
	.sp-hero-art { min-height: 360px; }
	.sp-hero-orbit { width: 320px; height: 320px; }
	.sp-order-layout { grid-template-columns: 1fr; }
	.sp-cart-panel { display: none; }
	.sp-cart-panel:target {
		position: fixed;
		top: auto;
		right: 12px;
		bottom: 82px;
		left: 12px;
		z-index: 2100;
		display: block;
		max-height: calc(100vh - 110px);
		overflow-y: auto;
	}
	.sp-catalog-nav { top: 0; flex-direction: column; align-items: stretch; }
	.sp-filters { padding: 7px 0 0; border-left: 0; border-top: 1px solid var(--sp-border); }
	.sp-checkout-layout, .sp-confirmation-layout { grid-template-columns: 1fr; }
	.sp-profile-layout, .sp-contact-layout { grid-template-columns: 1fr; }
	.sp-profile-sidebar { position: static; }
	.sp-checkout-summary, .sp-confirmation-details { position: static; }
	.sp-checkout-summary { order: -1; }
	.sp-mobile-cart {
		position: fixed;
		right: max(12px, env(safe-area-inset-right));
		bottom: max(12px, env(safe-area-inset-bottom));
		left: max(12px, env(safe-area-inset-left));
		z-index: 2000;
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 58px;
		padding: 10px 14px;
		border-radius: 16px;
		background: var(--sp-red);
		box-shadow: 0 15px 40px rgba(0,0,0,.3);
		color: #fff;
	}
	.sp-mobile-cart:hover { color: #fff; }
	.sp-mobile-cart.is-empty { display: none; }
	.sp-mobile-cart span { display: flex; flex-direction: column; line-height: 1.2; }
	.sp-mobile-cart small { font-size: 10px; opacity: .8; }
	.sp-mobile-cart strong { font-size: 13px; }
	body { padding-bottom: 76px; }
}

@media (max-width: 767px) {
	.container { padding-right: 16px; padding-left: 16px; }
	.sp-topline-inner { min-height: 34px; }
	.sp-service-state > span:last-child, .sp-topline a span { display: none; }
	.sp-navbar-inner { min-height: 66px; flex-wrap: nowrap; gap: 8px; }
	.sp-brand { width: 67px; flex-basis: 67px; margin-top: -16px; }
	.sp-account-link { display: flex; width: 42px; min-height: 42px; padding: 6px; justify-content: center; }
	.sp-account-link span, .sp-account-dropdown .dropdown-toggle:after { display: none; }
	.sp-account-menu { position: absolute; right: 0; left: auto; }
	.sp-header-cart { padding: 7px 9px; border: 0; background: transparent; }
	.sp-header-cart span:last-child { display: none; }
	.sp-menu-toggle { order: 3; margin: 0; }
	.sp-navigation { position: absolute; top: 100%; right: 0; left: 0; padding: 0 16px 15px; background: var(--sp-paper); box-shadow: 0 18px 30px rgba(0,0,0,.12); }
	.sp-hero-grid { display: block; min-height: auto; padding: 48px 0 38px; }
	.sp-hero-copy { text-align: center; }
	.sp-hero h1 { font-size: clamp(48px, 15vw, 68px); }
	.sp-hero-copy > p { font-size: 16px; }
	.sp-hero-actions { justify-content: center; }
	.sp-hero-actions .sp-button { flex: 1 1 220px; }
	.sp-service-pills { justify-content: center; }
	.sp-service-pills span, .sp-service-pills a { font-size: 10px; }
	.sp-hero-art { min-height: 300px; margin-top: 18px; }
	.sp-hero-art img { width: min(88%, 310px); }
	.sp-hero-orbit { width: 260px; height: 260px; }
	.sp-hero-stamp { right: 8%; bottom: 5%; width: 73px; height: 73px; font-size: 10px; }
	.sp-ordering { padding: 55px 0 70px; }
	.sp-section-heading { display: block; margin-bottom: 20px; }
	.sp-section-heading h2 { font-size: 44px; }
	.sp-search { width: 100%; margin-top: 18px; }
	.sp-catalog-nav { margin-right: -16px; margin-left: -16px; padding-right: 16px; padding-left: 16px; border-right: 0; border-left: 0; border-radius: 0; }
	.sp-filters { width: 100%; }
	.sp-filters button { flex: 1 0 auto; text-align: center; }
	.sp-menu-section { margin-bottom: 42px; }
	.sp-menu-section-heading h3 { font-size: 30px; }
	.sp-menu-section-heading a { display: none; }
	.sp-food-card { min-height: 150px; border-radius: 17px; }
	.sp-food-image { flex: 0 0 132px; min-height: 150px; }
	.sp-food-content { padding: 13px; }
	.sp-food-title-row { display: block; }
	.sp-food-title-row h4 { padding-right: 0; font-size: 15px; }
	.sp-food-title-row > strong { display: block; margin-top: 2px; font-size: 16px; }
	.sp-food-content > p { margin: 6px 0 8px; font-size: 10px; -webkit-line-clamp: 2; }
	.sp-food-footer { align-items: center; }
	.sp-allergens { display: none; }
	.sp-add-button span { display: none; }
	.sp-add-button { width: 38px; padding: 0; justify-content: center; font-size: 16px; }
	.sp-badge { font-size: 7px; }
	.sp-bonus-section { padding: 55px 0; text-align: center; }
	.sp-bonus-grid { grid-template-columns: 1fr; gap: 20px; }
	.sp-bonus-mark { width: 86px; height: 86px; margin: 0 auto; font-size: 36px; }
	.sp-story { padding: 55px 0; }
	.sp-story .container { grid-template-columns: 1fr; gap: 25px; }
	.sp-story-logo { display: none; }
	.sp-contact-strip .container { flex-direction: column; gap: 9px; }
	.sp-contact-strip span { font-size: 12px; }
	.sp-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
	.sp-footer-brand { grid-column: 1 / -1; }
	.sp-footer-bottom { flex-direction: column; gap: 8px; }
	.sp-auth-layout { grid-template-columns: 1fr; border-radius: 18px; }
	.sp-auth-card, .sp-auth-benefits { padding: 25px 20px; }
	.sp-auth-benefits h2 { font-size: 34px; }
	.sp-auth-benefits .sp-button { align-self: stretch; }
	.sp-form-actions { align-items: stretch; flex-direction: column-reverse; }
	.sp-form-actions .sp-button { width: 100%; }
	.sp-account-page { padding: 30px 0 60px; }
	.sp-account-card { padding: 18px; border-radius: 17px; }
	.sp-orders-toolbar { align-items: stretch; flex-direction: column; }
	.sp-order-card { grid-template-columns: 55px 1fr 20px; gap: 9px; padding: 15px; }
	.sp-order-price { grid-column: 2; grid-row: 2; text-align: left; }
	.sp-order-card .sp-status-pill { grid-column: 1; grid-row: 2; padding: 5px 6px; }
	.sp-order-card > i { grid-column: 3; grid-row: 1 / 3; }
	.sp-contact-page { padding-top: 30px; }
	.sp-contact-form-card { padding: 20px; }
	.sp-contact-map { height: 330px; }
	.modal-dialog { margin: 8px; }
	.modal-body { max-height: calc(100vh - 160px); }
	.sp-modal-food { grid-template-columns: 100px 1fr; gap: 12px; padding: 14px; }
	.sp-modal-food img { width: 100px; height: 90px; }
	.sp-modal-food h3 { font-size: 17px; }
	.sp-modal-food p { font-size: 10px; -webkit-line-clamp: 2; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; }
	.sp-option-group { padding: 15px 14px 0; }
	.sp-option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sp-option-quantity { margin-right: 14px; margin-left: 14px; }
	.sp-page-hero { padding: 40px 0; }
	.sp-page-hero h1 { font-size: 44px; }
	.sp-page-hero p { font-size: 15px; }
	.sp-checkout, .sp-confirmation { padding: 28px 0 60px; }
	.sp-checkout-card { padding: 18px; border-radius: 17px; }
	.sp-choice-cards-2, .sp-form-grid { grid-template-columns: 1fr; }
	.sp-field-wide { grid-column: auto; }
	.sp-large-choice-body { min-height: 96px; }
}

@media (max-width: 420px) {
	.sp-food-image { flex-basis: 115px; }
	.sp-food-content { padding: 11px; }
	.sp-food-title-row h4 { font-size: 14px; }
	.sp-footer-grid { grid-template-columns: 1fr; }
	.sp-footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *:before, *:after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
