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

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

.qo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
}

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

.qo-num-badge {
  font-family: var(--Fd);
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent);
}

.qo-cats {
  display: flex;
  gap: .4rem;
  margin-bottom: .9rem;
  flex-wrap: wrap;
}

.qo-cat {
  font-size: .6rem;
  padding: .25rem .7rem;
  border-radius: 100px;
  background: var(--s2);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: default;
}

.qo-cat.active {
  background: rgba(232, 83, 10, .12);
  border-color: rgba(232, 83, 10, .35);
  color: var(--accent);
}

.qo-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  margin-bottom: .9rem;
}

.qo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .6rem .4rem;
  border-radius: 8px;
  background: var(--s2);
  border: 1px solid var(--border);
  text-align: center;
}

.qo-item.selected {
  background: rgba(232, 83, 10, .08);
  border-color: rgba(232, 83, 10, .3);
}

.qo-item-emoji {
  font-size: 1.3rem;
  line-height: 1;
}

.qo-item-name {
  font-size: .62rem;
  color: var(--text);
  line-height: 1.2;
}

.qo-item-price {
  font-size: .62rem;
  color: var(--muted);
}

.qo-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: .7rem;
}

.qo-order-row {
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
  color: var(--muted);
  margin-bottom: .25rem;
}

.qo-order-name,
.qo-order-val {
  color: var(--text);
}

.qo-total-row {
  display: flex;
  justify-content: space-between;
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}

.qo-total-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.qo-total-val {
  font-family: var(--Fd);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
}

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

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

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

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

.mq-count {
  font-size: .6rem;
  color: var(--accent);
}

.mq-calling {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(232, 83, 10, .08);
  border: 1px solid rgba(232, 83, 10, .25);
  border-radius: 8px;
  padding: .7rem;
  margin-bottom: .8rem;
}

.mq-calling-num {
  font-family: var(--Fd);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  min-width: 44px;
  text-align: center;
}

.mq-calling-label {
  font-size: .58rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.mq-calling-name {
  font-size: .7rem;
  color: var(--text);
}

.mq-ready-label,
.mq-prep-label {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}

.mq-ready-nums {
  display: flex;
  gap: .4rem;
  margin-bottom: .8rem;
}

.mq-rnum {
  font-family: var(--Fd);
  font-size: 1rem;
  font-weight: 300;
  padding: .3rem .7rem;
  border-radius: 6px;
  background: rgba(196, 163, 90, .08);
  border: 1px solid rgba(196, 163, 90, .2);
  color: var(--warm);
}

.mq-prep-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.mq-prep-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: .5rem;
}

.mq-prep-num {
  font-family: var(--Fd);
  font-size: .9rem;
  font-weight: 300;
  color: var(--text);
  grid-row: 1 / 3;
  align-self: center;
}

.mq-prep-name {
  font-size: .65rem;
  color: var(--muted);
}

.mq-prep-bar {
  height: 3px;
  background: var(--s3);
  border-radius: 2px;
  margin-top: .2rem;
}

.mq-prep-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width .4s ease;
}

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

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

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

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

.pk-period {
  font-size: .6rem;
  color: var(--text);
}

.pk-big {
  margin-bottom: 1rem;
}

.pk-big-val {
  font-family: var(--Fd);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -.03em;
  color: var(--text);
}

.pk-big-sub {
  font-size: .6rem;
  color: var(--muted);
}

.pk-chart-label {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

.pk-hours {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 60px;
  margin-bottom: .3rem;
}

.pkb {
  flex: 1;
  background: var(--s3);
  border-radius: 2px 2px 0 0;
  transition: background .3s;
}

.pkb.peak {
  background: var(--accent);
}

.pkb.now {
  background: rgba(196, 163, 90, .6);
}

.pk-hour-labels {
  display: flex;
  justify-content: space-between;
  font-size: .5rem;
  color: var(--dim);
  margin-bottom: .9rem;
}

.pk-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: .7rem;
  border-top: 1px solid var(--border);
}

.pk-kpi {
  padding: 0 .6rem;
  border-right: 1px solid var(--border);
}

.pk-kpi:first-child {
  padding-left: 0;
}

.pk-kpi:last-child {
  border-right: none;
}

