:root {
  --brand: #0CF25D;
  --brand-dark: #09cc4d;
  --ink: #141414;
  --bg-soft: #f5f8f6;
  --surface: #ffffff;
  --line: rgba(9, 39, 20, .11);
  --muted: #5c6672;
}

body {
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdfb 0%, #f2f9f3 100%);
  min-height: 100vh;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #063413;
  font-weight: 700;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #04240d;
}

.brand-pill {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  border-radius: 999px;
  padding: .28rem .7rem;
  background: rgba(12, 242, 93, .14);
  color: #0b702f;
  font-size: .78rem;
  font-weight: 700;
}

.site-shell {
  min-height: 100vh;
}

.card-soft {
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(15, 40, 22, .06);
}

.status-dot {
  width: .58rem;
  height: .58rem;
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
}

.status-open {
  background: #0ecf61;
}

.status-closed {
  background: #d64545;
}

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

.storefront-page {
  font-family: Poppins, Trebuchet MS, Segoe UI, sans-serif;
  background: #f8f9f8;
}

.storefront-shell {
  color: #1d2a33;
}

.storefront-shell .card-soft {
  box-shadow: 0 2px 8px rgba(15, 40, 22, .04);
  border-color: rgba(18, 32, 24, .1);
}

.store-hero {
  min-height: 188px;
  border: 1px solid rgba(18, 32, 24, .11);
  border-radius: .68rem;
  background-color: #ebf2ee;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 40, 22, .04);
}

.store-hero.is-no-image {
  background: linear-gradient(145deg, #345f4a 0%, #193a2b 100%);
}

.store-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .6) 100%);
  display: flex;
  align-items: stretch;
}

.store-hero-content {
  width: 100%;
  padding: .86rem .98rem;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .9rem;
}

.store-hero-brand {
  display: flex;
  align-items: flex-end;
  gap: .64rem;
  min-width: 0;
  flex: 1 1 auto;
}

.store-hero-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.store-hero-meta {
  min-width: 0;
}

.store-hero .store-logo,
.store-hero .store-logo-fallback {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: .5rem;
  border: 1px solid rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .92);
}

.store-hero .store-logo-fallback {
  color: #1d573a;
}

.store-hero-title {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.015em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
  line-height: 1.14;
}

.store-hero-subtitle {
  font-size: .82rem;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .24);
  line-height: 1.2;
  max-width: min(620px, 100%);
}

.store-hero-status-card {
  display: grid;
  gap: .28rem;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(9, 39, 20, .18);
  border-radius: .56rem;
  padding: .42rem .56rem;
  box-shadow: 0 6px 14px rgba(9, 24, 16, .18);
  color: #263742;
}

.store-hero-status-card .store-head-mode {
  color: #2f3e48;
}

.store-hero-phone {
  font-size: .78rem;
  font-weight: 600;
  color: #41515e;
}

.store-topbar {
  border: 1px solid rgba(18, 32, 24, .11);
  border-radius: .68rem;
  background: #fff;
  padding: .9rem .95rem .82rem;
  position: sticky;
  top: .5rem;
  z-index: 20;
}

.order-type-btn {
  display: inline-flex;
  align-items: center;
  gap: .36rem;
}

.order-type-discount {
  font-size: .7rem;
  line-height: 1;
  color: #0f6f36;
  font-weight: 700;
  background: rgba(12, 242, 93, .16);
  border: 1px solid rgba(12, 242, 93, .36);
  border-radius: 999px;
  padding: .13rem .44rem;
  white-space: nowrap;
}

.promotion-scope-hint {
  margin-top: -.15rem;
  margin-bottom: .45rem;
  display: grid;
  gap: .28rem;
}

.promotion-scope-text {
  font-size: .78rem;
  color: #415263;
  font-weight: 600;
}

.promotion-scope-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .26rem;
}

.promotion-scope-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(9, 39, 20, .16);
  background: #f7faf8;
  padding: .12rem .42rem;
  font-size: .72rem;
  color: #455665;
  font-weight: 600;
}

.store-brandline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .7rem;
}

.store-brand-main {
  display: flex;
  align-items: flex-start;
  gap: .62rem;
}

.store-logo {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: .58rem;
  object-fit: cover;
  border: 1px solid rgba(9, 39, 20, .18);
  background: #f2f5f3;
}

.store-logo-fallback {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: .58rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #0a6f30;
  background: rgba(12, 242, 93, .18);
  border: 1px solid rgba(12, 242, 93, .35);
}

.store-restaurant-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-restaurant-meta strong {
  font-size: .95rem;
  font-weight: 700;
}

.store-restaurant-meta span {
  color: var(--muted);
  font-size: .8rem;
}

.store-head-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .14rem;
  line-height: 1.2;
}

.store-head-mode-list {
  display: grid;
  justify-items: start;
  gap: .16rem;
}

.store-head-mode {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  font-weight: 700;
  color: #3e4c59;
}

.store-head-status small {
  font-size: .74rem;
}

.order-type-btn {
  border-radius: .52rem;
  font-weight: 700;
  font-size: .86rem;
  min-width: 108px;
  padding: .36rem .6rem;
}

.order-type-btn.active,
.order-type-btn.btn-brand {
  border-color: var(--brand);
  background: var(--brand);
  color: #063413;
}

.store-toolbar-row {
  display: flex;
  align-items: center;
  gap: .48rem;
}

.store-search-control {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(9, 39, 20, .14);
  border-radius: .5rem;
  padding: .48rem .62rem;
  background: #f7faf8;
}

.store-search-control svg {
  width: 1rem;
  height: 1rem;
  stroke: #7c8792;
  stroke-width: 2;
  fill: none;
}

.store-search-control input {
  border: 0;
  padding: 0;
  background: transparent;
  min-height: 1.2rem;
  font-size: .94rem;
}

.store-search-control input:focus {
  box-shadow: none;
}

.store-search-control:focus-within {
  border-color: rgba(12, 242, 93, .8);
  background: #fff;
}

.store-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(9, 39, 20, .14);
  border-radius: .5rem;
  background: #f7faf8;
  color: #24313a;
  padding: .48rem .72rem;
  font-size: .9rem;
  font-weight: 700;
}

.store-menu-btn svg {
  width: .9rem;
  height: .9rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.store-menu-btn:hover {
  background: #fff;
  border-color: rgba(12, 242, 93, .7);
}

.category-tabs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: .45rem;
  padding: .2rem 0 .1rem;
}

.category-tabs::-webkit-scrollbar {
  height: 4px;
}

.category-tabs::-webkit-scrollbar-thumb {
  background: rgba(9, 39, 20, .16);
  border-radius: 999px;
}

