:root {
	--sm-berry: #39d9a5;
	--sm-berry-dark: #14a87d;
	--sm-sky: #ff6b62;
	--sm-sky-soft: #fff0ed;
	--sm-sun: #ffc857;
	--sm-leaf: #39d9a5;
	--sm-ink: #111b3f;
	--sm-text: #5a647a;
	--sm-line: #dce2e7;
	--sm-bg: #f7f5ed;
	--sm-white: #fff;
	--sm-radius: 22px;
	--sm-shell: 1180px;
	--sm-shadow: 0 20px 55px rgba(47, 76, 117, .13);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--sm-bg);
	color: var(--sm-text);
	font-family: ui-rounded, "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--sm-sky); text-decoration: none; }
button, input, select, textarea { font: inherit; }
a, button, input, select, textarea { transition: .2s ease; }
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .65em;
	color: var(--sm-ink);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.12;
}
p { margin: 0 0 1.3em; }

.sm-shell { width: min(calc(100% - 40px), var(--sm-shell)); margin-inline: auto; }
.sm-main { min-height: 60vh; }
.sm-skip { position: fixed; top: 8px; left: 8px; z-index: 99999; padding: 10px 15px; border-radius: 10px; background: #fff; transform: translateY(-150%); }
.sm-skip:focus { transform: none; }

.sm-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid #e8edf3;
	background: rgba(255,255,255,.96);
	box-shadow: 0 3px 18px rgba(52,74,105,.05);
}

.sm-nav {
	display: grid;
	grid-template-columns: minmax(230px,1fr) auto minmax(230px,1fr);
	align-items: center;
	min-height: 82px;
	gap: 25px;
}

