:root {
  --ink: #2a2020;
  --ink-soft: #756560;
  --paper: #fffaf1;
  --surface: #fffdf8;
  --line: #e7dac8;
  --green: #5e282e;
  --green-2: #7b3439;
  --green-pale: #f3e4e1;
  --saffron: #d8a94f;
  --saffron-pale: #fbefd5;
  --amber: #b17d25;
  --amber-pale: #fff4db;
  --red: #b04b45;
  --red-pale: #fae9e8;
  --blue: #6b5c83;
  --blue-pale: #f1edf5;
  --shadow-sm: 0 5px 18px rgb(94 40 46 / 7%);
  --shadow-md: 0 20px 60px rgb(67 31 35 / 13%);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgb(216 169 79 / 10%), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(216 169 79 / 40%);
  outline-offset: 2px;
}

.topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 10px clamp(16px, 3vw, 42px);
  border-bottom: 1px solid rgb(228 230 223 / 85%);
  background: rgb(255 255 255 / 86%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: 108px;
  height: 45px;
  object-fit: contain;
}

.saffron-shell-mark {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgb(216 169 79 / 65%);
  border-radius: 50% 50% 48% 52%;
  color: var(--paper);
  background: var(--green);
  box-shadow: inset 0 0 0 4px rgb(255 255 255 / 9%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-style: italic;
}

.saffron-shell-name {
  display: grid;
  padding-right: 12px;
  border-right: 1px solid var(--line);
  line-height: 1.05;
}

.saffron-shell-name strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.saffron-shell-name small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.platform-credit {
  display: grid;
  padding-left: 10px;
  border-left: 1px solid var(--line);
  line-height: 1.05;
}

.platform-credit small {
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-credit strong {
  margin-top: 4px;
  color: var(--green);
  font-size: 11px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--green);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  display: block;
  content: "";
  border-radius: 999px;
}

.brand-mark::before {
  width: 22px;
  height: 10px;
  bottom: 8px;
  border: 2px solid #fff;
  border-top: 0;
}

.brand-mark::after {
  width: 16px;
  height: 2px;
  bottom: 19px;
  background: #fff;
}

.brand-mark span {
  width: 3px;
  height: 8px;
  top: 8px;
  background: var(--saffron);
  box-shadow: 7px 2px 0 var(--saffron), -7px 2px 0 var(--saffron);
}

.brand-copy {
  display: flex;
  line-height: 1.05;
  flex-direction: column;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-switcher {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f3f4f0;
  gap: 2px;
}

.role-tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  cursor: pointer;
  transition: 160ms ease;
  white-space: nowrap;
  color: #66716c;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  gap: 6px;
}

.role-tab:hover {
  color: var(--ink);
}

.role-tab.is-active {
  color: white;
  background: var(--green);
  box-shadow: 0 4px 12px rgb(21 73 56 / 18%);
}

.role-tab.staff-login-tab {
  color: #66716c;
  background: transparent;
}

.role-tab.sign-out-tab {
  color: #8b5140;
}

.role-tab.locked-reports-tab {
  color: #806f48;
}

.role-tab.locked-reports-tab small {
  padding: 2px 5px;
  color: #8f6a1f;
  border: 1px solid #e8d7ae;
  border-radius: 999px;
  background: #fff8e8;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.role-icon {
  font-size: 15px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.connection-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: var(--green);
  border: 1px solid #cfe0d8;
  border-radius: 999px;
  background: #f1f8f4;
  font-size: 11px;
  font-weight: 800;
  gap: 7px;
}

.connection-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2da776;
  box-shadow: 0 0 0 4px rgb(45 167 118 / 12%);
}

.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  place-items: center;
}

.page-shell {
  width: min(var(--max-width), calc(100% - clamp(28px, 5vw, 76px)));
  margin: 0 auto;
  padding: 30px 0 56px;
}

/* Public restaurant website */
.landing-page {
  width: min(var(--max-width), calc(100% - clamp(28px, 5vw, 76px)));
  margin: 0 auto;
  padding: 30px 0 0;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  padding: clamp(38px, 6vw, 82px);
  overflow: hidden;
  color: white;
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 12%, rgb(216 169 79 / 24%), transparent 26rem),
    linear-gradient(135deg, #351b22, #5e282e 62%, #7b3439);
  box-shadow: 0 28px 70px rgb(67 31 35 / 20%);
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}

.landing-hero::before,
.landing-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.landing-hero::before {
  width: 500px;
  height: 500px;
  top: -260px;
  left: -140px;
}

.landing-hero::after {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -180px;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
}

.landing-hero-copy .eyebrow {
  color: #e6c47f;
}

.landing-hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.2vw, 102px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.landing-hero h1 em {
  display: block;
  color: #e6bd68;
  font-weight: 400;
}

.landing-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 27px 0 0;
  color: #f2e6d8;
  font-size: 15px;
  line-height: 1.75;
}

.landing-hero-actions {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-cta {
  min-height: 50px;
  padding: 0 20px;
}

.landing-hero .outline-button {
  color: white;
  border-color: rgb(255 255 255 / 26%);
  background: rgb(255 255 255 / 6%);
}

.landing-quick-info {
  display: flex;
  margin-top: 30px;
  color: #eadbca;
  font-size: 10px;
  font-weight: 750;
  flex-wrap: wrap;
  gap: 18px;
}

.landing-quick-info i {
  margin-right: 7px;
  color: #4ac18f;
  font-size: 8px;
  font-style: normal;
}

.landing-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 480px;
}

.landing-hero-visual::before {
  position: absolute;
  width: 390px;
  height: 390px;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgb(255 255 255 / 3%);
}

.hero-photo {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgb(255 255 255 / 92%);
  background: #fff;
  box-shadow: 0 30px 70px rgb(0 0 0 / 28%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  width: min(350px, 78%);
  height: 430px;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%) rotate(-3deg);
  border-radius: 180px 180px 32px 32px;
}

.hero-photo-small {
  width: 150px;
  height: 150px;
  right: -1%;
  bottom: 0;
  transform: rotate(7deg);
  border-radius: 50%;
}

.hero-plate {
  position: absolute;
  display: grid;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 30px 70px rgb(0 0 0 / 25%);
  place-items: center;
}

.hero-plate-main {
  width: 310px;
  height: 370px;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  color: var(--ink);
  border-radius: 150px 150px 30px 30px;
  align-content: center;
}

.hero-plate-main span {
  filter: drop-shadow(0 18px 14px rgb(89 51 23 / 20%));
  font-size: 120px;
}

.hero-plate-main small {
  margin-top: 23px;
  color: var(--saffron);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-plate-main strong {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.hero-plate-top,
.hero-plate-bottom {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 54px;
}

.hero-plate-top {
  top: 4%;
  right: 0;
  transform: rotate(8deg);
}

.hero-plate-bottom {
  bottom: 0;
  left: -2%;
  transform: rotate(-8deg);
  background: #f1e8d7;
}

.hero-seal {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  top: 31%;
  left: 1%;
  align-content: center;
  color: #6f431f;
  transform: rotate(-9deg);
  border: 1px solid #cf9f71;
  border-radius: 50%;
  background: #f4c28f;
  box-shadow: 0 14px 30px rgb(0 0 0 / 20%);
  text-align: center;
  font-size: 8px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.hero-seal b {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0;
}

.landing-facts {
  display: grid;
  margin: 18px 0 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.landing-facts > div {
  display: grid;
  padding: 4px clamp(18px, 4vw, 40px);
  border-right: 1px solid var(--line);
  gap: 4px;
}

.landing-facts > div:first-child {
  padding-left: 0;
}

.landing-facts > div:last-child {
  border-right: 0;
}

.landing-facts strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.landing-facts span {
  color: var(--ink-soft);
  font-size: 10px;
}

.landing-section {
  padding: clamp(70px, 10vw, 125px) 0;
}

.story-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(45px, 9vw, 130px);
}

.story-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgb(10 34 39 / 5%), rgb(10 34 39 / 72%)),
    url("/assets/namak/hero.jpg") center / cover;
  box-shadow: var(--shadow-md);
}

.story-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    radial-gradient(circle at 25% 25%, transparent 0 23px, rgb(255 255 255 / 18%) 24px 25px, transparent 26px),
    radial-gradient(circle at 75% 75%, transparent 0 34px, rgb(255 255 255 / 12%) 35px 36px, transparent 37px);
  background-size: 120px 120px;
}

.story-quote {
  position: absolute;
  right: 32px;
  bottom: 85px;
  left: 32px;
  padding: 30px;
  color: white;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 20px;
  background: rgb(39 42 31 / 48%);
  backdrop-filter: blur(10px);
}

.story-quote span {
  display: block;
  height: 32px;
  color: #f4c292;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 0.9;
}

.story-quote p {
  max-width: 420px;
  margin: 13px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
}

.story-caption {
  position: absolute;
  right: 32px;
  bottom: 27px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.story-caption strong,
.story-caption span {
  font-size: 10px;
}

.story-caption span {
  color: #f4d7be;
}

.story-copy h2,
.landing-section-head h2,
.location-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.story-copy > p:not(.eyebrow),
.location-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.text-link {
  margin-top: 28px;
  padding: 0 0 6px;
  cursor: pointer;
  color: var(--green);
  border: 0;
  border-bottom: 1px solid #a8c1b7;
  background: transparent;
  font-size: 11px;
  font-weight: 850;
}

.text-link span {
  margin-left: 8px;
}

.signature-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
  gap: 20px;
}

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

.signature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.signature-art {
  position: relative;
  display: grid;
  min-height: 270px;
  overflow: hidden;
  place-items: center;
}

.signature-art::before {
  position: absolute;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: rgb(255 255 255 / 44%);
  box-shadow: 0 20px 34px rgb(86 54 23 / 17%);
}

.signature-art span {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 12px rgb(67 46 21 / 18%));
  font-size: 76px;
}

.signature-art i {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgb(35 52 45 / 68%);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: normal;
}

.signature-art.has-photo::before {
  display: none;
}

