.mock-tablemap {
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.4rem;
  width: 340px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(232, 83, 10, .06);
}

[data-theme="light"] .mock-tablemap {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

.mm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}

.mm-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.mm-time {
  font-family: var(--Fd);
  font-size: .9rem;
  font-weight: 300;
  color: var(--accent);
}

.mm-floor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .35rem;
  margin-bottom: .9rem;
}

.mm-t {
  aspect-ratio: 1;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
  cursor: default;
  transition: all .3s;
}

.mm-t .tn {
  font-size: .46rem;
  letter-spacing: .05em;
  opacity: .55;
}

.mm-t.occ {
  background: rgba(232, 83, 10, .12);
  border-color: rgba(232, 83, 10, .3);
  color: var(--accent);
}

.mm-t.wait {
  background: rgba(196, 163, 90, .12);
  border-color: rgba(196, 163, 90, .3);
  color: var(--warm);
}

.mm-t.bill {
  background: rgba(224, 64, 64, .1);
  border-color: rgba(224, 64, 64, .25);
  color: #e04040;
}

.mm-t.free {
  background: var(--s2);
}

.mm-t.bar {
  grid-column: span 2;
  aspect-ratio: auto;
  padding: .4rem;
  background: var(--s2);
  font-size: .55rem;
  letter-spacing: .08em;
  color: var(--dim);
}

.mm-legend {
  display: flex;
  gap: .7rem;
  margin-bottom: .9rem;
  flex-wrap: wrap;
}

.ml-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .56rem;
  color: var(--muted);
}

.ml-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: .8rem;
}

.mm-stat {
  text-align: center;
  padding: 0 .5rem;
  border-right: 1px solid var(--border);
}

.mm-stat:last-child {
  border-right: none;
}

.mm-stat-label {
  font-size: .53rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: .25rem;
}

.mm-stat-val {
  font-family: var(--Fd);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
}

.mock-kds {
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.4rem;
  width: 320px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(224, 64, 64, .05);
}

[data-theme="light"] .mock-kds {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

.kds-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}

.kds-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.kds-badge {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e04040;
  border: 1px solid rgba(224, 64, 64, .3);
  padding: .18rem .6rem;
  border-radius: 100px;
}

.kds-ticket {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: .6rem;
}

.kds-ticket:last-child {
  margin-bottom: 0;
}

.kds-ticket.done {
  opacity: .5;
}

.kds-ticket-bar {
  height: 3px;
  width: 100%;
}

.kds-ticket-bar.urgent {
  background: #e04040;
}

.kds-ticket-bar.normal {
  background: var(--accent);
}

.kds-ticket-bar.done {
  background: var(--dim);
}

.kds-ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem .8rem .35rem;
  border-bottom: 1px solid var(--border);
}

.kds-ticket-table {
  font-family: var(--Fd);
  font-size: .95rem;
  font-weight: 300;
}

.kds-ticket-time {
  font-size: .6rem;
  letter-spacing: .08em;
  color: var(--muted);
}

.kds-ticket-time.urgent {
  color: #e04040;
  font-weight: 500;
}

.kds-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .8rem;
  border-bottom: 1px solid var(--border);
}

.kds-item:last-child {
  border-bottom: none;
}

.kds-item-qty {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232, 83, 10, .15);
  color: var(--accent);
  font-size: .6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kds-item-qty.w {
  background: rgba(196, 163, 90, .15);
  color: var(--warm);
}

.kds-item-name {
  flex: 1;
  font-size: .75rem;
  color: var(--text);
}

.kds-item-note {
  font-size: .6rem;
  color: var(--warm);
  font-style: italic;
}

.kds-done {
  width: 14px;
  height: 14px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-bill {
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.4rem;
  width: 320px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(232, 83, 10, .06);
}

[data-theme="light"] .mock-bill {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

.bill-header {
  margin-bottom: .8rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}

.bill-table-name {
  font-family: var(--Fd);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: .2rem;
}

.bill-cover {
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--muted);
}

.bill-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: .7rem;
}

.bill-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .3rem 0;
  font-size: .73rem;
  border-bottom: 1px solid var(--border);
}

.bill-item:last-child {
  border-bottom: none;
}

.bill-item-name {
  flex: 1;
  color: var(--muted);
}

.bill-item-price {
  font-family: var(--Fd);
  font-size: .85rem;
  font-weight: 300;
  color: var(--text);
}

.bill-item-price.sel {
  color: var(--accent);
}

.bill-divider {
  height: 1px;
  background: var(--border);
  margin: .6rem 0;
}

.bill-split-label {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: .5rem;
}