.pk-kpi-label {
  font-size: .5rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.pk-kpi-val {
  font-family: var(--Fd);
  font-size: .9rem;
  font-weight: 300;
  color: var(--text);
}

body.public-website-restaurantes-servico-rapido .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

body.public-website-restaurantes-servico-rapido .stag {
  align-items: center;
  color: var(--accent);
  display: flex;
  font-size: .65rem;
  gap: 1rem;
  letter-spacing: .2em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

body.public-website-restaurantes-servico-rapido .stag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

body.public-website-restaurantes-servico-rapido .rv {
  opacity: 0;
  transform: translateY(26px);
}

body.public-website-restaurantes-servico-rapido .rvl {
  opacity: 0;
  transform: translateX(-36px);
}

body.public-website-restaurantes-servico-rapido .rvr {
  opacity: 0;
  transform: translateX(36px);
}

body.public-website-restaurantes-servico-rapido .wrap {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 3.5rem;
}

body.public-website-restaurantes-servico-rapido .bp {
  background: var(--text);
  border: none;
  border-radius: 1px;
  color: var(--bg);
  cursor: none;
  display: inline-block;
  font-family: var(--Fb);
  font-size: .72rem;
  letter-spacing: .14em;
  padding: .9rem 2.6rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s;
}

body.public-website-restaurantes-servico-rapido .bp:hover {
  opacity: .8;
}

body.public-website-restaurantes-servico-rapido .bg {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: .72rem;
  gap: .6rem;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}

body.public-website-restaurantes-servico-rapido .bg .ar {
  display: inline-block;
  transition: transform .25s;
}

body.public-website-restaurantes-servico-rapido .bg:hover {
  color: var(--text);
}

body.public-website-restaurantes-servico-rapido .bg:hover .ar {
  transform: translateX(6px);
}

body.public-website-restaurantes-servico-rapido .breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0 auto;
  max-width: 1400px;
  padding: 8rem 3.5rem 0;
  position: relative;
  z-index: 5;
}

body.public-website-restaurantes-servico-rapido .bc-item {
  color: var(--muted);
  cursor: none;
  font-size: .68rem;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}

body.public-website-restaurantes-servico-rapido .bc-item:hover {
  color: var(--text);
}

body.public-website-restaurantes-servico-rapido .bc-sep {
  color: var(--dim);
  font-size: .55rem;
}

body.public-website-restaurantes-servico-rapido .bc-current {
  color: var(--accent);
}

body.public-website-restaurantes-servico-rapido .hero {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}

body.public-website-restaurantes-servico-rapido .hero-orb1 {
  background: radial-gradient(circle, rgba(232, 83, 10, .06) 0%, transparent 70%);
  height: 55vw;
  right: -8vw;
  top: -10vh;
  width: 55vw;
}

body.public-website-restaurantes-servico-rapido .hero-orb2 {
  background: radial-gradient(circle, rgba(196, 163, 90, .04) 0%, transparent 70%);
  bottom: -8vh;
  height: 35vw;
  left: -4vw;
  width: 35vw;
}

body.public-website-restaurantes-servico-rapido .hero-grid {
  background-image: none;
  background-size: 80px 80px;
  inset: 0;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 10%, transparent 75%);
  pointer-events: none;
  position: absolute;
}

html[data-theme="light"] body.public-website-restaurantes-servico-rapido .hero-grid {
  background-image: none;
}

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

body.public-website-restaurantes-servico-rapido .hero-eyebrow {
  align-items: center;
  color: var(--accent);
  display: flex;
  font-size: .68rem;
  gap: 1rem;
  letter-spacing: .22em;
  margin-bottom: 2rem;
  opacity: 0;
  text-transform: uppercase;
}

body.public-website-restaurantes-servico-rapido .hero-eyebrow::before {
  background: var(--accent);
  content: '';
  height: 1px;
  width: 24px;
}

body.public-website-restaurantes-servico-rapido .hero-h1 {
  font-family: var(--Fd);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: .96;
  margin-bottom: 2.5rem;
}

body.public-website-restaurantes-servico-rapido .hero-h1 .word {
  display: inline-block;
  margin-right: .12em;
  overflow: hidden;
}

body.public-website-restaurantes-servico-rapido .hero-h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
}

body.public-website-restaurantes-servico-rapido .hero-h1 .ita {
  color: var(--muted);
  font-style: italic;
}

body.public-website-restaurantes-servico-rapido .hero-sub {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 44ch;
  opacity: 0;
  transform: translateY(18px);
}

body.public-website-restaurantes-servico-rapido .hero-actions {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(16px);
}

