@font-face {
  font-display: swap;
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 100 900;
  src: url("../fonts/roboto-condensed-latin-ext.woff2") format("woff2");
}

.public-closing-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 6px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: #1e1d1a;
  color: #fff;
  font-size: 13px;
}

.public-closing-notice strong {
  color: #dfbd6f;
  text-transform: uppercase;
}

.public-closing-notice i {
  margin: 0 7px;
  font-style: normal;
  opacity: .55;
}

@media (max-width: 600px) {
  .public-closing-notice {
    display: grid;
    gap: 0;
    padding: 6px 12px;
    text-align: center;
  }
}

@font-face {
  font-display: swap;
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 100 900;
  src: url("../fonts/roboto-condensed-latin.woff2") format("woff2");
}

:root {
  --ink: #231f1c;
  --muted: #6d625a;
  --line: #ded7cf;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --accent: #1f6f5f;
  --accent-dark: #175447;
  --wine: #8f2738;
  --shadow: 0 18px 46px rgba(36, 29, 25, 0.09);
}

/* Inventory stock report */

/* User role management */

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 250, 247, 0.94)),
    var(--paper);
  color: var(--ink);
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.admin-content {
  min-width: 0;
  padding: 28px 30px;
  position: relative;
  width: min(100%, 1540px);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--wine);
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 52px);
}

h2 {
  margin-bottom: 18px;
  font-size: 22px;
}


.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.public-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.site-footer {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 24px 0 4px;
  text-align: center;
}

.public-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.public-logo {
  display: block;
  width: min(110px, 34vw);
  height: auto;
}

.public-language-switcher {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 0 auto 12px;
}

.public-language-switcher a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  min-width: 42px;
  padding: 7px 10px;
  text-align: center;
  text-decoration: none;
}

.public-language-switcher a.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.public-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.public-cart-button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  gap: 8px;
  font-weight: 900;
  padding: 11px 14px;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 18;
}

.public-account-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 900;
  padding: 11px 14px;
  position: fixed;
  right: 18px;
  top: 70px;
  z-index: 18;
}

.public-whatsapp-button {
  align-items: center;
  animation: whatsapp-float 2.4s ease-in-out infinite;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.35);
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  text-decoration: none;
  z-index: 22;
}

.public-whatsapp-button::before {
  content: "";
  background: #fff;
  border-radius: 999px;
  display: inline-block;
  height: 18px;
  mask: radial-gradient(circle at 50% 50%, #000 58%, transparent 60%);
  position: relative;
  width: 18px;
}

@keyframes whatsapp-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.public-cart-button span {
  align-items: center;
  background: var(--wine);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  min-width: 22px;
  padding: 3px 7px;
}

.cart-toast {
  position: fixed;
  right: 18px;
  top: 72px;
  z-index: 19;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  opacity: 0;
  padding: 11px 14px;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.public-tab-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  min-width: min(140px, 100%);
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
}

.public-tab-button:hover,
.public-tab-button.active {
  background: #eef5f3;
  color: var(--accent-dark);
}

.public-tab-panel {
  display: none;
}

.public-tab-panel.active {
  display: block;
}

.public-bg-panel {
  border-radius: 0;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.public-bg-panel.has-public-bg {
  margin-left: calc(50% - 50vw);
  min-height: calc(100vh - 150px);
  padding: 48px max(24px, calc((100vw - 1120px) / 2 + 16px));
  width: 100vw;
}

.public-bg-panel.has-public-bg::before,
.public-bg-panel.has-public-bg::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.public-bg-panel.has-public-bg::before {
  background-image: var(--public-bg-image);
  background-position: center;
  background-size: cover;
  filter: blur(2px);
  transform: scale(1.025);
}

.public-bg-panel.has-public-bg::after {
  background: linear-gradient(135deg, rgba(20, 12, 10, 0.58), rgba(20, 12, 10, 0.28));
  z-index: -1;
}

.public-bg-panel.has-public-bg .public-copy,
.public-bg-panel.has-public-bg .public-section-head,
.public-bg-panel.has-public-bg .public-section-copy {
  color: #fff;
}

.public-bg-panel.has-public-bg .eyebrow {
  color: #f2c36b;
}

.public-bg-panel.has-public-bg .public-copy h1,
.public-bg-panel.has-public-bg .public-section-head h2 {
  color: #fff;
}

.public-bg-panel.has-public-bg .public-copy p,
.public-bg-panel.has-public-bg .public-section-copy {
  color: rgba(255, 255, 255, 0.88);
}

.public-bg-panel.has-public-bg .public-hero {
  min-height: calc(100vh - 245px);
}

.public-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 130px);
}

.public-menu-section {
  padding: 42px 0 24px;
}

.public-contact-section {
  padding: 42px 0 24px;
}

.public-section-head {
  margin-bottom: 16px;
  text-align: center;
}

.public-section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 0;
}

.public-section-copy {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  margin: 8px auto 0;
  max-width: 620px;
}

.public-menu-intro {
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  margin: 10px auto 0;
  max-width: 760px;
}

.public-bg-panel.has-public-bg .public-menu-intro {
  color: rgba(255, 255, 255, 0.9);
}

.menu-intro-settings textarea {
  min-height: 150px;
}

.menu-accordion {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 820px;
}

.public-menu-search {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto 14px;
  max-width: 820px;
}

.public-menu-search label {
  font-weight: 900;
  margin: 0;
}

.public-menu-search input {
  background: #fffdfa;
  margin-top: 6px;
}

.public-menu-search span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  padding-bottom: 12px;
  white-space: nowrap;
}

.public-order-prompt,
.public-service-panel {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 14px 36px rgba(36, 29, 25, 0.12);
  display: grid;
  gap: 12px;
  margin: 0 auto 14px;
  max-width: 820px;
  padding: 14px;
}

.public-order-prompt {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.public-order-prompt strong,
.public-service-panel strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.public-order-prompt span,
.public-service-panel span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 3px;
}

.public-service-panel label {
  margin: 0;
}

.public-service-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.public-service-actions button {
  border: 1px solid #e6d8c8;
  border-radius: 8px;
  background: #fffdfa;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 42px;
  padding: 8px 7px;
}

.public-service-actions button:hover,
.public-service-actions button:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.public-help-section {
  padding: 42px 0 24px;
}

.public-help-shell {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1040px;
}

.public-help-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.public-help-info {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 85, 74, 0.96), rgba(105, 38, 52, 0.96)),
    #1f554a;
  box-shadow: 0 18px 42px rgba(36, 29, 25, 0.14);
  color: #fff;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
}

.public-help-info strong {
  font-size: 24px;
  font-weight: 900;
}

.public-help-info > span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  line-height: 1.5;
}

.public-help-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.public-help-badges span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.public-help-form {
  margin: 0;
  max-width: none;
}

.public-help-form .public-service-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-help-form .public-service-actions-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-help-form .public-service-actions button {
  min-height: 74px;
  padding: 10px;
  text-align: left;
}

.public-help-form .public-service-actions-compact button {
  min-height: 40px;
  text-align: center;
}

.public-help-form .public-service-actions button strong {
  font-size: 14px;
  line-height: 1.2;
}

.public-help-form .public-service-actions button span {
  font-size: 12px;
  line-height: 1.25;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .public-help-grid {
    grid-template-columns: 1fr;
  }
}

.menu-category {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.menu-category-wrap {
  display: grid;
  gap: 8px;
}

.menu-category-wrap-featured .menu-category {
  border-color: rgba(196, 131, 43, 0.42);
}

.menu-category-wrap-featured .menu-category summary {
  box-shadow: inset 0 0 0 999px rgba(70, 38, 12, 0.08);
}

.menu-category-wrap.is-menu-filter-hidden,
.menu-item.is-menu-filter-hidden {
  display: none !important;
}

.menu-category summary {
  align-items: center;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  min-height: 110px;
  list-style: none;
  padding: 18px;
  text-align: center;
  text-transform: uppercase;
}

.menu-category summary.has-menu-background {
  background-image: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), var(--menu-category-bg-image);
}

.menu-category summary::-webkit-details-marker {
  display: none;
}

.menu-category summary::after {
  content: "⌄";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  margin-left: 0;
  transform: none;
}

.menu-category[open] summary::after {
  content: "⌃";
}

.menu-items {
  border-top: 1px solid var(--line);
  display: grid;
  padding: 6px 18px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  border-bottom: 1px solid #f0ece6;
  padding: 12px 0;
}

.menu-item-content {
  flex: 1;
  min-width: 0;
}

.menu-item-content strong {
  display: block;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}

.menu-item-image {
  background: #f1eee9;
  border-radius: 8px;
  flex: 0 0 58px;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.public-menu-image-preview {
  border: 0;
  background: transparent;
  cursor: zoom-in;
  flex: 0 0 58px;
  padding: 0;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item p,
.menu-empty {
  color: var(--muted);
  margin: 5px 0 0;
}

.menu-item .menu-item-calories {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.menu-item span {
  font-weight: 900;
}

.menu-item-buy {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-left: auto;
  justify-content: flex-end;
  min-width: 116px;
  white-space: nowrap;
}

.menu-add-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.contact-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 360px;
  margin: 0 auto 18px;
  max-width: 980px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.contact-map-feature {
  height: 410px;
}

.contact-map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.contact-map-card {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.94);
  bottom: 18px;
  box-shadow: 0 18px 38px rgba(28, 18, 15, 0.18);
  display: grid;
  gap: 7px;
  left: 18px;
  max-width: min(360px, calc(100% - 36px));
  padding: 16px;
  position: absolute;
}

.contact-map-card span,
.contact-card-head span,
.contact-info-item span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-map-card strong {
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
}

.contact-map-card p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  margin: 0 auto;
  max-width: 980px;
}

.contact-info-card,
.public-contact-form,
.contact-settings-panel {
  padding: 22px;
}

.public-background-settings {
  margin-top: 18px;
  max-width: 1100px;
}

.public-background-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-background-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  display: grid;
  overflow: hidden;
}

