/* Google-like main site food search */
html.ws-site-gs-open,
html.ws-site-gs-open body {
	overflow: hidden;
}
.ws-site-gs[hidden] {
	display: none !important;
}
.ws-site-gs {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: block;
}
.ws-site-gs__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(32, 33, 36, 0.5);
	backdrop-filter: blur(2px);
}
.ws-site-gs__panel {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	height: 100%;
	margin: 0 auto;
	background: #fff;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}
.ws-site-gs__top {
	padding: 16px 16px 12px;
	border-bottom: 1px solid #eee;
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 2;
}
.ws-site-gs__close {
	position: absolute;
	left: 12px;
	top: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #5f6368;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	font-family: inherit;
}
.ws-site-gs__close:hover {
	background: #f1f3f4;
}
.ws-site-gs__brand {
	margin: 0 0 14px;
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	color: #428c27;
	letter-spacing: -0.02em;
}
.ws-site-gs__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #dfe1e5;
	border-radius: 999px;
	padding: 6px 8px 6px 14px;
	box-shadow: 0 1px 6px rgba(32, 33, 36, 0.18);
	background: #fff;
}
.ws-site-gs__bar:focus-within {
	box-shadow: 0 1px 10px rgba(32, 33, 36, 0.28);
	border-color: transparent;
}
.ws-site-gs__bar-icon {
	color: #5a9e24;
	display: inline-flex;
	flex: 0 0 auto;
}
.ws-site-gs__input {
	flex: 1;
	border: 0;
	outline: none;
	font-size: 16px;
	font-family: inherit;
	background: transparent;
	color: #202124;
	min-width: 0;
	min-height: 40px;
}
.ws-site-gs__clear {
	border: 0;
	background: transparent;
	color: #5f6368;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	padding: 0 4px;
	font-family: inherit;
}
.ws-site-gs__submit {
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #84b424, #428c27);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 10px 14px;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}
.ws-site-gs__body {
	flex: 1;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 8px 0 28px;
}
.ws-site-gs__section {
	padding: 8px 16px 4px;
}
.ws-site-gs__section-title {
	margin: 10px 2px 10px;
	font-size: 12px;
	font-weight: 700;
	color: #80868b;
}
.ws-site-gs__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}
.ws-site-gs__chip {
	border: 1px solid #e8eaed;
	background: #f8f9fa;
	color: #3c4043;
	border-radius: 999px;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}
.ws-site-gs__chip:hover {
	background: #f4f8ef;
	border-color: #c8e0a8;
	color: #5a9e24;
}
.ws-site-gs__list {
	display: flex;
	flex-direction: column;
}
.ws-site-gs__row {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 12px 2px;
	border: 0;
	border-bottom: 1px solid #f1f3f4;
	background: transparent;
	text-align: right;
	cursor: pointer;
	font-family: inherit;
	color: inherit;
	text-decoration: none;
}
.ws-site-gs__row:hover,
.ws-site-gs__row:focus {
	background: #f8f9fa;
	outline: none;
}
.ws-site-gs__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex: 0 0 auto;
	background: #5a9e24;
}
.ws-site-gs__thumb {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	object-fit: cover;
	flex: 0 0 auto;
	background: #eee;
}
.ws-site-gs__row-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ws-site-gs__row-main strong {
	font-size: 15px;
	font-weight: 700;
	color: #202124;
}
.ws-site-gs__row-main small {
	font-size: 12px;
	color: #80868b;
}
.ws-site-gs__row-go {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 700;
	color: #5a9e24;
}
.ws-site-gs__empty,
.ws-site-gs__loading {
	text-align: center;
	padding: 28px 16px;
	color: #5f6368;
	font-size: 14px;
}
@media (min-width: 720px) {
	.ws-site-gs__panel {
		height: auto;
		max-height: min(88vh, 760px);
		margin-top: 5vh;
		border-radius: 18px;
		overflow: hidden;
	}
}