.category-tab {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #37424f;
  border-radius: .5rem;
  padding: .2rem .62rem;
  font-size: .89rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.category-tab:hover {
  color: #12181d;
  border-color: rgba(12, 242, 93, .55);
}

.category-tab.active {
  color: #073416;
  background: rgba(12, 242, 93, .14);
  border-color: rgba(12, 242, 93, .36);
}

.category-tab.has-schedule {
  position: relative;
  padding-right: .78rem;
}

.category-tab.has-schedule::after {
  content: '';
  width: .33rem;
  height: .33rem;
  border-radius: 999px;
  background: rgba(12, 242, 93, .9);
  box-shadow: 0 0 0 .12rem rgba(12, 242, 93, .22);
  margin-left: .28rem;
}

.category-tab.has-schedule.schedule-closed::after {
  background: rgba(214, 69, 69, .94);
  box-shadow: 0 0 0 .12rem rgba(214, 69, 69, .2);
}

.category-head-card {
  border-radius: .62rem;
  overflow: hidden;
  background: #fff;
}

.category-cover {
  height: 126px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-head-content {
  padding: .78rem .9rem;
}

.category-title {
  font-size: 1.52rem;
  font-weight: 750;
  letter-spacing: -.02em;
}

.category-description {
  margin-top: .2rem;
  color: #4c5764;
  font-size: .93rem;
}

.category-availability-note {
  margin-top: .44rem;
  border: 1px dashed rgba(165, 110, 28, .5);
  border-radius: .48rem;
  background: #fff8ec;
  color: #7a4a12;
  padding: .34rem .52rem;
  font-size: .78rem;
  font-weight: 600;
}

.category-availability-schedule {
  margin-top: .34rem;
  color: #4f5d6a;
  font-size: .76rem;
  font-weight: 600;
}

.category-section {
  scroll-margin-top: 9.8rem;
}

.menu-list {
  display: grid;
  gap: .66rem;
}

.menu-item {
  display: flex;
  gap: .72rem;
  align-items: stretch;
  border-radius: .56rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 2px 7px rgba(15, 40, 22, .035);
  padding: .66rem;
}

.menu-item:hover {
  border-color: rgba(12, 242, 93, .62);
}

.menu-item-body {
  flex: 1;
  min-width: 0;
}

.menu-item-media {
  width: 96px;
  min-width: 96px;
  height: 96px;
  border-radius: .5rem;
  overflow: hidden;
  border: 1px solid rgba(9, 39, 20, .12);
  background: #f3f6f4;
  align-self: center;
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-item-title {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.22;
  color: #273843;
  display: inline-flex;
  align-items: center;
  gap: .26rem;
}

.menu-item-info-btn,
.option-info-btn {
  border: 1px solid rgba(9, 39, 20, .28);
  background: #fff;
  color: #2c3f4a;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.menu-item-info-btn:hover,
.option-info-btn:hover,
.menu-item-info-btn:focus,
.option-info-btn:focus {
  background: rgba(12, 242, 93, .14);
  border-color: rgba(12, 242, 93, .65);
  color: #0a6c2d;
  outline: none;
}

.menu-item-article-number {
  margin-top: .14rem;
  color: #657280;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.menu-item-description {
  color: #495564;
  margin: .26rem 0 .36rem;
  font-size: .87rem;
  line-height: 1.3;
}

.menu-item-compliance-line {
  margin: .06rem 0 0;
  color: #4d5a67;
  font-size: .75rem;
  line-height: 1.3;
}

.menu-item-variants {
  margin-bottom: .34rem;
  display: flex;
  flex-wrap: wrap;
  gap: .24rem;
}

.menu-item-variant-chip {
  display: inline-flex;
  align-items: center;
  border-radius: .4rem;
  border: 1px solid rgba(199, 50, 76, .3);
  background: rgba(199, 50, 76, .08);
  color: #9d2e43;
  font-size: .69rem;
  font-weight: 700;
  padding: .1rem .34rem;
}

.product-availability-schedule {
  margin-bottom: .34rem;
  display: grid;
  gap: .16rem;
}

.product-availability-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  color: #4f5d6a;
  font-size: .73rem;
  font-weight: 600;
  border-radius: .38rem;
  border: 1px solid rgba(9, 39, 20, .14);
  background: rgba(245, 248, 246, .92);
  padding: .1rem .36rem;
}

.menu-item-state {
  margin-bottom: .34rem;
  font-size: .76rem;
  line-height: 1.25;
  font-weight: 600;
}

.menu-item-state-stockout {
  color: #b22f2f;
  font-size: .73rem;
  font-weight: 700;
}

.menu-item-state-unavailable {
  color: #7f4a12;
}

.menu-item.is-stock-out {
  border-color: rgba(180, 58, 58, .22);
  background: #fffdfd;
}

.menu-item.is-unavailable:not(.is-stock-out) {
  border-color: rgba(145, 82, 18, .2);
  background: #fffdfa;
}

.menu-item.is-stock-out .menu-price-pill {
  color: #a53a3a;
  border-color: rgba(180, 58, 58, .32);
  background: rgba(232, 108, 108, .14);
}

.menu-item.is-unavailable:not(.is-stock-out) .menu-price-pill {
  color: #915212;
  border-color: rgba(145, 82, 18, .3);
  background: rgba(255, 193, 114, .15);
}

.menu-item-footer {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.menu-item-promo-flag {
  display: inline-flex;
  align-items: center;
  border-radius: .36rem;
  border: 1px solid rgba(9, 39, 20, .16);
  background: #f8faf9;
  color: #4c5a68;
  font-size: .69rem;
  font-weight: 700;
  padding: .1rem .36rem;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-price-pill {
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  border-radius: .4rem;
  padding: .14rem .5rem;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #0d6330;
  border: 1px solid rgba(12, 242, 93, .42);
  background: rgba(12, 242, 93, .15);
}

.menu-price-action {
  font-family: inherit;
  cursor: pointer;
  transition: transform .14s ease, background-color .14s ease, box-shadow .14s ease;
}

.menu-price-action:hover {
  background: rgba(12, 242, 93, .22);
}

.menu-price-action:disabled {
  opacity: .58;
  cursor: not-allowed;
}

.menu-price-pill.is-free {
  color: #0c863a;
  background: rgba(12, 242, 93, .2);
}

.menu-price-old-inline {
  color: #74808f;
  font-size: .74rem;
  font-weight: 600;
  text-decoration: line-through;
  line-height: 1;
}

.menu-item-base-price {
  color: #5e6b77;
  font-size: .74rem;
  line-height: 1.2;
}

.menu-item-add-btn {
  align-self: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 0;
  border-radius: .45rem;
  background: var(--brand);
  color: #083415;
  font-size: 1.78rem;
  line-height: .8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .16s ease, background-color .16s ease;
}

.menu-item-add-btn:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.menu-item-add-btn.is-added {
  transform: scale(.95);
  filter: saturate(1.2);
}

.menu-price-action.is-added {
  transform: scale(.96);
  box-shadow: 0 0 0 .18rem rgba(12, 242, 93, .2);
}

.menu-item-add-btn[disabled] {
  background: #e5e9ec;
  color: #8694a2;
  cursor: not-allowed;
  transform: none;
}

.menu-item.is-stock-out .menu-item-add-btn[disabled] {
  background: #f4e1e1;
  color: #b25757;
}

.menu-item.is-unavailable:not(.is-stock-out) .menu-item-add-btn[disabled] {
  background: #f4ead8;
  color: #a06a2d;
}

.cart-shell {
  border-radius: .64rem;
  background: #fff;
  overflow: hidden;
}

.cart-shell-pop {
  animation: cartShellPop .42s ease;
}

.cart-shell-head {
  display: flex;
  justify-content: space-between;
  gap: .7rem;
  align-items: center;
  padding: .76rem .88rem;
  border-bottom: 1px solid rgba(9, 39, 20, .1);
}

.cart-open-state {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  color: #4e5966;
  max-width: 170px;
  text-align: right;
  font-size: .76rem;
}

.cart-open-state #orderStatusHint.status-alert {
  color: #c13636;
  font-weight: 700;
}

.cart-shell-body {
  padding: .78rem .88rem .9rem;
}

.cart-items {
  display: grid;
  gap: .46rem;
  max-height: 230px;
  overflow: auto;
  padding-right: .1rem;
}

.cart-item {
  border: 1px solid rgba(9, 39, 20, .13);
  border-radius: .5rem;
  background: #f9fbfa;
  padding: .5rem .56rem;
}

.cart-item-line {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
  font-size: .86rem;
}

.cart-item-remove {
  width: 22px;
  height: 22px;
  border-radius: .34rem;
  border: 0;
  background: rgba(220, 53, 69, .12);
  color: #a31e33;
  font-size: 1rem;
  line-height: 1;
}

.cart-item-options,
.cart-item-note {
  margin-top: .22rem;
  color: #5e6771;
  font-size: .76rem;
}

.cart-item-total {
  margin-top: .28rem;
  font-weight: 700;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.cart-item-total-old {
  color: #6d7a87;
  font-size: .74rem;
  text-decoration: line-through;
  font-weight: 600;
}

.cart-item-total-new {
  color: #223641;
}

.cart-item-discount-badge {
  margin-top: .2rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(12, 242, 93, .18);
  color: #0f7137;
  font-size: .68rem;
  font-weight: 700;
  padding: .08rem .42rem;
}

.cart-summary {
  margin-top: .8rem;
  border-top: 1px dashed rgba(9, 39, 20, .16);
  padding-top: .55rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  font-size: .84rem;
  margin-bottom: .2rem;
}

.cart-summary-total {
  font-size: .93rem;
  padding-top: .3rem;
  margin-top: .3rem;
  border-top: 1px solid rgba(9, 39, 20, .13);
}

.checkout-form .form-control,
.checkout-form .form-select,
.voucher-field .form-control {
  border-radius: .48rem;
  border-color: rgba(9, 39, 20, .15);
}

.checkout-form .form-control:focus,
.checkout-form .form-select:focus,
.voucher-field .form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(12, 242, 93, .16);
  border-color: rgba(12, 242, 93, .7);
}

.checkout-form .btn-brand.checkout-btn-closed {
  opacity: .78;
  filter: saturate(.72);
}

.checkout-form .btn-brand:disabled,
.checkout-form .btn-brand.disabled {
  opacity: .55;
  filter: saturate(.5);
  cursor: not-allowed;
}

.mobile-cart-fab {
  position: fixed;
  right: .95rem;
  bottom: 1rem;
  z-index: 1110;
  border: 1px solid rgba(12, 242, 93, .42);
  border-radius: .64rem;
  background: #fff;
  color: #17392a;
  min-width: 158px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: .58rem;
  box-shadow: 0 8px 16px rgba(9, 39, 20, .12);
  padding: .5rem .62rem;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.mobile-cart-fab-pop {
  animation: cartFabPop .42s ease;
}

body.modal-open .mobile-cart-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

@keyframes cartShellPop {
  0% {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(15, 40, 22, .04);
  }
  45% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 2px rgba(12, 242, 93, .22), 0 8px 18px rgba(9, 39, 20, .12);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(15, 40, 22, .04);
  }
}

@keyframes cartFabPop {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 2px rgba(12, 242, 93, .22), 0 12px 20px rgba(9, 39, 20, .16);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.mobile-cart-fab-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: .42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 242, 93, .22);
}

.mobile-cart-fab-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: #0c8c3d;
  stroke-width: 2;
  fill: none;
}

.mobile-cart-fab-icon svg circle {
  fill: #0c8c3d;
  stroke: none;
}

.mobile-cart-fab-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.mobile-cart-fab-meta strong {
  font-size: .81rem;
}

.mobile-cart-fab-meta span {
  font-size: .74rem;
  color: #456052;
}

.offcanvas .cart-item {
  background: #fff;
}

.menu-modal-dialog {
  max-width: 540px;
}

.menu-modal-shell {
  border-radius: .9rem;
  border: 1px solid rgba(9, 39, 20, .14);
  overflow: hidden;
}

.menu-modal-shell .modal-header {
  border-bottom: 1px solid rgba(9, 39, 20, .1);
  padding: .78rem .86rem;
  background: linear-gradient(180deg, #f8fcf9 0%, #f1f8f3 100%);
}

.menu-modal-subtitle {
  font-size: .76rem;
  color: #5a6672;
}

.menu-modal-shell .modal-body {
  background: #f7faf8;
  padding: .72rem .76rem;
}

.menu-modal-grid {
  display: grid;
  gap: .45rem;
}

.menu-modal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  text-decoration: none;
  border: 1px solid rgba(9, 39, 20, .13);
  border-radius: .58rem;
  background: #fff;
  padding: .5rem .56rem;
  color: #20303a;
  transition: border-color .14s ease, transform .14s ease, box-shadow .14s ease, background-color .14s ease;
}

.menu-modal-link:hover {
  border-color: rgba(12, 242, 93, .68);
  background: #fcfffd;
  transform: translateY(-1px);
}

.menu-modal-link.is-active {
  border-color: rgba(12, 242, 93, .72);
  box-shadow: 0 0 0 .16rem rgba(12, 242, 93, .14);
  background: rgba(12, 242, 93, .09);
}

.menu-modal-link-main {
  display: inline-flex;
  align-items: center;
  gap: .56rem;
  min-width: 0;
}

.menu-modal-thumb {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: .52rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(9, 39, 20, .16);
}

.menu-modal-link-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.menu-modal-link-text strong {
  font-size: .89rem;
  font-weight: 700;
  color: #20303a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 290px;
}

.menu-modal-link-text small {
  font-size: .75rem;
  color: #617182;
}

.menu-modal-schedule {
  color: #455260 !important;
  font-weight: 600;
}

.menu-modal-status.is-unavailable {
  color: #8f5415 !important;
  font-weight: 600;
}

.menu-modal-link-arrow {
  font-size: .94rem;
  color: #4f6170;
}

.product-modal-shell {
  border-radius: 1rem;
}

.product-modal-shell .modal-header {
  padding: .7rem .85rem;
}

.product-modal-availability {
  margin-top: .28rem;
  display: grid;
  gap: .18rem;
}

.product-modal-compliance {
  margin-top: .28rem;
  display: grid;
  gap: .16rem;
}

.product-modal-article-number {
  margin-top: .04rem;
  color: #647282;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.product-modal-variant-label {
  color: #4f5f6e;
  font-size: .78rem;
  font-weight: 600;
}

.product-modal-availability-line {
  font-size: .76rem;
  line-height: 1.25;
  color: #4f5d6a;
  font-weight: 600;
}

.product-modal-availability-line.is-unavailable {
  color: #8a4f13;
}

.product-modal-compliance-line {
  font-size: .75rem;
  line-height: 1.3;
  color: #50606e;
}

.product-modal-shell .modal-body {
  padding: .75rem .85rem;
}

.product-modal-shell .modal-footer {
  padding: .65rem .85rem;
}

.product-modal-shell #productModalNoteWrap {
  margin-top: .55rem !important;
}

.product-modal-shell #productModalNote {
  min-height: 70px;
  padding: .45rem .55rem;
  font-size: .88rem;
}

