:root {
  color-scheme: dark;
  --bg: #11100e;
  --panel: #1b1916;
  --panel-strong: #252119;
  --line: #383127;
  --text: #fff8ea;
  --muted: #b9ad99;
  --cream: #f4ddaa;
  --amber: #d7962a;
  --amber-soft: #f0bd5f;
  --red: #d45b4a;
  --green: #63c779;
  --shadow: 0 18px 60px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 150, 42, .16), transparent 28rem),
    linear-gradient(135deg, #0e0d0c 0%, #17130f 55%, #0f1010 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body.landing-page {
  display: grid;
  place-items: center;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--cream);
  border-radius: 8px;
  background: linear-gradient(145deg, #2a241a, #11100e);
  color: var(--cream);
  font-size: 28px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

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

.landing-brand .brand-mark {
  width: 72px;
  height: 72px;
}

.landing-brand .brand-logo {
  width: 56px;
  height: 56px;
}

.brand h1,
.workspace-header h2,
.section-heading h3 {
  margin: 0;
  letter-spacing: 0;
}

.brand h1 {
  font-size: 21px;
}

.brand p,
.eyebrow,
.service-status span,
.inline-message {
  color: var(--muted);
}

.brand p {
  margin: 4px 0 0;
  font-size: 13px;
}

.brand-session {
  margin: 2px 0 0;
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 700;
}

.landing-shell {
  width: min(1120px, calc(100vw - 36px));
  padding: 20px;
}

.landing-hero {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(215, 150, 42, .16), transparent 28rem),
    rgba(27, 25, 22, .9);
  box-shadow: var(--shadow);
}

.landing-brand {
  align-items: flex-start;
}

.landing-brand-copy {
  display: grid;
  gap: 6px;
}

.brand-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(244, 221, 170, .18);
  border-radius: 999px;
  background: rgba(255, 248, 234, .04);
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-copy {
  max-width: 720px;
}

.landing-copy h2 {
  margin: 0;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.03;
}

.landing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.landing-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 17, 15, .88);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.landing-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-card-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.landing-card-head strong {
  font-size: 24px;
  line-height: 1.1;
}

.dashboard-quickbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.landing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 221, 170, .72);
  background: rgba(31, 27, 20, .94);
}

.landing-card-kicker {
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.landing-card strong {
  font-size: 24px;
}

.landing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.app-page {
  min-height: 100vh;
}

.login-gate {
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-gate:not([hidden]) {
  animation: fade-in .35s ease-out;
}

.login-card {
  width: min(560px, 100%);
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(215, 150, 42, .14), transparent 18rem),
    rgba(27, 25, 22, .94);
  box-shadow: var(--shadow);
}

.login-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px 0;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(27, 25, 22, .9);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.page-link:hover {
  border-color: rgba(244, 221, 170, .72);
}

.workspace {
  padding-top: 22px;
}

.customer-hero,
.manager-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-copy {
  margin: 8px 0 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.5;
}

.customer-status,
.manager-status {
  margin-bottom: 22px;
}

.primary-button,
.secondary-button,
.icon-button,
.quantity-button,
.category-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--panel);
  border-radius: 8px;
}

.category-button.is-active {
  border-color: rgba(244, 221, 170, .72);
  background: rgba(215, 150, 42, .18);
}

.service-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(99, 199, 121, .7);
}

.service-status.is-paused .status-dot {
  background: var(--red);
  box-shadow: 0 0 18px rgba(212, 91, 74, .7);
}

.service-status strong,
.service-status span {
  display: block;
}

.service-status span {
  margin-top: 4px;
  font-size: 12px;
}

.runtime-notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 221, 170, .28);
  border-radius: 8px;
  background: rgba(215, 150, 42, .12);
  color: var(--cream);
  font-size: 13px;
  line-height: 1.45;
}

.customer-status {
  width: fit-content;
}

[hidden] {
  display: none !important;
}

.workspace {
  padding: 28px;
  min-width: 0;
}

.workspace:not([hidden]) {
  animation: fade-in .4s ease-out;
}

