.wb-online-ordering {
  --wb-oo-card-surface: color-mix(in srgb, currentColor 4%, transparent);
  --wb-oo-card-color: inherit;
  --wb-oo-card-border: color-mix(in srgb, currentColor 18%, transparent);
  --wb-oo-form-style-color: currentColor;
  --wb-oo-form-color: var(--wb-oo-form-style-color);
  --wb-oo-form-font: inherit;
  --wb-oo-form-size: 1rem;
  --wb-oo-form-surface: color-mix(in srgb, #fff 78%, transparent);
  --wb-oo-form-border: color-mix(in srgb, currentColor 18%, transparent);
  --wb-oo-form-border-width: 1px;
  --wb-oo-form-radius: 1rem;
  --wb-oo-form-shadow: none;
  --wb-oo-form-backdrop: none;
  --wb-oo-control-surface: transparent;
  --wb-oo-control-border: color-mix(in srgb, currentColor 24%, transparent);
  background: var(--wb-feature-section-default-surface, #d3d3d3);
  color: inherit;
}

.wb-online-ordering-app {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  min-width: 0;
  position: relative;
  isolation: isolate;
}

.wb-oo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 32%);
  gap: 1rem;
  align-items: start;
}

.wb-oo-categories {
  display: flex;
  gap: 0.5rem;
  overflow: auto;
  padding: 0.25rem 0;
}

.wb-oo-categories button,
.wb-oo-inline-actions button {
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  padding: 0.55rem 0.9rem;
  color: inherit;
}

.wb-oo-categories button[aria-pressed="true"] {
  font-weight: 700;
  box-shadow: inset 0 0 0 1px currentColor;
}

.wb-oo-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.wb-oo-item {
  border: 1px solid var(--wb-oo-card-border);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--wb-oo-card-surface);
  color: var(--wb-oo-card-color);
}

.wb-oo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  min-width: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  isolation: isolate;
  scroll-margin-top: 6rem;
  font-family: var(--wb-oo-form-font);
  font-size: var(--wb-oo-form-size);
  color: var(--wb-oo-form-color);
}

.wb-oo-form > .wb-oo-fulfillment,
.wb-oo-form > .wb-oo-customer,
.wb-oo-form > .wb-oo-checkout,
.wb-oo-confirmation,
.wb-oo-policy {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.wb-oo-cart,
.wb-oo-save,
.wb-oo-fulfillment,
.wb-oo-customer,
.wb-oo-checkout {
  border: var(--wb-oo-form-border-width) solid var(--wb-oo-form-border);
  border-radius: var(--wb-oo-form-radius);
  padding: 1rem;
  background: var(--wb-oo-form-surface);
  box-shadow: var(--wb-oo-form-shadow);
  backdrop-filter: var(--wb-oo-form-backdrop);
  font-family: var(--wb-oo-form-font);
  font-size: var(--wb-oo-form-size);
  color: var(--wb-oo-form-color);
}

.wb-oo-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.85rem;
}

.wb-oo-item:not(:has(img)) {
  grid-template-columns: 1fr;
}

.wb-oo-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.wb-oo-item-copy h3,
.wb-oo-cart h3 {
  margin: 0.15rem 0;
}

.wb-oo-item-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.wb-oo-item-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wb-oo-qty {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.wb-oo-qty button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.wb-oo-cart {
  position: sticky;
  top: 1rem;
}

.wb-oo-cart ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wb-oo-cart li,
.wb-oo-cart-total,
.wb-oo-totals div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.wb-oo-cart-total {
  border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.wb-oo-item-notes {
  flex-basis: 100%;
  border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent) !important;
  padding-top: 0.85rem !important;
  margin-top: 0.25rem !important;
}

.wb-oo-item-notes legend span {
  font-size: 0.88em;
  font-weight: 400;
  opacity: 0.72;
}

.wb-oo-item-notes > label {
  flex: 1 1 100%;
}

.wb-oo-item-notes textarea,
.wb-oo-money-input input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid var(--wb-oo-control-border);
  background: var(--wb-oo-control-surface);
  color: var(--wb-oo-form-color);
  font: inherit;
}