.variant-picker-list {
  display: grid;
  gap: .44rem;
}

.variant-picker-row {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(9, 39, 20, .12);
  border-radius: .62rem;
  background: #fff;
  padding: .56rem .66rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .3rem .65rem;
  transition: border-color .14s ease, transform .14s ease;
}

.variant-picker-row:hover {
  border-color: rgba(12, 242, 93, .58);
  transform: translateY(-1px);
}

.variant-picker-row.is-disabled,
.variant-picker-row:disabled {
  opacity: .56;
  transform: none;
  cursor: not-allowed;
}

.variant-picker-label {
  color: #293743;
  font-weight: 700;
  font-size: .88rem;
}

.variant-picker-price {
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  justify-content: flex-end;
  font-size: .84rem;
  color: #1b5933;
  font-weight: 700;
}

.variant-picker-price-old {
  color: #6f7d8c;
  font-size: .74rem;
  text-decoration: line-through;
  font-weight: 600;
}

.variant-picker-price-current {
  display: inline-flex;
  align-items: center;
  border-radius: .36rem;
  border: 1px solid rgba(12, 242, 93, .34);
  background: rgba(12, 242, 93, .14);
  padding: .12rem .42rem;
}

.variant-picker-badge {
  grid-column: 2 / 3;
  justify-self: end;
  color: #4a5967;
  font-size: .67rem;
  font-weight: 700;
}