.public-background-preview {
  align-items: center;
  background: #f4eee4;
  color: var(--muted);
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 150px;
}

.public-background-preview img {
  aspect-ratio: 16 / 9;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.public-background-content {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.public-background-content h3 {
  margin: 0;
}

.public-background-content p {
  color: var(--muted);
  margin: 0;
}

.contact-info-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-card-head {
  display: grid;
  gap: 4px;
}

.contact-card-head h3 {
  color: var(--text);
  font-size: 24px;
  margin: 0;
}

.contact-info-list {
  display: grid;
  gap: 10px;
}

.contact-info-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.contact-info-item strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
  white-space: pre-line;
}

.contact-info-item a {
  color: var(--accent-dark);
  font-weight: 900;
  justify-self: start;
  text-decoration: none;
}

.contact-socials {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 12px;
}

.contact-social-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  color: var(--text);
  display: flex;
  gap: 8px;
  min-height: 46px;
  padding: 9px 10px;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.contact-social-link:hover {
  border-color: rgba(111, 31, 47, 0.35);
  box-shadow: 0 10px 20px rgba(39, 25, 20, 0.08);
  transform: translateY(-1px);
}

.contact-social-link svg {
  fill: none;
  flex: 0 0 22px;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}

.contact-social-link span {
  font-size: 13px;
  font-weight: 900;
}

.contact-social-link.instagram {
  color: #9f2d67;
}

.contact-social-link.facebook {
  color: #2457a6;
}

.contact-social-link.tiktok {
  color: #111;
}

.contact-social-link.youtube {
  color: #c92d2d;
}

.public-contact-form {
  display: grid;
  gap: 14px;
}

.public-contact-form .split {
  gap: 12px;
}

.public-cart-dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(36, 29, 25, 0.28);
  max-width: min(460px, calc(100% - 28px));
  padding: 18px;
  width: 460px;
}

.public-account-dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(36, 29, 25, 0.28);
  max-width: min(760px, calc(100% - 28px));
  padding: 18px;
  width: 760px;
}

.public-account-dialog::backdrop {
  background: rgba(36, 29, 25, 0.38);
}

.public-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.public-account-form {
  display: grid;
  gap: 12px;
}

.account-subtabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.account-subtab {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 10px 12px;
}

.account-subtab.active {
  background: #eef5f3;
  color: var(--accent-dark);
}

.account-panel {
  display: none;
}

.account-panel.active {
  display: block;
}

.public-orders {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-top: 16px;
}

.public-order-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.public-order-lines {
  display: grid;
  gap: 4px;
}

.public-order-product {
  align-items: center;
  border-top: 1px solid #f0ece6;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  line-height: 1.2;
  padding-top: 5px;
}

.public-order-product:first-child {
  border-top: 0;
  padding-top: 0;
}

.public-order-product span {
  color: var(--muted);
  font-weight: 800;
  min-width: 0;
  overflow-wrap: anywhere;
}

.public-order-product strong {
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 13px;
}

.repeat-order-button {
  flex: 0 0 auto;
  font-size: 11px;
  min-height: 28px;
  padding: 5px 8px;
}

.customer-order-add-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 86px 86px;
  margin-top: 8px;
  padding-top: 10px;
  align-items: end;
}

.customer-grid {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 140px minmax(190px, 1fr) 130px 100px;
  gap: 10px;
  align-items: end;
}

.customer-filters {
  grid-template-columns: minmax(240px, 1fr) auto;
}

.customer-order-filters {
  align-items: end;
  grid-template-columns: minmax(260px, 1.4fr) minmax(130px, 0.6fr) minmax(180px, 1fr) repeat(2, minmax(145px, 0.7fr)) auto;
}

.customer-order-filters label {
  min-width: 0;
}

.customer-order-filters input,
.customer-order-filters select,
.customer-order-filters button {
  width: 100%;
}

.customer-accordion {
  padding: 0;
  overflow: hidden;
}

.customer-accordion-summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1fr) auto auto auto 22px;
  list-style: none;
  padding: 14px 16px;
}

.customer-accordion-summary::-webkit-details-marker {
  display: none;
}

.customer-accordion-summary::after {
  color: var(--muted);
  content: "⌄";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}

.customer-accordion[open] .customer-accordion-summary::after {
  content: "⌃";
}

