.mock-customizer {
  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-customizer {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

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

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

.mc-step-label {
  font-size: .6rem;
  color: var(--accent);
}

.mc-bowl-name {
  font-family: var(--Fd);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: .7rem;
}

.mc-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .35rem;
  margin-bottom: .8rem;
}

.mc-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .5rem .3rem;
  border-radius: 8px;
  background: var(--s2);
  border: 1px solid var(--border);
  cursor: default;
}

.mc-opt.sel {
  background: rgba(232, 83, 10, .08);
  border-color: rgba(232, 83, 10, .3);
}

.mc-opt-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

.mc-opt-name {
  font-size: .58rem;
  color: var(--muted);
  text-align: center;
}

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

.mc-selected-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .8rem;
}

.mc-sel-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  color: var(--muted);
}

.mc-sel-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(232, 83, 10, .15);
  border: 1px solid rgba(232, 83, 10, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mc-sel-check svg {
  width: 8px;
  height: 8px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.mc-sel-name {
  flex: 1;
  color: var(--text);
}

.mc-sel-extra {
  font-size: .6rem;
  color: var(--warm);
}

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

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

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

.mock-loyalty {
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.2rem;
  width: 280px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(196, 163, 90, .06);
}

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

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

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

.loy-card {
  background: linear-gradient(135deg, rgba(196, 163, 90, .12), rgba(232, 83, 10, .08));
  border: 1px solid rgba(196, 163, 90, .2);
  border-radius: 8px;
  padding: .9rem;
  margin-bottom: .8rem;
  text-align: center;
}

.loy-card-name {
  font-family: var(--Fd);
  font-size: .95rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: .2rem;
}

.loy-card-since {
  font-size: .58rem;
  color: var(--muted);
  margin-bottom: .7rem;
}

.loy-card-pts {
  font-family: var(--Fd);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
}

.loy-card-pts-label {
  font-size: .58rem;
  color: var(--muted);
}

.loy-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .6rem;
  color: var(--muted);
  margin-bottom: .35rem;
}

.loy-bar-wrap {
  height: 4px;
  background: var(--s3);
  border-radius: 2px;
  margin-bottom: .8rem;
  overflow: hidden;
}

.loy-bar-fill {
  height: 100%;
  width: 72%;
  background: var(--warm);
  border-radius: 2px;
}

.loy-rewards {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.loy-reward {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
}

.loy-reward-pts {
  font-family: var(--Fd);
  font-size: .8rem;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
}

.loy-reward-name {
  color: var(--text);
}

.loy-reward-status {
  font-size: .55rem;
  padding: .15rem .5rem;
  border-radius: 100px;
}

.loy-reward-status.avail {
  background: rgba(232, 83, 10, .1);
  border: 1px solid rgba(232, 83, 10, .25);
  color: var(--accent);
}

.loy-reward-status.soon {
  background: rgba(122, 131, 148, .08);
  border: 1px solid rgba(122, 131, 148, .2);
  color: var(--muted);
}

.mock-menu {
  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-menu {
  background: var(--s1);
  border-color: rgba(26, 23, 19, .15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

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

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

.mm2-live {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .6rem;
  color: #6fcf97;
}

.mm2-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fcf97;
  animation: bxPulse 1.8s ease-in-out infinite;
}

@keyframes bxPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.mm2-cats {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}

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

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

.mm2-items {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: .8rem;
}

.mm2-item {
  display: grid;
  grid-template-columns: 28px 1fr auto 12px;
  align-items: center;
  gap: .5rem;
}

.mm2-emoji {
  font-size: 1rem;
  text-align: center;
}

.mm2-info {
  min-width: 0;
}

.mm2-name {
  font-size: .68rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mm2-desc {
  font-size: .58rem;
  color: var(--muted);
}

.mm2-price {
  font-family: var(--Fd);
  font-size: .85rem;
  font-weight: 300;
  color: var(--text);
  white-space: nowrap;
}

.mm2-avail {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mm2-avail.ok {
  background: #6fcf97;
}

.mm2-avail.low {
  background: #e04040;
}

.mm2-footer {
  display: flex;
  justify-content: space-between;
  font-size: .58rem;
  color: var(--dim);
  padding-top: .6rem;
  border-top: 1px solid var(--border);
}

body.public-website-restauracao-casual-rapida .hero {
  min-height: 80vh;
}

body.public-website-restauracao-casual-rapida .hero-right {
  height: 100%;
  min-height: 80vh;
  position: relative;
}

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

body.public-website-restauracao-casual-rapida .custom-hud {
  position: absolute;
  top: 50%;
  margin-top: -120px;
  right: max(3rem, calc((100vw - 1400px) / 2 + 3rem));
  background: var(--s1);
  border: 1px solid rgba(238, 234, 222, .1);
  border-radius: 12px;
  padding: 1.3rem;
  width: 240px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(196, 163, 90, .06);
  opacity: 0;
  z-index: 2;
}

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

body.public-website-restauracao-casual-rapida .pbq {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  box-sizing: border-box;
  width: min(900px, calc(100% - 7rem));
  padding: 0;
}

body.public-website-restauracao-casual-rapida .ch-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-restauracao-casual-rapida .ch-title {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

body.public-website-restauracao-casual-rapida .ch-badge {
  font-size: .6rem;
  color: var(--warm);
  border: 1px solid rgba(196, 163, 90, .3);
  padding: .15rem .55rem;
  border-radius: 100px;
}

body.public-website-restauracao-casual-rapida .ch-bowl {
  background: var(--s2);
  border-radius: 8px;
  padding: .8rem;
  margin-bottom: .7rem;
  border: 1px solid var(--border);
}

body.public-website-restauracao-casual-rapida .ch-bowl-name {
  font-family: var(--Fd);
  font-size: .95rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .5rem;
}

body.public-website-restauracao-casual-rapida .ch-steps {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

body.public-website-restauracao-casual-rapida .ch-step {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  color: var(--muted);
}

body.public-website-restauracao-casual-rapida .ch-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .5rem;
}

body.public-website-restauracao-casual-rapida .ch-step-dot.done {
  background: rgba(232, 83, 10, .15);
  border-color: rgba(232, 83, 10, .3);
  color: var(--accent);
}

body.public-website-restauracao-casual-rapida .ch-step-dot.active {
  background: rgba(196, 163, 90, .15);
  border-color: rgba(196, 163, 90, .3);
  color: var(--warm);
}

body.public-website-restauracao-casual-rapida .ch-step-val {
  flex: 1;
}

body.public-website-restauracao-casual-rapida .ch-step-val.active {
  color: var(--warm);
}

body.public-website-restauracao-casual-rapida .ch-total {
  display: flex;
  justify-content: space-between;
  padding-top: .7rem;
  border-top: 1px solid var(--border);
  align-items: baseline;
}

body.public-website-restauracao-casual-rapida .ch-total-label {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

body.public-website-restauracao-casual-rapida .ch-total-val {
  font-family: var(--Fd);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
}

body.public-website-restauracao-casual-rapida .casual-breadcrumb-link {
  color: inherit;
  text-decoration: none;
  opacity: .6;
}

body.public-website-restauracao-casual-rapida .casual-breadcrumb-separator {
  opacity: .35;
  margin: 0 .2em;
}

body.public-website-restauracao-casual-rapida .casual-loy-progress-current {
  color: var(--warm);
}

body.public-website-restauracao-casual-rapida .casual-menu-item-muted {
  opacity: .5;
}

body.public-website-restauracao-casual-rapida .casual-menu-item-soldout {
  text-decoration: line-through;
}

body.public-website-restauracao-casual-rapida .casual-menu-item-note {
  color: #e04040;
  font-size: .6rem;
}

body.public-website-restauracao-casual-rapida .hero-h1 {
  line-height: 1.02;
  padding-bottom: .08em;
}

body.public-website-restauracao-casual-rapida .hero-h1 .word {
  margin-right: 0;
  margin-inline-end: .12em;
}

body.public-website-restauracao-casual-rapida .feat-title {
  line-height: 1.16;
  padding-bottom: .06em;
}
