/* MonteSoprano – Box BBQ Landing (mockup-aligned: pietra, legno, arancio) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");

/* Template PHP page-bbq-box.php: shell canvas senza header tema */
body.ms-bbq-canvas-shell {
	margin: 0;
	padding: 0;
}

/* Sfondo pietra unico: body + blocco landing (continua dietro hero, card e footer area) */
body.ms-bbq-landing-page {
	--ms-bbq-stone-bg: #12100e;
	--ms-bbq-stone-layers: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(90, 45, 30, 0.35) 0%, transparent 55%),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 2px,
			rgba(0, 0, 0, 0.12) 2px,
			rgba(0, 0, 0, 0.12) 3px
		),
		linear-gradient(165deg, #1e1a17 0%, #0f0d0b 55%, #181512 100%);
	margin: 0;
	padding: 0;
	font-family: Montserrat, system-ui, -apple-system, sans-serif;
	background-color: var(--ms-bbq-stone-bg);
	background-image: var(--ms-bbq-stone-layers);
	background-attachment: fixed;
}

.ms-bbq-landing {
	color-scheme: dark;
	/* Fallback se body.ms-bbq-landing-page non è ancora applicato */
	--ms-bbq-stone-bg: #12100e;
	--ms-bbq-stone-layers: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(90, 45, 30, 0.35) 0%, transparent 55%),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 2px,
			rgba(0, 0, 0, 0.12) 2px,
			rgba(0, 0, 0, 0.12) 3px
		),
		linear-gradient(165deg, #1e1a17 0%, #0f0d0b 55%, #181512 100%);
	color: #f5f0e8;
	min-height: 100vh;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	font-family: Montserrat, system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
	/* Stesso sfondo pietra del body: continua dietro hero, card feature e resto pagina */
	background-color: var(--ms-bbq-stone-bg);
	background-image: var(--ms-bbq-stone-layers);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: auto;
}

/* Evita “strisce” bianche/grigie del tema dietro la landing */
body.ms-bbq-landing-page #page,
body.ms-bbq-landing-page #main,
body.ms-bbq-landing-page #primary,
body.ms-bbq-landing-page .site-content,
body.ms-bbq-landing-page .content-area,
body.ms-bbq-landing-page .page-content,
body.ms-bbq-landing-page .trx-content,
body.ms-bbq-landing-page .elementor,
body.ms-bbq-landing-page .elementor-section,
body.ms-bbq-landing-page .e-con,
body.ms-bbq-landing-page .elementor-widget-wrap,
body.ms-bbq-landing-page .elementor-column-wrap {
	background: transparent !important;
}

body.ms-bbq-landing-page header,
body.ms-bbq-landing-page footer,
body.ms-bbq-landing-page #secondary,
body.ms-bbq-landing-page aside,
body.ms-bbq-landing-page .sidebar,
body.ms-bbq-landing-page .widget-area,
body.ms-bbq-landing-page .site-footer {
	display: none !important;
}

body.ms-bbq-landing-page .content-area,
body.ms-bbq-landing-page .page-content,
body.ms-bbq-landing-page .trx-content {
	padding: 0;
}

/* Stessi comportamenti se .ms-bbq-landing è nel DOM ma body non ha ancora la classe (cache / Elementor) */
body:has(.ms-bbq-landing) #page,
body:has(.ms-bbq-landing) #main,
body:has(.ms-bbq-landing) #primary,
body:has(.ms-bbq-landing) .site-content,
body:has(.ms-bbq-landing) .content-area,
body:has(.ms-bbq-landing) .page-content,
body:has(.ms-bbq-landing) .trx-content,
body:has(.ms-bbq-landing) .elementor,
body:has(.ms-bbq-landing) .elementor-section,
body:has(.ms-bbq-landing) .e-con,
body:has(.ms-bbq-landing) .elementor-widget-wrap,
body:has(.ms-bbq-landing) .elementor-column-wrap {
	background: transparent !important;
}