.workspace-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.workspace-header h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.points-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: min(520px, 100%);
  align-items: stretch;
}

.points-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 332px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(27, 25, 22, .88);
  box-shadow: var(--shadow);
}

.points-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
}

.points-label {
  display: block;
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.points-card strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.1;
}

.points-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 221, 170, .08);
  border: 1px solid rgba(244, 221, 170, .18);
}

.points-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber-soft), var(--amber));
  transition: width .25s ease;
}

@keyframes mug-foam-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes mug-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(215, 150, 42, 0); }
  50% { box-shadow: 0 0 18px rgba(215, 150, 42, .26), 0 0 36px rgba(215, 150, 42, .14); }
}

.beer-mug {
  position: relative;
  width: 138px;
  height: 170px;
  margin: 0 auto;
  align-self: center;
}

.beer-mug-top {
  position: absolute;
  left: 18px;
  top: 4px;
  width: 102px;
  height: 14px;
  border: 3px solid var(--cream);
  border-radius: 999px 999px 6px 6px;
  background: rgba(255, 248, 234, .08);
}

.beer-mug-body {
  position: absolute;
  left: 18px;
  top: 16px;
  width: 102px;
  height: 126px;
  overflow: hidden;
  border: 3px solid var(--cream);
  border-top: 0;
  border-radius: 6px 6px 16px 16px;
  background: rgba(255, 248, 234, .04);
}

.beer-mug-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background:
    linear-gradient(180deg, rgba(255, 229, 156, .98) 0%, var(--amber-soft) 35%, var(--amber) 100%);
  transition: height .25s ease, filter .25s ease;
}

.beer-mug-foam {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-around;
  padding: 2px 10px 0;
}

.beer-mug-foam span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fffaf0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  animation: mug-foam-bob 3.6s ease-in-out infinite;
}

.beer-mug-foam span:nth-child(1) { transform: translateY(9px); }
.beer-mug-foam span:nth-child(2) { transform: translateY(2px); }
.beer-mug-foam span:nth-child(3) { transform: translateY(7px); }
.beer-mug-foam span:nth-child(4) { transform: translateY(1px); }
.beer-mug-foam span:nth-child(1) { animation-delay: 0s; }
.beer-mug-foam span:nth-child(2) { animation-delay: .2s; }
.beer-mug-foam span:nth-child(3) { animation-delay: .4s; }
.beer-mug-foam span:nth-child(4) { animation-delay: .6s; }

.beer-mug-handle {
  position: absolute;
  right: 4px;
  top: 38px;
  width: 36px;
  height: 72px;
  border: 6px solid var(--cream);
  border-left: 0;
  border-radius: 0 18px 18px 0;
  opacity: .92;
}

.beer-mug-grand {
  transform: none;
}

.points-card.is-ready {
  animation: mug-glow 1.9s ease-in-out infinite;
}

.points-card.is-ready .beer-mug-body {
  border-color: rgba(244, 221, 170, .96);
}

.points-card.is-ready .beer-mug-handle {
  border-color: rgba(244, 221, 170, .96);
}

.points-card.is-ready .beer-mug-foam span {
  background: #fffdf8;
}

.points-card.is-ready .beer-mug-fill {
  filter: saturate(1.12) brightness(1.04);
}

.points-card.is-ready .beer-mug-top {
  background: rgba(255, 248, 234, .18);
}

.points-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  min-height: 40px;
}

.points-action {
  width: 138px;
  white-space: nowrap;
}

.points-action.points-chip {
  flex: 0 0 138px;
}

.points-chip {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #31291d;
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.points-card .pill {
  min-width: 138px;
}

.points-chip:disabled {
  opacity: 1;
  color: var(--cream);
  background: #2d261b;
  cursor: default;
}

.customer-grid,
.manager-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
}

.menu-panel,
.order-panel,
.orders-board,
.manager-tools section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 25, 22, .9);
  box-shadow: var(--shadow);
}

.menu-panel,
.orders-board {
  padding: 20px;
}