.customer-accordion-summary > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.customer-accordion-summary strong {
  color: var(--ink);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.customer-accordion-summary span,
.customer-accordion-summary small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.customer-accordion-summary em {
  border-radius: 999px;
  background: #eef5f3;
  color: var(--accent-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 6px 10px;
}

.customer-accordion-body {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: 14px 16px 16px;
}

.customer-card-main {
  display: flex;
  gap: 12px;
  width: 100%;
}

.customer-card-main .user-edit-form {
  flex: 1;
}

.customer-orders-panel {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  width: 100%;
}

/* Public SEO pages and settings */
.public-site-header-inner {
  grid-template-columns: minmax(164px, .62fr) minmax(520px, 1.8fr) minmax(184px, .7fr);
  max-width: 1320px;
}

.public-brand-button,
.public-tab-button,
.public-mobile-tab-button {
  text-decoration: none;
}

.public-site-header .public-tab-button {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  white-space: nowrap;
}

.public-section-head h1,
.public-about-section h1,
.public-gallery-section h1 {
  color: #1d211e;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  margin: 6px 0 14px;
}

.public-bg-panel.has-public-bg .public-section-head h1 {
  color: #fff;
}

.public-about-section,
.public-gallery-section {
  min-height: calc(100vh - 76px);
  padding: 72px 24px 84px;
}

.public-about-shell,
.public-gallery-shell {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 2;
}

.public-about-shell > .public-section-head,
.public-gallery-shell > .public-section-head {
  max-width: 760px;
}

.public-about-story {
  background: rgba(255, 255, 255, .96);
  border-left: 5px solid #8f2738;
  box-shadow: 0 18px 50px rgba(22, 25, 23, .16);
  color: #353b37;
  font-size: 20px;
  line-height: 1.65;
  margin-top: 34px;
  max-width: 860px;
  padding: 28px 32px;
}

.public-about-story p,
.public-about-values p {
  margin: 0;
}

.public-about-values {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.public-about-values article {
  background: rgba(29, 33, 30, .94);
  border-top: 4px solid #d3a54d;
  color: rgba(255, 255, 255, .8);
  min-height: 150px;
  padding: 24px;
}

.public-about-values strong {
  color: #fff;
  display: block;
  font-size: 21px;
  margin-bottom: 9px;
}

.public-about-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.public-about-actions a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.public-gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.public-gallery-card {
  background: #fff;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(16, 20, 17, .18);
  cursor: zoom-in;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.public-gallery-card img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform .25s ease;
  width: 100%;
}

/* Public menu nutrition and allergen information */
.menu-item-nutrition {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.menu-calorie-badge,
.menu-portion-badge {
  align-items: baseline;
  background: #edf6f2;
  border: 1px solid #c8ddd4;
  border-radius: 5px;
  color: #235f4f;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 3px;
  line-height: 1;
  padding: 6px 8px;
}

.menu-calorie-badge b,
.menu-portion-badge b { font-size: 12px; }

.menu-portion-badge {
  background: #f4efe7;
  border-color: #ddccb1;
  color: #70562f;
}

.menu-allergen-badge {
  align-items: center;
  background: #f7ecef;
  border: 1px solid #dec2ca;
  border-radius: 50%;
  color: #85364e;
  display: inline-flex;
  flex: 0 0 30px;
  font-size: 17px;
  font-weight: 950;
  height: 30px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  width: 30px;
}

.allergen-sulphites { font-size: 8px; }
.allergen-fish,
.allergen-crustaceans,
.allergen-molluscs { background: #e9f3f8; border-color: #bed5e0; color: #286278; }
.allergen-milk,
.allergen-eggs { background: #fff5d9; border-color: #e6d29b; color: #755c19; }
.allergen-gluten,
.allergen-sesame,
.allergen-nuts,
.allergen-peanuts { background: #f5eee3; border-color: #dac8ad; color: #75562c; }
.allergen-soybeans,
.allergen-celery,
.allergen-mustard,
.allergen-lupin { background: #edf5e8; border-color: #c7d9bc; color: #436534; }

.public-allergen-guide {
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(31, 111, 95, .24);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(31, 50, 43, .1);
  box-sizing: border-box;
  margin: 24px auto 0;
  max-width: 900px;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}

.public-allergen-guide-head {
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  padding-bottom: 14px;
}

.public-allergen-guide-head .eyebrow { margin-bottom: 4px; }
.public-allergen-guide-head h2 { color: var(--ink); font-size: 24px; margin: 0; }
.public-allergen-guide-head > p:last-child { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 7px 0 0; max-width: 760px; }

.public-allergen-table {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-allergen-row {
  align-items: center;
  background: #fafbf9;
  border: 1px solid #e1e6e3;
  border-radius: 7px;
  display: grid;
  gap: 11px;
  grid-template-columns: 40px minmax(0, 1fr);
  min-width: 0;
  padding: 10px;
}

.public-allergen-row .menu-allergen-badge { height: 38px; width: 38px; }
.public-allergen-row > span:last-child { display: grid; gap: 3px; min-width: 0; }
.public-allergen-row strong { color: var(--ink); font-size: 13px; line-height: 1.2; }
.public-allergen-row small { color: var(--muted); font-size: 11px; line-height: 1.35; overflow-wrap: anywhere; }

.public-menu-updated-date {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(31, 111, 95, 0.24);
  border-left: 4px solid #7e2638;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(21, 29, 24, 0.09);
  box-sizing: border-box;
  color: #58635d;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  margin: 18px auto 0;
  max-width: 900px;
  min-height: 48px;
  padding: 11px 18px;
  text-align: center;
  width: 100%;
}

.public-menu-updated-date span {
  line-height: 1.35;
}

.public-menu-updated-date time {
  background: #f3f5f2;
  border: 1px solid #dde3de;
  border-radius: 5px;
  color: #7e2638;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 950;
  justify-content: center;
  line-height: 1;
  padding: 7px 9px;
}

@media (max-width: 760px) {
  .public-allergen-guide { margin-top: 18px; padding: 14px; }
  .public-allergen-table { grid-template-columns: minmax(0, 1fr); }
  .public-allergen-guide-head h2 { font-size: 22px; }
  .menu-item-nutrition { gap: 5px; }
  .menu-allergen-badge { flex-basis: 28px; height: 28px; width: 28px; }
  .public-menu-updated-date {
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
    padding: 11px 12px;
  }
}

.public-gallery-card:hover img {
  transform: scale(1.025);
}

.public-gallery-card span {
  background: linear-gradient(transparent, rgba(15, 18, 16, .86));
  bottom: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  left: 0;
  padding: 36px 16px 14px;
  position: absolute;
  right: 0;
  text-align: left;
}

.public-gallery-empty {
  background: rgba(255, 255, 255, .94);
  margin-top: 28px;
  padding: 24px;
}

.public-site-footer {
  display: grid;
  gap: 22px;
}

.public-footer-inner {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.public-footer-inner > div {
  display: grid;
  gap: 4px;
}

.public-footer-inner strong {
  color: #fff;
  font-size: 19px;
}

.public-footer-inner a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
}

.public-footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

.public-site-footer > small {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin: 0 auto;
  max-width: 1180px;
  padding-top: 18px;
  width: 100%;
}

@media (max-width: 1180px) {
  .public-site-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .public-site-header .public-tab-button {
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 760px) {
  .public-about-section,
  .public-gallery-section {
    min-height: calc(100vh - 132px);
    padding: 38px 16px 48px;
  }

  .public-section-head h1,
  .public-about-section h1,
  .public-gallery-section h1 {
    font-size: 36px;
  }

  .public-about-story {
    font-size: 17px;
    margin-top: 24px;
    padding: 22px;
  }

  .public-about-values,
  .public-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .public-about-values article {
    min-height: 0;
  }

  .public-footer-inner {
    align-items: start;
    display: grid;
  }

  .public-footer-inner nav {
    justify-content: flex-start;
  }
}

.panel-title-row {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.panel-title-row h2,
.panel-title-row p {
  margin: 0;
}

.panel-title-row p {
  color: var(--muted);
}

@media (max-width: 760px) {

  .panel-title-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }
}

.customer-orders-panel summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.customer-orders-panel summary::-webkit-details-marker {
  display: none;
}

.customer-orders-panel summary::after {
  content: "⌄";
  color: var(--muted);
  margin-left: 8px;
}

.customer-orders-panel[open] summary::after {
  content: "⌃";
}

.customer-order-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.customer-order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.customer-order-head,
.customer-order-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.customer-order-head > div {
  align-items: center;
  display: flex;
  gap: 10px;
}

.customer-order-head span {
  border-radius: 999px;
  background: #eef5f3;
  color: var(--accent-dark);
  font-weight: 900;
  padding: 4px 9px;
}

.customer-order-items {
  display: grid;
  gap: 7px;
}

.customer-order-row {
  border-top: 1px solid #f0ece6;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 100px 80px 110px;
  padding-top: 7px;
}

.customer-order-row small {
  color: var(--muted);
  font-weight: 800;
}

.customer-account-panel {
  display: grid;
  gap: 12px;
}

.customer-account-form,
.customer-account-entry-form {
  display: grid;
  gap: 8px;
  grid-template-columns: 130px 120px 120px minmax(180px, 1fr) minmax(180px, 1fr) 96px;
  align-items: end;
  margin-top: 12px;
}

.customer-account-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.customer-account-entry {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 70px;
  padding: 10px;
}

.product-search-field {
  position: relative;
}

.product-search-results {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(36, 29, 25, 0.16);
  display: grid;
  gap: 4px;
  left: 0;
  max-height: 240px;
  overflow: auto;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 25;
}

.product-search-results:empty {
  display: none;
}

.product-search-results button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  text-align: left;
}

.product-search-results button:hover {
  background: #eef5f3;
}

.product-search-results button:disabled {
  color: var(--muted);
  cursor: default;
}

.product-search-results span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.customer-extra-text {
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  margin: 3px 6px 0 0;
  padding: 3px 8px;
}


.product-search-stock {
  align-self: start;
  border-radius: 4px;
  background: #e4f3ee;
  color: #175447;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  padding: 4px 6px;
}


.product-search-stock.is-low {
  background: #fbe6e3;
  color: #9b302a;
}


.product-search-stock.is-unlinked {
  background: #eceeed;
  color: #68716d;
}

@media (max-width: 900px) {

  
  .customer-extra-text {
    font-size: 10px;
  }

  .has-touch-keyboard {
    padding-bottom: 0;
  }

  .touch-keyboard,
  .touch-keyboard-toggle,
  .global-keyboard-toggle {
    display: none !important;
  }
}

.public-cart-dialog::backdrop {
  background: rgba(36, 29, 25, 0.38);
}

.public-cart-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.public-cart-head {
  margin-bottom: 14px;
}

.public-cart-head p {
  color: var(--muted);
  margin-bottom: 0;
}

.public-cart-list {
  display: grid;
  gap: 10px;
  max-height: 55vh;
  overflow: auto;
}

.public-repeat-panel {
  border: 1px solid #eadccc;
  border-radius: 8px;
  background: #fff8ef;
  display: grid;
  gap: 9px;
  margin-top: 12px;
  padding: 11px;
}

.public-repeat-panel[hidden] {
  display: none;
}

.public-repeat-panel strong {
  font-size: 14px;
  font-weight: 900;
}

#publicRepeatItems {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

#publicRepeatItems button {
  align-items: center;
  border: 1px solid #e2d0bc;
  border-radius: 999px;
  background: #fffdfa;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

#publicRepeatItems small {
  color: var(--accent-dark);
  font-weight: 900;
}

.cart-order-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
}

.cart-login-note {
  color: var(--muted);
  margin-bottom: 0;
}

.public-cart-item {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 10px;
}

.public-cart-item span,
.cart-empty {
  color: var(--muted);
}

.cart-quantity {
  align-items: center;
  display: flex;
  gap: 8px;
}

.cart-quantity button {
  border: 0;
  border-radius: 999px;
  background: #eef5f3;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 900;
  height: 30px;
  width: 30px;
}


.public-copy h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
}

.public-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.public-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.public-form {
  align-self: center;
}

.public-form h2 {
  margin-bottom: 2px;
}

.public-form .alert {
  margin-bottom: 0;
}


.public-form .primary-btn {
  width: 100%;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 111, 95, 0.14);
}

textarea {
  resize: vertical;
}

.has-touch-keyboard {
  padding-bottom: 250px;
}

.touch-keyboard {
  border-top: 1px solid var(--line);
  background: #fffdfa;
  box-shadow: 0 -18px 45px rgba(28, 18, 15, 0.16);
  bottom: 0;
  left: 0;
  padding: 10px;
  position: fixed;
  right: 0;
  z-index: 1200;
}

.touch-keyboard[hidden] {
  display: none;
}

.touch-keyboard-toggle {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdfa;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  justify-content: center;
  margin-top: 6px;
  min-height: 38px;
  padding: 6px 10px;
  width: 46px;
}

.touch-keyboard-toggle:active {
  background: #eef5f3;
  transform: scale(0.98);
}

.global-keyboard-toggle {
  border-color: rgba(31, 111, 95, 0.26);
  background: #1f6f5f;
  box-shadow: 0 12px 28px rgba(31, 111, 95, 0.24);
  color: #fff;
  margin: 0;
  min-height: 42px;
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  z-index: 1180;
}

.global-keyboard-toggle:active {
  background: var(--accent-dark);
  transform: translateY(-50%) scale(0.98);
}

.touch-keyboard-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 8px;
  max-width: 920px;
}

.touch-keyboard-head strong {
  color: var(--ink);
  font-size: 14px;
}

.touch-keyboard-head button,
.touch-keyboard-keys button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.touch-keyboard-head button {
  padding: 7px 12px;
}

.touch-keyboard-keys {
  display: grid;
  gap: 6px;
  margin: 0 auto;
  max-width: 920px;
}

.touch-keyboard-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.touch-keyboard-keys button {
  min-height: 42px;
  min-width: 42px;
  padding: 8px 10px;
}

.touch-keyboard-keys button:active {
  background: #eef5f3;
  transform: scale(0.98);
}

.touch-keyboard-keys .keyboard-space {
  flex: 1;
  max-width: 260px;
}

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

.primary-btn,
.ghost-btn,
.delete-btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  white-space: nowrap;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  padding: 13px 16px;
  text-align: center;
  text-decoration: none;
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.ghost-btn {
  background: #eef5f3;
  color: var(--accent-dark);
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  text-decoration: none;
}

.reservation-list {
  display: grid;
  gap: 12px;
}

.reservation-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.reservation-print-sheet {
  display: none;
}

.reservation-item {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fffdfa;
}

.reservation-card-top {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-width: 0;
}

.reservation-item.status-pending {
  border-left-color: var(--wine);
  background: #fff7f7;
}

.reservation-item.status-confirmed {
  border-left-color: var(--accent);
  background: #f7fcfa;
}

.reservation-quick-form {
  align-items: center;
}

.reservation-date-badge {
  align-items: center;
  background: #1f1714;
  border-radius: 8px;
  color: #fff;
  display: grid;
  flex: 0 0 128px;
  justify-items: center;
  min-height: 46px;
  padding: 5px;
  text-align: center;
}

.reservation-date-badge span,
.reservation-date-badge small {
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.reservation-date-badge strong {
  color: #f2c36b;
  font-size: 22px;
  line-height: 1;
}

.reservation-summary {
  min-width: 0;
}

.reservation-title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3px;
}

.reservation-title-row h3 {
  margin: 0;
}

.reservation-name-field {
  color: var(--ink);
  display: grid;
  min-width: min(280px, 100%);
  position: relative;
}

.reservation-name-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-name-field input {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  min-height: 34px;
  padding: 2px 34px 2px 0;
}

.reservation-name-field input:focus {
  background: #fff;
  border-color: var(--accent);
  padding-inline: 8px;
}

.reservation-quick-form .reservation-name-field .touch-keyboard-toggle {
  font-size: 13px;
  margin: 0;
  min-height: 28px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  z-index: 2;
}

.reservation-quick-form .reservation-name-field .touch-keyboard-toggle:active {
  transform: translateY(-50%) scale(0.98);
}

.reservation-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.meta,
.note {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.note {
  margin-top: 6px;
}

.reservation-compact-actions {
  flex-basis: 150px;
}

.reservation-compact-actions .status-select {
  min-height: 30px;
  min-width: 0;
  padding: 5px 8px;
}

.reservation-edit-panel {
  position: relative;
}

.reservation-edit-panel summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
  min-height: 30px;
  padding: 5px 8px;
  text-align: center;
}

.reservation-compact-actions .delete-btn {
  min-height: 30px;
  padding: 5px 8px;
}

.reservation-edit-panel summary::-webkit-details-marker {
  display: none;
}

.reservation-edit-panel[open] summary {
  background: #eef5f3;
  border-color: rgba(31, 111, 95, 0.26);
  color: var(--accent-dark);
}

.reservation-edit-form {
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 29, 25, 0.14);
  display: grid;
  gap: 10px;
  min-width: min(520px, calc(100vw - 48px));
  padding: 14px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 12;
}

.reservation-edit-form label {
  font-size: 13px;
  position: relative;
}

.reservation-edit-form input,
.reservation-edit-form textarea {
  padding-right: 40px;
}

.reservation-edit-form .touch-keyboard-toggle {
  font-size: 13px;
  margin: 0;
  min-height: 28px;
  padding: 0;
  position: absolute;
  right: 6px;
  top: 28px;
  width: 30px;
  z-index: 2;
}

.reservation-head {
  align-items: center;
}

.reservation-admin-layout {
  display: grid;
  gap: 16px;
}

.reservation-fast-panel,
.reservation-pending-panel,
.reservation-list-panel {
  border: 1px solid rgba(68, 55, 47, 0.1);
  box-shadow: 0 12px 26px rgba(36, 29, 25, 0.05);
}

.reservation-pending-panel,
.reservation-list-panel {
  padding: 18px;
}

.reservation-fast-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.reservation-fast-head,
.reservation-section-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.reservation-fast-head h2,
.reservation-section-head h2 {
  font-size: 20px;
  margin: 0 0 3px;
}

.reservation-fast-head p,
.reservation-section-head p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.reservation-date-presets,
.reservation-scope-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reservation-date-presets button,
.reservation-scope-tabs a {
  align-items: center;
  border: 1px solid rgba(31, 111, 95, 0.18);
  border-radius: 8px;
  background: #f5f8f6;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  text-decoration: none;
}

.reservation-date-presets button {
  cursor: pointer;
}

.reservation-scope-tabs a.active {
  background: var(--accent);
  color: #fff;
}

.reservation-scope-tabs .ghost-btn {
  margin-left: auto;
  min-height: 36px;
}

.reservation-cashier-print {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.reservation-cashier-print-btn {
  min-height: 36px;
  white-space: nowrap;
}

.reservation-cashier-print small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  max-width: 240px;
}

.reservation-cashier-print small.is-success {
  color: #237052;
}

.reservation-cashier-print small.is-error {
  color: #a3313f;
}

.reservation-fast-form {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(124px, 0.72fr) minmax(104px, 0.52fr) minmax(220px, 1.2fr) minmax(108px, 0.52fr) minmax(150px, 0.8fr) minmax(145px, 0.78fr) minmax(190px, 1fr) auto;
  gap: 8px;
}

.reservation-fast-form label,
.reservation-dialog-grid label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 5px;
  text-transform: uppercase;
}

.reservation-fast-form input,
.reservation-fast-form select,
.reservation-dialog-grid input,
.reservation-dialog-grid select,
.reservation-dialog-grid textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  min-height: 34px;
  padding: 7px 9px;
  text-transform: none;
  width: 100%;
}

.reservation-fast-form input:focus,
.reservation-fast-form select:focus,
.reservation-dialog-grid input:focus,
.reservation-dialog-grid select:focus,
.reservation-dialog-grid textarea:focus {
  border-color: rgba(31, 111, 95, 0.6);
  box-shadow: 0 0 0 3px rgba(31, 111, 95, 0.12);
  outline: 0;
}

.reservation-row-list {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.reservation-day-filter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 2px 1px 8px;
  scrollbar-width: thin;
}

.reservation-day-filter a {
  background: #f5f8f6;
  border: 1px solid rgba(31, 111, 95, 0.2);
  color: var(--accent-dark);
  display: grid;
  flex: 0 0 auto;
  gap: 1px;
  min-width: 112px;
  padding: 8px 10px;
  text-decoration: none;
}

.reservation-day-filter a span,
.reservation-day-filter a small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.reservation-day-filter a strong {
  font-size: 15px;
  font-weight: 950;
}

.reservation-day-filter a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.reservation-day-filter a.active span,
.reservation-day-filter a.active small {
  color: rgba(255, 255, 255, 0.82);
}

.reservation-day-group-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.reservation-day-group {
  background: #fff;
  border: 1px solid rgba(31, 111, 95, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.reservation-day-group[open] {
  border-color: rgba(31, 111, 95, 0.38);
  box-shadow: 0 8px 20px rgba(31, 70, 55, 0.07);
}

.reservation-day-group > summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(150px, 1fr) auto 20px;
  list-style: none;
  min-height: 58px;
  padding: 9px 12px;
}

.reservation-day-group > summary::-webkit-details-marker {
  display: none;
}

.reservation-day-group-date,
.reservation-day-group-summary {
  display: grid;
  gap: 2px;
}

.reservation-day-group-date strong,
.reservation-day-group-summary b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.reservation-day-group-date small,
.reservation-day-group-summary small,
.reservation-day-group-tools > small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.reservation-day-group-summary {
  justify-items: end;
}

.reservation-day-group-arrow {
  border-bottom: 2px solid var(--muted);
  border-right: 2px solid var(--muted);
  height: 8px;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  width: 8px;
}

.reservation-day-group[open] .reservation-day-group-arrow {
  transform: rotate(225deg);
}

.reservation-day-group-tools {
  align-items: center;
  background: #f5f9f7;
  border-top: 1px solid rgba(31, 111, 95, 0.13);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 8px 10px;
}

.reservation-day-group-tools > small {
  margin-right: auto;
}

.reservation-day-group-tools > small.is-success {
  color: #237052;
}

.reservation-day-group-tools > small.is-error {
  color: #a3313f;
}

.reservation-day-group-tools .primary-btn {
  min-height: 34px;
  padding: 6px 11px;
}

.reservation-day-group .reservation-row-list {
  border-top: 1px solid rgba(31, 111, 95, 0.12);
  gap: 0;
  margin-top: 0;
  padding: 8px;
}

.reservation-list-total {
  align-items: center;
  border: 1px solid rgba(31, 111, 95, 0.18);
  border-radius: 10px;
  background: #f4faf7;
  color: var(--accent-dark);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
  padding: 9px 12px;
}

.reservation-list-total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reservation-list-total strong {
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 950;
}

.reservation-row {
  align-items: center;
  border: 1px solid var(--line);
  border-left: 4px solid #d9cec2;
  border-radius: 8px;
  background: #fffdfa;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 7px 9px;
}

.reservation-row-pending {
  border-left-color: #c73737;
  background: #fff6f5;
}

.reservation-row-confirmed {
  border-left-color: var(--accent);
  background: #f7fcfa;
}

.reservation-row-request {
  box-shadow: inset 0 0 0 1px rgba(199, 55, 55, 0.08);
}

.reservation-row-main {
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 8px;
  grid-template-columns: 62px minmax(0, 1fr) 70px 104px;
  min-width: 0;
  padding: 0;
  text-align: left;
}

.reservation-row-time {
  align-items: center;
  border-radius: 8px;
  background: #1f1714;
  color: #f2c36b;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  min-height: 34px;
}

.reservation-row-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.reservation-row-info strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-row-info small,
.reservation-row-info em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-row-info em {
  color: #8b4f13;
  font-weight: 800;
}

.reservation-row-party,
.reservation-status-pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  min-height: 28px;
  padding: 4px 7px;
  white-space: nowrap;
}

.reservation-row-party {
  background: #f6ead8;
  color: #6b3e0e;
}

.reservation-status-pill {
  background: #f1ede8;
  color: var(--muted);
}

.reservation-status-pill.pending {
  background: #ffe2e0;
  color: #b12323;
}

.reservation-status-pill.confirmed {
  background: #def4e9;
  color: #11633f;
}

.reservation-row-actions {
  align-items: center;
  display: grid;
  gap: 5px;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
}

.reservation-row-actions form {
  margin: 0;
}

.reservation-row-actions .primary-btn,
.reservation-row-actions .ghost-btn,
.reservation-row-actions .delete-btn,
.reservation-row-actions .whatsapp-confirm-btn,
.reservation-row-actions .status-select {
  font-size: 11px;
  min-height: 29px;
  padding: 4px 7px;
}

.reservation-row-actions .delete-btn {
  border-radius: 8px;
}

.reservation-pending-panel.is-empty .reservation-row-list {
  margin-top: 10px;
}

.reservation-dialog {
  border: 0;
  border-radius: 12px;
  max-width: min(760px, calc(100vw - 24px));
  padding: 0;
  width: 100%;
}

.reservation-dialog::backdrop {
  background: rgba(21, 17, 14, 0.48);
}

.reservation-dialog-card {
  background: #fffdfa;
  border: 1px solid rgba(68, 55, 47, 0.1);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.reservation-dialog-card header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.reservation-dialog-card header h2 {
  margin: 0;
}

.reservation-dialog-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-dialog-actions {
  display: flex;
  justify-content: flex-end;
}

.reservation-toast {
  bottom: 22px;
  box-shadow: 0 18px 42px rgba(21, 17, 14, 0.24);
  position: fixed;
  right: 22px;
  z-index: 80;
}

.reservation-toast:not([hidden]) {
  align-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 14px;
}

.reservation-toast.is-error:not([hidden]) {
  background: #b42323;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 2mm 5mm 5mm;
  }

  html,
  body {
    background: #fff !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  body:has(.reservation-print-sheet) * {
    visibility: hidden !important;
  }

  body.is-reservation-printing * {
    visibility: hidden !important;
  }

  body.is-reservation-printing .admin-content > :not(.reservation-print-sheet),
  body:has(.reservation-print-sheet) .admin-content > :not(.reservation-print-sheet) {
    display: none !important;
  }

  body:has(.reservation-print-sheet) .reservation-print-sheet,
  body:has(.reservation-print-sheet) .reservation-print-sheet *,
  body.is-reservation-printing .reservation-print-sheet,
  body.is-reservation-printing .reservation-print-sheet * {
    visibility: visible !important;
  }

  
  .reservation-admin-layout,
  .reservation-dialog,
  .reservation-toast,
  .global-keyboard-toggle,
  .alert,
  script {
    display: none !important;
  }

  
  .admin-content {
    display: block !important;
    margin: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .reservation-print-sheet {
    color: #111;
    display: block !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8.5pt;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: 0 !important;
    width: 100%;
  }

  .reservation-print-head {
    align-items: flex-start;
    border-bottom: 2px solid #111;
    display: flex;
    justify-content: space-between;
    margin: 0 0 2mm;
    padding-bottom: 1mm;
  }

  .reservation-print-head h1 {
    font-size: 13pt;
    margin: 0;
  }

  .reservation-print-head p,
  .reservation-print-head span {
    display: block;
    margin: 0;
  }

  .reservation-print-head strong {
    display: block;
    font-size: 9.5pt;
    margin-bottom: 0;
    text-align: right;
  }

  .reservation-print-table {
    border-collapse: collapse;
    margin-bottom: 0;
    table-layout: fixed;
    width: 100%;
  }

  .reservation-print-table th,
  .reservation-print-table td {
    border: 1px solid #111;
    line-height: 1.12;
    padding: 1.3mm 1.2mm;
    text-align: left;
    vertical-align: top;
  }

  .reservation-print-table th {
    background: #efefef !important;
    font-size: 8pt;
    font-weight: 700;
  }

  .reservation-print-table td {
    height: 6mm;
  }

  .reservation-print-table th:nth-child(1),
  .reservation-print-table td:nth-child(1) {
    width: 24%;
  }

  .reservation-print-table th:nth-child(2),
  .reservation-print-table td:nth-child(2) {
    width: 12%;
  }

  .reservation-print-table th:nth-child(3),
  .reservation-print-table td:nth-child(3) {
    width: 9%;
    text-align: center;
  }

  .reservation-print-table th:nth-child(4),
  .reservation-print-table td:nth-child(4) {
    width: 16%;
  }

  .reservation-print-table th:nth-child(5),
  .reservation-print-table td:nth-child(5) {
    width: 15%;
  }

  .reservation-print-total-row td {
    background: #efefef !important;
    font-size: 9pt;
    font-weight: 700;
    height: 7mm;
  }

  .reservation-print-total-row td:nth-child(2) {
    text-align: center;
  }

  .reservation-print-sheet h2 {
    display: none !important;
  }
}

.reservation-status-text {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  padding: 2px 8px;
}

.reservation-status-text.pending {
  background: #f8e8e9;
  color: var(--wine);
}

.reservation-status-text.confirmed {
  background: #e4f2ee;
  color: var(--accent-dark);
}

.delete-btn {
  background: #f8e8e9;
  color: var(--wine);
  padding: 11px 12px;
}

body.is-dragging-sortable {
  cursor: grabbing;
  user-select: none;
}

.menu-admin-layout {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
}

.panel-separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 8px 0;
  width: 100%;
}

.menu-item-summary-media {
  align-items: center;
  background: #f5f0ea;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  text-transform: uppercase;
}

.menu-item-summary-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.menu-item-summary-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.menu-item-summary-main strong,
.menu-item-summary-main small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-item-summary-main strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.menu-item-summary-main small,
.menu-item-summary-meta small {
  color: var(--muted);
  font-size: 11px;
}

.menu-item-summary-meta {
  display: grid;
  gap: 2px;
  justify-items: end;
  min-width: 0;
}

.menu-item-summary-meta b {
  color: var(--accent-dark);
  font-size: 13px;
  white-space: nowrap;
}

.menu-item-summary-price-editor {
  display: grid;
  gap: 4px;
  grid-template-columns: minmax(0, 1fr) 30px;
  max-width: 150px;
  width: 100%;
}

.menu-inline-price-input {
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  height: 32px;
  min-width: 0;
  padding: 4px 6px;
  text-align: right;
  width: 100%;
}

.menu-inline-price-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(35, 128, 101, 0.12);
  outline: 0;
}

