body {
  min-width: 320px;
  background: #fff8f1;
  color: #202522;
}

.panel-logo {
  color: #173f4a;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.panel-logo strong {
  color: #f0643b;
}

.back-arrow {
  transform: rotate(180deg);
}

.panel-page-kicker {
  display: block;
  margin-bottom: 8px;
  color: #f0643b;
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-form {
  display: grid;
  gap: 18px;
}

.panel-form label {
  display: grid;
  gap: 7px;
}

.panel-form label > span {
  color: #202522;
  font-size: 0.8125rem;
  font-weight: 760;
}

.panel-form label > span small {
  color: #6f746f;
  font-weight: 560;
}

.panel-form input {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #dcd1c8;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: #202522;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.panel-form input:focus {
  border-color: #f0643b;
  box-shadow: 0 0 0 3px rgba(240, 100, 59, 0.14);
}

.panel-primary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 0;
  border-radius: 10px;
  background: #f0643b;
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 790;
  gap: 9px;
  transition: background 160ms ease, transform 160ms ease;
}

.panel-primary-action:hover {
  background: #c94724;
  color: #fff;
  transform: translateY(-1px);
}

.panel-secondary-action,
.panel-text-action,
.panel-icon-action,
.panel-icon-button,
.panel-text-button {
  font: inherit;
}

.panel-secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid #173f4a;
  border-radius: 9px;
  background: #fff;
  color: #173f4a;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 760;
  gap: 8px;
}

.panel-secondary-action:hover {
  background: #173f4a;
  color: #fff;
}

.panel-text-action {
  display: inline-flex;
  align-items: center;
  color: #6f746f;
  font-size: 0.8125rem;
  font-weight: 720;
  gap: 7px;
}

.panel-icon-action,
.panel-icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #eadfd5;
  border-radius: 9px;
  background: #fff;
  color: #173f4a;
  cursor: pointer;
  place-items: center;
}

.panel-icon-action:hover,
.panel-icon-button:hover {
  border-color: #f0643b;
  color: #f0643b;
}

.panel-icon-button.is-danger {
  color: #a7342d;
}

.panel-secondary-action.is-danger {
  border-color: #d9a49d;
  color: #a7342d;
}

.panel-secondary-action.is-danger:hover {
  border-color: #a7342d;
  background: #a7342d;
  color: #fff;
}

.panel-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #173f4a;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 760;
}

.field-error {
  color: #b43932;
  font-size: 0.75rem;
  font-weight: 660;
}

.form-message,
.panel-flash {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f6eee7;
  color: #6f746f;
  font-size: 0.8125rem;
  line-height: 1.5;
  gap: 9px;
}

.form-message.is-error,
.panel-flash.is-error {
  background: #fff0ee;
  color: #a7342d;
}

.form-message.is-success,
.panel-flash.is-success {
  background: #edf7f1;
  color: #286c49;
}

.panel-toast-region {
  position: fixed;
  z-index: 1200;
  top: 18px;
  right: 18px;
  display: grid;
  width: min(390px, calc(100vw - 28px));
  pointer-events: none;
  gap: 10px;
}

.panel-toast {
  display: grid;
  align-items: start;
  padding: 15px;
  border: 1px solid #eadfd5;
  border-left: 4px solid #173f4a;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(23, 63, 74, 0.18);
  color: #202522;
  gap: 11px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  pointer-events: auto;
  animation: panel-toast-in 180ms ease-out both;
}

.panel-toast.is-success {
  border-left-color: #286c49;
}

.panel-toast.is-error {
  border-left-color: #a7342d;
}

.panel-toast.is-leaving {
  animation: panel-toast-out 160ms ease-in both;
}

.panel-toast-icon {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #edf4f5;
  color: #173f4a;
  place-items: center;
}

.panel-toast.is-success .panel-toast-icon {
  background: #edf7f1;
  color: #286c49;
}

.panel-toast.is-error .panel-toast-icon {
  background: #fff0ee;
  color: #a7342d;
}