.variant-picker-note {
  grid-column: 1 / -1;
  color: #8b4c11;
  font-size: .72rem;
  font-weight: 600;
}

.product-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.product-modal-footer-qty {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.product-modal-footer-qty label {
  margin: 0;
  font-size: .79rem;
  font-weight: 600;
  color: #3f4f47;
}

.product-modal-footer-actions {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(9, 39, 20, .2);
  border-radius: 999px;
  overflow: hidden;
}

.qty-stepper button {
  border: 0;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 1;
  font-weight: 700;
}

.qty-stepper input {
  width: 56px;
  text-align: center;
  border: 0;
  border-left: 1px solid rgba(9, 39, 20, .2);
  border-right: 1px solid rgba(9, 39, 20, .2);
  border-radius: 0;
}

.qty-stepper input:focus {
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0 auto;
  max-width: 980px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(9, 39, 20, .14);
  border-radius: .45rem;
  padding: 14px;
  display: grid;
  gap: 10px;
  z-index: 1400;
  box-shadow: 0 18px 40px rgba(8, 18, 11, .22);
  backdrop-filter: blur(10px);
  color: #3d4556;
  font-size: .92rem;
}

.cookie-banner__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cookie-banner__title {
  color: #151f24;
  font-size: .98rem;
  font-weight: 700;
}

.cookie-banner__close {
  border: 0;
  background: transparent;
  color: #5d6576;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.cookie-banner__text {
  margin: 0;
  line-height: 1.5;
  color: #3d4556;
}

.cookie-banner__privacy-link,
.cookie-banner .small a {
  color: #243046;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.cookie-banner__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
}

.cookie-banner__category-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #151f24;
  font-weight: 600;
}

.cookie-banner__checkbox {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  accent-color: #0cf25d;
}

.cookie-banner__checkbox[disabled] {
  opacity: 1;
}

.cookie-banner__category-name {
  white-space: nowrap;
}

.cookie-banner__info {
  border: 2px solid #0cf25d;
  background: #ffffff;
  color: #0a8c3c;
  border-radius: .45rem;
  width: 24px;
  height: 24px;
  line-height: 1;
  padding: 0;
  font-weight: 700;
  font-size: .78rem;
  cursor: pointer;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner__btn {
  border: 1px solid rgba(12, 242, 93, .34);
  background: rgba(12, 242, 93, .14);
  color: #0a8c3c;
  padding: 8px 12px;
  border-radius: .45rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner__btn--accept {
  border-color: #0cf25d;
  background: #0cf25d;
  color: #0b1a0f;
}

.cookie-banner__dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: #151f24;
}

.cookie-banner__dialog-close {
  border: 0;
  background: transparent;
  color: #5d6576;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.cookie-banner__dialog-body {
  color: #485268;
  font-size: .9rem;
  line-height: 1.4;
}

.cookie-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(9, 13, 25, .42);
  padding: 16px;
  display: grid;
  place-items: center;
}

.cookie-info-modal.d-none {
  display: none !important;
}

.cookie-info-card {
  width: min(430px, calc(100vw - 24px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: .45rem;
  padding: 12px 14px;
  box-shadow: 0 22px 38px rgba(15, 23, 42, .26);
}

.cookie-provider-list {
  display: grid;
  gap: .52rem;
}

.cookie-provider-item {
  border-top: 1px dashed rgba(9, 39, 20, .16);
  padding-top: .48rem;
}

.store-legal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .45rem .72rem;
  margin-top: 1.1rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(9, 39, 20, .16);
  font-size: .79rem;
  color: #54626e;
}

.store-legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .45rem .86rem;
  min-width: 0;
}

.store-legal-footer a,
.store-cookie-settings-link {
  color: #4f5f6c;
  text-decoration: none;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-weight: 500;
  background: transparent;
  border: 0;
  padding: 0;
}

.store-cookie-settings-link {
  cursor: pointer;
  font: inherit;
}

.store-cookie-settings-link:focus-visible,
.store-legal-footer a:focus-visible {
  outline: 2px solid rgba(12, 242, 93, .66);
  outline-offset: 1px;
}

