.mock-coffee-order {
  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(196, 163, 90, .06);
}

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

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

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

.mco-num {
  font-family: var(--Fd);
  font-size: .95rem;
  font-weight: 300;
  color: var(--accent);
}

.mco-cats {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}

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

.mco-cat.active {
  background: rgba(196, 163, 90, .1);
  border-color: rgba(196, 163, 90, .3);
  color: var(--warm);
}

.mco-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  margin-bottom: .8rem;
}

.mco-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .55rem .4rem;
  border-radius: 8px;
  background: var(--s2);
  border: 1px solid var(--border);
  text-align: center;
}

.mco-product.sel {
  background: rgba(196, 163, 90, .08);
  border-color: rgba(196, 163, 90, .25);
}

.mco-product-emoji {
  font-size: 1.2rem;
  line-height: 1;
}

.mco-product-name {
  font-size: .62rem;
  color: var(--text);
}

.mco-product-price {
  font-size: .58rem;
  color: var(--muted);
}

.mco-mods {
  display: flex;
  gap: .3rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}

.mco-mod {
  font-size: .58rem;
  padding: .2rem .55rem;
  border-radius: 100px;
  background: var(--s2);
  border: 1px solid var(--border);
  color: var(--muted);
}

.mco-mod.sel {
  background: rgba(232, 83, 10, .08);
  border-color: rgba(232, 83, 10, .25);
  color: var(--accent);
}

.mco-order {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .7rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}

.mco-order-row {
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
}

.mco-order-name {
  color: var(--muted);
}

.mco-order-val {
  color: var(--text);
}

.mco-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

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

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

.mock-pastry {
  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(196, 163, 90, .06);
}

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

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

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

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

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

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

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

.mp-item {
  display: grid;
  grid-template-columns: 22px 1fr auto auto;
  align-items: center;
  column-gap: .5rem;
}

.mp-item-emoji {
  font-size: .95rem;
  text-align: center;
}

.mp-item-info {
  min-width: 0;
}

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

.mp-item-made {
  font-size: .55rem;
  color: var(--dim);
}

.mp-item-bar-wrap {
  grid-column: 2;
  height: 3px;
  background: var(--s3);
  border-radius: 2px;
  grid-row: 2;
  overflow: hidden;
}

.mp-item-bar {
  height: 100%;
  border-radius: 2px;
}

.mp-item-bar.ok {
  background: #6fcf97;
}

.mp-item-bar.warn {
  background: var(--warm);
}

.mp-item-bar.low {
  background: #e04040;
}

.mp-item-qty {
  font-family: var(--Fd);
  font-size: .95rem;
  font-weight: 300;
  grid-row: 1 / 3;
  grid-column: 4;
  text-align: right;
}

.mp-item-qty.ok {
  color: #6fcf97;
}

.mp-item-qty.warn {
  color: var(--warm);
}

.mp-item-qty.low {
  color: #e04040;
}

.mp-alert {
  font-size: .62rem;
  color: var(--warm);
  background: rgba(196, 163, 90, .07);
  border: 1px solid rgba(196, 163, 90, .2);
  border-radius: 6px;
  padding: .5rem .7rem;
}

.mock-stamp {
  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(196, 163, 90, .06);
}

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

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

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

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

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

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

.mst-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .35rem;
}

.stamp {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.stamp.filled {
  background: rgba(196, 163, 90, .12);
  border: 1px solid rgba(196, 163, 90, .3);
}

.stamp.empty {
  background: var(--s2);
  border: 1px solid var(--border);
}

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

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

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

.mst-history {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.mst-hist-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
}

.mst-hist-name {
  color: var(--text);
}

.mst-hist-pts {
  color: var(--warm);
  font-size: .58rem;
}

.mst-hist-date {
  color: var(--dim);
  font-size: .58rem;
}

body.public-website-cafes-pastelarias .hero {
  min-height: 80vh;
}

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

body.public-website-cafes-pastelarias .hero-right {
  min-height: 80vh;
  position: relative;
}

body.public-website-cafes-pastelarias .coffee-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: 276px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(196, 163, 90, .08);
  opacity: 0;
  z-index: 2;
}

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

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

body.public-website-cafes-pastelarias .chud-time {
  font-family: var(--Fd);
  font-size: .9rem;
  color: var(--text);
}

body.public-website-cafes-pastelarias .chud-items {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .8rem;
}

body.public-website-cafes-pastelarias .chud-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .45rem .6rem;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 6px;
}

body.public-website-cafes-pastelarias .chud-emoji {
  font-size: .9rem;
  flex-shrink: 0;
}

body.public-website-cafes-pastelarias .chud-info {
  flex: 1;
}

body.public-website-cafes-pastelarias .chud-name {
  font-size: .7rem;
  color: var(--text);
  line-height: 1.2;
}

body.public-website-cafes-pastelarias .chud-mod {
  font-size: .58rem;
  color: var(--muted);
}

body.public-website-cafes-pastelarias .chud-price {
  font-family: var(--Fd);
  font-size: .9rem;
  font-weight: 300;
  color: var(--warm);
}

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

body.public-website-cafes-pastelarias .chud-total-label {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

body.public-website-cafes-pastelarias .chud-total-val {
  font-family: var(--Fd);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
}

body.public-website-cafes-pastelarias .cafes-breadcrumb-link {
  color: inherit;
  text-decoration: none;
  opacity: .6;
}

body.public-website-cafes-pastelarias .cafes-breadcrumb-separator {
  opacity: .35;
  margin: 0 .2em;
}

body.public-website-cafes-pastelarias .cafes-stock-bar-73 {
  width: 73%;
}

body.public-website-cafes-pastelarias .cafes-stock-bar-58 {
  width: 58%;
}

body.public-website-cafes-pastelarias .cafes-stock-bar-18 {
  width: 18%;
}

body.public-website-cafes-pastelarias .cafes-stock-bar-10 {
  width: 10%;
}

body.public-website-cafes-pastelarias .cafes-alert-cta {
  margin-left: .3rem;
}

body.public-website-cafes-pastelarias .cafes-stamp-reward {
  border: 1.5px dashed rgba(196, 163, 90, .4);
  font-size: .6rem;
  color: var(--warm);
}

body.public-website-cafes-pastelarias .cafes-progress-accent {
  color: var(--warm);
}

body.public-website-cafes-pastelarias .pbq {
  box-sizing: border-box;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: min(900px, calc(100% - 7rem));
  padding: 0;
  transform: none;
}

body.public-website-cafes-pastelarias .pbq-cite {
  display: block;
  width: max-content;
  margin-inline: auto;
}