.panel-toast strong,
.panel-toast p {
  display: block;
  margin: 0;
}

.panel-toast strong {
  margin: 1px 0 3px;
  color: #173f4a;
  font-size: 0.8125rem;
}

.panel-toast p {
  color: #6f746f;
  font-size: 0.75rem;
  line-height: 1.45;
}

.panel-toast > button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #6f746f;
  cursor: pointer;
  place-items: center;
}

.panel-toast > button:hover {
  background: #f6eee7;
  color: #173f4a;
}

.panel-dialog {
  width: min(460px, calc(100vw - 28px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(23, 63, 74, 0.3);
  color: #202522;
}

.panel-dialog::backdrop {
  background: rgba(12, 34, 39, 0.58);
  backdrop-filter: blur(3px);
}

.panel-dialog[open] {
  animation: panel-dialog-in 180ms ease-out both;
}

.panel-dialog > form {
  display: grid;
  padding: 26px;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
}

.panel-dialog-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(243, 185, 63, 0.18);
  color: #9b6b06;
  place-items: center;
}

.panel-dialog.is-danger .panel-dialog-icon {
  background: #fff0ee;
  color: #a7342d;
}

.panel-dialog-copy h2 {
  margin: 1px 0 7px;
  color: #173f4a;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.panel-dialog-copy p {
  margin: 0;
  color: #6f746f;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.panel-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 3px;
  gap: 9px;
  grid-column: 1 / -1;
}

.panel-dialog-actions .panel-primary-action {
  min-width: 126px;
}

.panel-dialog.is-danger .panel-primary-action {
  background: #a7342d;
}

.panel-dialog.is-danger .panel-primary-action:hover {
  background: #81251f;
}

.no-js .panel-toast > button {
  display: none;
}

@keyframes panel-toast-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
}

@keyframes panel-toast-out {
  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

@keyframes panel-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
}

.panel-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 252px minmax(0, 1fr);
  transition: grid-template-columns 180ms ease;
}

.panel-mobile-bar,
.panel-sidebar-backdrop {
  display: none;
}

.panel-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  padding: 18px 14px 14px;
  background: #173f4a;
  color: #fff;
  flex-direction: column;
  overflow: hidden;
}

.panel-sidebar-brand {
  display: flex;
  min-height: 51px;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 6px 13px;
  padding: 2px 2px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  gap: 5px;
}

.panel-sidebar-actions {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.panel-sidebar-logo {
  min-width: 0;
  margin: 3px 0 0;
  color: #fff;
}

.panel-density-toggle,
.panel-mobile-menu-toggle,
.panel-mobile-close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}

.panel-density-toggle:hover,
.panel-mobile-menu-toggle:hover,
.panel-mobile-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.panel-sidebar-brand .panel-density-toggle svg {
  transform: rotate(180deg);
  transition: transform 180ms ease;
}

.panel-mobile-close {
  display: none;
}

.panel-account-identity {
  display: grid;
  min-width: 0;
  margin: 0 10px 10px;
  gap: 1px;
}

.panel-account-identity span,
.panel-restaurant-label,
.panel-area span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-account-identity span {
  color: #f5a086;
}

.panel-account-identity strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-account-identity.is-footer-identity {
  margin: 0;
  padding: 2px 10px 8px;
  gap: 0;
}

.panel-account-identity.is-footer-identity span {
  font-size: 0.58rem;
}

.panel-account-identity.is-footer-identity strong {
  font-size: 0.76rem;
  font-weight: 680;
}

.panel-restaurant {
  display: grid;
  margin: 0 8px 11px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 5px;
}