.signature-art.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.signature-card:hover .signature-art.has-photo img {
  transform: scale(1.035);
}

.signature-art.has-photo i {
  z-index: 2;
  padding: 6px 8px;
  color: white;
  border-radius: 8px;
  background: rgb(12 47 57 / 78%);
}

.reservation-strip {
  display: grid;
  margin-top: 46px;
  padding: clamp(25px, 4vw, 44px);
  color: white;
  border-radius: 26px;
  background: var(--green);
  box-shadow: var(--shadow-md);
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  align-items: end;
  gap: clamp(28px, 5vw, 60px);
}

.reservation-intro .eyebrow {
  color: #e6c47f;
}

.reservation-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.reservation-intro span {
  display: block;
  max-width: 400px;
  margin-top: 11px;
  color: #c9dade;
  font-size: 11px;
  line-height: 1.55;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.reservation-form label {
  display: grid;
  gap: 5px;
}

.reservation-form label > span {
  color: #c9dade;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink);
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 9px;
  background: white;
  font-size: 10px;
}

.reservation-form button {
  min-height: 42px;
  align-self: end;
  grid-column: 1 / -1;
}

.signature-copy {
  padding: 22px;
}

.signature-copy > span {
  color: var(--saffron);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signature-copy h3 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.signature-copy p {
  min-height: 48px;
  margin: 10px 0 16px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

.signature-copy strong {
  color: var(--green);
  font-size: 12px;
}

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

.signature-add-button {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  border: 0;
  border-radius: 10px;
  background: var(--saffron);
  font-size: 10px;
  font-weight: 900;
  gap: 6px;
}

.signature-add-button i {
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.signature-add-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.location-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(45px, 8vw, 110px);
}

.location-detail-list {
  display: grid;
  margin-top: 30px;
  gap: 5px;
}

.location-detail-list > div {
  display: grid;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 9px;
}

.location-detail-list i {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--green);
  border-radius: 10px;
  background: var(--green-pale);
  font-style: normal;
  place-items: center;
}

.location-detail-list small,
.location-detail-list strong,
.location-detail-list em {
  display: block;
}

.location-detail-list small {
  color: var(--saffron);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-detail-list strong {
  margin-top: 4px;
  font-size: 11px;
}

.location-detail-list em {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 9px;
  font-style: normal;
}

.location-actions {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 8px;
}

.map-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid #d9ded7;
  border-radius: 28px;
  background: #e9eee7;
  box-shadow: var(--shadow-md);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgb(110 130 118 / 14%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(110 130 118 / 14%) 1px, transparent 1px);
  background-size: 54px 54px;
}

.map-road {
  position: absolute;
  z-index: 1;
  display: block;
  padding: 7px 12px;
  color: #76827b;
  border: 1px solid #d5dbd5;
  border-radius: 999px;
  background: rgb(255 255 255 / 84%);
  font-size: 8px;
  font-weight: 750;
}

.road-one {
  top: 18%;
  right: -20px;
  width: 75%;
  transform: rotate(-14deg);
}

.road-two {
  width: 72%;
  bottom: 25%;
  left: -30px;
  transform: rotate(19deg);
}

.map-park {
  position: absolute;
  top: 12%;
  left: 9%;
  display: grid;
  width: 150px;
  height: 115px;
  color: #608373;
  transform: rotate(-5deg);
  border: 1px solid #a8c3b5;
  border-radius: 42% 58% 48% 52%;
  background: #cfe0d5;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  place-items: center;
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 52%;
  display: grid;
  width: 150px;
  min-height: 88px;
  padding: 12px;
  color: white;
  transform: translate(-50%, -50%);
  border: 5px solid rgb(255 255 255 / 85%);
  border-radius: 20px 20px 20px 4px;
  background: var(--green);
  box-shadow: 0 18px 35px rgb(23 76 60 / 30%);
  text-align: center;
  place-items: center;
}

.map-pin i {
  color: #e6bd68;
  font-size: 20px;
  font-style: normal;
}

.map-pin b {
  font-family: Georgia, serif;
  font-size: 15px;
}

.map-pin small {
  color: #bcd7cc;
  font-size: 8px;
}

.map-landmark {
  position: absolute;
  right: 12%;
  bottom: 17%;
  padding: 7px 11px;
  color: #7d6552;
  border-radius: 8px;
  background: #e8d5c2;
  font-size: 8px;
  font-weight: 800;
}

.map-route {
  position: absolute;
  width: 105px;
  height: 105px;
  right: 22%;
  bottom: 26%;
  border-right: 3px dashed var(--saffron);
  border-bottom: 3px dashed var(--saffron);
  border-radius: 0 0 35px 0;
}

.map-footer {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 13px;
  background: rgb(255 255 255 / 88%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.map-footer span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
}

.map-footer button {
  padding: 0;
  cursor: pointer;
  color: var(--green);
  border: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 900;
}

.restaurant-footer {
  display: grid;
  align-items: center;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 78px;
  height: 34px;
  object-fit: contain;
}

.footer-brand > div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-family: Georgia, serif;
  font-size: 17px;
}

.footer-brand small,
.restaurant-footer p {
  color: var(--ink-soft);
  font-size: 9px;
}

.restaurant-footer p {
  margin: 0;
  text-align: center;
}

.restaurant-footer > div:last-child {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.restaurant-footer > div:last-child button {
  padding: 6px 0;
  cursor: pointer;
  color: var(--ink-soft);
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.browse-only-label {
  padding: 6px 8px;
  color: var(--green);
  border-radius: 8px;
  background: var(--green-pale);
  font-size: 9px;
  font-weight: 850;
}

.browse-badge b {
  background: var(--green);
}

.visit-panel-body {
  display: grid;
  padding: 24px 20px 20px;
  gap: 11px;
}

.visit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 4px;
  color: var(--green);
  border-radius: 16px;
  background: var(--green-pale);
  font-size: 25px;
  place-items: center;
}

.visit-panel-body h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 21px;
}

.visit-panel-body > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

.visit-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 9px;
  gap: 12px;
}

.visit-info-row span {
  color: var(--ink-soft);
}

.visit-info-row strong {
  text-align: right;
}

.qr-order-note {
  display: flex;
  align-items: flex-start;
  padding: 13px;
  color: var(--green);
  border: 1px solid #cfe0d9;
  border-radius: 13px;
  background: var(--green-pale);
  gap: 10px;
}

.qr-order-symbol {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 9px;
  background: #fff;
  font-size: 17px;
  place-items: center;
}

.qr-order-note strong {
  display: block;
  margin: 1px 0 4px;
  font-size: 10px;
}

.qr-order-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.5;
}

.outline-button.full {
  width: 100%;
}

.section-heading,
.dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--saffron);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h1,
.dashboard-heading h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.heading-subtext {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.hero-card {
  position: relative;
  display: grid;
  min-height: 260px;
  margin-bottom: 30px;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  color: white;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgb(53 27 34 / 98%) 0%, rgb(94 40 46 / 92%) 51%, rgb(94 40 46 / 45%) 100%),
    url("/assets/namak/hero-alt.jpg") center 54% / cover;
  box-shadow: var(--shadow-md);
  align-content: center;
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
}

.hero-card::before {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -40px;
}

.hero-card::after {
  width: 240px;
  height: 240px;
  right: 45px;
  bottom: -120px;
}

.hero-details {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.restaurant-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #d4e7de;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
}

.restaurant-meta span + span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 2px 0;
  content: "";
  border-radius: 50%;
  background: var(--saffron);
}

.hero-card h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 65px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-card p {
  max-width: 570px;
  margin: 18px 0 0;
  color: #dfece6;
  font-size: 14px;
  line-height: 1.65;
}

.table-badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  padding: 9px 13px 9px 9px;
  color: var(--ink);
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
}

.table-badge b {
  display: grid;
  width: 27px;
  height: 27px;
  color: white;
  border-radius: 50%;
  background: var(--saffron);
  place-items: center;
}

.table-select-badge {
  cursor: pointer;
  font-family: inherit;
}

.table-select-badge:hover {
  background: #fff;
  transform: translateY(-1px);
}

.start-order-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -10px 0 28px;
  padding: 15px 17px;
  border: 1px solid #cfe0d9;
  border-radius: 16px;
  background: var(--green-pale);
  gap: 18px;
}

.start-order-banner > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.start-order-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  color: var(--green);
  border-radius: 11px;
  background: #fff;
  font-size: 17px;
  place-items: center;
}

.start-order-banner strong,
.start-order-banner p {
  display: block;
  margin: 0;
}

.start-order-banner strong {
  color: var(--green);
  font-size: 11px;
}

.start-order-banner p {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
}

.guest-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
}

.guest-layout > * {
  min-width: 0;
}

.menu-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 14px;
}

.search-wrap {
  position: relative;
  flex: 1;
}

.search-wrap::before {
  position: absolute;
  top: 50%;
  left: 16px;
  content: "⌕";
  transform: translateY(-53%);
  color: var(--ink-soft);
  font-size: 22px;
}

.search-wrap input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px 0 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.menu-language-note {
  color: #77817c;
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}

.category-strip {
  display: flex;
  margin-bottom: 24px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 8px;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-chip {
  padding: 10px 15px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 750;
}

.category-chip.is-active {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.menu-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 6px 0 16px;
}

.menu-section-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.menu-section-title span {
  color: var(--ink-soft);
  font-size: 12px;
}

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

.menu-card {
  display: grid;
  min-height: 174px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
}

.food-art {
  position: relative;
  display: grid;
  min-height: 152px;
  overflow: hidden;
  border-radius: 13px;
  isolation: isolate;
  place-items: center;
}

.food-art::before,
.food-art::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
}

.food-art::before {
  width: 100px;
  height: 100px;
  background: rgb(255 255 255 / 46%);
  box-shadow: 0 15px 25px rgb(64 45 24 / 14%);
}

.food-art::after {
  width: 74px;
  height: 22px;
  bottom: 20px;
  filter: blur(8px);
  background: rgb(37 32 22 / 18%);
}