.order-panel,
.manager-tools section {
  padding: 18px;
}

.manager-tools {
  display: grid;
  gap: 22px;
}

.manager-points-box {
  background:
    linear-gradient(180deg, rgba(215, 150, 42, .08), transparent 45%),
    rgba(27, 25, 22, .9);
}

.manager-points-box .inline-message {
  min-height: 22px;
  margin-top: 10px;
}

.manager-scan-actions {
  display: grid;
  gap: 8px;
  margin: 10px 0 4px;
}

.manual-points-history {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.manual-points-history li {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 221, 170, .12);
  border-radius: 10px;
  background: rgba(255, 248, 234, .03);
}

.manual-points-history li strong {
  color: var(--cream);
}

.manual-points-history li span {
  color: var(--muted);
  font-size: 13px;
}

.history-dialog {
  width: min(980px, 100%);
}

.history-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.stack-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.compact-form {
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15120f;
  color: var(--text);
  font: inherit;
}

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

.field-inline {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

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

.section-note {
  margin: -4px 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.customer-list,
.draft-list,
.promo-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.customer-card,
.draft-card,
.promo-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15120f;
}

.customer-card-main,
.draft-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.customer-card-main h4,
.draft-card h4,
.promo-card h4 {
  margin: 0;
  font-size: 16px;
}

.customer-card-main p,
.draft-card p,
.promo-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.customer-card-main strong {
  color: var(--cream);
}

.customer-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.draft-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.draft-actions .secondary-button {
  width: auto;
  min-width: 132px;
}

.promo-strip {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.advanced-panel {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 25, 22, .9);
  box-shadow: var(--shadow);
}

.advanced-panel > summary {
  cursor: pointer;
  list-style: none;
  color: var(--cream);
  font-weight: 700;
}

.advanced-panel > summary::-webkit-details-marker {
  display: none;
}

.advanced-panel-body {
  margin-top: 14px;
}

.nested-panel {
  display: grid;
  gap: 12px;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(244, 221, 170, .32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 150, 42, .18), rgba(27, 25, 22, .9)),
    #15120f;
}

.promo-banner strong {
  display: block;
  margin-top: 4px;
  color: var(--cream);
  font-size: 16px;
}

.promo-banner p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.danger-button {
  border-color: rgba(212, 91, 74, .55);
  background: rgba(70, 24, 21, .92);
  color: #ffd7d2;
}

.danger-button:hover {
  border-color: rgba(212, 91, 74, .9);
  background: rgba(97, 31, 27, .96);
}

.editor-workspace {
  display: grid;
  gap: 22px;
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 22px;
}

.editor-panel,
.editor-summary-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(27, 25, 22, .9);
  box-shadow: var(--shadow);
}

.editor-summary-card {
  min-width: 220px;
  display: grid;
  gap: 8px;
  align-content: center;
}

.editor-summary-card strong {
  font-size: 26px;
  color: var(--cream);
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.ingredient-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ingredient-grid {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(21, 18, 15, .92);
}

.ingredient-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(244, 221, 170, .18);
  border-radius: 999px;
  background: rgba(49, 41, 29, .88);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
}

.ingredient-chip input {
  margin: 0;
}

.ingredient-list {
  display: grid;
  gap: 8px;
}

.ingredient-list .section-note {
  margin: 0;
}

.menu-item-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.menu-item-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.menu-item-ingredients .pill {
  background: rgba(49, 41, 29, .86);
}

.customization-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 9, 8, .68);
  backdrop-filter: blur(6px);
  z-index: 40;
}

.customization-overlay[hidden] {
  display: none !important;
}

.customization-dialog {
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #171410;
  box-shadow: var(--shadow);
}

.scanner-dialog {
  width: min(760px, 100%);
}

.scanner-stage {
  display: grid;
  gap: 14px;
}

.scanner-video {
  width: 100%;
  min-height: 260px;
  max-height: 420px;
  border: 1px solid rgba(244, 221, 170, .16);
  border-radius: 16px;
  background: #000;
  object-fit: cover;
}