.panel-restaurant-current > strong {
  overflow: hidden;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-navigation {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 4px 10px 0;
  overflow-y: auto;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  scrollbar-width: thin;
}

.panel-navigation-group {
  display: grid;
  gap: 2px;
}

.panel-navigation-group.is-overview {
  margin-bottom: 4px;
}

.panel-navigation-group.is-public-link {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-navigation-section {
  margin-top: 5px;
  border-top: 0;
}

.panel-navigation-section summary {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 760;
  gap: 10px;
  list-style: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.panel-navigation-section summary::-webkit-details-marker {
  display: none;
}

.panel-navigation-section summary:hover {
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.panel-navigation-section[open] > summary {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

.panel-navigation-section summary > span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.panel-navigation-section summary > svg {
  flex: 0 0 auto;
  opacity: 0.62;
  transition: transform 160ms ease;
}

.panel-navigation-section[open] > summary > svg {
  transform: rotate(180deg);
  color: #f0643b;
  opacity: 1;
}

.panel-navigation-section .panel-navigation-group {
  padding: 2px 0 7px 11px;
}

.panel-navigation-section .panel-navigation-group a {
  min-height: 38px;
  padding-block: 7px;
  font-size: 0.78rem;
}

.panel-navigation svg {
  color: #f3a085;
  stroke-width: 2.25;
}

.panel-navigation a[aria-current="page"] svg,
.panel-navigation-section[open] summary > span > svg {
  color: #f0643b;
  stroke-width: 2.25;
}

.panel-navigation a,
.panel-sidebar-footer a,
.panel-sidebar-footer button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 690;
  gap: 10px;
  text-align: left;
}

.panel-navigation a:hover,
.panel-sidebar-footer a:hover,
.panel-sidebar-footer button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.panel-navigation a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.panel-navigation a[aria-current="page"] {
  box-shadow: inset 2px 0 #f0643b;
}

.panel-nav-count {
  align-items: center;
  background: #f0643b;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: .64rem;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  margin-left: auto;
  min-width: 20px;
  padding: 0 6px;
}

.panel-sidebar-footer {
  display: grid;
  flex: 0 0 auto;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 2px;
}

.panel-sidebar-footer a,
.panel-sidebar-footer button {
  min-height: 38px;
  padding-block: 7px;
}

.panel-shell.is-sidebar-compact {
  grid-template-columns: 72px minmax(0, 1fr);
}

.panel-shell.is-sidebar-compact .panel-sidebar {
  padding-inline: 8px;
}

.panel-shell.is-sidebar-compact .panel-sidebar-brand {
  margin-inline: 0;
  padding-inline: 2px;
}

.panel-shell.is-sidebar-compact .panel-sidebar-actions {
  width: 100%;
  justify-content: space-between;
  gap: 2px;
}

.panel-shell.is-sidebar-compact .account-locale-menu > summary,
.panel-shell.is-sidebar-compact .panel-density-toggle {
  width: 25px;
  min-width: 25px;
  padding-inline: 0;
}

.panel-shell.is-sidebar-compact .account-locale-chevron {
  display: none;
}

.panel-shell.is-sidebar-compact .panel-sidebar-logo {
  display: none;
}

.panel-shell.is-sidebar-compact .panel-sidebar-brand .panel-density-toggle svg {
  transform: none;
}

.panel-shell.is-sidebar-compact .panel-account-identity,
.panel-shell.is-sidebar-compact .panel-restaurant {
  display: none;
}

.panel-shell.is-sidebar-compact .panel-navigation {
  padding-right: 0;
}

.panel-shell.is-sidebar-compact .panel-navigation-section summary,
.panel-shell.is-sidebar-compact .panel-navigation a,
.panel-shell.is-sidebar-compact .panel-sidebar-footer button {
  justify-content: center;
  padding-inline: 0;
  font-size: 0;
  gap: 0;
}

.panel-shell.is-sidebar-compact .panel-navigation-section summary > span {
  gap: 0;
}

.panel-shell.is-sidebar-compact .panel-navigation-section summary > svg,
.panel-shell.is-sidebar-compact .panel-nav-count {
  display: none;
}

.panel-shell.is-sidebar-compact .panel-navigation-section .panel-navigation-group {
  padding-left: 0;
}

.panel-shell.is-sidebar-compact .panel-navigation-section[open] {
  padding-bottom: 5px;
}

.panel-shell.is-sidebar-compact .panel-navigation a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
}

.panel-shell.is-sidebar-compact .panel-navigation svg,
.panel-shell.is-sidebar-compact .panel-sidebar-footer svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.panel-main {
  width: 100%;
  min-width: 0;
  padding: clamp(26px, 5vw, 62px);
  background: #fff8f1;
}

.panel-flash {
  width: min(100%, 1080px);
  margin: 0 auto 22px;
}

.panel-page {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.panel-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 24px;
}

.panel-page h1 {
  margin: 0 0 10px;
  color: #173f4a;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 840;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.panel-page-header p {
  max-width: 680px;
  margin: 0;
  color: #6f746f;
  line-height: 1.6;
}

.panel-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.restaurant-state {
  padding: 7px 10px;
  border-radius: 8px;
  background: #f6eee7;
  color: #6f746f;
  font-size: 0.75rem;
  font-weight: 780;
}

.restaurant-state.is-active {
  background: #e8f6ed;
  color: #286c49;
}

.field-wide {
  grid-column: 1 / -1;
}

.pending-note {
  display: flex;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid #eadfd5;
  border-radius: 14px;
  background: #fff;
  color: #f0643b;
  gap: 14px;
}

.pending-note strong,
.pending-note span {
  display: block;
}

.pending-note strong {
  color: #173f4a;
}

.pending-note span {
  margin-top: 3px;
  color: #6f746f;
  font-size: 0.8125rem;
}

.panel-area {
  display: grid;
  padding: 24px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  gap: 4px;
}

.panel-area strong {
  color: #fff;
  font-size: 1.5rem;
}

.panel-back {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8125rem;
  gap: 8px;
}

@media (max-width: 900px) {
body.is-panel-menu-open {
    overflow: hidden;
  }

.panel-shell,
.panel-shell.is-sidebar-compact {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
  }

.panel-mobile-bar {
    position: sticky;
    z-index: 30;
    top: 0;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px;
    background: #173f4a;
    color: #fff;
    box-shadow: 0 8px 24px rgba(23, 63, 74, 0.12);
  }

.panel-mobile-bar .panel-logo {
    color: #fff;
  }

.panel-mobile-brand {
    display: flex;
    align-items: center;
    gap: 7px;
  }

.panel-sidebar {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: min(86vw, 300px);
    min-width: 0;
    height: 100dvh;
    padding: 18px 14px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    transform: translateX(-102%);
    transition: transform 180ms ease, visibility 180ms ease, width 180ms ease;
  }

.panel-shell.is-mobile-menu-open .panel-sidebar {
    visibility: visible;
    transform: translateX(0);
  }

  .panel-shell.is-sidebar-compact .panel-sidebar {
    width: 104px;
    padding-inline: 8px;
  }

.panel-mobile-close {
    display: inline-flex;
  }

.panel-shell.is-sidebar-compact .panel-mobile-close {
    display: inline-flex;
    width: 26px;
    height: 32px;
  }

.panel-shell.is-sidebar-compact .panel-sidebar-brand .panel-density-toggle {
    width: 26px;
    height: 32px;
  }

.panel-shell.is-sidebar-compact .panel-sidebar-brand .panel-sidebar-logo {
    display: none;
  }

.panel-sidebar-backdrop {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(13, 31, 36, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

.panel-shell.is-mobile-menu-open .panel-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

.panel-shell.is-sidebar-compact .panel-mobile-bar .panel-density-toggle svg {
    transform: rotate(180deg);
  }

.panel-navigation {
    display: block;
    min-height: 0;
    padding: 0 4px 10px 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }

.panel-navigation-group {
    display: grid;
    padding: 0;
    border-right: 0;
    gap: 2px;
  }

.panel-navigation a {
    width: 100%;
    white-space: normal;
  }

.panel-navigation a[aria-current="page"] {
    box-shadow: inset 3px 0 #f0643b;
  }

.panel-sidebar-footer {
    display: grid;
  }

.panel-sidebar-footer button {
    width: 100%;
  }
}

@media (max-width: 680px) {
.panel-main {
    padding: 28px 14px 48px;
  }

.panel-page-header {
    margin-bottom: 25px;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
.panel-toast-region {
    top: 10px;
    right: 10px;
    width: calc(100vw - 20px);
  }

.panel-dialog > form {
    padding: 21px;
    grid-template-columns: 1fr;
  }

.panel-dialog-icon {
    width: 42px;
    height: 42px;
  }

.panel-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

.panel-dialog-actions .panel-primary-action,
.panel-dialog-actions .panel-secondary-action {
    width: 100%;
  }

.panel-dialog-actions .panel-primary-action {
    grid-row: 1;
  }
}

.panel-restaurant-switcher {
  position: relative;
}

.panel-restaurant-switcher summary {
  display: flex;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: background-color 140ms ease;
}

.panel-restaurant-switcher summary::-webkit-details-marker {
  display: none;
}

.panel-restaurant-switcher summary:hover,
.panel-restaurant-switcher[open] summary {
  background: rgba(255, 255, 255, 0.1);
}

.panel-restaurant-switcher summary > svg {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.66);
  transition: transform 140ms ease;
}

.panel-restaurant-switcher[open] summary > svg {
  transform: rotate(180deg);
}

.panel-restaurant-current {
  display: grid;
  min-width: 0;
}

.panel-restaurant-switcher-menu {
  display: grid;
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  left: 0;
  width: min(280px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid #eadfd5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(32, 37, 34, 0.14);
}

.panel-restaurant-switcher-list {
  display: grid;
  max-height: min(320px, 52vh);
  overflow-y: auto;
}

.panel-restaurant-switcher-list form {
  margin: 0;
}

.panel-restaurant-option {
  display: flex;
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 0;
  border-bottom: 1px solid #f1e8e0;
  background: transparent;
  color: #202522;
  font: inherit;
  text-align: left;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.panel-restaurant-option > span {
  display: grid;
  min-width: 0;
}

.panel-restaurant-option strong {
  overflow: hidden;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-restaurant-option.is-current {
  background: #fff8f1;
  color: #173f4a;
  cursor: default;
}

.panel-restaurant-option.is-current > svg {
  flex: 0 0 auto;
  color: #f0643b;
}

.panel-restaurant-option:not(.is-current):hover {
  background: #fff8f1;
}

.panel-restaurant-option small {
  color: #6f746f;
  font-size: 0.72rem;
}

.panel-restaurant-switcher-actions {
  display: grid;
  padding: 7px;
  background: #f9f3ed;
  gap: 2px;
}

.panel-restaurant-switcher-actions a {
  display: flex;
  min-height: 36px;
  padding: 8px 9px;
  border-radius: 8px;
  color: #173f4a;
  font-size: 0.78rem;
  font-weight: 740;
  text-decoration: none;
  align-items: center;
  gap: 8px;
}

.panel-restaurant-switcher-actions a:hover {
  background: #fff;
  color: #c94724;
}

@media (max-width: 900px) {
  .panel-account-identity {
    display: none;
  }

  .panel-restaurant {
    display: block;
    max-width: 190px;
    min-width: 0;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
  }

  .panel-restaurant-switcher summary {
    min-height: 40px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.06);
  }

  .panel-restaurant-current strong {
    font-size: 0.82rem;
  }

  .panel-restaurant-switcher-menu {
    top: calc(100% + 7px);
    right: 0;
    left: auto;
    width: min(280px, calc(100vw - 24px));
  }
}

@media (max-width: 480px) {
  .panel-restaurant {
    max-width: 138px;
  }

  .panel-restaurant-switcher summary {
    gap: 5px;
  }

  .panel-restaurant-switcher-menu {
    position: fixed;
    top: 64px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