.food-art > span:not(.food-badge):not(.sold-out-badge) {
  display: block;
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 10px rgb(55 38 20 / 16%));
  font-size: 52px;
}

.food-art.has-photo::before,
.food-art.has-photo::after {
  display: none;
}

.food-art.has-photo img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.menu-card:hover .food-art.has-photo img {
  transform: scale(1.04);
}

.food-art.has-photo .food-badge {
  z-index: 2;
  box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
}

.art-rice { background: linear-gradient(145deg, #f3d8a1, #e3a95d); }
.art-dumpling { background: linear-gradient(145deg, #dcebcf, #8eb486); }
.art-pan { background: linear-gradient(145deg, #e9b1a0, #c45f48); }
.art-bread { background: linear-gradient(145deg, #f1d3a0, #d99d4d); }
.art-tea { background: linear-gradient(145deg, #d7c5a7, #9f7d52); }
.art-dessert { background: linear-gradient(145deg, #e9d8e8, #c993c2); }

.food-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 5px 7px;
  color: #6f4512;
  border-radius: 999px;
  background: rgb(255 246 222 / 92%);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sold-out-badge {
  position: absolute;
  z-index: 3;
  right: 9px;
  bottom: 9px;
  padding: 6px 8px;
  color: white;
  border-radius: 8px;
  background: rgb(38 48 44 / 88%);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card.is-sold-out .food-art img {
  filter: grayscale(0.65);
  opacity: 0.7;
}

.menu-card.is-sold-out .add-button {
  color: #727b77;
  background: #e8ebe7;
  opacity: 1;
}

.menu-card-body {
  display: flex;
  min-width: 0;
  padding: 7px 5px 5px 0;
  flex-direction: column;
}

.menu-card-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.local-name {
  margin-top: 3px;
  color: var(--green-2);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
}

.menu-card-body p {
  display: -webkit-box;
  margin: 8px 0 12px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}

.price-row strong {
  color: var(--green);
  font-size: 13px;
}

.price-row strong small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.add-button,
.primary-button,
.secondary-button,
.outline-button {
  cursor: pointer;
  transition: 150ms ease;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.add-button {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: white;
  border: 0;
  background: var(--saffron);
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
  gap: 5px;
}

.add-button span {
  font-size: 15px;
  line-height: 1;
}

.add-button:hover,
.primary-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.cart-panel {
  position: sticky;
  top: 98px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.cart-head span {
  padding: 6px 9px;
  color: var(--saffron);
  border-radius: 999px;
  background: var(--saffron-pale);
  font-size: 10px;
  font-weight: 900;
}

.cart-items {
  display: grid;
  max-height: 290px;
  padding: 6px 20px;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eff0ec;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

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

.cart-item h4 {
  margin: 0 0 4px;
  font-size: 12px;
}

.cart-item > div:first-child > span {
  display: block;
  margin: 0 0 4px;
  color: #806b45;
  font-size: 8px;
  line-height: 1.35;
}

.cart-item small {
  color: var(--ink-soft);
  font-size: 11px;
}

.quantity-control {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  gap: 6px;
}

.quantity-control button {
  display: grid;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 0;
  border-radius: 7px;
  background: #f0f2ee;
  place-items: center;
}

.quantity-control span {
  min-width: 15px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.empty-cart {
  display: grid;
  min-height: 220px;
  padding: 30px;
  color: var(--ink-soft);
  text-align: center;
  place-items: center;
  align-content: center;
}

.empty-cart i {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  color: var(--green);
  border-radius: 18px;
  background: var(--green-pale);
  font-size: 26px;
  font-style: normal;
  place-items: center;
}

.empty-cart strong {
  color: var(--ink);
  font-size: 13px;
}

.empty-cart span {
  max-width: 210px;
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.5;
}

.cart-note {
  padding: 0 20px 14px;
}

.cart-note label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-note textarea {
  width: 100%;
  min-height: 65px;
  padding: 10px 11px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbf8;
  font-size: 11px;
}

.cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
  background: #fafbf8;
}

.total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.total-row span {
  color: var(--ink-soft);
  font-size: 12px;
}

.total-row strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.primary-button,
.secondary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  gap: 7px;
}

.primary-button {
  color: white;
  border: 1px solid var(--green);
  background: var(--green);
}

.primary-button.saffron {
  border-color: var(--saffron);
  background: var(--saffron);
}

.primary-button.full {
  width: 100%;
}

.secondary-button {
  color: var(--green);
  border: 1px solid #cfe0d8;
  background: var(--green-pale);
}

.outline-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none !important;
}

.mobile-cart-bar {
  display: none;
}

.table-help-launcher {
  position: fixed;
  z-index: 44;
  right: 20px;
  bottom: 20px;
  transition: bottom 180ms ease;
}

.table-help-launcher button {
  display: flex;
  min-width: 158px;
  min-height: 52px;
  align-items: center;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  text-align: left;
  color: var(--green);
  border: 1px solid #bcd6ca;
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 34px rgb(13 54 42 / 24%);
  gap: 9px;
  animation: help-attention 1.4s ease 1.2s 2;
}

.table-help-launcher button:hover {
  border-color: var(--green-2);
  background: #f4faf7;
  transform: translateY(-1px);
}

.table-help-launcher button > i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: white;
  border-radius: 50%;
  background: var(--green);
  font-size: 17px;
  font-style: normal;
  font-weight: 850;
  place-items: center;
}

.table-help-launcher button > span {
  display: grid;
  line-height: 1.1;
  gap: 3px;
}

.table-help-launcher strong {
  font-size: 10px;
}

.table-help-launcher small {
  color: #5e756c;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

body:has(#mobile-cart-bar:not([hidden])) .table-help-launcher {
  display: none;
}

@keyframes help-attention {
  0%, 100% { box-shadow: 0 12px 34px rgb(13 54 42 / 24%); transform: translateY(0); }
  50% { box-shadow: 0 12px 36px rgb(13 84 60 / 36%), 0 0 0 7px rgb(42 139 101 / 10%); transform: translateY(-2px); }
}

/* Dashboards */
.dashboard-heading {
  align-items: center;
}

.heading-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.waiter-heading-buttons {
  display: flex;
  gap: 8px;
}

.waiter-service-panel {
  margin-bottom: 18px;
}

.waiter-service-list {
  display: grid;
  padding: 7px 18px;
}

.waiter-service-request {
  display: grid;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #edf0ec;
  grid-template-columns: 37px minmax(0, 1fr) auto;
  gap: 11px;
}

.waiter-service-request:last-child {
  border-bottom: 0;
}

.waiter-service-request > span {
  display: grid;
  width: 35px;
  height: 35px;
  color: var(--green);
  border-radius: 10px;
  background: var(--green-pale);
  font-size: 16px;
  place-items: center;
}

.waiter-service-request strong,
.waiter-service-request small {
  display: block;
}

.waiter-service-request strong {
  color: #273b34;
  font-size: 11px;
}

.waiter-service-request small {
  margin-top: 4px;
  color: #87918c;
  font-size: 8px;
}

.waiter-service-request button {
  padding: 8px 11px;
  cursor: pointer;
  color: white;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  font-size: 8px;
  font-weight: 850;
}

.empty-state.compact {
  min-height: 78px;
}

.date-pill {
  padding: 9px 12px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  font-size: 11px;
  font-weight: 750;
}

.stat-grid {
  display: grid;
  margin-bottom: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  position: relative;
  min-height: 128px;
  padding: 19px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stat-card::after {
  position: absolute;
  width: 70px;
  height: 70px;
  right: -25px;
  bottom: -30px;
  content: "";
  border-radius: 50%;
  background: var(--card-tint, var(--green-pale));
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card-top span:first-child {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
}

.stat-symbol {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--card-color, var(--green));
  border-radius: 9px;
  background: var(--card-tint, var(--green-pale));
  font-size: 14px;
  place-items: center;
}

.stat-card strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.stat-card small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
}

.positive {
  color: #21875f !important;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 18px;
}

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

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.panel-head h2,
.panel-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 550;
}

.panel-head p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.count-badge {
  display: inline-flex;
  min-width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  border-radius: 8px;
  background: var(--saffron-pale);
  font-size: 11px;
  font-weight: 900;
}

.request-list,
.check-list,
.activity-list {
  display: grid;
  padding: 8px 20px;
}

.request-item,
.check-item,
.activity-item {
  display: grid;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eff0ec;
  gap: 14px;
}

.request-item:last-child,
.check-item:last-child,
.activity-item:last-child {
  border-bottom: 0;
}

.request-item {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.order-number {
  display: grid;
  width: 45px;
  height: 45px;
  color: var(--green);
  border-radius: 13px;
  background: var(--green-pale);
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.request-copy h4,
.check-copy h4 {
  margin: 0 0 4px;
  font-size: 12px;
}

.request-copy p,
.check-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.request-actions {
  display: flex;
  gap: 7px;
}

.mini-button {
  min-height: 33px;
  padding: 0 11px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  font-size: 10px;
  font-weight: 850;
}

.mini-button.confirm {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.empty-state {
  padding: 48px 20px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 12px;
}

.floor-grid {
  display: grid;
  padding: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.table-card {
  position: relative;
  min-height: 105px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfa;
}

.table-card h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.table-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.table-card strong {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-size: 12px;
}

.table-status-dot {
  position: absolute;
  top: 15px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7c0bb;
}

.table-card.pending {
  border-color: #f2c59f;
  background: #fff9f3;
}

.table-card.pending .table-status-dot { background: var(--saffron); }
.table-card.active .table-status-dot { background: var(--amber); }
.table-card.ready .table-status-dot { background: #2da776; }
.table-card.free strong { color: var(--ink-soft); }

/* Kitchen */
.kitchen-shell {
  width: min(1600px, calc(100% - clamp(24px, 4vw, 60px)));
}

.kitchen-flow-summary {
  display: flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px;
  align-items: center;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.kitchen-flow-summary > div {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  gap: 7px;
}

.kitchen-flow-summary i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stage-color);
}

.kitchen-flow-summary span {
  font-size: 10px;
  font-weight: 850;
}

.kitchen-flow-summary strong {
  display: grid;
  min-width: 23px;
  height: 23px;
  color: var(--stage-color);
  border-radius: 7px;
  background: color-mix(in srgb, var(--stage-color) 10%, white);
  font-size: 10px;
  font-weight: 900;
  place-items: center;
}

.kitchen-flow-summary b {
  margin-left: 5px;
  color: #9ba39f;
  font-size: 12px;
}

.kitchen-queue-panel {
  overflow: hidden;
}

.kitchen-simple-list {
  display: grid;
}

.kitchen-queue-row {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 118px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 78px minmax(260px, 1fr) 190px;
  gap: 17px;
}

.kitchen-queue-row::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 4px;
  content: "";
  border-radius: 0 5px 5px 0;
  background: var(--stage-color);
}

.kitchen-queue-row:last-child {
  border-bottom: 0;
}

.kitchen-stage {
  display: grid;
  justify-items: start;
  gap: 4px;
}

.kitchen-stage i {
  width: 9px;
  height: 9px;
  margin-bottom: 3px;
  border-radius: 50%;
  background: var(--stage-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--stage-color) 12%, white);
}

.kitchen-stage strong {
  color: var(--stage-color);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kitchen-stage span {
  color: var(--ink-soft);
  font-size: 9px;
}

.kitchen-table-number {
  display: grid;
  width: 66px;
  height: 76px;
  color: var(--green);
  border: 1px solid #cfe0e3;
  border-radius: 16px;
  background: var(--green-pale);
  align-content: center;
  text-align: center;
}

.kitchen-table-number span,
.kitchen-table-number small {
  font-size: 8px;
  font-weight: 850;
}

.kitchen-table-number strong {
  margin: 2px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.kitchen-queue-items {
  display: grid;
  gap: 7px;
}

.kitchen-queue-items > div {
  display: grid;
  font-size: 12px;
  grid-template-columns: 28px minmax(0, 1fr);
}

.kitchen-queue-items > div b {
  color: var(--green);
}

.kitchen-queue-items > div span small {
  display: block;
  margin-top: 3px;
  color: #7e8984;
  font-size: 8px;
}

.kitchen-queue-items p {
  width: fit-content;
  margin: 2px 0 0;
  padding: 7px 9px;
  color: #86571a;
  border-radius: 8px;
  background: var(--amber-pale);
  font-size: 10px;
  line-height: 1.4;
}

.kitchen-next-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  cursor: pointer;
  color: white;
  border: 0;
  border-radius: 12px;
  background: var(--stage-color);
  font-size: 11px;
  font-weight: 900;
}

.kitchen-next-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.kitchen-history-panel {
  margin-top: 16px;
  overflow: hidden;
  border-color: #d3e2db;
}

.kitchen-history-toggle {
  display: grid;
  width: 100%;
  min-height: 74px;
  align-items: center;
  padding: 13px 18px;
  cursor: pointer;
  text-align: left;
  color: #30433c;
  border: 0;
  background: #f6faf7;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
}

.kitchen-history-toggle:hover {
  background: #eef7f2;
}

.kitchen-history-check {
  display: grid;
  width: 38px;
  height: 38px;
  color: white;
  border-radius: 12px;
  background: #2a8b65;
  font-size: 15px;
  place-items: center;
}

.kitchen-history-toggle strong,
.kitchen-history-toggle small {
  display: block;
}

.kitchen-history-toggle strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 550;
}

.kitchen-history-toggle small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 8px;
}

.kitchen-history-toggle > b {
  display: grid;
  width: 28px;
  height: 28px;
  color: #257355;
  border-radius: 9px;
  background: white;
  font-size: 10px;
  place-items: center;
}

.kitchen-history-toggle > i {
  color: #257355;
  font-size: 18px;
  font-style: normal;
}

.kitchen-history-list {
  display: grid;
  border-top: 1px solid #dce8e1;
}

.kitchen-history-row {
  display: grid;
  align-items: center;
  min-height: 94px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: white;
  grid-template-columns: 54px minmax(200px, 1fr) auto auto;
  gap: 14px;
}

.kitchen-history-row:last-child {
  border-bottom: 0;
}

.kitchen-history-table {
  display: grid;
  width: 48px;
  height: 48px;
  color: #257355;
  border-radius: 14px;
  background: var(--green-pale);
  place-items: center;
  align-content: center;
}

.kitchen-history-table span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kitchen-history-table strong {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.kitchen-history-copy {
  min-width: 0;
}

.kitchen-history-copy h3,
.kitchen-history-copy p {
  margin: 0;
}

.kitchen-history-copy h3 {
  font-size: 10px;
}

.kitchen-history-copy p {
  overflow: hidden;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kitchen-history-copy small {
  display: block;
  margin-top: 5px;
  color: #43806a;
  font-size: 7px;
}

.kitchen-history-row > strong {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 16px;
  white-space: nowrap;
}

.kitchen-history-row > button {
  min-height: 40px;
  padding: 0 12px;
  cursor: pointer;
  color: #486158;
  border: 1px solid #d4dfd9;
  border-radius: 10px;
  background: #f9fbf8;
  font-size: 8px;
  font-weight: 850;
}

.kitchen-history-row > button:hover {
  color: var(--green);
  border-color: #9fbeaf;
  background: #eef7f2;
}

/* Cashier */
.cashier-quick-summary {
  display: flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px;
  color: var(--ink-soft);
  border: 1px solid #cfe0e3;
  border-radius: 14px;
  background: var(--green-pale);
  flex-wrap: wrap;
  gap: 3px;
}

.cashier-quick-summary span {
  padding: 7px 13px;
  border-right: 1px solid #c9dcdf;
  font-size: 10px;
}

.cashier-quick-summary span:last-child {
  border-right: 0;
}

.cashier-quick-summary b {
  margin-right: 3px;
  color: var(--green);
  font-size: 13px;
}

.cashier-panel {
  overflow: hidden;
}

.cashier-completed-panel {
  margin-top: 16px;
  overflow: hidden;
  border-color: #cfe0d8;
}

.cashier-completed-toggle {
  display: grid;
  width: 100%;
  min-height: 74px;
  align-items: center;
  padding: 13px 18px;
  cursor: pointer;
  text-align: left;
  color: #30433c;
  border: 0;
  background: #f5faf7;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
}

.cashier-completed-toggle:hover {
  background: #eef7f2;
}

.completed-check {
  display: grid;
  width: 38px;
  height: 38px;
  color: white;
  border-radius: 12px;
  background: var(--green);
  font-size: 15px;
  place-items: center;
}

.cashier-completed-toggle strong,
.cashier-completed-toggle small {
  display: block;
}

.cashier-completed-toggle strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 550;
}

.cashier-completed-toggle small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 8px;
}

.cashier-completed-toggle > b {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--green);
  border-radius: 9px;
  background: white;
  font-size: 10px;
  place-items: center;
}

.cashier-completed-toggle > i {
  color: var(--green);
  font-size: 18px;
  font-style: normal;
}

.cashier-completed-list {
  display: grid;
  border-top: 1px solid #dce8e1;
}

.cashier-completed-row {
  display: grid;
  align-items: center;
  min-height: 92px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: white;
  grid-template-columns: 54px minmax(180px, 1fr) auto auto;
  gap: 14px;
}

.cashier-completed-row:last-child {
  border-bottom: 0;
}

.cashier-completed-table {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--green);
  border-radius: 14px;
  background: var(--green-pale);
  place-items: center;
  align-content: center;
}

.cashier-completed-table span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cashier-completed-table strong {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.cashier-completed-copy {
  min-width: 0;
}

.cashier-completed-copy h3,
.cashier-completed-copy p,
.cashier-completed-copy small {
  margin: 0;
}

.cashier-completed-copy h3 {
  font-size: 10px;
}

.cashier-completed-copy p {
  overflow: hidden;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cashier-completed-copy small {
  display: block;
  margin-top: 5px;
  color: #43806a;
  font-size: 7px;
  text-transform: capitalize;
}

.cashier-completed-row > strong {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 16px;
  white-space: nowrap;
}

.cashier-completed-actions {
  display: flex;
  gap: 7px;
}

.cashier-undo-button {
  min-height: 42px;
  padding: 0 11px;
  cursor: pointer;
  color: #7a5040;
  border: 1px solid #e4d6cf;
  border-radius: 10px;
  background: #fffaf7;
  font-size: 8px;
  font-weight: 850;
}

.cashier-undo-button:hover {
  border-color: #cfae9e;
  background: #fff4ed;
}

.cashier-table-list {
  display: grid;
}

.cashier-table-row {
  display: grid;
  align-items: center;
  min-height: 116px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 66px minmax(180px, 0.75fr) minmax(480px, 1.25fr);
  gap: 16px;
}

.cashier-table-row:last-child {
  border-bottom: 0;
}

.cashier-table-row.is-complete {
  background: linear-gradient(90deg, rgb(231 241 242 / 72%), transparent 38%);
}

.cashier-table-identity {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--green);
  border: 1px solid #cfe0e3;
  border-radius: 17px;
  background: var(--green-pale);
  text-align: center;
  align-content: center;
  place-items: center;
}

.cashier-table-identity span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cashier-table-identity strong {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.cashier-order-copy {
  min-width: 0;
}

.cashier-order-copy h3 {
  margin: 0;
  font-size: 12px;
}

.cashier-order-copy p {
  margin: 5px 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cashier-order-copy > strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.cashier-confirmations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.cashier-confirmation {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 11px 11px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fafbf9;
  gap: 10px;
}

.cashier-confirmation.is-confirmed {
  border-color: #b7d6ca;
  background: #f0f8f4;
}

.cashier-confirmation span strong,
.cashier-confirmation span small {
  display: block;
}

.cashier-confirmation span strong {
  font-size: 10px;
}

.cashier-confirmation span small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 8px;
}

.cashier-yes-button {
  display: inline-flex;
  min-width: 68px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
  gap: 5px;
}

.cashier-yes-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.cashier-yes-button.is-confirmed {
  cursor: default;
  color: #227455;
  border: 1px solid #b7d6ca;
  background: white;
  opacity: 1;
}

.cashier-yes-button i {
  font-style: normal;
}

.cashier-receipt-button {
  min-width: 105px;
  min-height: 42px;
  padding: 0 12px;
  cursor: pointer;
  color: #fff;
  border: 0;
  border-radius: 10px;
  background: var(--saffron);
  font-size: 10px;
  font-weight: 900;
}

.cashier-receipt-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.cashier-receipt-button.is-issued {
  color: #227455;
  border: 1px solid #b7d6ca;
  background: #fff;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.served { color: #1a7654; background: var(--green-pale); }
.status-pill.ready { color: #1a7654; background: var(--green-pale); }
.status-pill.preparing { color: #8a5a16; background: var(--amber-pale); }
.status-pill.new { color: var(--blue); background: var(--blue-pale); }
.status-pill.pending { color: #9c4d21; background: var(--saffron-pale); }

.cash-summary {
  padding: 20px;
}

.cash-total-card {
  padding: 22px;
  color: white;
  border-radius: 16px;
  background: var(--green);
}

.cash-total-card span {
  color: #c6ddd4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cash-total-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.cash-total-card small {
  display: block;
  margin-top: 4px;
  color: #c6ddd4;
  font-size: 10px;
}

.summary-breakdown {
  display: grid;
  margin-top: 16px;
  gap: 2px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  border-bottom: 1px solid #eff0ec;
  font-size: 11px;
}

.summary-row span { color: var(--ink-soft); }
.summary-row strong { font-size: 12px; }

/* Reports */
.manager-report-shell {
  max-width: 1500px;
}

.manager-report-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
}

.manager-access-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 9px;
  color: #35584b;
  border: 1px solid #c9ded4;
  border-radius: 999px;
  background: #eef7f2;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 6px;
}

.manager-report-title h1 {
  margin: 0;
  color: #172a25;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.manager-report-title p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.manager-report-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-retention-note {
  display: flex;
  align-items: center;
  margin: -6px 0 16px;
  padding: 11px 14px;
  color: #53635d;
  border: 1px solid #d9e2dd;
  border-radius: 13px;
  background: #f8faf7;
  gap: 10px;
}

.report-retention-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: white;
  border-radius: 10px;
  background: var(--green);
  font-family: Georgia, serif;
  font-size: 15px;
  place-items: center;
}

.report-retention-note p {
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
}

.report-retention-note strong {
  margin-right: 4px;
  color: #5e282e;
}

.manager-daily-brief {
  display: grid;
  align-items: center;
  margin-bottom: 18px;
  padding: 17px 20px;
  color: white;
  border: 1px solid #844b4e;
  border-radius: 16px;
  background: linear-gradient(110deg, #5e282e, #7b3439);
  box-shadow: 0 14px 32px rgb(94 40 46 / 18%);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
}

.manager-brief-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: #5e282e;
  border-radius: 11px;
  background: #f5c67a;
  font-size: 17px;
  place-items: center;
}

.manager-daily-brief small {
  display: block;
  margin-bottom: 4px;
  color: #c5ddd6;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manager-daily-brief p {
  margin: 0;
  color: #e3eeea;
  font-size: 10px;
  line-height: 1.5;
}

.manager-daily-brief p strong {
  color: white;
}

.manager-daily-brief aside {
  padding: 9px 12px;
  color: #d9e9e4;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 10px;
  background: rgb(255 255 255 / 7%);
  font-size: 8px;
  white-space: nowrap;
}

.manager-daily-brief aside span {
  display: block;
  color: white;
  font-family: Georgia, serif;
  font-size: 19px;
  text-align: center;
}

.report-range-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  box-shadow: 0 8px 24px rgb(28 49 41 / 5%);
}

.report-range-switch button {
  padding: 9px 13px;
  cursor: pointer;
  color: #69736e;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

.report-range-switch button.is-active {
  color: white;
  background: var(--green);
  box-shadow: 0 5px 12px rgb(19 71 54 / 18%);
}

.commerce-stat-grid {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.commerce-stat-card {
  min-width: 0;
  padding: 21px 22px;
  border: 1px solid #e4e6e1;
  border-radius: 17px;
  background: white;
  box-shadow: 0 14px 35px rgb(25 43 36 / 5%);
}

.commerce-stat-card > span {
  display: block;
  color: #77817c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.commerce-stat-card > strong {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  color: #183a32;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.3vw, 33px);
  font-weight: 500;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-stat-card > small {
  display: block;
  margin-top: 8px;
  color: #8a938f;
  font-size: 9px;
}

.commerce-stat-card > small i {
  color: #338466;
  font-style: normal;
  font-weight: 800;
}

.commerce-stat-card.is-primary {
  border-color: #154f41;
  background: linear-gradient(145deg, #1b5c4c, #123e34);
  box-shadow: 0 18px 38px rgb(16 65 52 / 20%);
}

.commerce-stat-card.is-primary > span,
.commerce-stat-card.is-primary > small {
  color: #c6ddd4;
}

.commerce-stat-card.is-primary > strong,
.commerce-stat-card.is-primary > small i {
  color: white;
}

.commerce-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.72fr);
  gap: 18px;
}

.commerce-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3e6e0;
  border-radius: 18px;
  background: white;
  box-shadow: 0 15px 38px rgb(25 43 36 / 5%);
}

.commerce-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 20px;
  border-bottom: 1px solid #edf0eb;
  gap: 15px;
}

.commerce-panel > header span:not(.live-manager-pill) {
  display: block;
  margin-bottom: 4px;
  color: #8a938e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commerce-panel > header h2 {
  margin: 0;
  color: #1d302b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.commerce-panel > header button {
  cursor: pointer;
  color: var(--green);
  border: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.revenue-total {
  text-align: right;
}

.revenue-total small {
  display: block;
  color: #89938e;
  font-size: 8px;
}

.revenue-total strong {
  display: block;
  margin-top: 3px;
  color: #7b3439;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.sales-line-chart {
  position: relative;
  height: 286px;
  margin: 22px 24px 18px;
}

.sales-line-chart svg {
  position: absolute;
  z-index: 2;
  top: 3px;
  right: 0;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: calc(100% - 33px);
  overflow: visible;
}

.chart-grid-lines {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 0;
  bottom: 35px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid-lines i {
  display: block;
  height: 1px;
  background: #edf0ec;
}

.chart-axis {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #919994;
  font-size: 8px;
}

.top-dish-list {
  display: grid;
  padding: 8px 20px 13px;
}

.top-dish-row {
  display: grid;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eef0ed;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  gap: 9px;
}

.top-dish-row:last-child {
  border-bottom: 0;
}

.top-dish-row > b {
  color: #b1b8b4;
  font-size: 9px;
}

.top-dish-row > div strong,
.top-dish-row > div span {
  display: block;
}

.top-dish-row > div strong {
  overflow: hidden;
  color: #293a35;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-dish-row > div span {
  margin-top: 3px;
  color: #909994;
  font-size: 8px;
}

.top-dish-row > div i {
  display: block;
  height: 3px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef1ed;
}

.top-dish-row > div em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #b06b6e);
}

.top-dish-row > strong {
  color: #7b3439;
  font-size: 9px;
  white-space: nowrap;
}

.live-manager-pill {
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 6px 9px;
  color: #287b5d !important;
  border-radius: 999px;
  background: #eaf6f0;
  font-size: 8px !important;
  gap: 5px;
}

.live-manager-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a976e;
  box-shadow: 0 0 0 4px rgb(42 151 110 / 10%);
}

.manager-status-grid {
  display: grid;
  padding: 17px 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.manager-status-grid > div {
  display: grid;
  padding: 12px;
  border: 1px solid #e9ece7;
  border-radius: 12px;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
}

.manager-status-grid i {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--status-color);
}

.manager-status-grid span {
  color: #75807b;
  font-size: 8px;
}

.manager-status-grid strong {
  color: #263a34;
  font-size: 12px;
}

.manager-live-orders {
  display: grid;
  padding: 0 20px 17px;
}

.manager-live-orders > div {
  display: grid;
  align-items: center;
  padding: 11px 2px;
  border-top: 1px solid #eef0ed;
  grid-template-columns: 1fr 0.5fr 0.7fr auto;
  gap: 10px;
  font-size: 9px;
}

.manager-live-orders span,
.manager-live-orders em {
  color: #7c8681;
  font-style: normal;
  text-transform: capitalize;
}

.manager-live-orders b {
  color: #7b3439;
  white-space: nowrap;
}

.manager-payment-total {
  padding: 22px 20px;
  color: white;
  background: linear-gradient(135deg, #351b22, #7b3439);
}

.manager-payment-total span {
  display: block;
  color: #ead8d0;
  font-size: 8px;
  text-transform: uppercase;
}

.manager-payment-total strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 30px;
}

.payment-method-row,
.manager-receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
  padding: 14px 0;
  border-bottom: 1px solid #edf0ec;
  color: #58645f;
  font-size: 9px;
}

.payment-method-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.payment-method-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--payment-color);
}

.manager-receipt-row {
  border-bottom: 0;
  font-weight: 800;
}

.report-activity-panel {
  grid-column: 1 / -1;
}

.manager-activity-grid {
  display: grid;
  padding: 0 20px 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.manager-activity-grid > div {
  display: grid;
  min-width: 0;
  padding: 16px 14px;
  border-right: 1px solid #edf0ec;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
}

.manager-activity-grid > div:last-child {
  border-right: 0;
}

.manager-activity-grid .activity-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 10px;
}

.manager-activity-grid p {
  min-width: 0;
  margin: 0;
}

.manager-activity-grid p strong,
.manager-activity-grid p small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manager-activity-grid p strong {
  color: #31423d;
  font-size: 9px;
}

.manager-activity-grid p small,
.manager-activity-grid time {
  margin-top: 4px;
  color: #929b96;
  font-size: 7px;
}

.manager-activity-grid time {
  grid-column: 2;
}

.manager-login-mark {
  color: #8a651c;
  background: #fff4da;
}

.manager-demo-credentials {
  border-color: #ead7a9;
  background: #fff9eb;
}

.reports-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
}

.chart-wrap {
  padding: 22px 22px 15px;
}

.bar-chart {
  position: relative;
  display: flex;
  height: 230px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 10px;
}

.bar-chart::before,
.bar-chart::after {
  position: absolute;
  z-index: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: #eff0ec;
}

.bar-chart::before { top: 33%; }
.bar-chart::after { top: 66%; }

.bar-group {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  flex: 1;
  align-items: end;
  justify-items: center;
}

.bar {
  width: min(30px, 70%);
  min-height: 8px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #a85b61, var(--green));
}

.bar.is-current {
  background: linear-gradient(180deg, #f19152, var(--saffron));
}

.bar-group span {
  position: absolute;
  bottom: -25px;
  color: var(--ink-soft);
  font-size: 9px;
}

.chart-legend {
  display: flex;
  margin-top: 38px;
  color: var(--ink-soft);
  font-size: 10px;
  gap: 16px;
}

.chart-legend span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

.chart-legend span:last-child::before { background: var(--saffron); }

.activity-item {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.activity-icon {
  display: grid;
  width: 35px;
  height: 35px;
  color: var(--green);
  border-radius: 11px;
  background: var(--green-pale);
  font-size: 13px;
  place-items: center;
}

.activity-copy strong {
  display: block;
  font-size: 11px;
}

.activity-copy span,
.activity-item time {
  color: var(--ink-soft);
  font-size: 9px;
}

.category-list {
  display: grid;
  padding: 12px 20px 20px;
  gap: 14px;
}

.category-progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 10px;
}

.category-progress-head span { color: var(--ink-soft); }

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0ec;
}

.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

/* Modal and feedback */
.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 20px;
  background: rgb(11 25 20 / 58%);
  backdrop-filter: blur(5px);
  place-items: center;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(540px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 30px 100px rgb(0 0 0 / 24%);
}

.modal-card:has(.receipt-workspace) {
  width: min(940px, 100%);
  max-height: calc(100vh - 40px);
  padding: 28px;
  overflow-y: auto;
}

.modal-card:has(#item-options-form),
.modal-card:has(.availability-list) {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.table-help-heading {
  display: grid;
  align-items: center;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
}

.table-help-mark {
  display: grid;
  width: 58px;
  height: 58px;
  color: white;
  border-radius: 18px;
  background: var(--green);
  font-size: 26px;
  font-weight: 800;
  place-items: center;
}

.table-help-heading .eyebrow {
  margin: 0 0 4px;
}

.table-help-heading h2 {
  font-size: 27px;
}

.table-help-local,
.table-selector-local {
  display: block;
  width: fit-content;
  margin-top: 2px;
  color: var(--green-2);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.table-selector-local {
  margin-top: 6px;
}

.table-help-heading > div > p:last-child {
  margin: 5px 0 0;
  font-size: 10px;
}

.table-help-options {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.table-help-option {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 11px;
  cursor: pointer;
  text-align: left;
  color: #2c4038;
  border: 1px solid #dbe4df;
  border-radius: 14px;
  background: #fafbf8;
  gap: 10px;
}

.table-help-option:hover {
  border-color: #9dbdaf;
  background: #f0f7f3;
}

.table-help-option i {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--green);
  border-radius: 11px;
  background: #e7f1ec;
  font-size: 17px;
  font-style: normal;
  place-items: center;
}

.table-help-option strong {
  display: block;
  font-size: 10px;
  line-height: 1.25;
}

.table-help-option > span {
  min-width: 0;
}

.table-help-option small {
  display: block;
  margin-top: 4px;
  color: #657970;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 8px;
  line-height: 1.35;
}

.table-help-option.is-sent {
  color: #33705a;
  border-color: #c7ded4;
  background: #eaf5f0;
  opacity: 1;
}

.table-help-option.is-sent small {
  color: #3f745f;
}

.item-options-heading {
  display: grid;
  align-items: center;
  margin: -8px -8px 22px;
  padding: 8px;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 17px;
}

.item-options-heading img {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  object-fit: cover;
}

.item-options-heading h2 {
  margin: 0 0 4px;
}

.item-options-heading > div > span {
  color: var(--green-2);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
}

#item-options-form {
  display: grid;
  gap: 18px;
}

.item-option-group {
  display: grid;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 8px;
}

.item-option-group legend {
  width: 100%;
  margin-bottom: 8px;
  color: #31423c;
  font-size: 10px;
  font-weight: 850;
}

.item-option-group legend small {
  float: right;
  color: #939b97;
  font-size: 8px;
  font-weight: 700;
}

.item-option-choice {
  display: flex;
  align-items: center;
  padding: 12px 13px;
  cursor: pointer;
  border: 1px solid #e0e4df;
  border-radius: 12px;
  background: #fafbf8;
  gap: 10px;
}

.item-option-choice:has(input:checked) {
  border-color: #4f8976;
  background: #eef7f2;
  box-shadow: 0 0 0 2px rgb(46 117 91 / 7%);
}

.item-option-choice input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.item-option-choice span {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.item-option-choice strong {
  color: #30413c;
  font-size: 10px;
}

.item-option-choice small {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.option-add-button {
  justify-content: space-between;
  padding-right: 15px;
  padding-left: 15px;
}

.option-add-button strong {
  font-family: Georgia, serif;
  font-size: 14px;
}

.availability-heading {
  display: grid;
  align-items: start;
  margin-bottom: 16px;
  padding-right: 28px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
}

.availability-heading h2 {
  margin: 0;
}

.availability-heading p:last-child {
  margin: 5px 0 0;
}

.availability-mark {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--green);
  border-radius: 12px;
  background: var(--green-pale);
  place-items: center;
}

.availability-summary {
  margin-bottom: 10px;
  padding: 10px 12px;
  color: #78827d;
  border-radius: 10px;
  background: #f2f5f1;
  font-size: 9px;
}

.availability-summary strong {
  color: #293e36;
  font-size: 11px;
}

.availability-summary span {
  margin: 0 5px;
}

.availability-list {
  display: grid;
}

.availability-row {
  display: grid;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #edf0ec;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
}

.availability-row:last-child {
  border-bottom: 0;
}

.availability-row img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.availability-row > div strong,
.availability-row > div span {
  display: block;
}

.availability-row > div strong {
  color: #30413b;
  font-size: 10px;
}

.availability-row > div span {
  margin-top: 3px;
  color: #77837e;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 9px;
}

.availability-row > button {
  display: inline-flex;
  min-width: 88px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  cursor: pointer;
  color: #2f745b;
  border: 1px solid #c9dfd5;
  border-radius: 999px;
  background: #edf7f2;
  font-size: 8px;
  font-weight: 850;
  gap: 6px;
}

.availability-row > button i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d916b;
}

.availability-row > button.is-sold-out {
  color: #8a5547;
  border-color: #e7cfc8;
  background: #fff0ec;
}

.availability-row > button.is-sold-out i {
  background: #c46a51;
}

.availability-row.is-unavailable img {
  filter: grayscale(0.75);
  opacity: 0.6;
}

.receipt-workspace {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.72fr);
  gap: 30px;
}

.receipt-paper {
  width: 100%;
  padding: 26px;
  color: #1d2522;
  border: 1px solid #dfe3df;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgb(20 35 29 / 9%);
}

.receipt-brand {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed #cdd2ce;
  gap: 14px;
}

.receipt-brand img {
  width: 88px;
  height: 42px;
  object-fit: contain;
}

.receipt-brand > div {
  display: grid;
  gap: 2px;
}

.receipt-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.receipt-brand span {
  color: #6b7470;
  font-size: 8px;
}

.receipt-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 19px 0 13px;
}

.receipt-title > div {
  display: grid;
  gap: 3px;
}

.receipt-title > div:last-child {
  text-align: right;
}

.receipt-title span {
  color: #79817d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.receipt-title strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.receipt-meta {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #6b7470;
  border-top: 1px solid #eef0ed;
  border-bottom: 1px solid #eef0ed;
  font-size: 8px;
}

.receipt-items {
  display: grid;
  padding: 13px 0;
  gap: 10px;
}

.receipt-items > div {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  gap: 18px;
}

.receipt-items b {
  margin-right: 4px;
}

.receipt-items span small {
  display: block;
  margin: 3px 0 0 18px;
  color: #7c8681;
  font-size: 7px;
}

.receipt-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 2px solid #26332e;
  border-bottom: 1px dashed #cdd2ce;
}

.receipt-total span {
  font-size: 11px;
  font-weight: 900;
}

.receipt-total strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.receipt-payment-status {
  display: flex;
  margin-top: 14px;
  padding: 10px;
  align-items: center;
  color: #8a5a16;
  border-radius: 9px;
  background: var(--amber-pale);
  font-size: 8px;
  gap: 7px;
}

.receipt-payment-status.is-paid {
  color: #227455;
  background: #eaf6f0;
}

.receipt-payment-status i {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(255 255 255 / 65%);
  font-style: normal;
  font-weight: 900;
  place-items: center;
}

.receipt-footer {
  display: grid;
  padding-top: 20px;
  text-align: center;
  gap: 5px;
}

.receipt-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.receipt-footer span {
  color: #7a837f;
  font-size: 8px;
}

.receipt-options {
  padding: 24px 8px 8px 0;
}

.receipt-options h2 {
  font-size: 34px;
}

.receipt-options > p:not(.eyebrow) {
  margin-bottom: 18px;
}

.receipt-options form {
  display: grid;
  gap: 10px;
}

.receipt-option-divider {
  position: relative;
  margin: 21px 0;
  text-align: center;
}

.receipt-option-divider::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.receipt-option-divider span {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.receipt-issued-note {
  display: flex;
  margin-top: 16px;
  padding: 10px;
  align-items: center;
  color: #227455;
  border-radius: 9px;
  background: #eaf6f0;
  font-size: 9px;
  gap: 7px;
}

.receipt-issued-note i {
  font-style: normal;
  font-weight: 900;
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--ink-soft);
  border: 0;
  border-radius: 10px;
  background: #f2f3ef;
  font-size: 20px;
  place-items: center;
}

.success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: white;
  border-radius: 20px;
  background: var(--green);
  box-shadow: 0 12px 30px rgb(23 76 60 / 22%);
  font-size: 28px;
  place-items: center;
}

.login-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: var(--green);
  border: 1px solid #cfe0d8;
  border-radius: 18px;
  background: var(--green-pale);
  font-size: 28px;
  place-items: center;
}

.table-selector-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: #fff;
  border-radius: 18px;
  background: var(--green);
  font-size: 28px;
  place-items: center;
}

.table-number-editor {
  display: grid;
  align-items: stretch;
  margin: 20px 0 12px;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 9px;
}

.table-number-editor > button {
  cursor: pointer;
  color: var(--green);
  border: 1px solid #cdded7;
  border-radius: 14px;
  background: #eef7f2;
  font-size: 24px;
  font-weight: 500;
}

.table-number-editor label {
  display: grid;
  min-height: 86px;
  padding: 9px 12px;
  border: 1px solid #cdd9d4;
  border-radius: 15px;
  background: #fafbf8;
  place-items: center;
}

.table-number-editor label:focus-within {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgb(36 101 80 / 10%);
}

.table-number-editor label span {
  color: #7d8883;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.table-number-editor input {
  width: 100%;
  padding: 0;
  color: var(--green);
  border: 0;
  outline: 0;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  appearance: textfield;
}

.table-number-editor input::-webkit-inner-spin-button,
.table-number-editor input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

#table-selector-form {
  display: grid;
}

.table-selector-help {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3f4f0;
  font-size: 10px !important;
}

.staff-login-form,
#waiter-order-form {
  display: grid;
  gap: 14px;
}

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

.form-field > span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: #fafbf8;
  font-size: 12px;
}

.form-field textarea {
  min-height: 68px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgb(36 101 80 / 10%);
}

.demo-credentials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  color: var(--green);
  border: 1px dashed #b9d2c8;
  border-radius: 11px;
  background: #f3f8f5;
  font-size: 10px;
}

.demo-credentials span {
  color: var(--ink-soft);
}

.waiter-order-heading {
  margin-bottom: 18px;
  padding-right: 30px;
}

.waiter-menu-list {
  display: grid;
  max-height: 260px;
  padding: 4px 12px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.waiter-menu-row {
  display: grid;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eff0ec;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
}

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

.waiter-menu-art {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 20px;
  place-items: center;
}

.waiter-menu-art.has-photo {
  overflow: hidden;
  background: #edf1ef;
}

.waiter-menu-art.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waiter-menu-row strong,
.waiter-menu-row small {
  display: block;
}

.waiter-menu-row strong {
  font-size: 11px;
}

.waiter-menu-row small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 9px;
}

.waiter-menu-row select {
  width: 100%;
  max-width: 190px;
  min-height: 28px;
  margin-top: 6px;
  padding: 4px 7px;
  color: #52615b;
  border: 1px solid #dfe4df;
  border-radius: 7px;
  background: #f8faf7;
  font-size: 8px;
}

.waiter-menu-row.is-unavailable {
  opacity: 0.58;
}

.waiter-table-number-field small {
  color: #7f8a85;
  font-size: 8px;
}

.quantity-control input {
  width: 22px;
  padding: 0;
  text-align: center;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  appearance: textfield;
}

.waiter-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px 2px;
}

.waiter-order-total span {
  color: var(--ink-soft);
  font-size: 11px;
}

.waiter-order-total strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.live-order-list {
  display: grid;
  padding: 8px 20px;
}

.live-order-row {
  display: grid;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eff0ec;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
}

.live-order-row:last-child {
  border-bottom: 0;
}

.live-order-copy {
  min-width: 0;
}

.live-order-copy strong,
.live-order-copy span {
  display: block;
}

.live-order-copy strong {
  font-size: 10px;
}

.live-order-copy span {
  margin-top: 4px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-order-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.live-order-meta b {
  color: var(--green);
  font-size: 10px;
}

.modal-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 550;
}

.modal-card p {
  margin: 10px 0 20px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.modal-order-meta {
  display: grid;
  margin: 20px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.modal-order-meta div {
  text-align: center;
}

.modal-order-meta div + div {
  border-left: 1px solid var(--line);
}

.modal-order-meta span {
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  text-transform: uppercase;
}

.modal-order-meta strong {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.toast-region {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  transition: bottom 180ms ease;
}

.toast {
  min-width: 245px;
  padding: 13px 15px;
  animation: toast-in 220ms ease both;
  color: white;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  font-size: 11px;
  font-weight: 750;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cart-confirm {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-4px); }
}

@media (max-width: 1100px) {
  .commerce-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .report-activity-panel {
    grid-column: auto;
  }

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

  .manager-activity-grid > div:nth-child(2n) {
    border-right: 0;
  }

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

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

  .reservation-form button {
    grid-column: span 1;
  }

  .landing-hero {
    min-height: 590px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  }

  .hero-plate-main {
    width: 270px;
    height: 340px;
  }

  .location-section {
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  }

  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .role-switcher {
    max-width: calc(100vw - 380px);
    margin: 0 auto;
    overflow-x: auto;
  }

  .role-tab {
    padding: 9px 10px;
  }

  .guest-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

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

  .food-art {
    min-height: 140px;
  }

  .floor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .manager-report-header {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .manager-report-actions {
    justify-content: space-between;
  }

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

  .menu-language-note {
    white-space: normal;
  }

  .toast-region {
    right: 12px;
    bottom: 16px;
    left: 12px;
    justify-items: center;
  }

  .toast-region.above-mobile-cart {
    bottom: 86px;
  }

  .toast {
    width: min(100%, 440px);
    min-width: 0;
    text-align: center;
  }

  .landing-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .landing-hero-copy {
    max-width: 680px;
  }

  .landing-hero-visual {
    min-height: 430px;
  }

  .landing-facts {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .reservation-form button {
    grid-column: 1 / -1;
  }

  .landing-facts > div:nth-child(2) {
    border-right: 0;
  }

  .landing-facts > div:nth-child(n + 3) {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .story-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .story-copy {
    order: -1;
  }

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

  .signature-card:last-child {
    grid-column: 1 / -1;
  }

  .restaurant-footer {
    grid-template-columns: 1fr auto;
  }

  .restaurant-footer p {
    display: none;
  }

  .topbar {
    display: flex;
    min-height: 64px;
    padding: 9px 15px;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .role-switcher {
    order: 3;
    width: calc(100% + 30px);
    max-width: none;
    margin: 9px -15px -9px;
    padding: 6px 15px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: rgb(255 255 255 / 94%);
  }

  .topbar-actions {
    margin-left: auto;
  }

  .connection-pill {
    display: none;
  }

  .page-shell {
    width: min(calc(100% - 28px), var(--max-width));
    padding-top: 24px;
  }

  .guest-layout,
  .dashboard-grid,
  .reports-grid {
    grid-template-columns: 1fr;
  }

  .cashier-table-row {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .cashier-confirmations {
    grid-column: 2 / -1;
  }

  .cashier-completed-row {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .cashier-completed-actions {
    grid-column: 2 / -1;
  }

  .cart-panel {
    position: static;
  }

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

  .kitchen-queue-row {
    grid-template-columns: 90px 70px minmax(0, 1fr);
  }

  .kitchen-next-button {
    grid-column: 3 / -1;
  }

  .kitchen-history-row {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .kitchen-history-row > button {
    grid-column: 2 / -1;
    justify-self: end;
  }

  .receipt-workspace {
    grid-template-columns: 1fr;
  }

  .receipt-paper {
    max-width: 460px;
    margin: 0 auto;
  }

  .receipt-options {
    max-width: 460px;
    margin: 0 auto;
    padding: 0;
  }

  .mobile-cart-bar {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 66px;
    padding: 5px;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 16px;
    background: var(--green);
    box-shadow: 0 15px 40px rgb(12 51 38 / 30%);
    gap: 4px;
  }

  .mobile-cart-bar[hidden] {
    display: none;
  }

  .mobile-cart-bar button {
    cursor: pointer;
    color: white;
    border: 0;
    background: transparent;
  }

  .mobile-cart-order-button {
    display: flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    flex: 1;
    gap: 10px;
  }

  .mobile-cart-help-button {
    display: flex;
    min-width: 68px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 5px 10px 5px 6px;
    border-right: 1px solid rgb(255 255 255 / 16%) !important;
    flex: 0 0 76px;
    gap: 6px;
  }

  .mobile-cart-help-button > i {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: var(--green);
    border-radius: 10px;
    background: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    place-items: center;
  }

  .mobile-cart-help-button > span {
    display: grid;
    text-align: left;
    line-height: 1;
    gap: 3px;
  }

  .mobile-cart-help-button strong {
    font-size: 9px;
  }

  .mobile-cart-help-button small {
    color: #c7ddd5;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 8px;
  }

  .mobile-cart-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: var(--green);
    border-radius: 11px;
    background: white;
    font-size: 16px;
    font-style: normal;
    place-items: center;
  }

  .mobile-cart-order-button > span {
    display: flex;
    min-width: 0;
    flex: 1;
    text-align: left;
    flex-direction: column;
  }

  .mobile-cart-order-button strong { font-size: 12px; }
  .mobile-cart-order-button small { margin-top: 3px; color: #bdd8ce; font-size: 9px; }
  .mobile-cart-order-button small i { margin-left: 3px; color: white; font-style: normal; }
  .mobile-cart-order-button b { display: inline-flex; align-items: center; font-family: Georgia, serif; font-size: 17px; gap: 8px; white-space: nowrap; }
  .mobile-cart-order-button b em { font-style: normal; }
  .mobile-cart-order-button b i { display: grid; width: 24px; height: 24px; border-radius: 8px; background: rgb(255 255 255 / 12%); font-family: Arial, sans-serif; font-size: 12px; font-style: normal; place-items: center; }

  .mobile-cart-bar.is-updated .mobile-cart-order-button {
    animation: cart-confirm 420ms ease both;
  }

  .mobile-cart-bar.is-updated::before {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    left: 0;
    padding: 8px 11px;
    content: "✓ Added to your order";
    animation: toast-in 180ms ease both;
    color: #245d4a;
    border: 1px solid #c9ded5;
    border-radius: 10px;
    background: #f1faf5;
    box-shadow: 0 10px 24px rgb(17 65 51 / 14%);
    font-size: 9px;
    font-weight: 850;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .table-help-launcher {
    right: 12px;
    bottom: 12px;
  }

  .table-help-launcher button {
    min-width: 148px;
    min-height: 48px;
  }

  .table-help-launcher button > i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .role-tab.locked-reports-tab small {
    display: none;
  }

  .manager-report-title h1 {
    font-size: 37px;
  }

  .manager-report-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .report-retention-note {
    align-items: flex-start;
    margin-top: -3px;
  }

  .manager-daily-brief {
    align-items: start;
    padding: 15px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
  }

  .manager-daily-brief aside {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .manager-daily-brief aside span {
    display: inline;
    font-size: 15px;
  }

  .report-range-switch {
    justify-content: stretch;
  }

  .report-range-switch button {
    flex: 1;
  }

  .commerce-stat-grid {
    grid-template-columns: 1fr;
  }

  .commerce-stat-card {
    padding: 18px;
  }

  .commerce-stat-card > strong {
    font-size: 29px;
  }

  .sales-line-chart {
    height: 230px;
    margin: 18px 16px 14px;
  }

  .manager-status-grid {
    padding: 14px;
  }

  .manager-live-orders {
    padding: 0 14px 14px;
  }

  .manager-live-orders > div {
    grid-template-columns: 1fr auto auto;
  }

  .manager-live-orders em {
    display: none;
  }

  .manager-activity-grid {
    grid-template-columns: 1fr;
  }

  .manager-activity-grid > div,
  .manager-activity-grid > div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid #edf0ec;
  }

  .manager-activity-grid > div:last-child {
    border-bottom: 0;
  }

  .brand-logo {
    width: 84px;
    height: 37px;
  }

  .saffron-shell-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 23px;
  }

  .saffron-shell-name {
    padding-right: 8px;
  }

  .saffron-shell-name strong {
    font-size: 17px;
  }

  .platform-credit {
    padding-left: 7px;
  }

  .platform-credit strong {
    font-size: 9px;
  }

  .landing-page {
    width: min(calc(100% - 28px), var(--max-width));
    padding-top: 14px;
  }

  .landing-hero {
    padding: 54px 25px 30px;
    border-radius: 24px;
  }

  .landing-hero h1 {
    font-size: 52px;
  }

  .landing-hero-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .landing-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-cta {
    width: 100%;
  }

  .landing-quick-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .landing-hero-visual {
    min-height: 350px;
  }

  .hero-photo-main {
    width: 230px;
    height: 300px;
  }

  .hero-photo-small {
    width: 100px;
    height: 100px;
    right: -5%;
  }

  .landing-hero-visual::before {
    width: 290px;
    height: 290px;
  }

  .hero-plate-main {
    width: 215px;
    height: 285px;
  }

  .hero-plate-main span {
    font-size: 86px;
  }

  .hero-plate-main small {
    margin-top: 12px;
  }

  .hero-plate-top,
  .hero-plate-bottom {
    width: 94px;
    height: 94px;
    font-size: 40px;
  }

  .hero-plate-top {
    right: -5%;
  }

  .hero-plate-bottom {
    left: -5%;
  }

  .hero-seal {
    width: 70px;
    height: 70px;
    left: -2%;
  }

  .landing-facts strong {
    font-size: 18px;
  }

  .landing-facts span {
    font-size: 8px;
  }

  .landing-facts > div {
    padding: 4px 12px;
  }

  .landing-facts > div:nth-child(3) {
    padding-left: 0;
  }

  .reservation-strip {
    margin-top: 32px;
    padding: 25px 20px;
    border-radius: 20px;
  }

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

  .reservation-form button {
    grid-column: auto;
  }

  .landing-section {
    padding: 75px 0;
  }

  .story-copy h2,
  .landing-section-head h2,
  .location-copy h2 {
    font-size: 42px;
  }

  .story-section {
    gap: 38px;
  }

  .story-visual {
    min-height: 420px;
  }

  .story-quote {
    right: 20px;
    bottom: 75px;
    left: 20px;
    padding: 22px;
  }

  .story-quote p {
    font-size: 20px;
  }

  .story-caption {
    right: 20px;
    left: 20px;
  }

  .landing-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .signature-card:last-child {
    grid-column: auto;
  }

  .signature-art {
    min-height: 230px;
  }

  .location-section {
    gap: 40px;
  }

  .map-card {
    min-height: 430px;
  }

  .map-park {
    width: 115px;
    height: 90px;
  }

  .map-pin {
    width: 135px;
  }

  .restaurant-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .restaurant-footer > div:last-child {
    justify-content: flex-start;
  }

  .brand-copy small {
    display: none;
  }

  .section-heading,
  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-heading {
    gap: 14px;
  }

  .section-heading h1,
  .dashboard-heading h1 {
    font-size: 34px;
  }

  .hero-card {
    min-height: 305px;
    padding: 88px 25px 30px;
  }

  .hero-card h1 {
    font-size: 43px;
  }

  .table-badge {
    top: 20px;
    right: auto;
    left: 20px;
  }

  .start-order-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .start-order-banner .primary-button {
    width: 100%;
  }

  .menu-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-language-note {
    padding: 0 2px;
  }

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

  .menu-card {
    min-height: 148px;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .price-row {
    align-items: flex-end;
    flex-direction: column;
  }

  .price-row .add-button {
    width: 100%;
    justify-content: center;
  }

  .waiter-heading-buttons {
    width: 100%;
  }

  .waiter-heading-buttons button {
    flex: 1;
  }

  .waiter-service-request {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .waiter-service-request > button {
    grid-column: 1 / -1;
  }

  .item-options-heading {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .item-options-heading img {
    width: 72px;
    height: 72px;
  }

  .availability-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .availability-row img {
    width: 38px;
    height: 38px;
  }

  .availability-row > button {
    min-width: 76px;
    padding: 7px;
  }

  .food-art {
    min-height: 126px;
  }

  .food-art > span:not(.food-badge):not(.sold-out-badge) {
    font-size: 44px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .stat-card {
    min-height: 116px;
    padding: 15px;
  }

  .stat-card strong {
    font-size: 22px;
  }

  .floor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .request-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .request-actions {
    grid-column: 1 / -1;
  }

  .request-actions .mini-button {
    flex: 1;
  }

  .cashier-quick-summary {
    width: 100%;
  }

  .cashier-quick-summary span {
    flex: 1;
    text-align: center;
  }

  .cashier-table-row {
    padding: 15px;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .cashier-table-identity {
    width: 52px;
    height: 52px;
  }

  .cashier-confirmations {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .cashier-confirmation {
    min-height: 62px;
  }

  .cashier-completed-toggle {
    padding: 12px 14px;
  }

  .cashier-completed-row {
    padding: 13px 14px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .cashier-completed-row > strong {
    grid-column: 2;
  }

  .cashier-completed-actions {
    grid-column: 1 / -1;
  }

  .cashier-completed-actions button {
    flex: 1;
  }

  .kitchen-flow-summary {
    width: 100%;
    justify-content: space-between;
  }

  .kitchen-flow-summary > div {
    padding: 7px 5px;
  }

  .kitchen-flow-summary b {
    display: none;
  }

  .kitchen-queue-row {
    padding: 15px;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 13px;
  }

  .kitchen-table-number {
    width: 62px;
    height: 70px;
  }

  .kitchen-queue-items,
  .kitchen-next-button {
    grid-column: 1 / -1;
  }

  .kitchen-history-toggle {
    padding: 12px 14px;
  }

  .kitchen-history-row {
    padding: 13px 14px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .kitchen-history-row > strong {
    grid-column: 2;
  }

  .kitchen-history-row > button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .receipt-paper {
    padding: 20px;
  }

  .modal-card:has(.receipt-workspace) {
    padding: 24px 18px;
  }

  .modal-card {
    padding: 28px 23px;
  }
}

@media (max-width: 420px) {
  .saffron-shell-name small,
  .platform-credit {
    display: none;
  }

  .mobile-cart-bar {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .mobile-cart-help-button {
    min-width: 56px;
    padding: 3px 5px;
    flex: 0 0 56px;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-cart-help-button > i {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-radius: 8px;
    font-size: 12px;
  }

  .mobile-cart-help-button > span {
    display: flex;
    gap: 3px;
  }

  .mobile-cart-help-button strong,
  .mobile-cart-help-button small {
    font-size: 7px;
  }

  .mobile-cart-icon {
    display: none;
  }

  .mobile-cart-order-button {
    padding: 6px 8px;
    gap: 6px;
  }

  .mobile-cart-order-button strong {
    font-size: 10px;
  }

  .mobile-cart-order-button small {
    font-size: 7px;
  }

  .mobile-cart-order-button b {
    font-size: 14px;
    gap: 4px;
  }

  .mobile-cart-order-button b i {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: 80mm auto;
    margin: 0;
  }

  body * {
    visibility: hidden !important;
  }

  #printable-receipt,
  #printable-receipt * {
    visibility: visible !important;
  }

  #printable-receipt {
    position: fixed;
    top: 0;
    left: 0;
    width: 80mm;
    max-width: 80mm;
    margin: 0;
    padding: 8mm;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