body.public-website-restaurantes-servico-rapido .hero-stats {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  opacity: 0;
  padding-top: 2.5rem;
  transform: translateY(16px);
}

body.public-website-restaurantes-servico-rapido .hstat {
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}

body.public-website-restaurantes-servico-rapido .hstat:last-child {
  border-right: none;
  padding-right: 0;
}

body.public-website-restaurantes-servico-rapido .hstat-num {
  font-family: var(--Fd);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1;
}

body.public-website-restaurantes-servico-rapido .hstat-num .ac {
  color: var(--accent);
}

body.public-website-restaurantes-servico-rapido .hstat-label {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .12em;
  margin-top: .4rem;
  text-transform: uppercase;
}

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

body.public-website-restaurantes-servico-rapido .hero-photo {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

body.public-website-restaurantes-servico-rapido .hero-photo img {
  display: block;
  filter: brightness(.65) saturate(.8);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

html[data-theme="light"] body.public-website-restaurantes-servico-rapido .hero-photo img {
  filter: brightness(.8) saturate(.85);
}

body.public-website-restaurantes-servico-rapido .hero-photo-overlay {
  background: linear-gradient(to right, var(--bg) 0%, transparent 35%), linear-gradient(to top, rgba(7, 7, 10, .5) 0%, transparent 50%);
  inset: 0;
  position: absolute;
}

html[data-theme="light"] body.public-website-restaurantes-servico-rapido .hero-photo-overlay {
  background: linear-gradient(to right, var(--bg) 0%, transparent 35%), linear-gradient(to top, rgba(244, 241, 234, .4) 0%, transparent 50%);
}

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

html[data-theme="light"] body.public-website-restaurantes-servico-rapido .queue-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-rapido .qhud-header {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
}

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

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

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

body.public-website-restaurantes-servico-rapido .queue-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .8rem;
}

body.public-website-restaurantes-servico-rapido .q-item {
  align-items: center;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  gap: .7rem;
  padding: .5rem .7rem;
}

body.public-website-restaurantes-servico-rapido .q-num {
  color: var(--text);
  font-family: var(--Fd);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: -.02em;
  min-width: 32px;
}

body.public-website-restaurantes-servico-rapido .q-info {
  flex: 1;
}

body.public-website-restaurantes-servico-rapido .q-name {
  color: var(--text);
  font-size: .7rem;
  line-height: 1.2;
}

body.public-website-restaurantes-servico-rapido .q-time {
  color: var(--muted);
  font-size: .58rem;
}

body.public-website-restaurantes-servico-rapido .q-status {
  border-radius: 100px;
  font-size: .58rem;
  padding: .15rem .5rem;
}

body.public-website-restaurantes-servico-rapido .q-status.prep {
  background: rgba(232, 83, 10, .1);
  border: 1px solid rgba(232, 83, 10, .25);
  color: var(--accent);
}

body.public-website-restaurantes-servico-rapido .q-status.ready {
  background: rgba(196, 163, 90, .1);
  border: 1px solid rgba(196, 163, 90, .25);
  color: var(--warm);
}

body.public-website-restaurantes-servico-rapido .q-status.wait {
  background: var(--s3);
  border: 1px solid var(--border);
  color: var(--muted);
}

body.public-website-restaurantes-servico-rapido .qhud-bar {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  font-size: .6rem;
  justify-content: space-between;
  padding-top: .6rem;
}

body.public-website-restaurantes-servico-rapido .qhud-bar-val {
  color: var(--accent);
}

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

body.public-website-restaurantes-servico-rapido .qsr-breadcrumb-separator {
  margin: 0 .2em;
  opacity: .35;
}

body.public-website-restaurantes-servico-rapido .qsr-prep-fill-75 {
  width: 75%;
}

body.public-website-restaurantes-servico-rapido .qsr-prep-fill-30 {
  width: 30%;
}

body.public-website-restaurantes-servico-rapido .qsr-prep-fill-5 {
  width: 5%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-20 {
  height: 20%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-35 {
  height: 35%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-45 {
  height: 45%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-55 {
  height: 55%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-60 {
  height: 60%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-75 {
  height: 75%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-95 {
  height: 95%;
}

body.public-website-restaurantes-servico-rapido .qsr-peak-bar-100 {
  height: 100%;
}

body.public-website-restaurantes-servico-rapido .qsr-accent-val {
  color: var(--accent);
}