.scanner-guide {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 221, 170, .12);
  border-radius: 12px;
  background: rgba(255, 248, 234, .03);
}

.scanner-guide strong {
  color: var(--cream);
}

.scanner-guide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.scanner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.customization-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.customization-head h3 {
  margin: 4px 0 0;
  font-size: 28px;
}

.customization-body {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.customization-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(27, 25, 22, .92);
}

.customization-panel h4 {
  margin: 0;
  font-size: 18px;
}

.customization-summary {
  display: grid;
  gap: 10px;
}

.customization-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.customization-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.customization-price {
  color: var(--amber-soft);
  font-size: 22px;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.section-heading h3 {
  font-size: 20px;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.category-button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--muted);
}

.category-button.is-active {
  color: var(--text);
}

.menu-list,
.orders-list,
.tap-list,
.cart-list {
  display: grid;
  gap: 12px;
}

.menu-item,
.cart-item,
.order-card,
.tap-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.promo-card.is-active {
  border-color: rgba(99, 199, 121, .35);
}

.promo-card.is-paused {
  opacity: .8;
}

.promo-card .draft-actions {
  margin-top: 10px;
}

.promo-card .draft-actions .secondary-button {
  width: auto;
  min-width: 100px;
}

.pill-open {
  border-color: rgba(99, 199, 121, .35);
  background: rgba(99, 199, 121, .14);
}

.pill-closed {
  border-color: rgba(244, 221, 170, .28);
  background: rgba(244, 221, 170, .12);
}

.menu-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
}

.product-art {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(244, 221, 170, .24), rgba(215, 150, 42, .16)),
    #161310;
  color: var(--cream);
  font-size: 22px;
  font-weight: 800;
  overflow: hidden;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.menu-copy h4,
.order-card h4,
.tap-card h4 {
  margin: 0;
  font-size: 17px;
}

.menu-copy p,
.order-meta,
.prep-column ul,
.tap-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #31291d;
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
}

.menu-action {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.favorite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color .2s ease, transform .15s ease;
}

.favorite-btn:hover {
  color: var(--amber-soft);
  transform: scale(1.15);
}

.favorite-btn.is-favorite {
  color: var(--red);
}

.favorite-btn.is-favorite:hover {
  color: #ff7a6a;
}

.price {
  color: var(--cream);
  font-weight: 800;
}

.primary-button,
.secondary-button {
  min-height: 42px;
  padding: 10px 14px;
  font-weight: 800;
}

.primary-button {
  border-color: rgba(215, 150, 42, .68);
  background: linear-gradient(180deg, #e1a13d, #b87518);
  color: #17100a;
}

.secondary-button {
  width: 100%;
  background: #2d261b;
  color: var(--cream);
}

.icon-button,
.quantity-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #12110f;
  color: var(--text);
  padding: 10px 12px;
}

textarea {
  resize: vertical;
  min-height: 104px;
}