.store-legal-footer a:hover,
.store-cookie-settings-link:hover {
  color: #0b702f;
  text-decoration: underline;
}

.legal-page-content {
  color: #22303a;
  line-height: 1.58;
  font-size: .95rem;
}

.legal-page-content h2,
.legal-page-content h3 {
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-size: 1.06rem;
}

.legal-page-content p:last-child {
  margin-bottom: 0;
}

.store-legal-inline {
  border: 1px solid rgba(18, 32, 24, .11);
  padding: .95rem 1rem;
}

.store-legal-inline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .45rem .7rem;
  margin-bottom: .72rem;
}

.store-legal-inline-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .7rem;
}

.store-legal-inline-tabs a,
.store-legal-home-link {
  color: #4f5f6c;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
}

.store-legal-inline-tabs a:hover,
.store-legal-home-link:hover {
  text-decoration: underline;
  color: #0b702f;
}

.store-legal-inline-tabs a.is-active {
  color: #0b702f;
  text-decoration: underline;
}

.settings-public-page .legal-page-tab {
  min-width: 110px;
  font-size: .78rem;
  font-weight: 600;
}

.settings-public-page .legal-richtext-toolbar .btn {
  border-radius: .45rem;
  font-size: .78rem;
  padding: .34rem .56rem;
  line-height: 1.1;
}

.settings-public-page .legal-richtext-editor {
  min-height: 260px;
  overflow-y: auto;
  line-height: 1.45;
}

.settings-public-page .legal-richtext-editor:focus {
  border-color: rgba(12, 242, 93, .56);
  box-shadow: 0 0 0 .2rem rgba(12, 242, 93, .18);
  outline: 0;
}

.settings-public-page .cookie-provider-row {
  border: 1px solid rgba(24, 40, 30, .12);
  border-radius: .45rem;
  background: #fff;
  padding: .62rem .68rem;
}

.settings-public-page .cookie-category-row {
  border: 1px solid rgba(24, 40, 30, .12);
  border-radius: .45rem;
  background: #fff;
  padding: .62rem .68rem;
}

.settings-public-page .cookie-provider-row .form-check-input {
  width: 1.08rem;
  height: 1.08rem;
}

.settings-public-page .cookie-category-row .form-check-input {
  width: 1.08rem;
  height: 1.08rem;
}

.settings-public-page .cookie-provider-row .form-check-input:checked {
  background-color: #0cf25d;
  border-color: #0cf25d;
}

.settings-public-page .cookie-category-row .form-check-input:checked {
  background-color: #0cf25d;
  border-color: #0cf25d;
}

.settings-public-page .cookie-provider-empty {
  border: 1px dashed rgba(24, 40, 30, .2);
  border-radius: .45rem;
  padding: .72rem .8rem;
  background: rgba(12, 242, 93, .05);
}

.option-group-box {
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: .75rem;
  padding: .65rem;
  margin-bottom: .6rem;
  background: #fff;
}

.option-group-box.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, .14);
}

.option-group-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: .65rem;
}

.option-group-required {
  font-size: .72rem;
  border-radius: 999px;
  padding: .15rem .45rem;
  background: rgba(220, 53, 69, .1);
  color: #b42318;
  font-weight: 700;
}

.option-group-meta {
  font-size: .82rem;
  color: #626d7b;
  margin-top: .1rem;
}

.option-group-title {
  color: #1d2a25;
  line-height: 1.25;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
  border-top: 1px dashed rgba(0, 0, 0, .1);
  padding: .45rem 0;
}

.option-row:first-of-type {
  margin-top: .35rem;
}

.option-article-number {
  margin-left: .3rem;
  color: #6f7c89;
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
}

.product-modal-shell .option-group-box {
  border-radius: .65rem;
  padding: .52rem;
  margin-bottom: .46rem;
}

.product-modal-shell .option-group-head {
  gap: .45rem;
}

.product-modal-shell .option-group-title {
  font-size: .87rem;
  line-height: 1.2;
}

.product-modal-shell .option-group-meta {
  font-size: .77rem;
  margin-top: .06rem;
}

.product-modal-shell .option-group-required {
  font-size: .68rem;
  padding: .12rem .4rem;
}

.product-modal-shell .option-row {
  gap: .48rem;
  padding: .34rem 0;
}

.product-modal-shell .option-row:first-of-type {
  margin-top: .24rem;
}

.product-modal-shell .option-article-number {
  font-size: .68rem;
}

.product-modal-shell .option-compliance-hint {
  display: block;
  margin-top: .08rem;
  color: #5d6976;
  font-size: .7rem;
  line-height: 1.24;
}

.product-modal-shell .option-description-hint {
  color: #647177;
}

.product-modal-shell .option-qty-toggle {
  display: none;
}

.option-row-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
  min-width: 180px;
}

.option-row-qty-slot {
  width: 94px;
  display: inline-flex;
  justify-content: center;
}

.option-qty-spacer {
  display: inline-block;
  width: 94px;
  height: 28px;
}

.option-row-price {
  min-width: 72px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.option-label-inline {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  flex-wrap: wrap;
}

.option-label-inline .option-info-btn {
  margin-left: .08rem;
  flex: 0 0 auto;
}

.product-info-section + .product-info-section {
  margin-top: .72rem;
}

.product-info-heading {
  font-size: .79rem;
  font-weight: 700;
  color: #273843;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .32rem;
}

.product-info-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: .18rem;
  color: #384a56;
  font-size: .84rem;
}

.product-info-disclaimer {
  margin-top: .8rem;
  color: #6a7683;
  font-size: .72rem;
  line-height: 1.35;
}

.option-price-free {
  color: #0b9d41;
  font-weight: 700;
  letter-spacing: .02em;
}

.option-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 999px;
  overflow: hidden;
  min-width: 94px;
}

.option-qty-stepper button {
  border: 0;
  background: #fff;
  width: 28px;
  height: 28px;
  line-height: 1;
}

.option-qty-stepper span {
  width: 30px;
  text-align: center;
  font-size: .85rem;
}

@media (max-width: 575.98px) {
  .product-modal-footer-qty {
    width: 100%;
  }

  .product-modal-footer-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .option-row-meta {
    min-width: 164px;
    gap: .35rem;
  }

  .option-row-price {
    min-width: 66px;
  }
}

.admin-sidebar {
  min-height: calc(100vh - 2rem);
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 1rem;
}

.admin-sidebar .nav-link.active {
  background: rgba(12, 242, 93, .12);
  color: #0b702f;
  font-weight: 700;
}

.settings-help-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: .2rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 242, 93, .45);
  background: rgba(12, 242, 93, .15);
  color: #0b6f30;
  font-size: .66rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.settings-help-dot:hover,
.settings-help-dot:focus {
  background: rgba(12, 242, 93, .24);
  border-color: rgba(12, 242, 93, .72);
  color: #085e28;
  outline: none;
  box-shadow: 0 0 0 .12rem rgba(12, 242, 93, .16);
}

