.lsnd-food-app-page .site,
.lsnd-food-app-page .site-content {
	background: radial-gradient(circle at 12% 18%, #f7f4eb 0%, #f6f9f2 30%, #eef3ee 100%);
}

.lsnd-food-app {
	--lsnd-food-green: #0da200;
	--lsnd-food-green-hover: #0d8403;
	--lsnd-food-sticky-top: 50px;
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
	padding: 24px 16px 48px;
	font-family: "Mulish", sans-serif;
	color: #1b2318;
	float: none;
	overflow-x: clip;
}

.lsnd-food-app__header {
	position: relative;
	margin-bottom: 18px;
}

.lsnd-food-app__eyebrow {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #3f6644;
}

.lsnd-food-app__title {
	margin: 4px 0 6px;
	font-size: clamp(26px, 4.3vw, 42px);
	line-height: 1.05;
	font-weight: 900;
	color: #18311c;
}

.lsnd-food-app__description {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #566058;
}

.lsnd-food-app__search-wrap {
	margin-top: 14px;
	position: relative;
}

.lsnd-food-app-page .site .lsnd-food-app__search {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #b9d2b3;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: #1d2d1f;
	background: #ffffff;
	box-shadow:
		0 8px 20px rgba(24, 49, 28, 0.09),
		inset 0 1px 2px rgba(19, 40, 25, 0.08);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.lsnd-food-app__search:focus {
	outline: none;
	border-color: #4f965b;
	box-shadow:
		0 12px 24px rgba(30, 88, 40, 0.18),
		inset 0 1px 2px rgba(19, 40, 25, 0.05);
	transform: translateY(-1px);
}

.lsnd-food-app__search::placeholder {
	color: #6d7e6e;
	font-weight: 600;
}

.lsnd-food-app__chips {
	position: sticky;
	top: var(--lsnd-food-sticky-top);
	display: flex;
	gap: 6px;
	overflow-x: auto;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 7px 6px;
	margin: 0 0 10px;
	scrollbar-width: none;
	background: rgba(238, 243, 238, 0.96);
	backdrop-filter: blur(7px);
	border-radius: 12px;
	border: 1px solid #d6e3d4;
}

.lsnd-food-app__chips::-webkit-scrollbar {
	display: none;
}

.lsnd-food-chip {
	flex: 0 0 auto;
	border: 0;
	border-radius: 999px;
	padding: 7px 11px;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	background: #e9f1e5;
	color: #26442a;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.lsnd-food-chip.is-active,
.lsnd-food-chip:hover {
	background: var(--lsnd-food-green);
	color: #ffffff;
}

.lsnd-food-section {
	padding: 8px 0 18px;
	scroll-margin-top: 164px;
}

.lsnd-food-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.lsnd-food-section__title {
	margin: 0;
	font-size: clamp(20px, 3.3vw, 28px);
	line-height: 1.1;
	font-weight: 900;
}

.lsnd-food-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.lsnd-food-card {
	border-radius: 20px;
	padding: 12px;
	background: linear-gradient(145deg, #ffffff 0%, #f6f9f0 100%);
	box-shadow: 0 12px 28px rgba(20, 42, 27, 0.1);
}

.lsnd-food-card.is-hidden {
	display: none;
}

.lsnd-food-card__open {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 12px;
	cursor: pointer;
}

.lsnd-food-card__media img {
	width: 84px;
	height: 84px;
	border-radius: 14px;
	object-fit: cover;
	display: block;
}

.lsnd-food-card__title {
	margin: 0;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.lsnd-food-card__price {
	margin-top: 8px;
	font-weight: 800;
	color: #24552c;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.lsnd-food-card__price * {
	font-size: 16px;
	font-weight: 800;
}

.lsnd-food-card__price del,
.lsnd-food-modal__price del {
	color: #8a8f8a;
	opacity: 1;
	font-size: 14px;
	font-weight: 700;
	text-decoration-thickness: 2px;
}

.lsnd-food-card__price del .amount,
.lsnd-food-modal__price del .amount {
	font-size: 14px;
	font-weight: 700;
}

.lsnd-food-card__price ins,
.lsnd-food-modal__price ins {
	text-decoration: none;
	padding: 2px 0;
	border-radius: 0;
	background: none;
	color: #177a2b;
}

.lsnd-food-card__price ins .amount,
.lsnd-food-modal__price ins .amount {
	font-size: 17px;
	font-weight: 900;
}

.lsnd-food-card__actions {
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.lsnd-food-card__actions .is-hidden {
	display: none !important;
}

.lsnd-food-modal__actions .is-hidden {
	display: none !important;
}

.lsnd-food-card__add--inline {
	min-height: 32px;
	padding: 7px 12px;
	font-size: 12px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lsnd-food-card__qty {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 0;
	background: transparent;
}

.lsnd-food-card__qty-btn {
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 999px;
	background: #e3efe0;
	color: #196217;
	font-size: 19px;
	line-height: 1;
	font-family: Arial, sans-serif;
	font-weight: 700;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	letter-spacing: 0;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.lsnd-food-card__qty-btn:hover {
	background: #d8ead3;
}

.lsnd-food-card__qty-btn[data-lsnd-card-qty-btn="plus"] {
	background: var(--lsnd-food-green);
	color: #fff;
}

.lsnd-food-card__qty-btn[data-lsnd-card-qty-btn="plus"]:hover {
	background: var(--lsnd-food-green-hover);
}

.lsnd-food-card__qty-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.lsnd-food-card__qty-input {
	width: 42px;
	height: 32px;
	border: 1px solid #c8dbc4;
	border-radius: 999px;
	background: #fff;
	text-align: center;
	font-size: 13px;
	font-weight: 800;
	color: #1f3523;
	padding: 0;
	box-sizing: border-box;
}

.lsnd-food-card__qty-input:focus {
	outline: none;
	border-color: #0da200;
	box-shadow: 0 0 0 2px rgba(13, 162, 0, 0.16);
}

.lsnd-food-card__qty.is-loading {
	opacity: 0.65;
}

.lsnd-food-modal__qty.is-loading {
	opacity: 0.65;
}

.lsnd-food-card__qty-input::-webkit-outer-spin-button,
.lsnd-food-card__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.lsnd-food-card__qty-input[type="number"] {
	-moz-appearance: textfield;
}

.lsnd-food-card__add,
.lsnd-food-modal__add {
	border: 0;
	border-radius: 12px;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	background: var(--lsnd-food-green);
	color: #ffffff;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.lsnd-food-card__add:hover,
.lsnd-food-modal__add:hover {
	background: var(--lsnd-food-green-hover);
	transform: translateY(-1px);
}

.lsnd-food-card__add[disabled],
.lsnd-food-modal__add[disabled] {
	cursor: not-allowed;
	color: gray;
	background: none;
	padding: 10px 0;
}

.lsnd-food-card__details,
.lsnd-food-modal__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	background: #eef4ec;
	color: #26442a;
}

.lsnd-food-empty {
	margin-top: 14px;
	padding: 12px;
	text-align: center;
	border-radius: 12px;
	background: #fcf3df;
	color: #5f3e18;
	font-weight: 700;
}

.lsnd-food-app__fallback {
	margin-top: 20px;
	padding: 20px;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(20, 42, 27, 0.1);
}

.lsnd-food-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.lsnd-food-modal.is-open {
	display: block;
}

.lsnd-food-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 25, 17, 0.62);
}

.lsnd-food-modal__dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(92vw, 560px);
	max-height: 88vh;
	overflow: hidden;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 28px 54px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
}

.lsnd-food-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 42px;
	height: 42px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 0;
	border-radius: 50%;
	font-size: 30px;
	line-height: 1;
	font-weight: 500;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.92);
	color: #1f3523;
}

.lsnd-food-modal__media img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	border-radius: 24px 24px 0 0;
}

.lsnd-food-modal__body {
	padding: 18px 18px 0;
	overflow-y: auto;
	flex: 1 1 auto;
}

.lsnd-food-modal__body h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.15;
	font-weight: 900;
}

.lsnd-food-modal__price {
	margin-top: 8px;
	color: #24552c;
	font-size: 18px;
	font-weight: 900;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.lsnd-food-modal__description {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.6;
	color: #48564b;
}

.lsnd-food-modal__actions {
	margin-top: 18px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	position: sticky;
	bottom: 0;
	margin-left: -18px;
	margin-right: -18px;
	padding: 12px 18px 12px;
	background: #fff;
	border-top: 1px solid #e5eee2;
}

.lsnd-food-modal__actions .lsnd-food-modal__add {
	min-height: 46px;
	padding: 12px 22px;
	font-size: 16px;
	line-height: 1;
	border-radius: 14px;
}

.lsnd-food-modal__qty {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
}

.lsnd-food-modal__qty-btn {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: #e3efe0;
	color: #196217;
	font-size: 24px;
	line-height: 1;
	font-family: Arial, sans-serif;
	font-weight: 700;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	letter-spacing: 0;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.lsnd-food-modal__qty-btn:hover {
	background: #d8ead3;
}

.lsnd-food-modal__qty-btn[data-lsnd-modal-qty-btn="plus"] {
	background: var(--lsnd-food-green);
	color: #fff;
}

.lsnd-food-modal__qty-btn[data-lsnd-modal-qty-btn="plus"]:hover {
	background: var(--lsnd-food-green-hover);
}

.lsnd-food-modal__qty-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.lsnd-food-modal__qty-input {
	width: 54px;
	height: 40px;
	border: 0;
	background: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: 800;
	color: #1f3523;
	padding: 0;
}

.lsnd-food-modal__qty-input:focus {
	outline: none;
	box-shadow: inset 0 0 0 2px #8fbc88;
}

.lsnd-food-modal__qty-input::-webkit-outer-spin-button,
.lsnd-food-modal__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.lsnd-food-modal__qty-input[type="number"] {
	-moz-appearance: textfield;
}

body.lsnd-food-modal-open {
	overflow: hidden;
}

.lsnd-food-floating-cart {
	position: fixed;
	right: 22px;
	bottom: 22px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	border-radius: 999px;
	background: var(--lsnd-food-green);
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.lsnd-food-floating-cart:hover {
	background: var(--lsnd-food-green-hover);
	color: #fff;
}

.lsnd-food-floating-cart__icon {
	font-size: 14px;
	line-height: 1;
}

.lsnd-food-floating-cart__count {
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	border-radius: 999px;
	background: #fff;
	color: var(--lsnd-food-green-hover);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 900;
}

@media (min-width: 768px) {
	.lsnd-food-app {
		padding: 32px 20px 56px;
		float: left;
	}

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

	.lsnd-food-card {
		padding: 14px;
	}
}

@media (max-width: 767px) {
	.lsnd-food-app {
		--lsnd-food-sticky-top: 55px;
	}

	.lsnd-food-modal__dialog {
		left: 12px;
		right: 12px;
		top: max(12px, env(safe-area-inset-top));
		bottom: max(12px, env(safe-area-inset-bottom));
		width: auto;
		max-height: none;
		transform: none;
		border-radius: 20px;
	}

	.lsnd-food-modal__media img {
		height: 220px;
		border-radius: 20px 20px 0 0;
	}

	.lsnd-food-app-page .header_mbile .search_mbl_zone,
	.lsnd-food-app-page .header_mbile .fav_crt .onmbl,
	.lsnd-food-app-page .header_mbile .fav_crt .insd.js-cart-drawer-trigger {
		display: none !important;
	}

	.lsnd-food-app__chips {
		gap: 5px;
		padding: 6px 5px;
	}

	.lsnd-food-chip {
		padding: 6px 9px;
		font-size: 11px;
	}

	.lsnd-food-floating-cart {
		right: 14px;
		bottom: 14px;
	}
}

@media (min-width: 1100px) {
	.lsnd-food-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