.wb-oo-tip {
  min-width: 140px;
}

.wb-oo-money-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.35rem;
}

.wb-oo-money-input input {
  min-width: 0;
}

.wb-oo-quote-stale {
  margin: 0.5rem 0;
  font-weight: 600;
}

.wb-oo-fulfillment fieldset,
.wb-oo-customer fieldset,
.wb-oo-checkout fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wb-oo-fulfillment legend,
.wb-oo-customer legend,
.wb-oo-checkout legend {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.wb-oo-fulfillment label,
.wb-oo-customer label,
.wb-oo-checkout label {
  display: grid;
  gap: 0.35rem;
}

.wb-oo-fulfillment label:has(input[type="radio"]),
.wb-oo-customer label:has(input[type="checkbox"]),
.wb-oo-checkout label:has(input[type="radio"]) {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wb-oo-customer fieldset > label:not(.wb-oo-consent) {
  flex: 1 1 210px;
}

.wb-oo-fulfillment input:not([type="radio"]):not([type="checkbox"]),
.wb-oo-fulfillment select,
.wb-oo-customer input:not([type="radio"]):not([type="checkbox"]),
.wb-oo-customer textarea,
.wb-oo-checkout select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid var(--wb-oo-control-border);
  background: var(--wb-oo-control-surface);
  color: var(--wb-oo-form-color);
}

.wb-oo-fulfillment input[type="radio"],
.wb-oo-customer input[type="checkbox"],
.wb-oo-checkout input[type="radio"] {
  accent-color: currentColor;
}

.wb-oo-policy,
.wb-oo-placeholder,
.wb-oo-empty {
  opacity: 0.78;
}

.wb-oo-confirmation[hidden],
.wb-oo-confirmation:empty {
  display: none;
}

.wb-oo-confirmation:not(:empty) {
  order: -1;
  padding: 0.9rem 1rem;
  border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  border-radius: 0.75rem;
  background: color-mix(in srgb, currentColor 7%, transparent);
  font-weight: 650;
  line-height: 1.45;
}

.wb-oo-confirmation.is-success {
  color: #166534;
  border-color: #22c55e;
  background: #ecfdf3;
}

.wb-oo-confirmation.is-warning {
  color: #854d0e;
  border-color: #eab308;
  background: #fefce8;
}

.wb-oo-confirmation.is-pending {
  color: #1e40af;
  border-color: #60a5fa;
  background: #eff6ff;
}

.wb-oo-confirmation.is-error,
[data-online-ordering-readiness].is-error {
  color: #9f1d1d;
}

.wb-oo-confirmation.is-error {
  border-color: #ef4444;
  background: #fef2f2;
}

.wb-online-ordering--menu_list_side_cart .wb-oo-menu {
  grid-template-columns: 1fr;
}

.wb-online-ordering--category_tabs_sticky_cart .wb-oo-categories {
  position: sticky;
  top: 0;
  z-index: 2;
  background: inherit;
}

.wb-online-ordering--compact_quick_order .wb-oo-layout,
.wb-online-ordering--compact_quick_order .wb-oo-menu {
  grid-template-columns: 1fr;
}

.wb-online-ordering--compact_quick_order .wb-oo-cart {
  position: static;
}

.wb-oo-inline-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wb-section[data-tile-bg-color-key="white"] {
  --wb-oo-card-surface: #ffffff;
}
.wb-section[data-tile-bg-color-key="offwhite"] {
  --wb-oo-card-surface: #f8fafc;
}
.wb-section[data-tile-bg-color-key="slate"] {
  --wb-oo-card-surface: #0f172a;
  --wb-oo-card-color: #ffffff;
}
.wb-section[data-tile-bg-color-key="lightgray"] {
  --wb-oo-card-surface: #d3d3d3;
}
.wb-section[data-tile-bg-color-key="gray"] {
  --wb-oo-card-surface: #808080;
  --wb-oo-card-color: #ffffff;
}
.wb-section[data-tile-bg-color-key="zinc"] {
  --wb-oo-card-surface: #f4f4f5;
}
.wb-section[data-tile-bg-color-key="red"] {
  --wb-oo-card-surface: #fee2e2;
}
.wb-section[data-tile-bg-color-key="orange"] {
  --wb-oo-card-surface: #ffedd5;
}
.wb-section[data-tile-bg-color-key="amber"] {
  --wb-oo-card-surface: #fef3c7;
}
.wb-section[data-tile-bg-color-key="yellow"] {
  --wb-oo-card-surface: #fef9c3;
}
.wb-section[data-tile-bg-color-key="lime"] {
  --wb-oo-card-surface: #ecfccb;
}
.wb-section[data-tile-bg-color-key="green"] {
  --wb-oo-card-surface: #dcfce7;
}
.wb-section[data-tile-bg-color-key="emerald"] {
  --wb-oo-card-surface: #d1fae5;
}
.wb-section[data-tile-bg-color-key="teal"] {
  --wb-oo-card-surface: #ccfbf1;
}
.wb-section[data-tile-bg-color-key="cyan"] {
  --wb-oo-card-surface: #cffafe;
}
.wb-section[data-tile-bg-color-key="sky"] {
  --wb-oo-card-surface: #e0f2fe;
}
.wb-section[data-tile-bg-color-key="blue"] {
  --wb-oo-card-surface: #dbeafe;
}
.wb-section[data-tile-bg-color-key="indigo"] {
  --wb-oo-card-surface: #e0e7ff;
}
.wb-section[data-tile-bg-color-key="violet"] {
  --wb-oo-card-surface: #ede9fe;
}
.wb-section[data-tile-bg-color-key="purple"] {
  --wb-oo-card-surface: #f3e8ff;
}
.wb-section[data-tile-bg-color-key="rose"] {
  --wb-oo-card-surface: #ffe4e6;
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-style="glass"] {
  --wb-oo-form-style-color: #0f172a;
  --wb-oo-form-surface: color-mix(in srgb, #ffffff 78%, transparent);
  --wb-oo-form-border: rgba(15, 23, 42, 0.16);
  --wb-oo-form-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  --wb-oo-form-backdrop: blur(16px);
  --wb-oo-control-surface: rgba(255, 255, 255, 0.68);
  --wb-oo-control-border: rgba(15, 23, 42, 0.18);
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-style="cct_app"] {
  --wb-oo-form-style-color: #f8fbff;
  --wb-oo-form-surface: linear-gradient(
    135deg,
    rgba(6, 21, 40, 0.96),
    rgba(15, 23, 42, 0.98) 58%,
    rgba(18, 62, 114, 0.94)
  );
  --wb-oo-form-border: rgba(56, 189, 248, 0.32);
  --wb-oo-form-shadow:
    0 18px 44px rgba(2, 6, 23, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  --wb-oo-form-backdrop: blur(14px);
  --wb-oo-control-surface: rgba(15, 23, 42, 0.72);
  --wb-oo-control-border: rgba(56, 189, 248, 0.28);
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-style="light"] {
  --wb-oo-form-style-color: #172033;
  --wb-oo-form-surface: #ffffff;
  --wb-oo-form-border: #dbe3ee;
  --wb-oo-form-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
  --wb-oo-control-surface: #f8fafc;
  --wb-oo-control-border: #cbd5e1;
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-style="dark"] {
  --wb-oo-form-style-color: #ffffff;
  --wb-oo-form-surface: #111827;
  --wb-oo-form-border: rgba(255, 255, 255, 0.2);
  --wb-oo-form-shadow: 0 16px 38px rgba(2, 6, 23, 0.34);
  --wb-oo-control-surface: rgba(255, 255, 255, 0.08);
  --wb-oo-control-border: rgba(255, 255, 255, 0.24);
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-style="blue"] {
  --wb-oo-form-style-color: #172033;
  --wb-oo-form-surface: #dbeafe;
  --wb-oo-form-border: #93c5fd;
  --wb-oo-form-shadow: 0 12px 30px rgba(37, 99, 235, 0.14);
  --wb-oo-control-surface: rgba(255, 255, 255, 0.68);
  --wb-oo-control-border: #93c5fd;
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-style="minimal"] {
  --wb-oo-form-style-color: currentColor;
  --wb-oo-form-surface: transparent;
  --wb-oo-form-border: transparent;
  --wb-oo-form-border-width: 0;
  --wb-oo-form-radius: 0;
  --wb-oo-form-shadow: none;
  --wb-oo-form-backdrop: none;
  --wb-oo-control-surface: transparent;
  --wb-oo-control-border: color-mix(in srgb, currentColor 28%, transparent);
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="white"] {
  --wb-oo-form-surface: #ffffff;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="offwhite"] {
  --wb-oo-form-surface: #f8fafc;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="slate"] {
  --wb-oo-form-surface: #0f172a;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="lightgray"] {
  --wb-oo-form-surface: #d3d3d3;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="gray"] {
  --wb-oo-form-surface: #808080;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="zinc"] {
  --wb-oo-form-surface: #f4f4f5;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="red"] {
  --wb-oo-form-surface: #fee2e2;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="orange"] {
  --wb-oo-form-surface: #ffedd5;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="amber"] {
  --wb-oo-form-surface: #fef3c7;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="yellow"] {
  --wb-oo-form-surface: #fef9c3;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="lime"] {
  --wb-oo-form-surface: #ecfccb;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="green"] {
  --wb-oo-form-surface: #dcfce7;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="emerald"] {
  --wb-oo-form-surface: #d1fae5;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="teal"] {
  --wb-oo-form-surface: #ccfbf1;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="cyan"] {
  --wb-oo-form-surface: #cffafe;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="sky"] {
  --wb-oo-form-surface: #e0f2fe;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="blue"] {
  --wb-oo-form-surface: #dbeafe;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="indigo"] {
  --wb-oo-form-surface: #e0e7ff;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="violet"] {
  --wb-oo-form-surface: #ede9fe;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="purple"] {
  --wb-oo-form-surface: #f3e8ff;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-panel-bg-color="rose"] {
  --wb-oo-form-surface: #ffe4e6;
}

:is(
    .wb-online-ordering,
    .wb-oo-form,
    .wb-oo-cart,
    .wb-oo-save,
    .wb-oo-fulfillment,
    .wb-oo-customer,
    .wb-oo-checkout
  )[data-form-panel-bg-color="slate"][data-form-text-color="default"],
:is(
    .wb-online-ordering,
    .wb-oo-form,
    .wb-oo-cart,
    .wb-oo-save,
    .wb-oo-fulfillment,
    .wb-oo-customer,
    .wb-oo-checkout
  )[data-form-panel-bg-color="gray"][data-form-text-color="default"] {
  --wb-oo-form-style-color: #ffffff;
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="default"] {
  --wb-oo-form-font:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="inter"] {
  --wb-oo-form-font: Inter, ui-sans-serif, system-ui, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="arial"] {
  --wb-oo-form-font: Arial, Helvetica, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="georgia"] {
  --wb-oo-form-font: Georgia, serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="times"] {
  --wb-oo-form-font: "Times New Roman", Times, serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="verdana"] {
  --wb-oo-form-font: Verdana, Geneva, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="tahoma"] {
  --wb-oo-form-font: Tahoma, Geneva, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="trebuchet"] {
  --wb-oo-form-font: "Trebuchet MS", sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="courier"] {
  --wb-oo-form-font: "Courier New", monospace;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="lucida"] {
  --wb-oo-form-font: "Lucida Console", Monaco, monospace;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="impact"] {
  --wb-oo-form-font: Impact, Haettenschweiler, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="palatino"] {
  --wb-oo-form-font: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="garamond"] {
  --wb-oo-form-font: Garamond, serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="brush"] {
  --wb-oo-form-font: "Brush Script MT", cursive;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="segoe"] {
  --wb-oo-form-font: "Segoe UI", system-ui, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="roboto"] {
  --wb-oo-form-font: Roboto, Arial, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="open-sans"] {
  --wb-oo-form-font: "Open Sans", Arial, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="montserrat"] {
  --wb-oo-form-font: Montserrat, Arial, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="poppins"] {
  --wb-oo-form-font: Poppins, Arial, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="lato"] {
  --wb-oo-form-font: Lato, Arial, sans-serif;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-font-key="merriweather"] {
  --wb-oo-form-font: Merriweather, Georgia, serif;
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="xs"] {
  --wb-oo-form-size: 0.75rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="sm"] {
  --wb-oo-form-size: 0.875rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="base"] {
  --wb-oo-form-size: 1rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="lg"] {
  --wb-oo-form-size: 1.125rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="xl"] {
  --wb-oo-form-size: 1.25rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="2xl"] {
  --wb-oo-form-size: 1.5rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="3xl"] {
  --wb-oo-form-size: 1.875rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="4xl"] {
  --wb-oo-form-size: 2.25rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="5xl"] {
  --wb-oo-form-size: 3rem;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-size="6xl"] {
  --wb-oo-form-size: 3.75rem;
}

:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="default"] {
  --wb-oo-form-color: var(--wb-oo-form-style-color);
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="white"] {
  --wb-oo-form-color: #ffffff;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="slate"] {
  --wb-oo-form-color: #0f172a;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="gray"] {
  --wb-oo-form-color: #374151;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="zinc"] {
  --wb-oo-form-color: #3f3f46;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="red"] {
  --wb-oo-form-color: #dc2626;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="orange"] {
  --wb-oo-form-color: #ea580c;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="amber"] {
  --wb-oo-form-color: #d97706;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="yellow"] {
  --wb-oo-form-color: #ca8a04;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="lime"] {
  --wb-oo-form-color: #65a30d;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="green"] {
  --wb-oo-form-color: #16a34a;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="emerald"] {
  --wb-oo-form-color: #059669;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="teal"] {
  --wb-oo-form-color: #0d9488;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="cyan"] {
  --wb-oo-form-color: #0891b2;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="sky"] {
  --wb-oo-form-color: #0284c7;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="blue"] {
  --wb-oo-form-color: #2563eb;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="indigo"] {
  --wb-oo-form-color: #4f46e5;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="violet"] {
  --wb-oo-form-color: #7c3aed;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="purple"] {
  --wb-oo-form-color: #9333ea;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="fuchsia"] {
  --wb-oo-form-color: #c026d3;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="pink"] {
  --wb-oo-form-color: #db2777;
}
:is(
  .wb-online-ordering,
  .wb-oo-form,
  .wb-oo-cart,
  .wb-oo-save,
  .wb-oo-fulfillment,
  .wb-oo-customer,
  .wb-oo-checkout
)[data-form-text-color="rose"] {
  --wb-oo-form-color: #e11d48;
}

.website-builder-canvas[data-mode="edit"] .wb-oo-form,
.website-builder-canvas[data-mode="edit"] .wb-oo-cart,
.website-builder-canvas[data-mode="edit"] .wb-oo-save {
  cursor: pointer;
}

@media (max-width: 1023px) {
  .wb-oo-layout {
    grid-template-columns: 1fr;
  }

  .wb-oo-cart {
    position: static;
  }

  .wb-oo-menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wb-oo-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .wb-oo-item img {
    width: 64px;
    height: 64px;
  }

  .wb-oo-item-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .wb-oo-qty button {
    width: 2.5rem;
    height: 2.5rem;
  }
}