.payment-note,
.empty-state {
  border: 1px dashed rgba(244, 221, 170, .34);
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  background: rgba(244, 221, 170, .05);
  font-size: 14px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-total strong {
  font-size: 20px;
  color: var(--cream);
}

.inline-message {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.switch {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch span {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: var(--red);
  transition: background .2s ease;
}

.switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: transform .2s ease;
}

.switch input:checked + span {
  background: var(--green);
}

.switch input:checked + span::after {
  transform: translateX(20px);
}

.slot-limit {
  display: grid;
  gap: 6px;
  min-width: 130px;
}

.order-card {
  padding: 14px;
}

.order-card.is-purchase {
  border-color: rgba(244, 221, 170, .2);
}

.order-card.is-reward {
  border-color: rgba(215, 150, 42, .42);
  background: linear-gradient(180deg, rgba(215, 150, 42, .08), rgba(21, 18, 15, .96));
}

.order-card.is-beer-reward {
  border-color: rgba(99, 199, 121, .38);
  background: linear-gradient(180deg, rgba(99, 199, 121, .08), rgba(21, 18, 15, .96));
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.order-note {
  margin: 12px 0 0;
  font-size: 13px;
}

.success-note {
  color: var(--green);
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.prep-column {
  padding: 12px;
  border-radius: 8px;
  background: #171410;
}

.prep-column strong {
  color: var(--cream);
}

.prep-column ul {
  padding-left: 18px;
}

.tap-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(215, 150, 42, .25);
  border-radius: 10px;
  background: rgba(215, 150, 42, .06);
}

.tap-card select {
  min-width: 150px;
}

.tap-controls {
  display: grid;
  gap: 8px;
}

.limited-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.limited-toggle input {
  width: auto;
}

/* ───── Toast notifications ───── */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: grid;
  gap: 10px;
  max-width: 380px;
  width: 100%;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1f1c17;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .48);
  pointer-events: auto;
  animation: toast-in .3s ease-out forwards;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
}

.toast.removing {
  animation: toast-out .25s ease-in forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

/* ───── Animated transitions ───── */

.fade-in {
  animation: fade-in .35s ease-out forwards;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ───── Order filters ───── */

.order-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.compact-field {
  flex: 1;
  min-width: 120px;
}

.compact-field input,
.compact-field select {
  width: 100%;
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--text);
}

/* ───── Mode selector ───── */

.mode-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 20px;
}

.mode-selector-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.mode-selector-inner h2 {
  margin: 16px 0 24px;
}

.mode-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mode-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.mode-card:hover,
.mode-card:focus-visible {
  border-color: var(--amber);
  background: rgba(215, 150, 42, .08);
}

.mode-card-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(215, 150, 42, .12);
  flex-shrink: 0;
}

.mode-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.mode-card span {
  font-size: 13px;
  color: var(--muted);
}

/* ───── Allergen filter ───── */

.allergen-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.allergen-filter-label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.allergen-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.allergen-chip {
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}

.allergen-chip:hover {
  border-color: var(--amber);
  color: var(--text);
}

.allergen-chip.is-active,
.allergen-chip.is-hidden {
  background: rgba(180, 60, 60, .2);
  border-color: rgba(180, 60, 60, .4);
  color: #d47;
}

/* ───── Menu browse grid ───── */

.menu-browse-grid {
  max-width: 720px;
}

/* ───── Fidelity dashboard ───── */

.fidelity-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.fidelity-points-card,
.fidelity-reward-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: var(--panel);
}

.fidelity-points-head,
.fidelity-reward-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fidelity-big-number {
  font-size: 36px;
  color: var(--amber);
}

.fidelity-catalog,
.fidelity-orders {
  margin-bottom: 24px;
}

/* ───── Menu search ───── */

.menu-search {
  margin-bottom: 12px;
}

.menu-search input {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}

.menu-search input::placeholder {
  color: var(--muted);
}

/* ───── Sold out items ───── */

.menu-item.sold-out {
  opacity: .5;
}

.pill-sold-out {
  background: rgba(180, 60, 60, .2);
  color: #d47;
  border: 1px solid rgba(180, 60, 60, .3);
}

/* ───── Export buttons ───── */

.export-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.export-buttons .secondary-button {
  flex: 1;
  min-width: 140px;
}

/* ───── Cart item entrance ───── */

.cart-item {
  animation: cart-in .25s ease-out;
}

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

/* ───── Menu item hover polish ───── */

.menu-item {
  transition: border-color .2s ease, background .2s ease;
}

.menu-item:hover {
  border-color: rgba(244, 221, 170, .3);
  background: rgba(37, 33, 25, .8);
}

/* ───── Order status pills ───── */

.pill-status-open {
  border-color: rgba(215, 150, 42, .45);
  background: rgba(215, 150, 42, .18);
  color: var(--amber-soft);
}

.pill-status-preparing {
  border-color: rgba(70, 130, 220, .45);
  background: rgba(70, 130, 220, .18);
  color: #8ab4f8;
}

.pill-status-ready {
  border-color: rgba(99, 199, 121, .45);
  background: rgba(99, 199, 121, .18);
  color: var(--green);
}