.map-preview {
  height: 320px;
  border-radius: .75rem;
  border: 1px solid rgba(0, 0, 0, .08);
}

.product-map-list {
  max-height: 320px;
  overflow: auto;
}

.option-map-check {
  cursor: pointer;
}

.options-admin-page .options-toolbar {
  row-gap: .4rem;
}

.options-admin-page .options-search-input {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 340px;
}

.options-admin-page .bulk-toolbar {
  margin-left: auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: .08rem;
  gap: .35rem;
}

.options-admin-page .bulk-toolbar [data-options-bulk-action] {
  width: 190px;
  min-width: 190px;
}

.options-admin-page .bulk-toolbar .form-check-label,
.options-admin-page .bulk-toolbar .bulk-meta {
  font-size: .68rem;
  white-space: nowrap;
}

.options-admin-page .option-group-card .card-body {
  padding: .6rem .66rem;
}

.options-admin-page .options-inline-table th {
  font-size: calc(.66rem + .45px);
  font-weight: 700;
  white-space: nowrap;
  padding: .24rem .3rem;
}

.options-admin-page .options-inline-table td {
  font-size: calc(.7rem + .45px);
  padding: .2rem .3rem;
  vertical-align: middle;
}

.options-admin-page .options-inline-table .form-control-sm,
.options-admin-page .options-inline-table .form-select-sm {
  font-size: calc(.7rem + .45px);
  min-height: 27px;
  padding-top: .14rem;
  padding-bottom: .14rem;
}

.options-admin-page .options-inline-table .col-option-id {
  width: 36px;
  font-size: calc(.63rem + .45px);
}

.options-admin-page .options-inline-table .col-option-id .small {
  font-size: calc(.56rem + .45px) !important;
  line-height: 1.05;
}

.options-inline-table .form-control,
.options-inline-table .form-select {
  min-width: 62px;
}

.options-inline-table .col-option-name .form-control {
  min-width: 150px;
}

.options-inline-table .col-option-name .option-description-input {
  min-width: 150px;
  color: #212529;
}

.options-inline-table .col-option-article .form-control {
  min-width: 48px;
  max-width: 68px;
  text-transform: uppercase;
}

.options-inline-table .col-option-price .form-control,
.options-inline-table .col-option-max .form-control {
  min-width: 58px;
  max-width: 76px;
}

.options-inline-table .col-option-sort .form-control {
  min-width: 52px;
  max-width: 66px;
  text-align: center;
}

.options-inline-table .col-option-status .form-select,
.options-inline-table .col-option-qty .form-select {
  min-width: 64px;
}

.options-inline-table .col-option-profile .form-select {
  min-width: 112px;
  max-width: 150px;
}

.options-inline-table .col-option-allergens .product-allergen-cell {
  min-width: 110px;
  max-width: 140px;
}

.options-admin-page .options-mapping-col {
  position: sticky;
  top: .55rem;
  align-self: flex-start;
}

.options-admin-page .options-map-products-card .card-body,
.options-admin-page .options-map-editor-card .card-body {
  padding: .62rem .68rem;
}

.options-admin-page .options-map-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: .35rem;
}

.options-admin-page .options-product-map-list {
  max-height: 272px;
  border: 1px solid #dce8e1;
  border-radius: .55rem;
  padding: .16rem;
}

.options-admin-page .options-map-product-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .45rem;
  border: 1px solid transparent;
  border-radius: .48rem;
  padding: .36rem .44rem;
}

.options-admin-page .options-map-product-item strong {
  font-size: .74rem;
  line-height: 1.2;
}

.options-admin-page .options-map-product-item small {
  font-size: .65rem;
  line-height: 1.2;
}

.options-admin-page .options-map-product-item .badge {
  font-size: .63rem;
}

.options-admin-page .options-map-group-list {
  max-height: 364px;
  overflow: auto;
  padding-right: .08rem;
}

.options-admin-page .options-map-check {
  padding: .3rem .36rem !important;
  border-color: #dce8e1 !important;
}

.options-admin-page .options-map-check .form-check-input {
  float: none;
  margin-left: 0 !important;
  margin-right: .2rem;
  margin-top: .16rem !important;
  width: 1.08rem;
  height: 1.08rem;
  min-width: 1.08rem;
  flex: 0 0 1.08rem;
  border-color: #9ab6a6;
  accent-color: #0cf25d;
}

.options-admin-page .options-map-check strong {
  font-size: .74rem;
  line-height: 1.2;
}

.options-admin-page .options-map-check small {
  font-size: .65rem;
  line-height: 1.2;
}

.options-admin-page .options-map-editor-card [data-map-save-state] {
  font-size: .69rem;
}

.options-admin-page .options-map-editor-card [data-map-title] {
  font-size: .88rem;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .32rem;
}

.btn-icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .55rem;
}

.btn-icon svg {
  width: 14px;
  height: 14px;
}

.btn-icon svg path,
.btn-icon svg circle,
.btn-icon svg line,
.btn-icon svg polyline,
.btn-icon svg rect {
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-icon-delete {
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .55rem;
}

.btn-icon-delete svg {
  width: 14px;
  height: 14px;
}

.btn-icon-delete svg path {
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-image-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: .48rem;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
}

[data-save-state],
[data-restaurant-save-state],
[data-zone-save-state],
[data-voucher-save-state],
[data-product-save-state],
[data-category-save-state],
[data-group-save-state],
[data-option-save-state],
[data-map-save-state],
[data-hour-save-state],
[data-override-save-state],
[data-availability-save-state] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1rem;
  min-width: 1rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

[data-save-state].d-none,
[data-restaurant-save-state].d-none,
[data-zone-save-state].d-none,
[data-voucher-save-state].d-none,
[data-product-save-state].d-none,
[data-category-save-state].d-none,
[data-group-save-state].d-none,
[data-option-save-state].d-none,
[data-map-save-state].d-none,
[data-hour-save-state].d-none,
[data-override-save-state].d-none,
[data-availability-save-state].d-none {
  display: inline-flex !important;
  visibility: hidden;
  opacity: 0;
}

.save-dot {
  font-size: 0 !important;
}

.save-dot::before {
  content: '';
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  transition: width .12s ease, height .12s ease;
}

.save-dot.text-muted::before {
  opacity: .45;
}

.bulk-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}

.bulk-toolbar .bulk-meta {
  font-size: .76rem;
  color: #5b6770;
}

.products-filter-toolbar {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: .45rem;
  align-items: center;
  overflow-x: auto;
  padding-bottom: .1rem;
}

.products-filter-toolbar [data-product-search] {
  flex: 1 1 220px;
  min-width: 190px;
}

.products-filter-toolbar [data-product-filter-category],
.products-filter-toolbar [data-product-filter-active],
.products-filter-toolbar [data-product-filter-stock] {
  flex: 0 0 136px;
}