body:has(.ms-bbq-landing) header,
body:has(.ms-bbq-landing) footer,
body:has(.ms-bbq-landing) #secondary,
body:has(.ms-bbq-landing) aside.sidebar,
body:has(.ms-bbq-landing) .sidebar,
body:has(.ms-bbq-landing) .widget-area,
body:has(.ms-bbq-landing) .site-footer {
	display: none !important;
}

body:has(.ms-bbq-landing) .content-area,
body:has(.ms-bbq-landing) .page-content,
body:has(.ms-bbq-landing) .trx-content {
	padding: 0;
}

/* Titolo pagina duplicato sopra la landing (tema / Elementor) */
body.ms-bbq-landing-page .post_item_single .entry-header,
body:has(.ms-bbq-landing) .post_item_single .entry-header,
body.ms-bbq-landing-page .sc_layouts_title,
body:has(.ms-bbq-landing) .sc_layouts_title,
body.ms-bbq-landing-page .post_header_wrap,
body:has(.ms-bbq-landing) .post_header_wrap,
body.ms-bbq-landing-page .content .post_title,
body:has(.ms-bbq-landing) .content .post_title {
	display: none !important;
}

/* --- Promo: banner (sotto header implicito) --- */
.ms-bbq-promo-banner {
	position: sticky;
	top: 0;
	z-index: 99985;
	background: linear-gradient(90deg, rgba(40, 22, 12, 0.97) 0%, rgba(90, 42, 18, 0.95) 50%, rgba(40, 22, 12, 0.97) 100%);
	border-bottom: 1px solid rgba(242, 138, 53, 0.35);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.ms-bbq-promo-banner-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 14px;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #fff5eb;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.ms-bbq-promo-banner-sep {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(242, 138, 53, 0.85);
	vertical-align: middle;
}

/* --- Hero (sfondo full-bleed carne/griglia, leggibile su mobile e desktop) --- */
.ms-bbq-hero {
	position: relative;
	min-height: clamp(380px, 85vh, 720px);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	/* Evita bande su schermi molto alti */
	background-color: #1a0f0a;
}

.ms-bbq-hero-overlay {
	position: relative;
	z-index: 2;
	background: linear-gradient(
		180deg,
		rgba(8, 6, 5, 0.5) 0%,
		rgba(14, 10, 8, 0.62) 40%,
		rgba(10, 8, 6, 0.92) 100%
	);
	padding: clamp(22px, 5vw, 40px) 0 clamp(28px, 4vw, 44px);
}

.ms-bbq-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 18px;
}

.ms-bbq-hero-top {
	text-align: center;
	color: #fff;
}