.bill-persons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .3rem;
  margin-bottom: .8rem;
}

.bill-person {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .4rem .3rem;
  text-align: center;
}

.bill-person.active {
  border-color: rgba(232, 83, 10, .35);
  background: rgba(232, 83, 10, .08);
}

.bill-person-name {
  font-size: .6rem;
  color: var(--muted);
  margin-bottom: .15rem;
}

.bill-person-amt {
  font-family: var(--Fd);
  font-size: .9rem;
  font-weight: 300;
  color: var(--text);
}

.bill-person.active .bill-person-amt {
  color: var(--accent);
}

.bill-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: .6rem;
  border-top: 1px solid var(--border);
}

.bill-total-label {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.bill-total-val {
  font-family: var(--Fd);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
}

body.public-website-restaurantes-servico-completo .hero {
  min-height: 80vh;
}

body.public-website-restaurantes-servico-completo .hero-left {
  padding: 6rem 3.5rem 5rem;
  padding-left: max(3.5rem, calc((100vw - 1400px) / 2 + 3.5rem));
}

body.public-website-restaurantes-servico-completo .hero-right {
  min-height: 80vh;
  position: relative;
}

body.public-website-restaurantes-servico-completo .table-hud {
  position: absolute;
  bottom: 3rem;
  right: max(3rem, calc((100vw - 1400px) / 2 + 3rem));
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.15rem;
  width: 260px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(232, 83, 10, .06);
  opacity: 0;
  z-index: 2;
}

html[data-theme="light"] body.public-website-restaurantes-servico-completo .table-hud {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

body.public-website-restaurantes-servico-completo .hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}

body.public-website-restaurantes-servico-completo .hud-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

body.public-website-restaurantes-servico-completo .hud-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .6rem;
  color: var(--accent);
}

body.public-website-restaurantes-servico-completo .hud-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: lpulse 1.8s ease-in-out infinite;
}

body.public-website-restaurantes-servico-completo .table-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .4rem;
}

body.public-website-restaurantes-servico-completo .t-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
  transition: all .3s;
  cursor: default;
}

body.public-website-restaurantes-servico-completo .t-cell .tn {
  font-size: .46rem;
  letter-spacing: .05em;
  text-transform: none;
  color: inherit;
  opacity: .55;
}

body.public-website-restaurantes-servico-completo .t-cell .tn span {
  color: inherit;
}

body.public-website-restaurantes-servico-completo .t-cell.occ {
  background: rgba(232, 83, 10, .12);
  border-color: rgba(232, 83, 10, .3);
  color: var(--accent);
}

body.public-website-restaurantes-servico-completo .t-cell.wait {
  background: rgba(196, 163, 90, .12);
  border-color: rgba(196, 163, 90, .3);
  color: var(--warm);
}

body.public-website-restaurantes-servico-completo .t-cell.bill {
  background: rgba(224, 64, 64, .1);
  border-color: rgba(224, 64, 64, .25);
  color: #e04040;
}

body.public-website-restaurantes-servico-completo .t-cell.free {
  background: var(--s2);
}

body.public-website-restaurantes-servico-completo .hud-legend {
  display: flex;
  gap: .8rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}

body.public-website-restaurantes-servico-completo .leg-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .56rem;
  color: var(--muted);
}

body.public-website-restaurantes-servico-completo .leg-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

body.public-website-restaurantes-servico-completo .service-full-breadcrumb-link {
  color: inherit;
  text-decoration: none;
  opacity: .6;
}

body.public-website-restaurantes-servico-completo .service-full-breadcrumb-separator {
  opacity: .35;
  margin: 0 .2em;
}

body.public-website-restaurantes-servico-completo .service-full-leg-dot-occ,
body.public-website-restaurantes-servico-completo .service-full-ml-dot-occ,
body.public-website-restaurantes-servico-completo .service-full-mm-stat-val-accent {
  color: var(--accent);
  background: var(--accent);
}

body.public-website-restaurantes-servico-completo .service-full-leg-dot-wait,
body.public-website-restaurantes-servico-completo .service-full-ml-dot-wait {
  background: var(--warm);
}

body.public-website-restaurantes-servico-completo .service-full-leg-dot-bill,
body.public-website-restaurantes-servico-completo .service-full-ml-dot-bill {
  background: #e04040;
}

body.public-website-restaurantes-servico-completo .service-full-leg-dot-free,
body.public-website-restaurantes-servico-completo .service-full-ml-dot-free {
  background: var(--s3);
}

body.public-website-restaurantes-servico-completo .service-full-mm-stat-val-accent {
  background: none;
}