.products-filter-toolbar [data-product-bulk-action] {
  flex: 0 0 192px;
}

.products-filter-toolbar [data-product-bulk-meta] {
  font-size: .7rem;
  color: #5b6770;
  margin-left: .1rem;
  white-space: nowrap;
}

.products-filter-toolbar .form-control,
.products-filter-toolbar .form-select {
  border-radius: .55rem;
  border-color: rgba(9, 39, 20, .18);
  background: #fbfdfc;
}

.products-filter-toolbar .form-control:focus,
.products-filter-toolbar .form-select:focus {
  border-color: rgba(12, 242, 93, .72);
  box-shadow: 0 0 0 .18rem rgba(12, 242, 93, .16);
}

.products-filter-toolbar .btn {
  min-height: 28px;
  font-size: .72rem;
  white-space: nowrap;
}

.products-quick-table-wrap {
  overflow-x: auto;
  overflow-y: visible;
}

.products-quick-table-wrap.table-responsive {
  overflow-y: visible !important;
}

.products-quick-table td {
  overflow: visible;
  padding-top: .24rem;
  padding-bottom: .24rem;
  font-size: calc(.71rem + .5px);
}

.products-quick-table th {
  font-size: calc(.68rem + .5px);
  font-weight: 700;
  white-space: nowrap;
  padding-top: .3rem;
  padding-bottom: .3rem;
}

.products-quick-table .product-row-variant {
  background: #f7fbff;
}

.products-quick-table .product-row-variant .col-id {
  border-left: 3px solid rgba(12, 242, 93, .45);
}

.products-quick-table .variant-parent-name {
  font-size: calc(.72rem + .5px);
  color: #4f5b57;
  font-weight: 600;
  line-height: 1.2;
}

.products-quick-table .col-id [data-product-id-label] {
  font-size: calc(.64rem + .5px);
  font-weight: 700;
  letter-spacing: .02em;
}

.products-quick-table .col-id .small {
  font-size: calc(.58rem + .5px) !important;
  line-height: 1.05;
}

.products-quick-table .col-name .form-control {
  min-width: 205px;
}

.products-quick-table .col-description {
  min-width: 272px;
}

.products-quick-table .col-article .form-control {
  min-width: 58px;
  max-width: 82px;
  text-transform: uppercase;
}

.products-quick-table .col-price .form-control {
  min-width: 76px;
  max-width: 94px;
}

.products-quick-table .col-sort .form-control {
  min-width: 52px;
  max-width: 62px;
  text-align: center;
}

.products-quick-table .col-active .form-select,
.products-quick-table .col-stock .form-select {
  min-width: 78px;
}

.products-quick-table .col-min-order .form-select {
  min-width: 92px;
}

.products-quick-table .col-availability .form-select {
  min-width: 106px;
}

.products-quick-table .col-groups .form-select {
  min-width: 108px;
}

.products-quick-table .col-actions {
  min-width: 100px;
}

.products-quick-table thead th:last-child,
.products-quick-table tbody tr[data-product-row] > td:last-child {
  position: sticky;
  right: 0;
  z-index: 6;
  background: #fff;
}

.products-quick-table tbody tr[data-product-row].product-row-variant > td:last-child {
  background: #f7fbff;
}

.products-quick-table .form-control-sm,
.products-quick-table .form-select-sm {
  font-size: calc(.71rem + .5px);
  min-height: 28px;
  padding-top: .18rem;
  padding-bottom: .18rem;
}

.product-row-actions {
  position: relative;
  justify-content: flex-end;
}

#productQuickActionModal .modal-body {
  font-size: .84rem;
}

.product-allergen-cell {
  display: flex;
  align-items: center;
  gap: .32rem;
}

.product-allergen-codes-input {
  min-width: 118px;
  font-size: .72rem;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.product-allergen-codes-input.is-readonly {
  background: #f4f7f5;
  color: #5d6b63;
  cursor: not-allowed;
}

.product-allergen-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: .44rem;
}

.product-allergen-check {
  display: flex;
  align-items: flex-start;
  gap: .46rem;
  margin: 0;
  padding: .36rem .44rem;
  border: 1px solid #dde8e2;
  border-radius: .55rem;
  background: #fff;
}

.product-allergen-check .form-check-input {
  margin-top: .16rem;
}

.product-allergen-check-text {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.product-allergen-code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 2rem;
  padding: .06rem .34rem;
  border-radius: 999px;
  border: 1px solid #cde3d6;
  background: #f1fbf5;
  color: #1e5536;
  font-size: .68rem;
  font-weight: 700;
}

.product-details-availability {
  margin-top: .35rem;
  padding: .58rem .62rem;
  border: 1px solid #d7e5dc;
  border-radius: .68rem;
  background: #f8fcf9;
}

.product-details-availability .form-control-sm,
.product-details-availability .form-select-sm {
  min-height: 29px;
  font-size: .74rem;
}

.product-details-availability-table th {
  font-size: .68rem;
  white-space: nowrap;
}

.product-details-availability-table td {
  font-size: .71rem;
  padding-top: .22rem;
  padding-bottom: .22rem;
}

.product-action-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #dce6df;
  border-radius: 10px;
  min-width: 180px;
  box-shadow: 0 8px 18px rgba(9, 39, 20, .16);
  z-index: 24;
  padding: .25rem 0;
  overflow: visible;
}

.product-action-menu.menu-open-up {
  top: auto;
  bottom: calc(100% + 4px);
}

.product-action-menu.menu-floating {
  position: fixed;
  right: auto;
  bottom: auto;
  z-index: 4000;
}

.product-action-menu .dropdown-item {
  border: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  font-size: .72rem;
  padding: .38rem .64rem;
}

.product-action-menu .dropdown-item:hover {
  background: rgba(12, 242, 93, .12);
}

.product-expand-row td {
  padding-top: 0;
  padding-bottom: .34rem;
}

.product-expand-panel {
  border: 1px solid #e3ece7;
  border-radius: 10px;
  background: #f9fcfa;
  padding: .46rem .58rem;
}

.product-expand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .34rem;
}

.product-description-wrap {
  position: relative;
  min-height: 31px;
}

.product-description-field {
  position: relative;
  width: 100%;
  min-height: 31px;
  max-height: 31px;
  overflow: hidden;
  resize: none;
  font-size: .82rem;
  line-height: 1.25;
  transition: min-height .16s ease, max-height .16s ease, width .16s ease, box-shadow .16s ease;
}

.product-description-field:focus {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 14;
  min-height: 88px;
  max-height: 180px;
  width: min(440px, 42vw);
  overflow: auto;
  background: #fff;
  box-shadow: 0 8px 18px rgba(9, 39, 20, .18);
}