.ms-bbq-hero-logo {
	width: min(200px, 46vw);
	height: auto;
	display: block;
	margin: 0 auto 18px;
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

.ms-bbq-hero-title {
	color: #fff;
	font-size: clamp(1.15rem, 4.2vw, 2.35rem);
	line-height: 1.2;
	font-weight: 800;
	margin: 0 auto;
	max-width: 22em;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
	letter-spacing: -0.02em;
}

/* --- Wood card --- */
.ms-bbq-box-card {
	position: relative;
	margin-top: 24px;
	border-radius: 22px;
	padding: 22px 16px 20px;
	box-shadow:
		0 4px 0 rgba(0, 0, 0, 0.35),
		0 24px 48px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(40, 28, 18, 0.9);
	background-color: #2a1a0f;
	background-image:
		repeating-linear-gradient(
			92deg,
			rgba(0, 0, 0, 0.1) 0px,
			rgba(0, 0, 0, 0.1) 1px,
			transparent 1px,
			transparent 8px
		),
		repeating-linear-gradient(
			0deg,
			rgba(255, 255, 255, 0.02) 0px,
			rgba(255, 255, 255, 0.02) 1px,
			transparent 1px,
			transparent 11px
		),
		linear-gradient(168deg, #4a3020 0%, #2c1a10 38%, #3d2818 62%, #1f120a 100%);
}

.ms-bbq-box-header {
	margin-bottom: 16px;
	text-align: center;
}

.ms-bbq-box-header-title {
	margin: 0;
	font-size: clamp(1.15rem, 3.5vw, 1.45rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.02em;
}

.ms-bbq-empty {
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
	margin: 20px 0;
	font-weight: 600;
}

.ms-bbq-products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 14px;
}

.ms-bbq-item {
	display: grid;
	grid-template-columns: auto 88px minmax(0, 1fr) auto;
	align-items: start;
	gap: 8px 10px;
	padding: 10px 10px 10px 8px;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ms-bbq-item-check {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	cursor: pointer;
	min-width: 28px;
}

.ms-bbq-item-checkbox {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.ms-bbq-checkmark {
	width: 20px;
	height: 20px;
	border-radius: 5px;
	border: 2px solid #e86a28;
	background: transparent;
	display: inline-block;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.ms-bbq-item-checkbox:checked + .ms-bbq-checkmark {
	background: #e86a28;
	border-color: #f28a45;
}

.ms-bbq-item-checkbox:checked + .ms-bbq-checkmark::after {
	content: "";
	display: block;
	width: 5px;
	height: 10px;
	border: solid #1a0f08;
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
	margin: 1px 0 0 6px;
}

.ms-bbq-item-thumb {
	width: 80px;
	height: 80px;
	min-height: 80px;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: block;
	align-self: center;
	/* Evita blur da interpolazione su scale-up (la nitidezza viene da src/srcset più grandi) */
	image-rendering: auto;
}

.ms-bbq-item-body {
	min-width: 0;
}

.ms-bbq-item-title {
	font-weight: 700;
	color: #fff;
	font-size: clamp(11px, 2.8vw, 13px);
	line-height: 1.25;
}

/* Variabili: Formato sotto al titolo */
.ms-bbq-format-row {
	margin: 6px 0 10px;
	font-size: clamp(11px, 2.6vw, 12px);
	line-height: 1.35;
	color: rgba(245, 240, 232, 0.88);
}

.ms-bbq-format-heading {
	font-weight: 600;
	color: rgba(242, 138, 53, 0.95);
	margin-right: 6px;
}

.ms-bbq-format-heading::after {
	content: ":";
}

.ms-bbq-format-current {
	font-weight: 600;
	color: #fff;
}

.ms-bbq-format-label {
	display: block;
	width: 100%;
	margin: 0;
}

.ms-bbq-format-select {
	width: 100%;
	max-width: 100%;
	margin-top: 6px;
	padding: 8px 32px 8px 10px;
	font-size: 12px;
	font-family: inherit;
	font-weight: 600;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background-color: #1a120e;
	color: #fff;
	-webkit-text-fill-color: #fff;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
		linear-gradient(180deg, #2a1a12 0%, #1a120e 100%);
	background-repeat: no-repeat, no-repeat;
	background-position: right 10px center, center;
	background-size: 12px 12px, 100% 100%;
}

.ms-bbq-format-select:focus {
	outline: 2px solid rgba(242, 138, 53, 0.5);
	outline-offset: 1px;
}

.ms-bbq-format-select option {
	color: #fff;
	background-color: #2a1a0f;
}

.ms-bbq-landing .screen-reader-text {
	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;
}

.ms-bbq-qty {
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.12);
}

.ms-bbq-qty button {
	width: 30px;
	height: 30px;
	border: 0;
	background: rgba(255, 255, 255, 0.95);
	color: #2a1810;
	font-weight: 800;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease;
}

.ms-bbq-qty button:hover {
	background: #fff;
}

.ms-bbq-qty-value {
	min-width: 26px;
	text-align: center;
	font-weight: 800;
	color: #fff;
	font-size: 13px;
	background: transparent;
}

.ms-bbq-box-footer {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	margin-top: 18px;
	padding-top: 6px;
}

.ms-bbq-total-wrap {
	text-align: right;
}

.ms-bbq-total {
	font-weight: 800;
	color: #fff;
	font-size: clamp(1rem, 3vw, 1.2rem);
	letter-spacing: 0.02em;
}

.ms-bbq-total-hint {
	margin: 6px 0 0;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 500;
}

.ms-bbq-cta {
	border: 0;
	border-radius: 12px;
	padding: 14px 22px;
	font-weight: 800;
	font-size: 0.95rem;
	cursor: pointer;
	color: #fff;
	font-family: inherit;
	background: linear-gradient(180deg, #f28a35 0%, #e55d1a 55%, #c94a0f 100%);
	box-shadow:
		0 4px 0 #8a3a0c,
		0 12px 28px rgba(0, 0, 0, 0.35);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.ms-bbq-cta:hover {
	transform: translateY(-1px);
	box-shadow:
		0 5px 0 #8a3a0c,
		0 16px 32px rgba(0, 0, 0, 0.4);
}

.ms-bbq-cta:active {
	transform: translateY(1px);
}

.ms-bbq-cta:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

.ms-bbq-fab-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99990;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	padding: 10px 16px calc(14px + env(safe-area-inset-bottom, 0px));
	background: linear-gradient(to top, rgba(8, 6, 5, 0.94) 0%, rgba(8, 6, 5, 0.55) 50%, transparent 100%);
	pointer-events: none;
}

.ms-bbq-fab-bar .ms-bbq-loader,
.ms-bbq-fab-bar .ms-bbq-fab-btn {
	pointer-events: auto;
}

.ms-bbq-fab-btn {
	border-radius: 999px;
	padding: 16px 28px !important;
	font-size: 0.95rem !important;
	box-shadow:
		0 4px 0 #8a3a0c,
		0 12px 36px rgba(0, 0, 0, 0.45) !important;
}

.ms-bbq-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.ms-bbq-loader-spinner {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-top-color: #f28a35;
	display: inline-block;
	animation: ms-bbq-spin 0.85s linear infinite;
}

@keyframes ms-bbq-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Overlay checkout: resta visibile fino al redirect (sopra FAB) */
.ms-bbq-checkout-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(8, 6, 5, 0.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.ms-bbq-checkout-overlay.is-visible {
	display: flex;
}

.ms-bbq-checkout-overlay-inner {
	width: min(360px, 100%);
	padding: 28px 24px;
	border-radius: 16px;
	background: rgba(28, 22, 18, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
	text-align: center;
}

.ms-bbq-progress-track {
	height: 4px;
	width: 100%;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
	margin-bottom: 18px;
}

.ms-bbq-progress-indeterminate {
	height: 100%;
	width: 40%;
	border-radius: inherit;
	background: linear-gradient(90deg, #c45a1a, #f28a35, #c45a1a);
	animation: ms-bbq-progress-slide 1.1s ease-in-out infinite;
}

@keyframes ms-bbq-progress-slide {
	0% {
		transform: translateX(-120%);
	}
	100% {
		transform: translateX(320%);
	}
}

.ms-bbq-checkout-overlay-msg {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 250, 245, 0.95);
	line-height: 1.45;
}

body.ms-bbq-checkout-progress-open {
	overflow: hidden;
}

/* --- Link landing → shop (dopo prodotti) --- */
.ms-bbq-cross-links {
	padding: 20px 0 8px;
	background-color: var(--ms-bbq-stone-bg);
	background-image: var(--ms-bbq-stone-layers);
	background-attachment: fixed;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ms-bbq-cross-links-inner {
	text-align: center;
}

.ms-bbq-cross-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #1a0f08;
	text-decoration: none;
	background: linear-gradient(180deg, #f28a35 0%, #d45a18 100%);
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow:
		0 3px 0 #8a3a0c,
		0 10px 28px rgba(0, 0, 0, 0.35);
	transition:
		transform 0.12s ease,
		box-shadow 0.12s ease;
}

.ms-bbq-cross-link:hover {
	color: #1a0f08;
	transform: translateY(-1px);
	box-shadow:
		0 4px 0 #8a3a0c,
		0 14px 32px rgba(0, 0, 0, 0.4);
}

.ms-bbq-cross-link:active {
	transform: translateY(1px);
}

.ms-bbq-cross-link-arrow {
	font-size: 1.1em;
	line-height: 1;
	opacity: 0.95;
}

.ms-bbq-cross-links-hint {
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(245, 240, 232, 0.72);
	max-width: 28em;
	margin-left: auto;
	margin-right: auto;
}

/* --- Features --- */
.ms-bbq-features {
	padding: 8px 0 48px;
	/* Stesso sfondo pietra del blocco landing (continuità visiva sotto le card) */
	background-color: var(--ms-bbq-stone-bg);
	background-image: var(--ms-bbq-stone-layers);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: auto;
}

.ms-bbq-features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.ms-bbq-feature {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	color: #f5f0e8;
}

.ms-bbq-feature--media-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 16px;
	/* Vetro scuro: lascia leggere lo sfondo pietra dietro */
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.12);
	align-items: start;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

@media (min-width: 640px) {
	.ms-bbq-feature--media-row {
		grid-template-columns: 52px minmax(0, 1fr) minmax(120px, 38%);
		align-items: center;
		gap: 16px;
	}
}

.ms-bbq-feature-icon {
	color: #f28a35;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ms-bbq-feature-icon svg {
	width: 44px;
	height: 44px;
}

.ms-bbq-feature-title {
	font-weight: 800;
	margin-bottom: 6px;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
}

.ms-bbq-feature-text {
	opacity: 0.92;
	line-height: 1.45;
	font-size: 14px;
}

.ms-bbq-feature-media {
	display: none;
	min-height: 100px;
	border-radius: 12px;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
	.ms-bbq-feature-media {
		display: block;
		min-height: 120px;
	}
}

/* Mobile: una card prodotto per riga, contenuto in colonna (img → titolo → select → qty) */
@media (max-width: 767px) {
	.ms-bbq-products-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.ms-bbq-item {
		position: relative;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas:
			"thumb"
			"body"
			"qty";
		align-items: stretch;
		padding: 44px 14px 14px;
		gap: 12px;
	}

	.ms-bbq-item-check {
		position: absolute;
		top: 12px;
		left: 12px;
		align-self: auto;
		z-index: 2;
	}

	.ms-bbq-item-thumb {
		grid-area: thumb;
		width: 100%;
		max-width: none;
		height: auto;
		align-self: center;
		object-fit: cover;
		object-position: center;
		aspect-ratio: 4 / 3;
		max-height: min(52vh, 280px);
	}

	.ms-bbq-item-body {
		grid-area: body;
		width: 100%;
		text-align: center;
	}

	.ms-bbq-item-title {
		font-size: clamp(13px, 3.5vw, 15px);
	}

	.ms-bbq-format-row {
		text-align: center;
		margin: 8px 0 12px;
		font-size: clamp(12px, 3.2vw, 14px);
	}

	.ms-bbq-format-select {
		font-size: 13px;
		text-align: center;
		text-align-last: center;
	}

	.ms-bbq-qty {
		grid-area: qty;
		align-self: center;
		justify-self: center;
		width: auto;
		min-width: 140px;
	}
}

@media (min-width: 768px) {
	.ms-bbq-item-thumb {
		width: 88px;
		height: 88px;
		min-height: 88px;
	}
}

/* Desktop hero spacing */
@media (min-width: 1024px) {
	.ms-bbq-hero-overlay {
		padding: 44px 0 56px;
	}

	.ms-bbq-box-card {
		padding: 28px 28px 24px;
		max-width: 920px;
		margin-left: auto;
		margin-right: auto;
	}
}