.menu-inline-price-save {
  align-items: center;
  border: 1px solid rgba(35, 128, 101, 0.35);
  border-radius: 6px;
  background: #edf7f3;
  color: var(--accent-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  padding: 0;
  width: 30px;
}

.menu-inline-price-save:hover {
  background: #dff1ea;
}

.menu-inline-price-save.is-saving {
  cursor: wait;
  opacity: 0.72;
}

.menu-inline-price-save.is-success {
  background: #dff3e7;
  border-color: #74b78e;
  color: #1f7a46;
}

.menu-inline-price-save.is-error {
  background: #f8e8e8;
  border-color: #d89a9a;
  color: #a62f2f;
}

.menu-item-summary-state {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  padding: 6px 8px;
  text-align: center;
}

.menu-item-summary-state.is-active {
  background: #e8f6ee;
  color: #1f7a46;
}

.menu-item-summary-state.is-passive {
  background: #f4e7e7;
  color: #9d2f2f;
}

.menu-item-summary-state.is-chef {
  background: rgba(196, 131, 43, 0.15);
  color: #8b5516;
}

.menu-item-summary-active-toggle {
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  min-width: 58px;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.menu-item-summary-active-toggle:hover {
  border-color: currentColor;
  transform: translateY(-1px);
}

.menu-item-summary-active-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.menu-item-summary-active-toggle.is-saving {
  cursor: wait;
  min-width: 92px;
  opacity: 0.72;
}

.menu-item-summary-active-toggle.is-success {
  box-shadow: 0 0 0 2px rgba(35, 128, 101, 0.14);
}

.menu-item-summary-active-toggle.is-error {
  background: #fff0f0;
  border-color: #c95454;
  color: #a62f2f;
}

.menu-item-summary-arrow::before {
  border-bottom: 2px solid var(--muted);
  border-right: 2px solid var(--muted);
  content: "";
  display: block;
  height: 8px;
  margin: 0 auto;
  transform: rotate(45deg);
  transition: transform 0.16s ease;
  width: 8px;
}

.menu-item-media-cell {
  min-width: 0;
}

.menu-item-main-fields {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.menu-item-main-fields textarea {
  min-height: 42px;
  resize: vertical;
}

.menu-item-meta-fields {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.menu-item-meta-fields .compact-check {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 40px;
}

.menu-item-meta-fields label {
  font-size: 12px;
  position: relative;
}

.menu-item-meta-fields input {
  padding: 9px 10px;
}

.menu-image-field {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.menu-image-field img,
.menu-image-preview img {
  border-radius: 8px;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.menu-image-preview {
  border: 0;
  background: transparent;
  cursor: zoom-in;
  justify-self: start;
  padding: 0;
}

.menu-image-field input[type="file"] {
  padding: 8px;
}

.menu-item-actions {
  display: grid;
  gap: 6px;
  align-content: start;
}

.menu-item-actions form {
  margin: 0;
}

.menu-item-actions .primary-btn,
.menu-item-actions .delete-btn {
  min-height: 38px;
  padding: 8px 9px;
  width: 100%;
}

.menu-item-actions .primary-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.menu-item-save-status {
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  min-height: 14px;
  text-align: center;
}

.menu-item-save-status.is-saving {
  color: var(--muted);
}

.menu-item-save-status.is-success {
  color: #1f7a46;
}

.menu-item-save-status.is-error {
  color: #a62f2f;
}

.menu-image-path {
  font-size: 13px;
}

.image-lightbox {
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  max-width: min(920px, calc(100% - 28px));
  padding: 16px;
  position: relative;
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.image-lightbox img {
  display: block;
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
}

.image-lightbox strong {
  display: block;
  margin-top: 10px;
  text-align: center;
}

.image-lightbox-close {
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 900;
  padding: 9px 12px;
  position: absolute;
  right: 12px;
  top: 12px;
}

.reservation-item h3,
.meta,
.note {
  overflow-wrap: anywhere;
}


.alert {
  border-radius: 8px;
  padding: 16px;
}

.alert-success {
  background: #e4f2ee;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.alert-error {
  background: #f8e8e9;
  color: var(--wine);
  margin-bottom: 16px;
}

.error-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

@media (max-width: 860px) {

  .reservation-fast-head,
  .reservation-section-head,
  .reservation-head {
    align-items: stretch;
    flex-direction: column;
  }

  .reservation-date-presets,
  .reservation-scope-tabs {
    width: 100%;
  }

  .reservation-scope-tabs .ghost-btn {
    margin-left: 0;
    width: 100%;
  }

  .reservation-cashier-print {
    align-items: stretch;
    display: grid;
    width: 100%;
  }

  .reservation-cashier-print-btn {
    width: 100%;
  }

  .reservation-day-filter {
    margin-inline: -2px;
  }

  .reservation-day-filter a {
    min-width: 104px;
  }

  .reservation-day-group > summary {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto 16px;
    padding: 8px 9px;
  }

  .reservation-day-group-date strong,
  .reservation-day-group-summary b {
    font-size: 13px;
  }

  .reservation-day-group-tools {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .reservation-day-group-tools .primary-btn {
    width: 100%;
  }

  .reservation-day-group .reservation-row-list {
    padding: 6px;
  }

  .reservation-fast-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-row {
    grid-template-columns: 1fr;
  }

  .reservation-row-main {
    grid-template-columns: 64px minmax(0, 1fr) 70px;
  }

  .reservation-status-pill {
    grid-column: 2 / -1;
    justify-self: start;
    min-height: 26px;
  }

  .reservation-row-actions {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .reservation-row-actions > *,
  .reservation-row-actions .status-select,
  .reservation-row-actions .primary-btn,
  .reservation-row-actions .ghost-btn,
  .reservation-row-actions .delete-btn,
  .reservation-row-actions .whatsapp-confirm-btn {
    width: 100%;
  }

  .reservation-dialog {
    max-height: calc(100vh - 20px);
  }

  .reservation-dialog-card {
    max-height: calc(100vh - 20px);
    overflow: auto;
  }

  .reservation-dialog-grid {
    grid-template-columns: 1fr;
  }

  
  .public-hero,
  .contact-grid,
  .public-background-grid {
    grid-template-columns: 1fr;
  }

  .public-bg-panel.has-public-bg {
    min-height: calc(100dvh - 130px);
    padding: 28px 16px;
  }

  .public-bg-panel.has-public-bg .public-hero {
    min-height: calc(100dvh - 190px);
  }

  .admin-content {
    padding: 20px 12px;
    width: 100%;
  }

  .public-hero {
    min-height: auto;
    gap: 22px;
  }

  .public-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .public-menu-search {
    grid-template-columns: 1fr;
  }

  .public-menu-search span {
    padding-bottom: 0;
  }

  .public-tab-button {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
  }

  .contact-map {
    height: 300px;
  }

  .contact-map-feature {
    height: 380px;
  }

  .contact-map-card {
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 13px;
  }

  .contact-socials {
    grid-template-columns: 1fr;
  }

  .public-copy h1 {
    font-size: 38px;
  }

  .public-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .reservation-item {
    flex-direction: column;
  }

  .reservation-card-top {
    align-items: stretch;
    flex-direction: column;
  }

  .reservation-edit-form {
    min-width: 0;
    position: static;
    width: 100%;
  }

  
  .menu-item-meta-fields,
  .customer-account-form,
  .customer-account-entry-form,
  .customer-account-entry {
    grid-template-columns: 1fr;
  }

  .menu-item-summary-meta,
  .menu-item-summary-state {
    grid-column: 3 / 4;
    justify-self: start;
  }

  .menu-item-summary-state {
    margin-top: 4px;
  }

  .menu-item-summary-arrow {
    grid-column: 4;
    grid-row: 1 / span 3;
  }
}

@media (max-width: 520px) {
  .reservation-fast-panel,
  .reservation-pending-panel,
  .reservation-list-panel {
    padding: 14px;
  }

  .reservation-fast-form {
    grid-template-columns: 1fr;
  }

  .reservation-row-main {
    align-items: start;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .reservation-row-time {
    font-size: 15px;
    min-height: 36px;
  }

  .reservation-row-party,
  .reservation-status-pill {
    justify-self: start;
  }

  .reservation-row-party {
    grid-column: 2;
    grid-row: 2;
  }

  .reservation-status-pill {
    grid-column: 2;
    grid-row: 3;
  }

  .reservation-row-actions {
    grid-template-columns: 1fr;
  }

  .reservation-toast {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .public-shell {
    width: min(100% - 20px, 420px);
    padding: 18px 0;
  }

  .public-tabs {
    gap: 6px;
  }

  .public-tab-button {
    font-size: 14px;
  }

  .public-logo-wrap {
    margin-bottom: 4px;
  }

  .public-logo {
    width: min(95px, 32vw);
  }

  .public-cart-button {
    right: 10px;
    top: 10px;
  }

  .public-account-button {
    right: 10px;
    top: 62px;
  }

  .public-whatsapp-button {
    bottom: 12px;
    min-height: 48px;
    padding: 0 14px;
    right: 12px;
  }

  .cart-toast {
    left: 10px;
    right: 10px;
    top: 62px;
    text-align: center;
  }

  .public-order-prompt {
    grid-template-columns: 1fr;
  }

  .public-order-prompt,
  .public-service-panel {
    padding: 12px;
  }

  .public-help-section {
    padding: 30px 0 18px;
  }

  .public-help-grid {
    grid-template-columns: 1fr;
  }

  .public-help-info {
    padding: 16px;
  }

  .public-service-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-service-actions button {
    min-height: 40px;
  }

  .public-help-form .public-service-actions,
  .public-help-form .public-service-actions-compact {
    grid-template-columns: 1fr;
  }

  .public-help-form .public-service-actions button {
    min-height: 62px;
  }

  .public-cart-dialog {
    padding: 14px;
  }

  .public-cart-item {
    grid-template-columns: 1fr;
  }

  .menu-item {
    align-items: center;
    display: grid;
    column-gap: 10px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    row-gap: 4px;
  }

  .menu-item:not(:has(.public-menu-image-preview)) {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-item .public-menu-image-preview {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .menu-item-content {
    grid-column: 2;
    min-width: 0;
  }

  .menu-item:not(:has(.public-menu-image-preview)) .menu-item-content {
    grid-column: 1;
  }

  .menu-item-content strong {
    font-size: 15px;
    line-height: 1.22;
  }

  .menu-item-buy {
    align-self: center;
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-content: flex-end;
    min-width: 0;
    width: auto;
  }

  .menu-item:not(:has(.public-menu-image-preview)) .menu-item-buy {
    grid-column: 2;
  }

  .menu-item-buy span {
    font-size: 14px;
  }

  .public-account-grid,
  .customer-order-add-form,
  .customer-grid,
  .customer-filters,
  .customer-order-filters {
    grid-template-columns: 1fr;
  }

  .customer-accordion-summary {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .customer-accordion-summary::after {
    justify-self: start;
  }

  .customer-order-row {
    grid-template-columns: 1fr;
  }

  .customer-card-main,
  .customer-order-head,
  .customer-order-row {
    align-items: stretch;
    flex-direction: column;
  }

  .public-copy h1 {
    font-size: 32px;
  }

  .public-form,
  .public-contact-form,
  .contact-info-card {
    padding: 18px;
  }
}

/* Work calendar */

/* Enhanced management login */

/* Public experience refresh */
.public-shell {
  background: #f6f7f5;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  margin: 0;
  max-width: none;
  min-height: 100vh;
  padding: 0;
  width: 100%;
}

.public-site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(29, 33, 30, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}

.public-site-header-inner {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(190px, 0.72fr) minmax(420px, 1.5fr) minmax(190px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 76px;
  padding: 8px 20px;
}

.public-brand-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #1d211e;
  cursor: pointer;
  display: inline-flex;
  gap: 11px;
  justify-self: start;
  min-width: 0;
  padding: 0;
  text-align: left;
}

.public-brand-button .public-logo {
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.public-brand-button > span {
  display: grid;
  line-height: 1.02;
}

.public-brand-button strong {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
}

.public-brand-button small {
  color: #7e2638;
  font-size: 10px;
  font-weight: 900;
  margin-top: 4px;
  text-transform: uppercase;
}

.public-site-header .public-tabs {
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  justify-content: center;
  margin: 0;
}

.public-site-header .public-tab-button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #414843;
  min-width: 0;
  padding: 10px 13px;
  position: relative;
}

.public-site-header .public-tab-button::after {
  background: #7e2638;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 13px;
  opacity: 0;
  position: absolute;
  right: 13px;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.public-site-header .public-tab-button:hover,
.public-site-header .public-tab-button.active {
  background: #f4f5f2;
  color: #1f5e50;
}

.public-site-header .public-tab-button.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.public-header-actions {
  align-items: center;
  display: flex;
  gap: 7px;
  justify-self: end;
}

.public-site-header .public-language-switcher {
  background: #f1f3f0;
  border: 1px solid #dfe3de;
  border-radius: 6px;
  gap: 2px;
  margin: 0 3px 0 0;
  padding: 3px;
}

.public-site-header .public-language-switcher a {
  background: transparent;
  border: 0;
  border-radius: 4px;
  min-width: 32px;
  padding: 6px 7px;
}

.public-site-header .public-language-switcher a.active {
  background: #1d211e;
  color: #fff;
}

.public-header-icon-button,
.public-site-header .public-account-button,
.public-site-header .public-cart-button {
  align-items: center;
  background: #fff;
  border: 1px solid #d9ded9;
  border-radius: 6px;
  box-shadow: none;
  color: #1d211e;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: relative;
  right: auto;
  top: auto;
  width: 40px;
  z-index: auto;
}

.public-header-icon-button:hover {
  border-color: #1f6f5f;
  color: #1f6f5f;
}

.public-header-icon-button svg,
.public-mobile-nav svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

.public-site-header .public-cart-button span {
  align-items: center;
  background: #7e2638;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 9px;
  height: 18px;
  justify-content: center;
  min-width: 18px;
  padding: 0 4px;
  position: absolute;
  right: -6px;
  top: -6px;
}

.public-mobile-nav {
  display: none;
}

.public-tab-panel {
  min-height: calc(100vh - 76px);
}

.public-bg-panel.has-public-bg {
  margin-left: 0;
  min-height: calc(100vh - 76px);
  padding: 54px max(24px, calc((100vw - 1180px) / 2));
  width: 100%;
}

.public-bg-panel.has-public-bg::before {
  filter: blur(0.7px);
  transform: scale(1.01);
}

.public-bg-panel.has-public-bg::after {
  background: rgba(16, 18, 16, 0.56);
}

.public-bg-panel.has-public-bg .public-hero {
  min-height: calc(100vh - 184px);
}

.public-hero {
  gap: 68px;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 430px);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 150px);
}

.public-copy {
  padding: 28px 0;
}

.public-copy .eyebrow {
  color: #f0c978;
  font-size: 12px;
  margin-bottom: 13px;
}

.public-copy h1 {
  color: #fff;
  font-family: inherit;
  font-size: 60px;
  line-height: 1.02;
  margin: 0 0 14px;
  max-width: 720px;
}

.public-hero-title {
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 14px;
  max-width: 610px;
}

.public-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
  max-width: 570px;
}

.public-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.public-hero-actions button {
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  min-height: 43px;
  padding: 10px 17px;
}

.public-hero-primary {
  background: #1f6f5f;
  border: 1px solid #1f6f5f;
  color: #fff;
}

.public-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.public-hero-meta {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 8px 18px;
  margin-top: 19px;
}

.public-hero-meta a {
  color: #fff;
  text-decoration: none;
}

.public-form {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(8, 12, 9, 0.3);
  gap: 11px;
  padding: 23px;
  position: relative;
}

.reservation-honeypot {
  clip-path: inset(50%);
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  white-space: nowrap;
  width: 1px;
}

.public-form h2 {
  color: #1d211e;
  font-family: inherit;
  font-size: 25px;
}

.public-form label,
.public-contact-form label,
.public-service-panel label {
  color: #343a36;
  font-size: 13px;
  font-weight: 900;
}

.public-form input,
.public-form select,
.public-form textarea,
.public-contact-form input,
.public-contact-form select,
.public-contact-form textarea,
.public-service-panel input,
.public-service-panel select,
.public-service-panel textarea {
  background: #fff;
  border-color: #d8ded8;
  border-radius: 6px;
}

.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus,
.public-contact-form input:focus,
.public-contact-form select:focus,
.public-contact-form textarea:focus {
  border-color: #1f6f5f;
  box-shadow: 0 0 0 3px rgba(31, 111, 95, 0.11);
  outline: 0;
}

.public-form .primary-btn,
.public-contact-form .primary-btn {
  background: #7e2638;
  border-color: #7e2638;
  min-height: 44px;
}

.public-menu-section,
.public-contact-section,
.public-help-section {
  padding: 52px 24px 64px;
}

.public-menu-section > .public-section-head,
.public-menu-section > .public-menu-tools,
.public-menu-section > .public-order-prompt,
.public-menu-section > .menu-accordion,
.public-menu-section > .public-allergen-guide,
.public-contact-section > .public-section-head,
.public-contact-section > .contact-map,
.public-contact-section > .contact-grid {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.public-section-head {
  margin-bottom: 24px;
}

.public-section-head h2 {
  font-family: inherit;
  font-size: 42px;
}

.public-menu-section > .public-section-head {
  max-width: 820px;
}

.public-menu-tools {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 48, 40, 0.14);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(21, 29, 24, 0.1);
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  max-width: 900px;
  padding: 13px;
  position: sticky;
  top: 88px;
  z-index: 12;
}

.public-menu-search {
  margin: 0;
  max-width: none;
}

.public-menu-search input {
  border-color: #d9ded9;
  border-radius: 6px;
  min-height: 43px;
}

.public-menu-category-rail {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 1px 0 3px;
  scrollbar-color: #adb8b1 transparent;
  scrollbar-width: thin;
}

.public-menu-category-rail button {
  background: #f2f4f1;
  border: 1px solid #dbe0db;
  border-radius: 6px;
  color: #323a35;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
}

.public-menu-category-rail button:hover,
.public-menu-category-rail button:focus-visible {
  background: #1f6f5f;
  border-color: #1f6f5f;
  color: #fff;
}

.public-menu-section > .public-order-prompt,
.menu-accordion {
  max-width: 900px;
}

.public-order-prompt {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(31, 48, 40, 0.14);
  box-shadow: 0 10px 28px rgba(21, 29, 24, 0.08);
}

.menu-accordion {
  gap: 12px;
}

.menu-category {
  border-color: rgba(30, 37, 32, 0.14);
  box-shadow: 0 12px 34px rgba(20, 26, 22, 0.1);
  scroll-margin-top: 205px;
}

.menu-category summary {
  min-height: 104px;
  position: relative;
}

.menu-category summary.has-menu-background {
  background-image: linear-gradient(rgba(15, 20, 17, 0.48), rgba(15, 20, 17, 0.48)), var(--menu-category-bg-image);
}

.menu-items {
  background: #fff;
  padding: 8px 20px;
}

.menu-item {
  align-items: center;
  min-height: 82px;
  padding: 12px 3px;
  transition: background 0.16s ease, padding 0.16s ease;
}

@supports (content-visibility: auto) {
  .menu-item {
    content-visibility: auto;
    contain-intrinsic-size: auto 82px;
  }
}

.menu-item:hover {
  background: #f7f8f6;
  padding-left: 8px;
  padding-right: 8px;
}

.menu-item-image,
.public-menu-image-preview {
  flex-basis: 64px;
  height: 64px;
  width: 64px;
}

.menu-item-content strong {
  color: #222824;
  font-size: 16px;
}

.menu-item-content p {
  font-size: 13px;
  line-height: 1.4;
}

.menu-item-buy {
  min-width: 128px;
}

.menu-item-buy > span {
  color: #7e2638;
}

.menu-add-button {
  background: #1f6f5f;
  height: 38px;
  transition: background-color 0.14s ease, transform 0.14s ease;
  width: 38px;
}

.menu-add-button.is-added {
  background: #7e2638;
  transform: scale(0.9);
}

@media (hover: none) {
  .menu-item:hover {
    background: #fff;
    padding-left: 3px;
    padding-right: 3px;
  }
}

.public-help-section {
  background: #edf1ed;
}

.public-help-shell {
  max-width: 1080px;
}

.public-help-info {
  background: #1f5e50;
  border: 0;
  box-shadow: 0 18px 42px rgba(18, 42, 34, 0.16);
}

.public-service-panel {
  background: #fff;
  border-color: #d8ded8;
  box-shadow: 0 18px 42px rgba(20, 29, 24, 0.1);
}

.public-service-actions button {
  border-color: #d8ded8;
  background: #f8f9f7;
}

.public-service-actions button:hover,
.public-service-actions button:focus-visible {
  background: #edf5f2;
}

.public-contact-section > .public-section-head,
.public-contact-section > .contact-map,
.public-contact-section > .contact-grid {
  max-width: 1080px;
}

.contact-map-feature {
  border: 0;
  box-shadow: 0 22px 52px rgba(18, 24, 20, 0.18);
  height: 450px;
}

.contact-map-card {
  border-color: #e2e5e1;
  box-shadow: 0 18px 44px rgba(18, 24, 20, 0.18);
}

.contact-grid {
  gap: 20px;
}

.contact-info-card,
.public-contact-form {
  border-color: #dce1dc;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 30, 26, 0.09);
}

.contact-info-item {
  background: #f7f8f6;
  border-color: #e1e5e1;
}

.contact-social-link {
  border-radius: 6px;
}

.public-whatsapp-button {
  animation: none;
  border: 2px solid rgba(255, 255, 255, 0.9);
  bottom: 20px;
  box-shadow: 0 14px 34px rgba(22, 114, 61, 0.28);
  min-height: 48px;
}

.cart-toast {
  background: #1f6f5f;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(18, 31, 25, 0.24);
  right: 22px;
  top: 90px;
}

.public-cart-dialog,
.public-account-dialog {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(15, 19, 16, 0.34);
}

.site-footer {
  background: #1d211e;
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 20px;
}

@media (max-width: 980px) {
  .public-site-header-inner {
    gap: 10px;
    grid-template-columns: auto 1fr auto;
  }

  .public-brand-button > span {
    display: none;
  }

  .public-site-header .public-tab-button {
    padding-left: 9px;
    padding-right: 9px;
  }

  .public-hero {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  }

  .public-copy h1 {
    font-size: 46px;
  }

  .public-hero-title {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .public-shell {
    padding-bottom: 70px;
  }

  .public-site-header-inner {
    gap: 8px;
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 6px 12px;
  }

  .public-brand-button .public-logo {
    height: 46px;
    width: 46px;
  }

  .public-brand-button > span {
    display: grid;
  }

  .public-brand-button strong {
    font-size: 15px;
  }

  .public-brand-button small {
    font-size: 9px;
  }

  .public-site-header .public-tabs {
    display: none;
  }

  .public-site-header .public-language-switcher {
    display: flex;
    flex: 0 0 auto;
    height: 42px;
    margin: 0;
    padding: 3px;
  }

  .public-site-header .public-language-switcher a {
    align-items: center;
    display: inline-flex;
    font-size: 11px;
    justify-content: center;
    min-height: 34px;
    min-width: 30px;
    padding: 0 5px;
  }

  .public-header-actions {
    gap: 5px;
  }

  .public-header-icon-button,
  .public-site-header .public-account-button,
  .public-site-header .public-cart-button {
    height: 42px;
    width: 42px;
  }

  .public-mobile-nav {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #d9ded9;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: 0;
    padding: 5px max(6px, env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-left));
    position: fixed;
    right: 0;
    z-index: 60;
  }

  .public-mobile-tab-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: #59615c;
    display: grid;
    font-size: 10px;
    font-weight: 900;
    gap: 2px;
    justify-items: center;
    min-height: 54px;
    min-width: 0;
    padding: 4px 2px;
  }

  .public-mobile-tab-button.active {
    color: #7e2638;
  }

  .public-mobile-tab-button span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .public-tab-panel {
    min-height: calc(100vh - 132px);
  }

  .public-bg-panel.has-public-bg {
    min-height: auto;
    padding: 34px 16px 42px;
  }

  .public-bg-panel.has-public-bg .public-hero {
    min-height: auto;
  }

  .public-hero {
    gap: 26px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .public-copy {
    padding: 18px 0 0;
    text-align: center;
  }

  .public-copy h1 {
    font-size: 39px;
    margin-left: auto;
    margin-right: auto;
  }

  .public-hero-title {
    font-size: 21px;
    margin-left: auto;
    margin-right: auto;
  }

  .public-copy p:not(.eyebrow) {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .public-hero-actions,
  .public-hero-meta {
    justify-content: center;
  }

  .public-hero-meta span {
    flex-basis: 100%;
  }

  .public-form {
    padding: 18px;
  }

  .public-menu-section,
  .public-contact-section,
  .public-help-section {
    padding: 34px 12px 44px;
  }

  .public-section-head h2 {
    font-size: 34px;
  }

  .public-menu-tools {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    margin-left: -12px !important;
    margin-right: -12px !important;
    padding: 10px 12px;
    top: 62px;
    width: calc(100% + 24px) !important;
  }

  .public-menu-search {
    grid-template-columns: 1fr;
  }

  .public-menu-search span {
    padding-bottom: 0;
  }

  .menu-category {
    scroll-margin-top: 185px;
  }

  .menu-category summary {
    min-height: 92px;
  }

  .menu-items {
    padding: 6px 12px;
  }

  .menu-item {
    align-items: center;
    display: grid;
    gap: 8px 10px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    min-height: 74px;
  }

  .menu-item-image,
  .public-menu-image-preview {
    flex-basis: 54px;
    height: 54px;
    width: 54px;
  }

  .menu-item-content strong {
    font-size: 14px;
  }

  .menu-item-content p {
    font-size: 12px;
  }

  .menu-item-buy {
    gap: 6px;
    min-width: 96px;
  }

  .menu-add-button {
    height: 36px;
    width: 36px;
  }

  .public-order-prompt {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .public-help-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .public-help-info {
    padding: 18px;
  }

  .public-service-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-map-feature {
    height: 420px;
  }

  .contact-map-card {
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 13px;
  }

  .public-whatsapp-button {
    bottom: 79px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    right: 12px;
    width: 48px;
  }

  .public-whatsapp-button span {
    display: none;
  }

  .cart-toast {
    left: 12px;
    right: 12px;
    top: 72px;
  }

  .site-footer {
    margin-bottom: -70px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .public-brand-button > span {
    display: none;
  }

  .public-copy h1 {
    font-size: 34px;
  }

  .public-form .split,
  .public-contact-form .split {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .menu-item-image,
  .public-menu-image-preview {
    flex-basis: 48px;
    height: 48px;
    width: 48px;
  }

  .menu-item-buy {
    grid-column: 2;
    justify-content: space-between;
    margin-left: 0;
    min-width: 0;
    width: 100%;
  }

  .public-service-actions,
  .public-help-form .public-service-actions,
  .public-help-form .public-service-actions-compact {
    grid-template-columns: 1fr;
  }
}

/* Inventory stock take */

.is-unlinked .inventory-link-status {
  background: #fbe9df;
  color: #9b3f25;
}

.has-change .inventory-stock-difference strong {
  color: #a45d09;
}

/* Generic inventory stock take categories */

/* Categorized reports navigation */

/* Categorized settings navigation */

/* Staff meal planning */
/* Inventory production and yield tracking */

/* Menu product and inventory connections */

/* Table tracking workspace refresh */

/* Public help availability and contact notifications */
.public-help-section.has-public-bg {
  background: transparent;
}

.public-help-availability {
  background: #fff4de;
  border: 1px solid #dfb76d;
  border-radius: 6px;
  color: #684914;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  margin: 10px 0 0;
  padding: 10px 12px;
}

.public-help-form .public-service-actions button:disabled {
  background: #f0f1ef;
  border-color: #d7dbd7;
  color: #8b918d;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Table tracking color system */

/* Final public SEO page overrides */
.public-site-header-inner {
  grid-template-columns: minmax(164px, .62fr) minmax(520px, 1.8fr) minmax(184px, .7fr);
  max-width: 1320px;
}

.public-site-header .public-tab-button {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.public-bg-panel.has-public-bg .public-section-head h1 {
  color: #fff;
}

@media (max-width: 1180px) {
  .public-site-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .public-site-header .public-tab-button {
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 760px) {
  .public-site-header-inner {
    grid-template-columns: 1fr auto;
  }
}

/* Public about page */
.public-about-section,
.public-about-section.has-public-bg {
  background: #20251f;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: 0;
}

.public-about-section.has-public-bg::before {
  background-position: center;
  filter: none;
  transform: none;
}

.public-about-section.has-public-bg::after {
  background:
    linear-gradient(90deg, rgba(14, 18, 15, .9) 0%, rgba(14, 18, 15, .68) 48%, rgba(14, 18, 15, .34) 100%),
    linear-gradient(180deg, rgba(14, 18, 15, .08) 45%, rgba(14, 18, 15, .86) 100%);
}

.public-about-shell {
  margin: 0;
  max-width: none;
  width: 100%;
}

.public-about-hero {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  min-height: 650px;
  padding: 72px 24px 92px;
  width: min(1180px, 100%);
}

.public-about-mark {
  display: block;
  filter: invert(1);
  height: auto;
  margin-bottom: 24px;
  opacity: .92;
  width: 92px;
}

.public-about-hero .eyebrow {
  color: #efc977;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.public-about-hero h1 {
  color: #fff;
  font-family: inherit;
  font-size: 68px;
  line-height: 1;
  margin: 0;
  max-width: 760px;
}

.public-about-lead {
  color: rgba(255, 255, 255, .86);
  font-size: 21px;
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 680px;
}

.public-about-hero-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 32px;
}

.public-about-hero-meta span {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
}

.public-about-hero-meta span::before {
  background: #d8af5b;
  content: "";
  height: 6px;
  width: 6px;
}

.public-about-body {
  background: #f7f5f0;
  color: #242925;
}

.public-about-story-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.25fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 84px 24px 70px;
}

.public-about-story-heading .eyebrow,
.public-about-visit .eyebrow {
  color: #8f2738;
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.public-about-story-heading h2 {
  color: #202520;
  font-family: inherit;
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.public-about-story-copy {
  border-top: 1px solid #cfc7ba;
  padding-top: 24px;
}

.public-about-story-copy > p {
  color: #4c554f;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 20px;
}

.public-about-story-copy .public-about-signature {
  border-left: 4px solid #1f6f5f;
  color: #202520;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  margin: 30px 0 0;
  padding: 4px 0 4px 20px;
}

.public-about-values {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px 84px;
}

.public-about-values article {
  background: #fff;
  border: 1px solid #ddd7cd;
  border-radius: 6px;
  color: #505951;
  min-height: 220px;
  padding: 28px;
}

.public-about-values article:nth-child(1) {
  border-top: 5px solid #8f2738;
}

.public-about-values article:nth-child(2) {
  border-top: 5px solid #1f6f5f;
}

.public-about-values article:nth-child(3) {
  border-top: 5px solid #d2a64f;
}

.public-about-values article > span {
  color: #968d82;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 30px;
}

.public-about-values strong {
  color: #202520;
  display: block;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.public-about-values p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.public-about-visit {
  align-items: center;
  background: #173f35;
  color: #fff;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(300px, 1.15fr) minmax(260px, .8fr) auto;
  padding: 54px max(24px, calc((100vw - 1180px) / 2));
}

.public-about-visit .eyebrow {
  color: #e7c473;
}

.public-about-visit h2 {
  color: #fff;
  font-family: inherit;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.public-about-visit > div > p:last-child {
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.public-about-visit dl {
  border-left: 1px solid rgba(255, 255, 255, .24);
  display: grid;
  gap: 15px;
  margin: 0;
  padding-left: 28px;
}

.public-about-visit dt {
  color: #e7c473;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.public-about-visit dd {
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

.public-about-visit dd a {
  color: inherit;
  text-decoration: none;
}

.public-about-actions {
  align-items: stretch;
  display: grid;
  gap: 9px;
  margin: 0;
  min-width: 160px;
}

.public-about-actions a {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  text-align: center;
  text-decoration: none;
}

.public-about-actions .primary-btn {
  background: #8f2738;
  border-color: #8f2738;
  color: #fff;
}

.public-about-actions .ghost-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, .52);
  color: #fff;
}

@media (max-width: 900px) {
  .public-about-hero {
    min-height: 580px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .public-about-hero h1 {
    font-size: 52px;
  }

  .public-about-story-grid {
    gap: 36px;
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .public-about-values {
    grid-template-columns: 1fr;
  }

  .public-about-values article {
    min-height: 0;
  }

  .public-about-values article > span {
    margin-bottom: 18px;
  }

  .public-about-visit {
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }

  .public-about-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .public-about-hero {
    min-height: 520px;
    padding: 54px 16px 64px;
  }

  .public-about-mark {
    margin-bottom: 18px;
    width: 70px;
  }

  .public-about-hero h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .public-about-lead {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 16px;
  }

  .public-about-hero-meta {
    align-items: flex-start;
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

  .public-about-story-grid {
    gap: 26px;
    padding: 50px 16px 44px;
  }

  .public-about-story-heading h2 {
    font-size: 34px;
  }

  .public-about-story-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .public-about-story-copy .public-about-signature {
    font-size: 19px;
    padding-left: 16px;
  }

  .public-about-values {
    gap: 12px;
    padding: 0 16px 54px;
  }

  .public-about-values article {
    padding: 22px;
  }

  .public-about-values strong {
    font-size: 21px;
  }

  .public-about-visit {
    gap: 28px;
    grid-template-columns: 1fr;
    padding: 42px 16px;
  }

  .public-about-visit h2 {
    font-size: 29px;
  }

  .public-about-visit dl {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
    padding-left: 0;
    padding-top: 22px;
  }

  .public-about-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.public-gallery-card.public-menu-image-preview {
  flex-basis: auto;
  height: auto;
  min-height: 0;
  width: 100%;
}

.public-gallery-shell > .public-section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}