.pill-status-completed {
  border-color: rgba(244, 221, 170, .22);
  background: rgba(244, 221, 170, .10);
  color: var(--muted);
}

.pill-status-cancelled {
  border-color: rgba(212, 91, 74, .45);
  background: rgba(212, 91, 74, .18);
  color: #ff9a8a;
}

.is-cancelled {
  opacity: .6;
}

.is-cancelled h4 {
  text-decoration: line-through;
}

.reorder-btn {
  min-width: auto;
  width: auto;
}

.edit-cart-btn {
  min-width: auto;
  width: auto;
  font-size: 12px;
  padding: 4px 8px;
  min-height: 28px;
}

/* ───── Cart badge for menu mode ───── */

.cart-badge-floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  margin-left: 12px;
  border-radius: 999px;
  background: var(--amber);
  color: #17100a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

/* ───── Dashboard ───── */

.dashboard-section {
  margin-bottom: 22px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 25, 22, .9);
}

.dashboard-card strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 24px;
  color: var(--cream);
}

.dashboard-card .menu-item-note {
  font-size: 12px;
}

.dashboard-top-items {
  margin-top: 12px;
}

.top-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* ───── Storico serata ───── */

.history-card {
  opacity: .88;
}

.history-totals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.history-stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 25, 22, .9);
}

.history-stat strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 24px;
  color: var(--cream);
}

.history-stat .menu-item-note {
  font-size: 12px;
}

/* ───── History pagination ───── */

.history-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0;
}

.history-page-info {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.history-pagination .secondary-button {
  width: auto;
  min-width: 100px;
}

.history-pagination .secondary-button:disabled {
  opacity: .4;
  cursor: default;
}

/* ───── Dashboard comparison ───── */

.dashboard-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.compare-up {
  color: var(--green);
  font-weight: 700;
}

.compare-down {
  color: var(--red);
  font-weight: 700;
}

.compare-same {
  color: var(--muted);
  font-weight: 700;
}

/* ───── Leaderboard ───── */

.dashboard-leaderboard {
  margin-top: 12px;
}

.leaderboard-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 25, 22, .9);
  font-size: 14px;
}

.leaderboard-rank {
  font-size: 18px;
  text-align: center;
}