.sm-brand-wrap, .sm-brand { display: flex; align-items: center; }
.sm-brand { width: max-content; color: var(--sm-ink); gap: 11px; }
.sm-brand-icon {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 3px solid #fff;
	border-radius: 15px 15px 18px 18px;
	background: linear-gradient(145deg,#ffebe0,#fff7d9);
	box-shadow: 0 6px 17px rgba(239,95,122,.2);
	font-size: 25px;
	transform: rotate(-3deg);
}
.sm-brand > span:last-child { display: grid; }
.sm-brand strong { font-size: 19px; line-height: 1.05; }
.sm-brand small { color: var(--sm-berry); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.custom-logo { width: auto; max-height: 54px; }

.sm-primary-nav, .sm-primary-nav > ul { display: flex; align-items: center; justify-content: center; margin: 0; padding: 0; gap: 5px; list-style: none; }
.sm-primary-nav a { display: block; padding: 10px 12px; border-radius: 12px; color: #50617c; font-size: 14px; font-weight: 750; }
.sm-primary-nav a:hover, .sm-primary-nav .current-menu-item > a { background: var(--sm-sky-soft); color: #227fcf; }
.sm-primary-nav .menu-item-has-children { position: relative; }
.sm-primary-nav .sub-menu { position: absolute; top: 100%; left: 0; display: none; width: 210px; margin: 0; padding: 8px; border: 1px solid var(--sm-line); border-radius: 14px; background: #fff; box-shadow: var(--sm-shadow); list-style: none; }
.sm-primary-nav li:hover > .sub-menu, .sm-primary-nav li:focus-within > .sub-menu { display: block; }

.sm-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.sm-account { color: var(--sm-ink); font-size: 13px; font-weight: 800; }
.sm-cart { position: relative; display: grid; width: 45px; height: 45px; place-items: center; border: 2px solid #ffe0a0; border-radius: 15px; background: #fff8dd; font-size: 20px; }
.sm-cart-count { position: absolute; top: -7px; right: -7px; display: grid; min-width: 21px; height: 21px; padding: 0 4px; place-items: center; border: 2px solid #fff; border-radius: 20px; background: var(--sm-berry); color: #fff; font-size: 10px; font-weight: 900; }
.sm-menu-toggle { display: none; }

.sm-hero {
	position: relative;
	overflow: hidden;
	padding: 82px 0 118px;
	background:
		radial-gradient(circle at 8% 15%, rgba(255,255,255,.7) 0 70px, transparent 71px),
		radial-gradient(circle at 90% 78%, rgba(255,255,255,.42) 0 90px, transparent 91px),
		linear-gradient(125deg,#dff4ff 0%,#fff4dc 50%,#ffe7ed 100%);
}
.sm-hero::before { position: absolute; top: 10%; left: 48%; width: 8px; height: 8px; border-radius: 50%; background: var(--sm-sun); box-shadow: 90px 40px 0 var(--sm-sky),-120px 110px 0 var(--sm-berry),160px 180px 0 var(--sm-leaf); content: ""; opacity: .55; }
.sm-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 75px; }
.sm-kicker { display: inline-flex; align-items: center; color: var(--sm-berry-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.sm-hero h1 { margin: 18px 0 22px; font-size: clamp(3.5rem,6.5vw,6rem); letter-spacing: -.065em; line-height: .92; }
.sm-hero h1 span { display: block; color: var(--sm-berry); }
.sm-hero-copy > p { max-width: 590px; color: #596a83; font-size: 18px; }
.sm-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.sm-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 21px;
	border: 0;
	border-radius: 15px;
	background: var(--sm-berry);
	box-shadow: 0 9px 20px rgba(239,95,122,.23);
	color: #fff;
	font-size: 14px;
	font-weight: 850;
	cursor: pointer;
}
.sm-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover { background: var(--sm-berry-dark); color: #fff; transform: translateY(-2px); }
.sm-button-light { border: 2px solid #fff; background: rgba(255,255,255,.75); box-shadow: none; color: var(--sm-ink); }
.sm-button-light:hover { background: #fff; color: var(--sm-berry-dark); }
.sm-checks { display: flex; flex-wrap: wrap; gap: 8px 18px; color: #65748b; font-size: 11px; font-weight: 700; }
.sm-checks span::first-letter { color: var(--sm-leaf); }

.sm-lunch-card { padding: 27px; border: 6px solid rgba(255,255,255,.78); border-radius: 35px; background: #fff; box-shadow: 0 30px 75px rgba(63,106,147,.16); transform: rotate(1.5deg); }
.sm-lunch-top { display: grid; grid-template-columns: 1fr auto; align-items: center; padding-bottom: 20px; border-bottom: 2px dashed #e4eaf1; }
.sm-lunch-top span { color: var(--sm-sky); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.sm-lunch-top strong { grid-column: 1; color: var(--sm-ink); font-size: 25px; }
.sm-lunch-top i { grid-column: 2; grid-row: 1/span 2; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: #fff0b5; font-size: 24px; font-style: normal; }
.sm-tray { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; height: 310px; margin: 24px 0; padding: 10px; border: 10px solid #eef1f5; border-radius: 28px; background: #dfe5eb; gap: 8px; }
.sm-tray div { display: grid; place-items: center; border: 3px solid #fff; border-radius: 18px; background: #fff9e8; font-size: 54px; }
.sm-tray div:first-child { grid-row: 1/span 2; font-size: 72px; }
.sm-tray div:nth-child(2) { background: #fff0f3; }
.sm-tray div:nth-child(3) { background: #ebfff3; }
.sm-tray div:nth-child(4) { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.sm-tray small { display: block; margin-top: -20px; color: #8390a3; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.sm-lunch-status { display: flex; align-items: center; justify-content: space-between; }
.sm-lunch-status span { display: flex; align-items: center; color: #718198; font-size: 12px; gap: 9px; }
.sm-lunch-status b { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: var(--sm-leaf); color: #fff; }
.sm-lunch-status a { font-size: 12px; font-weight: 850; }
.sm-wave { position: absolute; right: -2%; bottom: -55px; left: -2%; height: 105px; border-radius: 50% 50% 0 0; background: #fff; }

.sm-steps { position: relative; z-index: 3; background: #fff; }
.sm-steps .sm-shell { display: grid; grid-template-columns: repeat(3,1fr); padding: 20px 0 60px; gap: 20px; }
.sm-steps article { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; padding: 20px; border: 1px solid var(--sm-line); border-radius: 20px; background: #fff; gap: 15px; }
.sm-steps article > i { position: absolute; top: -12px; left: 16px; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: var(--sm-sky); color: #fff; font-size: 10px; font-style: normal; font-weight: 900; }
.sm-steps article:nth-child(2) > i { background: var(--sm-berry); }
.sm-steps article:nth-child(3) > i { background: var(--sm-leaf); }
.sm-steps article > span { font-size: 35px; }
.sm-steps h2 { margin: 0 0 3px; font-size: 17px; }
.sm-steps p { margin: 0; font-size: 11px; }

.sm-section { padding: 100px 0; }
.sm-heading { max-width: 680px; margin: 0 auto 45px; text-align: center; }
.sm-heading > span { color: var(--sm-berry); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.sm-heading h2 { margin: 13px 0; font-size: clamp(2.2rem,4vw,3.4rem); }
.sm-heading p { font-size: 16px; }
.sm-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 23px; }
.sm-meal-card { overflow: hidden; border: 1px solid var(--sm-line); border-radius: var(--sm-radius); background: #fff; box-shadow: 0 5px 12px rgba(48,72,105,.04); }
.sm-meal-card:hover { box-shadow: var(--sm-shadow); transform: translateY(-5px); }
.sm-meal-image { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: #f0f5f7; }
.sm-meal-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.sm-meal-card:hover img { transform: scale(1.04); }
.sm-meal-image > span { position: absolute; top: 14px; right: 14px; display: grid; width: 32px; height: 32px; place-items: center; border: 3px solid #fff; border-radius: 50%; background: var(--sm-sun); color: #fff; }
.sm-meal-card > div { padding: 23px; }
.sm-meal-card small { color: var(--sm-sky); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.sm-meal-card h3 { margin: 8px 0; font-size: 20px; }
.sm-meal-card h3 a { color: var(--sm-ink); }
.sm-meal-card p { min-height: 42px; color: var(--sm-text); font-size: 12px; }
.sm-meal-card footer { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px dashed var(--sm-line); }
.sm-meal-card footer strong { color: var(--sm-ink); font-size: 17px; }
.sm-meal-card footer a { font-size: 12px; font-weight: 850; }
.sm-center { margin-top: 38px; text-align: center; }

.sm-family { background: #eaf8ff; }
.sm-family-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.sm-family-grid > div:first-child h2 { margin: 18px 0; font-size: clamp(2.2rem,4vw,3.5rem); }
.sm-family-grid > div:first-child > p { margin-bottom: 30px; font-size: 17px; }
.sm-feature-list { display: grid; gap: 13px; }
.sm-feature-list article { display: grid; grid-template-columns: auto 1fr; align-items: center; padding: 23px; border: 1px solid #d2e8f3; border-radius: 20px; background: rgba(255,255,255,.78); gap: 17px; }
.sm-feature-list i { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: #fff; font-size: 25px; font-style: normal; }
.sm-feature-list h3 { margin-bottom: 4px; font-size: 17px; }
.sm-feature-list p { margin: 0; font-size: 12px; }

.sm-footer { padding-top: 65px; background: var(--sm-ink); color: #aebad0; }
.sm-footer .sm-brand { color: #fff; }
.sm-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; padding-bottom: 50px; gap: 60px; }
.sm-footer-grid > div { display: grid; align-content: start; gap: 9px; }
.sm-footer-grid p { max-width: 350px; margin-top: 15px; font-size: 13px; }
.sm-footer-grid > div > strong { margin-bottom: 9px; color: #fff; font-size: 13px; }
.sm-footer-grid > div > a:not(.sm-brand) { color: #aebad0; font-size: 12px; }
.sm-footer-grid > div > a:hover { color: #fff; }
.sm-footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }

.sm-page-hero { padding: 68px 0; background: linear-gradient(120deg,#e3f6ff,#fff1dc,#ffe8ee); text-align: center; }
.sm-page-hero span { color: var(--sm-berry); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.sm-page-hero h1 { margin: 12px 0 0; font-size: clamp(2.5rem,5vw,4.5rem); }
.sm-content > .sm-shell { padding-top: 65px; padding-bottom: 95px; }
.sm-prose { max-width: 860px; }
.sm-prose h2 { margin-top: 1.7em; font-size: 2rem; }
.sm-prose h3 { margin-top: 1.6em; font-size: 1.4rem; }
.sm-prose img { border-radius: 20px; }
.sm-featured { margin-bottom: 35px; }
.sm-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.sm-post-card { overflow: hidden; border: 1px solid var(--sm-line); border-radius: 20px; background: #fff; }
.sm-post-card > a { display: block; aspect-ratio: 16/10; overflow: hidden; }
.sm-post-card > a img { width: 100%; height: 100%; object-fit: cover; }
.sm-post-card > div { padding: 22px; }
.sm-post-card small { color: var(--sm-berry); font-weight: 800; }
.sm-post-card h2 { margin-top: 8px; font-size: 20px; }
.sm-post-card h2 a { color: var(--sm-ink); }
.sm-not-found { padding: 100px 0; text-align: center; }
.sm-not-found span { font-size: 80px; }
.sm-not-found h1 { margin-top: 20px; font-size: clamp(2rem,5vw,4rem); }

input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="search"], input[type="number"], select, textarea {
	min-height: 48px;
	max-width: 100%;
	padding: 10px 13px;
	border: 2px solid #d9e2ec;
	border-radius: 13px;
	outline: 0;
	background: #fff;
	color: var(--sm-ink);
}
textarea { min-height: 130px; }
input:focus, select:focus, textarea:focus { border-color: var(--sm-sky); box-shadow: 0 0 0 4px rgba(62,156,235,.11); }
label { color: var(--sm-ink); font-size: 13px; font-weight: 800; }

/* WooCommerce and School Meals */
.sm-commerce { padding: 62px 0 100px; }
.woocommerce .woocommerce-breadcrumb { color: #8490a4; font-size: 11px; }
.woocommerce .woocommerce-products-header__title, .woocommerce div.product .product_title { font-size: clamp(2.2rem,4vw,3.5rem); }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 27px; color: #8490a4; font-size: 12px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3,1fr); margin: 0; gap: 23px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	display: flex;
	width: 100% !important;
	min-height: 100%;
	flex-direction: column;
	float: none;
	margin: 0 !important;
	padding: 0 0 22px;
	overflow: hidden;
	border: 1px solid var(--sm-line);
	border-radius: var(--sm-radius);
	background: #fff;
}
.woocommerce ul.products li.product:hover { box-shadow: var(--sm-shadow); transform: translateY(-4px); }
.woocommerce ul.products li.product .woocommerce-LoopProduct-link { display: flex; flex: 1; flex-direction: column; }
.woocommerce ul.products li.product a img { margin: 0 0 20px; aspect-ratio: 4/3; object-fit: cover; background: #f1f5f7; }
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price, .woocommerce ul.products li.product .button { margin-right: 22px; margin-left: 22px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0; color: var(--sm-ink); font-size: 19px; }
.woocommerce ul.products li.product .price { margin-top: auto; color: var(--sm-berry-dark); font-size: 17px; font-weight: 900; }
.woocommerce ul.products li.product .button { align-self: flex-start; min-height: 43px; box-shadow: none; }
.woocommerce span.onsale { top: 14px; right: 14px; left: auto; min-width: 0; min-height: 0; padding: 7px 10px; border: 3px solid #fff; border-radius: 12px; background: var(--sm-leaf); font-size: 9px; line-height: 1; }
.woocommerce div.product div.images, .woocommerce div.product div.summary { width: calc(50% - 28px); }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { overflow: hidden; border: 1px solid var(--sm-line); border-radius: 25px; background: #fff; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--sm-berry-dark); font-size: 26px; font-weight: 900; }
.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 10px; }
.woocommerce div.product form.cart .variations { flex: 0 0 100%; }
.woocommerce .quantity .qty { width: 75px; min-height: 50px; }
.woocommerce div.product .product_meta { display: grid; padding-top: 20px; border-top: 1px dashed var(--sm-line); color: #8490a4; font-size: 11px; gap: 4px; }
.woocommerce div.product .woocommerce-tabs { clear: both; padding-top: 35px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { display: flex; margin: 0; padding: 0; border-bottom: 2px dashed var(--sm-line); gap: 24px; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { margin: 0; padding: 0; border: 0; background: transparent; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 12px 0; color: #78869b; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--sm-berry-dark); }
.woocommerce div.product .woocommerce-tabs .panel { max-width: 850px; padding: 28px 0; }
.woocommerce .related.products { clear: both; padding-top: 55px; }
.woocommerce-error, .woocommerce-info, .woocommerce-message { padding: 17px 18px 17px 50px; border: 2px solid #d9e7f3; border-top: 2px solid #d9e7f3; border-radius: 14px; background: #fff; color: var(--sm-ink); font-size: 13px; }
.woocommerce-message::before { color: var(--sm-leaf); }
.woocommerce-info::before { color: var(--sm-sky); }
.woocommerce table.shop_table { overflow: hidden; border: 1px solid var(--sm-line); border-radius: 16px; background: #fff; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 15px; border-color: var(--sm-line); }
.woocommerce .cart-collaterals .cart_totals { width: min(100%,500px); padding: 25px; border: 1px solid var(--sm-line); border-radius: 20px; background: #fff; }
.woocommerce form .form-row { margin: 0 0 15px; padding: 0; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { width: 100%; }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 240px 1fr; gap: 35px; }
.woocommerce-account .woocommerce::before, .woocommerce-account .woocommerce::after { display: none; }
.woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content { width: auto; float: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 9px; border: 1px solid var(--sm-line); border-radius: 17px; background: #fff; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 11px 12px; border-radius: 11px; color: var(--sm-text); font-size: 13px; font-weight: 800; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a, .woocommerce-account .woocommerce-MyAccount-navigation a:hover { background: #fff0f3; color: var(--sm-berry-dark); }
.woocommerce-account .woocommerce-MyAccount-content, .woocommerce form.login, .woocommerce form.register, .woocommerce form.checkout_coupon { padding: 25px; border: 1px solid var(--sm-line); border-radius: 20px; background: #fff; }

.smbd-assignment-page { color: var(--sm-text); }
.smbd-assignment-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 20px; }
.smbd-assignment-heading h1 { margin: 0; }
.smbd-back-link { font-weight: 800; }
.smbd-assignment-list { display: grid; gap: 17px; }
.smbd-assignment-item { display: grid; grid-template-columns: 1fr minmax(230px,.45fr); padding: 20px; border: 2px solid var(--sm-line); border-radius: 20px; background: #fff; gap: 25px; }
.smbd-assignment-product { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 19px; }
.smbd-assignment-image { overflow: hidden; border-radius: 16px; }
.smbd-assignment-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.smbd-assignment-details h2 { font-size: 20px; }
.smbd-assignment-details p { display: flex; justify-content: space-between; margin: 3px 0; font-size: 11px; gap: 12px; }
.smbd-assignment-control { display: grid; align-content: center; gap: 8px; }
.smbd-assignment-control select { width: 100%; }
.smbd-assignment-control .smbd-remove-meal { min-height: 38px; background: #fff0f3; box-shadow: none; color: var(--sm-berry-dark); }
.smbd-assignment-warning { color: #b83d55; font-size: 11px; }
.smbd-assignment-actions { display: flex; justify-content: flex-end; margin-top: 25px; gap: 10px; }

.smbd-ordering { --smbd-primary: var(--sm-berry); --smbd-primary-dark: var(--sm-berry-dark); --smbd-accent: var(--sm-sun); --smbd-radius: 18px; font-family: inherit !important; }
.smbd-ordering__toolbar { border: 2px solid var(--sm-line) !important; border-radius: 20px !important; background: #fff !important; }
.smbd-ordering-card { border: 2px solid var(--sm-line) !important; border-radius: 22px !important; box-shadow: none !important; }
.smbd-ordering-card:hover { border-color: #b8dff7 !important; box-shadow: var(--sm-shadow) !important; transform: translateY(-4px); }
.smbd-ordering-card__image { border-radius: 18px 18px 0 0 !important; }
.smbd-ordering .button, .smbd-ordering-add { border-radius: 13px !important; background: var(--sm-berry) !important; color: #fff !important; }
.smbd-ordering__filters button { border-radius: 20px !important; }
.smbd-ordering__filters button.is-active { background: var(--sm-sky) !important; color: #fff !important; }

.smpd-portal { --smpd-primary: var(--sm-sky); --smpd-primary-dark: #287fc7; --smpd-accent: var(--sm-berry); --smpd-radius: 18px; font-family: inherit !important; }
.smpd-topbar { border-radius: 22px 22px 0 0 !important; background: var(--sm-ink) !important; }
.smpd-layout { border-radius: 0 0 22px 22px !important; overflow: hidden; }
.smpd-nav__item { border-radius: 13px !important; }
.smpd-nav__item.is-active { background: #eaf6ff !important; color: #247bc2 !important; }
.smpd-panel, .smpd-stat, .smpd-band { border-radius: 18px !important; box-shadow: none !important; }
.smpd-button { border-radius: 12px !important; }

@media (max-width: 960px) {
	.sm-nav { grid-template-columns: 1fr auto auto; }
	.sm-menu-toggle { display: grid; width: 44px; height: 44px; padding: 11px; place-content: center; border: 2px solid var(--sm-line); border-radius: 13px; background: #fff; gap: 4px; }
	.sm-menu-toggle span { width: 19px; height: 2px; border-radius: 3px; background: var(--sm-ink); }
	.sm-menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.sm-primary-nav { position: absolute; top: 82px; right: 0; left: 0; display: none; align-items: stretch; padding: 18px 20px 25px; border-top: 1px solid var(--sm-line); background: #fff; box-shadow: 0 15px 30px rgba(35,53,80,.1); }
	.sm-primary-nav.is-open { display: grid; }
	.sm-primary-nav, .sm-primary-nav > ul { flex-direction: column; }
	.sm-primary-nav .sub-menu { position: static; display: block; width: auto; margin-left: 15px; border: 0; box-shadow: none; }
	.sm-hero-grid { gap: 40px; }
	.sm-product-grid, .woocommerce ul.products, .sm-post-grid { grid-template-columns: repeat(2,1fr); }
	.sm-family-grid { gap: 50px; }
}

@media (max-width: 760px) {
	.sm-hero { padding-top: 60px; }
	.sm-hero-grid, .sm-family-grid { grid-template-columns: 1fr; }
	.sm-hero-copy { max-width: 650px; }
	.sm-lunch-card { max-width: 620px; }
	.sm-steps .sm-shell { grid-template-columns: 1fr; }
	.sm-footer-grid { grid-template-columns: 1.5fr 1fr; }
	.sm-footer-grid > div:last-child { grid-column: 2; }
	.woocommerce div.product div.images, .woocommerce div.product div.summary { width: calc(50% - 15px); }
	.woocommerce-account .woocommerce { grid-template-columns: 1fr; }
	.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; }
	.smbd-assignment-item { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.sm-shell { width: min(calc(100% - 28px),var(--sm-shell)); }
	.sm-nav { min-height: 72px; gap: 8px; }
	.sm-primary-nav { top: 72px; }
	.sm-brand strong { font-size: 16px; }
	.sm-brand small, .sm-account { display: none; }
	.sm-brand-icon { width: 40px; height: 40px; font-size: 21px; }
	.sm-hero h1 { font-size: 3.3rem; }
	.sm-hero-actions { align-items: stretch; flex-direction: column; }
	.sm-button { width: 100%; }
	.sm-tray { height: 250px; }
	.sm-section { padding: 72px 0; }
	.sm-product-grid, .woocommerce ul.products, .sm-post-grid, .sm-footer-grid { grid-template-columns: 1fr; }
	.sm-footer-grid > div:last-child { grid-column: auto; }
	.woocommerce div.product div.images, .woocommerce div.product div.summary { width: 100%; float: none; }
	.smbd-assignment-heading { align-items: flex-start; flex-direction: column; }
	.smbd-assignment-product { grid-template-columns: 95px 1fr; }
	.smbd-assignment-actions { flex-direction: column; }
	.smbd-assignment-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; }
}

/* Ninja identity --------------------------------------------------------- */
.school-meals-ninja .sm-header {
	border-color: rgba(255,255,255,.08);
	background: rgba(17,27,63,.97);
	box-shadow: 0 10px 35px rgba(5,11,31,.22);
}

.school-meals-ninja .sm-brand,
.school-meals-ninja .sm-account,
.school-meals-ninja .sm-primary-nav a { color: #f7f5ed; }
.school-meals-ninja .sm-brand small { color: var(--sm-berry); }
.school-meals-ninja .sm-brand-icon {
	border-color: rgba(255,255,255,.12);
	background: linear-gradient(145deg,#263667,#111b3f);
	box-shadow: 0 8px 22px rgba(0,0,0,.28);
	transform: rotate(-4deg);
}
.school-meals-ninja .sm-primary-nav a:hover,
.school-meals-ninja .sm-primary-nav .current-menu-item > a { background: rgba(57,217,165,.13); color: #65ebbe; }
.school-meals-ninja .sm-cart { border-color: rgba(57,217,165,.35); background: rgba(57,217,165,.12); color: #fff; }
.school-meals-ninja .sm-cart-count { background: var(--sm-sky); }

.sm-ninja-hero {
	min-height: 690px;
	padding: 86px 0 120px;
	background:
		radial-gradient(circle at 80% 20%, rgba(57,217,165,.16), transparent 28%),
		radial-gradient(circle at 8% 86%, rgba(255,107,98,.15), transparent 24%),
		linear-gradient(135deg,#0a1029 0%,#111b3f 52%,#182650 100%);
}
.sm-ninja-hero::before {
	top: 12%; left: 8%; width: 4px; height: 4px; background: #fff;
	box-shadow: 140px 60px 0 rgba(255,255,255,.7),310px -20px 0 var(--sm-sun),760px 130px 0 rgba(255,255,255,.55),930px -5px 0 var(--sm-berry),1080px 240px 0 rgba(255,255,255,.6);
}
.sm-ninja-hero .sm-hero-grid { grid-template-columns: .92fr 1.08fr; gap: 62px; }
.sm-ninja-hero .sm-kicker { color: #65ebbe; }
.sm-ninja-hero h1 { color: #fff; font-size: clamp(3.6rem,6.3vw,6.3rem); }
.sm-ninja-hero h1 span { color: var(--sm-berry); }
.sm-ninja-hero .sm-hero-copy > p { color: #bdc6db; }
.sm-ninja-hero .sm-button { background: var(--sm-berry); box-shadow: 0 12px 30px rgba(57,217,165,.2); color: #071428; }
.sm-ninja-hero .sm-button:hover { background: #65ebbe; color: #071428; }
.sm-ninja-hero .sm-button-light { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); box-shadow: none; color: #fff; }
.sm-ninja-hero .sm-button-light:hover { background: rgba(255,255,255,.14); }
.sm-ninja-hero .sm-checks { color: #aeb9d1; }
.sm-ninja-moon { position: absolute; top: 70px; right: 7%; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,248,214,.06); box-shadow: 0 0 80px rgba(255,200,87,.08); }
.sm-ninja-moon::after { position: absolute; top: 28px; left: 32px; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
.sm-ninja-star { position: absolute; color: var(--sm-sun); font-size: 22px; opacity: .75; }
.sm-ninja-star-one { top: 150px; left: 4%; }
.sm-ninja-star-two { right: 3%; bottom: 160px; color: var(--sm-berry); font-size: 15px; }

.sm-ninja-board {
	position: relative;
	min-height: 490px;
	padding: 20px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 30px;
	background: linear-gradient(160deg,rgba(255,255,255,.11),rgba(255,255,255,.045));
	box-shadow: 0 35px 90px rgba(0,0,0,.34);
	backdrop-filter: blur(10px);
	transform: rotate(1deg);
}
.sm-ninja-board::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 24px 24px; content: ""; }
.sm-ninja-board-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: #94a1be; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.sm-ninja-board-top strong { padding: 7px 10px; border-radius: 20px; background: rgba(57,217,165,.14); color: #65ebbe; }
.sm-ninja-scene { position: relative; z-index: 1; height: 335px; margin-top: 10px; }
.sm-ninja-scene::before { position: absolute; right: 6%; bottom: 18px; width: 72%; height: 58%; border-radius: 50%; background: radial-gradient(ellipse,rgba(57,217,165,.2),transparent 65%); content: ""; filter: blur(5px); }
.sm-ninja-scene img { position: absolute; right: -2%; bottom: -28px; width: min(75%,390px); max-height: 385px; object-fit: contain; object-position: bottom right; filter: drop-shadow(0 20px 25px rgba(0,0,0,.3)); }
.sm-ninja-message { position: absolute; z-index: 2; top: 72px; left: 9px; display: grid; width: 43%; gap: 7px; }
.sm-ninja-message small { color: var(--sm-sun); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.sm-ninja-message b { color: #fff; font-size: clamp(1.4rem,2.5vw,2.25rem); line-height: 1.05; }
.sm-ninja-days { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.sm-ninja-days span { display: flex; align-items: center; justify-content: center; padding: 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(6,13,34,.64); color: #fff; font-size: 17px; gap: 8px; }
.sm-ninja-days b { color: #91a0bd; font-size: 8px; letter-spacing: .1em; }
.sm-ninja-status { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding-top: 15px; color: #aeb9d1; font-size: 11px; }
.sm-ninja-status span { display: flex; align-items: center; gap: 8px; }
.sm-ninja-status i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--sm-berry); color: #071428; font-style: normal; font-weight: 900; }
.sm-ninja-status a { color: #65ebbe; font-weight: 850; }
.sm-ninja-cut { position: absolute; right: -3%; bottom: -68px; left: -3%; height: 110px; background: #fff; transform: rotate(-2deg); }

.sm-ninja-steps { background: #fff; }
.sm-ninja-steps article { border-color: #e2e6ec; box-shadow: 0 12px 30px rgba(17,27,63,.05); }
.sm-ninja-steps article > i { background: var(--sm-ink); }
.sm-ninja-steps article:nth-child(2) > i { background: var(--sm-sky); }
.sm-ninja-steps article:nth-child(3) > i { background: var(--sm-berry-dark); }
.sm-ninja-family { background: linear-gradient(135deg,#eefbf7,#f7f5ed 55%,#fff0ed); }
.sm-ninja-family .sm-feature-list article { border-color: rgba(17,27,63,.1); box-shadow: 0 10px 25px rgba(17,27,63,.04); }
.school-meals-ninja .sm-meal-card small,
.school-meals-ninja .sm-heading > span { color: var(--sm-berry-dark); }
.school-meals-ninja .sm-meal-card footer a { color: var(--sm-berry-dark); }
.school-meals-ninja .woocommerce ul.products li.product .price,
.school-meals-ninja .woocommerce div.product p.price,
.school-meals-ninja .woocommerce div.product span.price { color: var(--sm-berry-dark); }
.school-meals-ninja .sm-page-hero { background: linear-gradient(120deg,#111b3f,#1c2c58); }
.school-meals-ninja .sm-page-hero h1 { color: #fff; }
.school-meals-ninja .sm-page-hero span { color: #65ebbe; }

@media (max-width: 960px) {
	.school-meals-ninja .sm-primary-nav { background: #111b3f; }
	.sm-ninja-hero .sm-hero-grid { gap: 34px; }
	.sm-ninja-scene img { width: 72%; }
}

@media (max-width: 760px) {
	.sm-ninja-hero { min-height: 0; padding-bottom: 120px; }
	.sm-ninja-board { max-width: 620px; min-height: 470px; }
	.sm-ninja-scene { height: 315px; }
}

@media (max-width: 560px) {
	.school-meals-ninja .sm-menu-toggle { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
	.school-meals-ninja .sm-menu-toggle span { background: #fff; }
	.sm-ninja-hero h1 { font-size: 3.35rem; }
	.sm-ninja-board { min-height: 420px; padding: 15px; border-radius: 23px; }
	.sm-ninja-scene { height: 275px; }
	.sm-ninja-message { top: 45px; width: 46%; }
	.sm-ninja-message b { font-size: 1.35rem; }
	.sm-ninja-scene img { right: -8%; width: 78%; max-height: 320px; }
	.sm-ninja-days span { padding: 9px 4px; font-size: 15px; gap: 4px; }
	.sm-ninja-status a { font-size: 10px; }
}