@media (max-width: 1200px) {
  .products-filter-toolbar {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .products-quick-table .col-name .form-control {
    min-width: 200px;
  }

  .products-quick-table .col-description {
    min-width: 260px;
  }

  .options-inline-table .col-option-name .form-control {
    min-width: 190px;
  }

  .options-admin-page .options-mapping-col {
    position: static;
  }

  .store-hero {
    min-height: 170px;
  }

  .category-cover {
    height: 112px;
  }

  .category-title {
    font-size: 1.38rem;
  }
}

@media (max-width: 992px) {
  .cart-sticky {
    position: static;
  }

  .store-hero {
    min-height: 162px;
  }

  .menu-item-media {
    width: 88px;
    min-width: 88px;
    height: 88px;
  }

  .category-cover {
    height: 106px;
  }

  .category-title {
    font-size: 1.26rem;
  }

  .menu-item {
    padding: .6rem;
  }

  .category-section {
    scroll-margin-top: 9.4rem;
  }
}

@media (max-width: 768px) {
  [data-save-state],
  [data-restaurant-save-state],
  [data-zone-save-state],
  [data-voucher-save-state],
  [data-product-save-state],
  [data-category-save-state],
  [data-group-save-state],
  [data-option-save-state],
  [data-map-save-state],
  [data-hour-save-state],
  [data-override-save-state],
  [data-availability-save-state] {
    min-width: 1.08rem;
    min-height: 1.08rem;
  }

  .save-dot::before {
    width: .58rem;
    height: .58rem;
  }

  .options-admin-page .options-toolbar {
    flex-wrap: wrap;
  }

  .options-admin-page .options-search-input {
    min-width: 100%;
    max-width: 100%;
  }

  .options-admin-page .bulk-toolbar {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .options-admin-page .bulk-toolbar [data-options-bulk-action] {
    width: 100%;
    min-width: 100%;
  }

  .options-admin-page .options-product-map-list {
    max-height: 220px;
  }

  .options-admin-page .options-map-filters {
    grid-template-columns: 1fr;
  }

  .options-admin-page .options-map-group-list {
    max-height: 260px;
  }

  .storefront-page input,
  .storefront-page select,
  .storefront-page textarea,
  .storefront-page .form-control,
  .storefront-page .form-select {
    font-size: 16px !important;
  }

  .products-filter-toolbar {
    grid-template-columns: 1fr;
  }

  .products-quick-table .col-name .form-control {
    min-width: 180px;
  }

  .products-quick-table .col-description {
    min-width: 220px;
  }

  .options-inline-table .col-option-name .form-control {
    min-width: 170px;
  }

  .product-description-field:focus {
    width: 100%;
    min-height: 78px;
    max-height: 150px;
  }

  .store-hero {
    min-height: 174px;
  }

  .store-hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: .5rem;
    padding: .72rem .78rem;
  }

  .store-hero-brand {
    width: 100%;
    align-items: center;
    gap: .5rem;
  }

  .store-hero .store-logo,
  .store-hero .store-logo-fallback {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .store-hero-title {
    font-size: 1.08rem;
  }

  .store-hero-subtitle {
    font-size: .76rem;
    max-width: 100%;
  }

  .store-hero-status-card {
    padding: .34rem .46rem;
    gap: .2rem;
  }

  .store-hero-status-card .store-head-mode {
    font-size: .74rem;
  }

  .store-hero-phone {
    font-size: .72rem;
  }

  .store-toolbar-row {
    gap: .45rem;
  }

  .store-menu-btn {
    padding: .44rem .64rem;
    font-size: .84rem;
  }

  .category-title {
    font-size: 1.12rem;
  }

  .category-description {
    font-size: .84rem;
  }

  .category-availability-note {
    font-size: .74rem;
    padding: .3rem .46rem;
  }

  .category-availability-schedule {
    font-size: .72rem;
  }

  .product-availability-schedule {
    gap: .12rem;
  }

  .product-availability-chip {
    font-size: .69rem;
    padding: .08rem .3rem;
  }

  .menu-modal-schedule,
  .menu-modal-status {
    font-size: .71rem !important;
  }

  .menu-item {
    gap: .62rem;
    border-radius: .5rem;
  }

  .menu-item-media {
    width: 78px;
    min-width: 78px;
    height: 78px;
  }

  .category-section {
    scroll-margin-top: 8.6rem;
  }

  .menu-modal-link {
    padding: .46rem .5rem;
  }

  .menu-modal-thumb {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .menu-modal-link-text strong {
    max-width: 220px;
  }

  .menu-item-title {
    font-size: .89rem;
  }

  .menu-item-article-number {
    font-size: .67rem;
  }

  .menu-item-description {
    font-size: .82rem;
    margin-bottom: .3rem;
  }

  .menu-item-add-btn {
    width: 38px;
    min-width: 38px;
    height: 38px;
    font-size: 1.62rem;
  }

  .menu-price-pill {
    font-size: .85rem;
    padding: .12rem .44rem;
  }

  .cookie-banner {
    max-width: none;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }

  .cookie-banner__categories {
    gap: 10px 14px;
  }

  .cookie-banner__category-name {
    white-space: normal;
  }

  .cookie-info-modal {
    padding: 10px;
  }

  .cookie-info-card {
    width: min(420px, calc(100vw - 20px));
    max-height: calc(100vh - 20px);
  }

  .store-legal-footer {
    font-size: .75rem;
    gap: .35rem .56rem;
    margin-top: .85rem;
    padding-top: .56rem;
  }

  .store-legal-footer-links {
    width: 100%;
    justify-content: center;
    gap: .3rem .56rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  [data-save-state],
  [data-restaurant-save-state],
  [data-zone-save-state],
  [data-voucher-save-state],
  [data-product-save-state],
  [data-category-save-state],
  [data-group-save-state],
  [data-option-save-state],
  [data-map-save-state],
  [data-hour-save-state],
  [data-override-save-state],
  [data-availability-save-state] {
    min-width: 1.14rem;
    min-height: 1.14rem;
  }

  .save-dot::before {
    width: .62rem;
    height: .62rem;
  }
}

.compliance-inline-table-wrap {
  overflow: auto;
}

.compliance-inline-table {
  table-layout: fixed;
  min-width: 1340px;
}

.compliance-inline-table th,
.compliance-inline-table td {
  vertical-align: middle;
  font-size: .79rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.compliance-inline-table .form-control-sm,
.compliance-inline-table .form-select-sm {
  font-size: .78rem;
  min-height: 28px;
  padding-top: .17rem;
  padding-bottom: .17rem;
}

.compliance-inline-table .col-profile-id {
  white-space: nowrap;
}

.compliance-action-row {
  justify-content: flex-end;
  gap: .22rem;
}

.compliance-action-row .btn-icon {
  width: 1.9rem;
  height: 1.9rem;
}

#complianceProfileDetailsModal .modal-body .form-control-sm,
#complianceProfileDetailsModal .modal-body .form-select-sm {
  font-size: .84rem;
}
