body {
	background: #fbfaf9;
	color: #1a1a1a;
	display: flex;
	flex-direction: column;
	font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 0;
	min-height: 100vh;
}
button,
input {
	font: inherit;
}
button,
a {
	-webkit-tap-highlight-color: transparent;
}
#restaurant-list-page {
	box-sizing: border-box;
	flex: 1 0 auto;
	margin: 0 auto;
	max-width: var(--restaurant-list-wide-max);
	padding: 0 var(--restaurant-list-page-gutter) 56px;
	width: 100%;
}
#restaurant-results {
	margin-top: 0;
	min-width: 0;
}
.restaurant-list-layout {
	align-items: start;
	display: grid;
	grid-template-columns: 232px minmax(0, 1fr);
	gap: 24px;
	margin-top: 24px;
}
.restaurant-filter-sidebar {
	background: #fff;
	border: 1px solid #efedea;
	border-radius: 14px;
	position: sticky;
	top: 92px;
}
.restaurant-filter-summary {
	align-items: center;
	color: #1a1a1a;
	cursor: pointer;
	display: none;
	font-size: 15px;
	font-weight: 700;
	justify-content: space-between;
	list-style: none;
	padding: 16px 18px;
	user-select: none;
}
.restaurant-filter-summary::-webkit-details-marker {
	display: none;
}
.restaurant-filter-summary-label {
	align-items: center;
	display: inline-flex;
	gap: 10px;
	min-width: 0;
}
.restaurant-filter-summary-icon {
	color: var(--hotmat-brand-red);
	flex: 0 0 auto;
}
.restaurant-filter-summary-chevron {
	flex: 0 0 auto;
	transition: transform 0.18s ease;
}
.restaurant-filter-sidebar[open] .restaurant-filter-summary-chevron {
	transform: rotate(180deg);
}
.restaurant-filter-content {
	padding: 20px;
}
.restaurant-filter-sidebar[data-restaurant-loading="true"] [data-restaurant-filter-ready-content] {
	display: none;
}
.restaurant-filter-heading {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 16px;
}
.restaurant-filter-group,
.restaurant-food-type-menu,
.restaurant-sort-menu {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.restaurant-food-type-menu,
.restaurant-sort-menu {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0;
	max-height: none;
	overflow: visible;
	padding: 0;
}
.restaurant-food-type-menu[hidden],
.restaurant-sort-menu[hidden] {
	display: none;
}
.restaurant-food-type-option,
.restaurant-sort-option {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: #1a1a1a;
	cursor: pointer;
	display: flex;
	font-size: 14px;
	gap: 9px;
	line-height: 1.4;
	padding: 7px 2px;
	text-align: left;
	width: 100%;
}
.restaurant-food-type-option {
	font-weight: normal;
	text-transform: none;
	user-select: none;
}
.restaurant-food-type-option:hover,
.restaurant-sort-option:hover,
.restaurant-sort-option:focus {
	background: #f7f6f4;
	outline: none;
}
.restaurant-food-type-option input {
	appearance: none;
	-webkit-appearance: none;
	align-items: center;
	background: #fff;
	border: 1.5px solid #cfccc8;
	border-radius: 5px;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	height: 18px;
	justify-content: center;
	margin: 0;
	width: 18px;
}
.restaurant-food-type-option input:checked {
	background: var(--hotmat-brand-red);
	border-color: var(--hotmat-brand-red);
}
.restaurant-food-type-option input:checked::after {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	content: "";
	height: 5px;
	transform: rotate(-45deg) translate(0.5px, -1px);
	width: 9px;
}
.restaurant-food-type-option--all {
	font-weight: bold;
}
.restaurant-sort-option::before {
	border: 1.5px solid #cfccc8;
	border-radius: 50%;
	content: '';
	display: inline-flex;
	flex: 0 0 auto;
	height: 18px;
	justify-content: center;
	align-items: center;
	width: 18px;
}
.restaurant-sort-option[aria-checked="true"] {
	font-weight: bold;
}
.restaurant-sort-option[aria-checked="true"]::before {
	border-color: var(--hotmat-brand-red);
	box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 9px var(--hotmat-brand-red);
}
.restaurant-filter-divider {
	border: 0;
	border-top: 1px solid #efedea;
	margin: 18px -2px;
}
.restaurant-filter-loading {
	display: grid;
	gap: 12px;
}
.restaurant-filter-loading[hidden] {
	display: none;
}
.restaurant-filter-loading__heading {
	height: 18px;
	margin-bottom: 2px;
	width: 68%;
}
.restaurant-filter-loading__row {
	align-items: center;
	display: flex;
	gap: 9px;
	padding: 7px 2px;
}
.restaurant-filter-loading__mark {
	flex: 0 0 auto;
	height: 18px;
	width: 18px;
}
.restaurant-filter-loading__mark--check {
	border-radius: 5px;
}
.restaurant-filter-loading__mark--radio {
	border-radius: 50%;
}
.restaurant-filter-loading__line {
	height: 13px;
	width: 76%;
}
.restaurant-filter-loading__row:nth-child(3n) .restaurant-filter-loading__line {
	width: 58%;
}
.restaurant-filter-loading__row:nth-child(4n) .restaurant-filter-loading__line {
	width: 84%;
}
.restaurant-filter-loading__divider {
	border: 0;
	border-top: 1px solid #efedea;
	margin: 6px -2px 4px;
}
.restaurant-results-main {
	min-width: 0;
}
.restaurant-results-head {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 20px;
	min-width: 0;
}
.restaurant-results-head-copy {
	min-width: 0;
}
.restaurant-results-title {
	color: #1a1a1a;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 6px;
}
.restaurant-results-sub {
	color: #6b6b6b;
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}
.restaurant-result-sort-control {
	flex: 0 0 auto;
	position: relative;
}
.restaurant-result-sort-button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--hotmat-brand-red);
	border-radius: 10px;
	color: #6b6b6b;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	gap: 10px;
	height: 46px;
	padding: 0 16px;
	white-space: nowrap;
}
.restaurant-result-sort-button:hover,
.restaurant-result-sort-button:focus {
	background: #fff8f8;
	outline: none;
}
.restaurant-result-sort-button:focus-visible {
	outline: 2px solid var(--hotmat-brand-red);
	outline-offset: 2px;
}
.restaurant-result-sort-value {
	color: #1a1a1a;
	font-weight: 500;
}
.restaurant-result-sort-chevron {
	color: #1a1a1a;
	flex: 0 0 auto;
	transition: transform 0.18s ease;
}
.restaurant-result-sort-button[aria-expanded="true"] .restaurant-result-sort-chevron {
	transform: rotate(180deg);
}
.restaurant-result-sort-menu {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
	min-width: 220px;
	padding: 8px;
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	z-index: 30;
}
.restaurant-result-sort-menu[hidden] {
	display: none;
}
.restaurant-result-sort-option {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 10px;
	color: #1a1a1a;
	cursor: pointer;
	display: flex;
	font-size: 15px;
	gap: 12px;
	padding: 11px 12px;
	text-align: left;
	width: 100%;
}
.restaurant-result-sort-option:hover,
.restaurant-result-sort-option:focus {
	background: #f4f4f4;
	outline: none;
}
.restaurant-result-sort-option[aria-checked="true"] {
	font-weight: 700;
}
.restaurant-result-sort-check {
	color: var(--hotmat-brand-red);
	flex: 0 0 auto;
	margin-left: auto;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.12s ease, transform 0.12s ease;
}
.restaurant-result-sort-option[aria-checked="true"] .restaurant-result-sort-check {
	opacity: 1;
	transform: scale(1);
}
.restaurant-list-hero {
	align-items: center;
	border-bottom: 1px solid #eee;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	padding: 28px 0 24px;
}
.restaurant-list-kicker {
	color: var(--hotmat-brand-red);
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}
.restaurant-list-hero h1 {
	color: #333;
	font-size: 36px;
	line-height: 1.15;
	margin: 0;
}
.restaurant-list-address {
	color: #666;
	font-size: 16px;
	margin: 8px 0 0;
}
.restaurant-list-change-address {
	background: #fff;
	border: 1px solid var(--hotmat-brand-red);
	border-radius: 999px;
	color: var(--hotmat-brand-red);
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	padding: 12px 22px;
	white-space: nowrap;
}
.restaurant-list-change-address:hover,
.restaurant-list-change-address:focus {
	background: var(--hotmat-brand-red);
	color: #fff;
}
.restaurant-result-section {
	margin-bottom: 40px;
}
.restaurant-results-status {
	background: #fff;
	border: 1px solid #efedea;
	border-radius: 14px;
	color: #666;
	font-size: 16px;
	padding: 22px;
	text-align: center;
}
.restaurant-results-status[hidden] {
	display: none;
}
.restaurant-results-status--empty,
.restaurant-results-status--error {
	background: #fff;
}
.restaurant-results-loading {
	display: grid;
	gap: 18px;
}
.restaurant-results-loading[hidden] {
	display: none;
}
.restaurant-results-loading-copy {
	align-items: center;
	background: #fff;
	border: 1px solid #efedea;
	border-radius: 14px;
	color: #555;
	display: flex;
	font-size: 14px;
	gap: 10px;
	line-height: 1.4;
	margin: 0;
	padding: 14px 16px;
}
.restaurant-results-loading-copy::before {
	background: var(--hotmat-brand-red);
	border-radius: 999px;
	box-shadow: 0 0 0 4px #fff0f0;
	content: "";
	flex: 0 0 auto;
	height: 8px;
	width: 8px;
}
.restaurant-result-section h2 {
	align-items: center;
	display: flex;
	font-size: 32px;
	gap: 8px;
	line-height: 1.2;
	margin: 0 0 24px;
}
.restaurant-result-section__count {
	color: #666;
	font-size: 16px;
	font-weight: normal;
}
.restaurant-section-grid {
	display: grid;
	column-gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 30px;
}
.restaurant-results-skeleton-grid {
	column-gap: 28px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 30px;
}
.restaurant-skeleton {
	animation: restaurant-skeleton-shimmer 1.25s ease-in-out infinite;
	background: linear-gradient(90deg, #eeece9 0%, #faf8f6 50%, #eeece9 100%);
	background-size: 220% 100%;
	border-radius: 999px;
}
@keyframes restaurant-skeleton-shimmer {
	0% {
		background-position: 120% 0;
	}
	100% {
		background-position: -120% 0;
	}
}
.restaurant-card-skeleton {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	overflow: hidden;
}
.restaurant-card-skeleton__image {
	aspect-ratio: 5 / 3;
	border-radius: 0;
	position: relative;
}
.restaurant-card-skeleton__logo {
	background: linear-gradient(90deg, #f2efec 0%, #fbfaf8 50%, #f2efec 100%);
	background-size: 220% 100%;
	border-radius: 8px 0 0 0;
	bottom: 0;
	height: 48px;
	position: absolute;
	right: 0;
	width: 80px;
}
.restaurant-card-skeleton__body {
	padding: 11px 12px 12px;
}
.restaurant-card-skeleton__title-row,
.restaurant-card-skeleton__fees {
	align-items: center;
	display: flex;
	gap: 8px;
}
.restaurant-card-skeleton__title {
	height: 16px;
	width: 72%;
}
.restaurant-card-skeleton__rating {
	height: 15px;
	margin-left: auto;
	width: 34px;
}
.restaurant-card-skeleton__meta {
	height: 13px;
	margin-top: 7px;
	width: 64%;
}
.restaurant-card-skeleton__fees {
	column-gap: 14px;
	margin-top: 10px;
}
.restaurant-card-skeleton__fee {
	height: 14px;
	width: 76px;
}
.restaurant-card-skeleton__fee:last-child {
	width: 88px;
}
.restaurant-card-skeleton:nth-child(2n) .restaurant-card-skeleton__title {
	width: 60%;
}
.restaurant-card-skeleton:nth-child(3n) .restaurant-card-skeleton__meta {
	width: 78%;
}
.restaurant-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	color: inherit;
	display: block;
	min-width: 0;
	outline: 3px solid transparent;
	outline-offset: 4px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transition: outline-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.restaurant-card:hover {
	border-color: #e0e0e0;
	box-shadow: rgba(0, 0, 0, 0.1) 0 6px 18px;
	transform: translateY(-2px);
}
.restaurant-card--unavailable:hover {
	box-shadow: none;
	transform: none;
}
.restaurant-card:focus {
	outline-color: var(--hotmat-brand-red);
}
.restaurant-card:focus:not(:focus-visible) {
	outline-color: transparent;
}
.restaurant-card:focus-visible {
	outline-color: var(--hotmat-brand-red);
}
.restaurant-card:hover .restaurant-card__title,
.restaurant-card:focus-visible .restaurant-card__title {
	color: var(--hotmat-brand-red);
}
.restaurant-card--unavailable {
	cursor: default;
}
.restaurant-card--closed {
	opacity: 1;
}
.restaurant-card--closed .restaurant-card__image {
	filter: grayscale(0.15);
	opacity: 0.55;
}
.restaurant-card--closed .restaurant-card__title,
.restaurant-card--closed .restaurant-card__cuisines,
.restaurant-card--closed .restaurant-card__fee {
	color: #777;
}
.restaurant-card--closed .restaurant-card__fee svg {
	color: #999;
}
.restaurant-card__image {
	aspect-ratio: 5 / 3;
	background: #eee;
	isolation: isolate;
	overflow: hidden;
	position: relative;
}
.restaurant-card__cover {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
	width: 100%;
}
.restaurant-card:hover .restaurant-card__cover,
.restaurant-card:focus-visible .restaurant-card__cover {
	transform: scale(1.04);
}
.restaurant-card__logo {
	background: #fff;
	border-top-left-radius: 8px;
	bottom: 0;
	box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px;
	max-height: 64px;
	object-fit: contain;
	position: absolute;
	right: 0;
	width: 80px;
	z-index: 2;
}
.restaurant-card__promo-tags {
	align-items: start;
	display: grid;
	gap: 5px;
	left: 1px;
	position: absolute;
	right: 8px;
	top: 5px;
	z-index: 2;
}
.restaurant-card__tag {
	background: var(--hotmat-brand-red);
	box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 10px;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	justify-self: start;
	line-height: 1.25;
	max-width: calc(100% - 12px);
	overflow: hidden;
	padding: 2px 5px 2px 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.restaurant-card__tag--new {
	background: #fff;
	border-radius: 999px;
	bottom: 8px;
	box-shadow: rgba(0, 0, 0, 0.18) 0 2px 8px;
	color: var(--hotmat-brand-red);
	font-weight: 700;
	left: 8px;
	padding: 4px 10px;
	position: absolute;
	z-index: 2;
}
.restaurant-card__body {
	min-width: 0;
	padding: 11px 12px 12px;
}
.restaurant-card__title-row {
	align-items: center;
	display: flex;
	gap: 8px;
	min-width: 0;
}
.restaurant-card__title {
	color: #1a1a1a;
	flex: 1 1 auto;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.2s ease;
	white-space: nowrap;
}
.restaurant-card__rating {
	align-items: center;
	color: #1a1a1a;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 12px;
	gap: 3px;
	line-height: 1.25;
	white-space: nowrap;
}
.restaurant-card__rating::before {
	color: #f5b400;
	content: "★";
	font-size: 13px;
}
.restaurant-card__meta-row {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-top: 3px;
	min-width: 0;
}
.restaurant-card__cuisines + .restaurant-card__rating {
	margin-left: auto;
}
.restaurant-card__cuisines {
	color: #6f6f6f;
	flex: 1 1 auto;
	font-size: 12px;
	line-height: 1.35;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.restaurant-card__fees {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	margin-top: 8px;
	min-width: 0;
	overflow: hidden;
}
.restaurant-card__fee {
	align-items: center;
	color: #6b6b6b;
	display: inline-flex;
	flex: 0 1 auto;
	font-size: 12.5px;
	gap: 5px;
	line-height: 1.2;
	min-width: 0;
}
.restaurant-card__fee + .restaurant-card__fee {
	border-left: 1px solid #e7e3df;
	margin-left: 12px;
	padding-left: 12px;
}
.restaurant-card__fee svg,
.restaurant-card__fee-icon {
	display: block;
	flex: 0 0 auto;
	height: 16px;
	width: 16px;
}
.restaurant-card__fee-icon--delivery {
	color: var(--hotmat-brand-red);
}
.restaurant-card__fee-icon--minimum {
	color: #5f5f5f;
}
.restaurant-card__delivery svg {
	color: var(--hotmat-brand-red);
}
.restaurant-card--closed .restaurant-card__delivery .restaurant-card__fee-icon--delivery {
	color: #999;
}
.restaurant-card--closed .restaurant-card__minimum .restaurant-card__fee-icon--minimum {
	color: #999;
}
.restaurant-card__minimum svg {
	color: #9a9a9a;
}
.restaurant-card__fee-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body.restaurant-notice-open {
	overflow: hidden;
}
.restaurant-notice-overlay {
	background: rgba(9, 9, 9, 0.58);
	display: grid;
	inset: 0;
	overflow-y: auto;
	padding: 24px;
	place-items: center;
	position: fixed;
	z-index: 1000;
}
.restaurant-notice-overlay--pickup {
	background: rgba(9, 9, 9, 0.44);
}
.restaurant-notice-overlay[hidden] {
	display: none;
}
.restaurant-notice-dialog {
	--restaurant-notice-accent: var(--hotmat-brand-red);
	--restaurant-notice-accent-hover: var(--hotmat-brand-red-dark);
	--restaurant-notice-focus: rgba(246, 61, 65, 0.18);
	--restaurant-notice-soft: #fff3f3;

	background: #fff;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	box-sizing: border-box;
	color: #1a1a1a;
	padding: 28px;
	position: relative;
	text-align: center;
	width: min(100%, 420px);
}
.restaurant-notice-dialog--pickup {
	--restaurant-notice-accent: #247a68;
	--restaurant-notice-accent-hover: #1d6656;
	--restaurant-notice-focus: rgba(36, 122, 104, 0.18);
	--restaurant-notice-soft: #eef8f5;
}
.restaurant-notice-close {
	align-items: center;
	background: transparent;
	border: 0;
	color: #4a4a4a;
	cursor: pointer;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 40px;
}
.restaurant-notice-close:hover,
.restaurant-notice-close:focus-visible {
	color: var(--restaurant-notice-accent);
	outline: none;
}
.restaurant-notice-close:focus-visible,
.restaurant-notice-secondary:focus-visible,
.restaurant-notice-primary:focus-visible {
	box-shadow: 0 0 0 3px var(--restaurant-notice-focus);
	outline: none;
}
.restaurant-notice-close svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 22px;
}
.restaurant-notice-icon {
	align-items: center;
	background: var(--restaurant-notice-soft);
	border-radius: 999px;
	color: var(--restaurant-notice-accent);
	display: inline-flex;
	height: 54px;
	justify-content: center;
	margin-bottom: 16px;
	width: 54px;
}
.restaurant-notice-icon svg {
	fill: none;
	height: 27px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 27px;
}
.restaurant-notice-dialog h2 {
	font-size: 24px;
	line-height: 1.18;
	margin: 0 32px 10px;
}
.restaurant-notice-dialog p {
	color: #626262;
	font-size: 15px;
	line-height: 1.45;
	margin: 0 auto 22px;
	max-width: 330px;
}
.restaurant-notice-actions {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
}
.restaurant-notice-secondary,
.restaurant-notice-primary {
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	min-height: 46px;
	padding: 10px 14px;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.restaurant-notice-secondary {
	background: #fff;
	border: 1px solid #dad7d3;
	color: #1a1a1a;
}
.restaurant-notice-secondary:hover {
	background: #f7f6f4;
	border-color: #c9c5c0;
}
.restaurant-notice-primary {
	background: var(--restaurant-notice-accent);
	border: 1px solid var(--restaurant-notice-accent);
	color: #fff;
}
.restaurant-notice-primary:hover {
	background: var(--restaurant-notice-accent-hover);
	border-color: var(--restaurant-notice-accent-hover);
}
@media (prefers-reduced-motion: reduce) {
	.restaurant-card,
	.restaurant-card__cover,
	.restaurant-card__title {
		transition: none;
	}
	.restaurant-card:hover .restaurant-card__cover,
	.restaurant-card:focus-visible .restaurant-card__cover {
		transform: none;
	}
	.restaurant-skeleton,
	.restaurant-card-skeleton__logo {
		animation: none;
		background-position: 0 0;
	}
}
@media screen and (max-width: 840px) {
	#restaurant-list-page {
		max-width: 720px;
		padding-right: 24px;
		padding-left: 24px;
	}
	.restaurant-list-layout {
		grid-template-columns: 1fr;
	}
	.restaurant-filter-sidebar {
		position: static;
	}
	.restaurant-filter-summary {
		display: flex;
	}
	.restaurant-filter-sidebar:not([open]) .restaurant-filter-content {
		display: none;
	}
	.restaurant-filter-content {
		border-top: 1px solid #efedea;
	}
	.restaurant-food-type-menu {
		column-gap: 16px;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 4px;
	}
	.restaurant-food-type-option {
		min-width: 0;
	}
	.restaurant-food-type-option--all {
		grid-column: 1 / -1;
	}
	.restaurant-results-head {
		align-items: flex-start;
	}
	.restaurant-result-sort-control {
		display: none;
	}
	.restaurant-section-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.restaurant-results-skeleton-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.restaurant-result-section h2 {
		font-size: 24px;
	}
	.restaurant-list-hero h1 {
		font-size: 30px;
	}
}
@media screen and (max-width: 510px) {
	#restaurant-list-page {
		padding-left: 5%;
		padding-right: 5%;
	}
	.restaurant-list-hero {
		align-items: flex-start;
		flex-direction: column;
	}
	.restaurant-list-hero h1 {
		font-size: 28px;
	}
	.restaurant-list-change-address {
		width: 100%;
	}
	.restaurant-results-head {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}
	.restaurant-results-title {
		font-size: 28px;
	}
	.restaurant-section-grid {
		grid-template-columns: 1fr;
	}
	.restaurant-results-skeleton-grid {
		grid-template-columns: 1fr;
	}
	.restaurant-result-section h2 {
		font-size: 20px;
	}
	.restaurant-notice-overlay {
		padding: 18px;
	}
	.restaurant-notice-dialog {
		padding: 26px 20px 20px;
	}
	.restaurant-notice-dialog h2 {
		font-size: 22px;
	}
	.restaurant-notice-actions {
		grid-template-columns: 1fr;
	}
}