.leaderboard-name {
  color: var(--cream);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-points {
  color: var(--amber-soft);
  font-weight: 700;
}

.leaderboard-orders {
  color: var(--muted);
  font-size: 12px;
}

/* ───── Stampa ───── */

@media print {
  body * { visibility: hidden; }
  .topbar, .manager-grid, .service-status, .manager-tools, .advanced-panel,
  .runtime-notice, #printHistoryBtn, #emailHistoryBtn { display: none !important; }
  .history-totals-grid { break-inside: avoid; }
  .history-card { break-inside: avoid; border-color: #ccc; }
}

@media (max-width: 720px) {
  .history-totals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .leaderboard-orders {
    display: none;
  }
}

@media (max-width: 1080px) {
  .landing-actions {
    grid-template-columns: 1fr;
  }

  .topbar,
  .customer-hero,
  .manager-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .service-status {
    margin-top: 0;
  }

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

  .manager-tools section,
  .orders-board {
    padding: 16px;
  }

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

@media (max-width: 720px) {
  .landing-shell {
    width: min(100vw, calc(100vw - 24px));
    padding: 12px;
  }

  .workspace,
  .topbar {
    padding: 18px;
  }

  .login-gate {
    padding: 18px;
  }

  .workspace-header,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .orders-board,
  .manager-tools section,
  .order-panel {
    padding: 16px;
  }

  .order-card-header,
  .customization-head {
    flex-direction: column;
    align-items: stretch;
  }

  .order-card-header .pill {
    align-self: flex-start;
  }

  .history-totals-grid {
    grid-template-columns: 1fr;
  }

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

  .points-overview {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .points-card {
    min-height: 0;
  }

  .beer-mug {
    width: 126px;
    height: 154px;
  }

  .beer-mug-top {
    left: 16px;
    width: 94px;
  }

  .beer-mug-body {
    left: 16px;
    width: 94px;
    height: 116px;
  }

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

  .mini-grid,
  .promo-banner,
  .customer-card-main,
  .draft-card-header {
    grid-template-columns: 1fr;
    display: grid;
  }

  .promo-banner {
    align-items: start;
  }

  .product-art {
    width: 56px;
    height: 56px;
  }

  .menu-action {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
  }

  .prep-grid {
    grid-template-columns: 1fr;
  }

  .editor-grid,
  .customization-body {
    grid-template-columns: 1fr;
  }

  .customization-head {
    flex-direction: column;
  }

  .tap-card {
    grid-template-columns: 1fr;
  }

  .manager-grid {
    gap: 16px;
  }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="tab"]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.segmented-control [role="tab"]:focus-visible {
  outline-offset: -2px;
}

.quantity-button:focus-visible {
  outline-width: 3px;
}

.menu-search input:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline-offset: 0;
}

.allergen-chip:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.order-confirm-card {
  max-width: 420px;
  text-align: center;
}

.order-confirm-header {
  margin-bottom: 20px;
}

.order-confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(72, 187, 120, .15);
  color: #48bb78;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.order-confirm-details {
  text-align: left;
  margin-bottom: 20px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 248, 234, .08);
}

.confirm-label {
  color: var(--muted);
}

.confirm-items {
  padding: 8px 0;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
}

.confirm-total {
  border-bottom: none;
  font-size: 16px;
  padding-top: 12px;
}

/* ───── Light theme ───── */

[data-theme="light"] {
  color-scheme: light;
  --bg: #faf6ef;
  --panel: #f0ebe1;
  --panel-strong: #e8e1d4;
  --line: #c9bfae;
  --text: #1a1714;
  --muted: #5c5347;
  --cream: #8b6914;
  --amber: #b87518;
  --amber-soft: #9a6410;
  --red: #c04030;
  --green: #2e8b4a;
  --shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

[data-theme="light"] body {
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 150, 42, .10), transparent 28rem),
    linear-gradient(135deg, #faf6ef 0%, #f5efe4 55%, #faf8f3 100%);
  color: var(--text);
}

[data-theme="light"] .brand-mark {
  background: linear-gradient(145deg, #f0ebe1, #e8e1d4);
  color: var(--cream);
  border-color: var(--cream);
}

[data-theme="light"] .landing-hero,
[data-theme="light"] .login-card,
[data-theme="light"] .menu-panel,
[data-theme="light"] .order-panel,
[data-theme="light"] .orders-board,
[data-theme="light"] .manager-tools section,
[data-theme="light"] .customization-dialog,
[data-theme="light"] .advanced-panel {
  background: var(--panel);
}

[data-theme="light"] .menu-item,
[data-theme="light"] .cart-item,
[data-theme="light"] .order-card,
[data-theme="light"] .tap-card {
  background: var(--panel-strong);
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea,
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

[data-theme="light"] .primary-button {
  background: linear-gradient(180deg, #e1a13d, #b87518);
  color: #17100a;
}

[data-theme="light"] .secondary-button {
  background: var(--panel-strong);
  color: var(--text);
}

[data-theme="light"] .pill {
  background: #e8e1d4;
  color: var(--cream);
}

[data-theme="light"] .product-art {
  background: var(--panel-strong);
  color: var(--cream);
}

[data-theme="light"] .toast {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

[data-theme="light"] .promo-banner {
  background: linear-gradient(135deg, rgba(215, 150, 42, .10), var(--panel));
  border-color: rgba(215, 150, 42, .32);
}

[data-theme="light"] .brand-session {
  color: var(--amber);
}

[data-theme="light"] .landing-card {
  background: var(--panel);
}

[data-theme="light"] .landing-card:hover {
  background: var(--panel-strong);
}

/* ───── Happy Hour ───── */

.happy-hour-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(99, 199, 121, .18);
  border: 1px solid rgba(99, 199, 121, .4);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.price-original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  margin-right: 4px;
}

/* ───── Reduced motion ───── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
