/**
 * Eat n Chill — customer menu (InApp-inspired Bootstrap 5 shell).
 * Loaded after cos.css; scopes layout under body.ec-mnu-app.
 */

body.ec-mnu-app {
  --ec-nav-bg: #ffffff;
  --ec-nav-border: rgba(0, 0, 0, 0.08);
  --ec-mnu-radius: 0.75rem;
  --ec-cart-bg: color-mix(in srgb, var(--ec-front-primary) 22%, #2a2420);
  min-height: 100vh;
  background: #fafafa;
  /* iOS safe areas for notched devices */
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  overflow-x: hidden !important;
}

/* Override global cos.css ::-webkit-scrollbar (gold bar) on customer menu only */
html.ec-mnu-frontend,
html:has(body.ec-mnu-app),
body.ec-mnu-app {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
html.ec-mnu-frontend,
html:has(body.ec-mnu-app) {
  overflow-x: hidden !important;
}
html.ec-mnu-frontend::-webkit-scrollbar,
html:has(body.ec-mnu-app)::-webkit-scrollbar,
body.ec-mnu-app::-webkit-scrollbar {
  -webkit-appearance: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
html.ec-mnu-frontend::-webkit-scrollbar-track,
html.ec-mnu-frontend::-webkit-scrollbar-thumb,
html.ec-mnu-frontend::-webkit-scrollbar-corner,
html:has(body.ec-mnu-app)::-webkit-scrollbar-track,
html:has(body.ec-mnu-app)::-webkit-scrollbar-thumb,
html:has(body.ec-mnu-app)::-webkit-scrollbar-corner,
body.ec-mnu-app::-webkit-scrollbar-track,
body.ec-mnu-app::-webkit-scrollbar-thumb,
body.ec-mnu-app::-webkit-scrollbar-corner {
  display: none !important;
  background: transparent !important;
}

/* —— InApp-style top bar (mobile-first, always-visible session + table) —— */
body.ec-mnu-app .ec-mnu-navbar.ec-top-nav {
  background: var(--ec-nav-bg) !important;
  border-bottom: 1px solid var(--ec-nav-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding-top: max(0.5rem, env(safe-area-inset-top, 0px));
  padding-bottom: 0.5rem;
  z-index: 1030;
}

body.ec-mnu-app .ec-mnu-navbar .ec-mnu-nav-inner {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
}
body.ec-mnu-app .ec-mnu-navbar .ec-mnu-nav-actions {
  gap: 0.55rem !important;
}

body.ec-mnu-app .ec-mnu-navbar .navbar-brand {
  float: none;
  max-width: min(52vw, 220px);
}

body.ec-mnu-app .ec-mnu-navbar .ec-nav-logo {
  max-height: clamp(36px, 10vw, 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

/* Session pill: InApp grey capsule + brown hourglass accent */
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill {
  background: linear-gradient(180deg, #f7f7f8 0%, #ececee 100%);
  border: 1px solid var(--ec-nav-border);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.8125rem;
  min-height: 48px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill__icon {
  color: #8d6e63;
  font-size: 1.05rem;
  flex-shrink: 0;
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill__text {
  line-height: 1.15;
  gap: 0.22rem !important;
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill__label {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #6b7280 !important;
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill__time {
  font-size: 1.02rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ec-front-primary, #111827);
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill--interactive {
  cursor: pointer;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill--interactive:hover {
  border-color: #c4b5a5;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.12);
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill--paused {
  background: linear-gradient(180deg, #fff8e8 0%, #f5ecd8 100%);
  border-color: #e8d4a8;
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill--paused .ec-session-pill__label {
  color: #92400e !important;
}
body.ec-mnu-app .ec-mnu-navbar .ec-session-pill--busy {
  opacity: 0.65;
  pointer-events: none;
}

/* Table chip: white card, sharp hierarchy */
body.ec-mnu-app .ec-mnu-navbar .ec-table-chip {
  border-radius: var(--ec-mnu-radius) !important;
  border: 1px solid var(--ec-nav-border) !important;
  background: #fff !important;
  min-width: 4.15rem;
  min-height: 48px;
  padding: 0.4rem 0.7rem !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}
body.ec-mnu-app .ec-mnu-navbar .ec-table-chip__label {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.05rem;
}
body.ec-mnu-app .ec-mnu-navbar .ec-table-chip__num {
  font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.05;
  color: #111827;
}

/* Checkout timer line inside chip (non-menu pages) */
body.ec-mnu-app .ec-mnu-navbar .ec-nav-timer:not(:empty) {
  font-size: 0.65rem;
  color: #64748b;
  margin-top: 0.15rem;
}

/* Top bar: cart (FoodScan-style chip, syncs with .total_price) */
body.ec-mnu-app .ec-mnu-navbar .ec-nav-cart-btn {
  background: #1e293b !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.4rem 0.75rem !important;
  min-height: 44px;
  line-height: 1.1;
}
body.ec-mnu-app .ec-mnu-navbar .ec-nav-cart-btn:hover,
body.ec-mnu-app .ec-mnu-navbar .ec-nav-cart-btn:focus-visible {
  background: #0f172a !important;
  color: #fff !important;
}
body.ec-mnu-app .ec-mnu-navbar .ec-nav-cart-btn .ec-nav-cart-money {
  font-size: 0.9rem;
}

/* Search strip (index + tables) */
body.ec-mnu-app .ec-mnu-search-outer {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
body.ec-mnu-app .ec-mnu-search-wrap {
  max-width: 100%;
}
body.ec-mnu-app .ec-mnu-search.ec-mnu-search--pill {
  border-radius: 999px !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  background: #fff;
  min-height: 3rem;
  overflow: hidden;
}
body.ec-mnu-app .ec-mnu-search__field {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1rem;
}
body.ec-mnu-app .ec-mnu-search__field:focus {
  box-shadow: none !important;
}
body.ec-mnu-app .ec-mnu-search__btn.btn-primary {
  border-radius: 0 999px 999px 0 !important;
  font-weight: 600;
}
body.ec-mnu-app .ec-mnu-search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 1045;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  max-height: min(52vh, 360px);
  overflow-y: auto;
}
body.ec-mnu-app .ec-mnu-search-suggest__item {
  transition: background 0.12s ease;
}
body.ec-mnu-app .ec-mnu-search-suggest__item:hover,
body.ec-mnu-app .ec-mnu-search-suggest__item:focus {
  background: color-mix(in srgb, var(--ec-front-primary) 8%, #fff) !important;
}
body.ec-mnu-app .ec-mnu-search-suggest__thumb img {
  display: block;
}

/* Full search results (inc/search_process.php) */
body.ec-mnu-app .ec-search-result-row:hover {
  background: color-mix(in srgb, var(--ec-front-primary) 6%, #fff) !important;
}

/* Only the narrowest phones: drop "Session" label to protect touch targets */
@media (max-width: 359px) {
  body.ec-mnu-app .ec-mnu-navbar .ec-session-pill--compact {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    gap: 0.35rem;
  }
  body.ec-mnu-app .ec-mnu-navbar .ec-session-pill__label {
    display: none;
  }
  body.ec-mnu-app .ec-mnu-navbar .ec-session-pill__text {
    flex-direction: row !important;
    align-items: center !important;
  }
  body.ec-mnu-app .ec-mnu-navbar .ec-session-pill__time {
    font-size: 0.875rem;
  }
}

@media (min-width: 576px) {
  body.ec-mnu-app .ec-mnu-navbar.ec-top-nav {
    padding-top: max(0.65rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.65rem;
  }
  body.ec-mnu-app .ec-mnu-navbar .ec-session-pill {
    padding: 0.5rem 0.95rem;
  }
  body.ec-mnu-app .ec-mnu-navbar .ec-table-chip {
    min-width: 4.5rem;
    padding: 0.5rem 0.9rem !important;
  }
}

/* Category strip (tabs) — desktop: wrap; mobile: horizontal swipe */
.ec-mnu-app .category-inner {
  border: none !important;
  background: transparent !important;
  gap: 0.5rem;
  padding: 0.75rem 0 0.25rem !important;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .ec-mnu-app .category-inner:not(.ec-cat-rail) {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    gap: 0.4rem;
  }
  .ec-mnu-app .category-inner:not(.ec-cat-rail)::-webkit-scrollbar {
    display: none !important;
    height: 0 !important;
    background: transparent !important;
  }
  .ec-mnu-app .category-inner:not(.ec-cat-rail)::-webkit-scrollbar-thumb {
    display: none !important;
  }
  .ec-mnu-app .category-inner:not(.ec-cat-rail) li a {
    flex-shrink: 0;
  }
}
/* Scrollable category rail: horizontal swipe on touch; scrollbar hidden on small screens */
/*
 * cos.css sets .category-inner { max-height: 100px; overflow-y: auto; } for legacy pills.
 * The icon rail also uses .category-inner — that traps tall cards and forces BOTH scrollbars.
 * Only the outer .ec-cat-rail-scroll may scroll (horizontal). Do not clip rail content height here.
 */
.ec-mnu-app .ec-cat-rail-scroll > .category-inner.ec-cat-rail {
  max-height: none !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
.ec-mnu-app .ec-cat-rail-wrap {
  position: relative;
  overflow: hidden; /* Contain the scroller; no outer vertical bar from the rail */
  max-width: 100%;
}
.ec-mnu-app .ec-cat-rail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.ec-mnu-app .ec-cat-rail-nav i {
  font-size: 1rem;
  line-height: 1;
}
.ec-mnu-app .ec-cat-rail-nav--left {
  left: 0.15rem;
}
.ec-mnu-app .ec-cat-rail-nav--right {
  right: 0.15rem;
}
@media (hover: hover) and (pointer: fine) {
  .ec-mnu-app .ec-cat-rail-wrap:hover .ec-cat-rail-nav,
  .ec-mnu-app .ec-cat-rail-wrap:focus-within .ec-cat-rail-nav {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 991.98px) {
  .ec-mnu-app .ec-cat-rail-nav {
    display: none !important;
  }
}
/* Horizontal scroll only: never show a vertical scrollbar on this strip (Ch/WebKit quirk) */
.ec-mnu-app .ec-cat-rail-scroll {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: auto !important;
  /* clip avoids WebKit showing a vertical scrollbar when the horizontal bar appears */
  overflow-y: clip;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
  scroll-padding: 0 0.5rem;
  min-height: 7.15rem;
  max-height: none;
  height: auto;
  padding: 0 0 6px 0;
  margin: 0;
  scrollbar-gutter: auto;
  border-bottom: none;
  /* Hide scrollbars but keep swipe / drag / wheel horizontal scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ec-mnu-app .ec-cat-rail-scroll::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.ec-mnu-app .ec-cat-rail-scroll::-webkit-scrollbar-track,
.ec-mnu-app .ec-cat-rail-scroll::-webkit-scrollbar-thumb,
.ec-mnu-app .ec-cat-rail-scroll::-webkit-scrollbar-corner {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
@supports not (overflow: clip) {
  .ec-mnu-app .ec-cat-rail-scroll {
    overflow-y: hidden !important;
  }
}
.ec-mnu-app .ec-cat-rail-scroll .ec-cat-rail {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  white-space: nowrap;
}
.ec-mnu-app .ec-cat-rail-scroll .ec-cat-rail > li {
  flex: 0 0 auto !important;
  scroll-snap-align: start;
}
.ec-mnu-app .category-inner li {
  float: none !important;
  display: inline-flex !important;
  margin: 0 !important;
}
.ec-mnu-app .category-inner li a .ec-cat-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: -0.1em;
  margin-right: 0.2rem;
}
.ec-mnu-app .category-inner li a .ec-cat-icon i {
  line-height: 1;
  font-size: 0.95em;
}
.ec-mnu-app .category-inner li a {
  border-radius: 999px !important;
  padding: 0.45rem 1rem !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--ec-nav-border) !important;
  background: #fff !important;
  color: #404040 !important;
  margin: 0 !important;
  min-height: auto !important;
  min-width: auto !important;
  text-decoration: none !important;
}
.ec-mnu-app .category-inner li.active a,
.ec-mnu-app .category-inner li a:hover,
.ec-mnu-app .category-inner li a:focus {
  background: var(--ec-front-primary) !important;
  border-color: var(--ec-front-primary) !important;
  color: #fff !important;
}
.ec-mnu-app .category-inner li:not(.active) a {
  opacity: 1;
}

/* Icon category cards (inc/menu_category_rail.php) — Tabler icons from admin */
.ec-mnu-app .category-inner.ec-cat-rail {
  justify-content: flex-start;
  flex-wrap: nowrap !important;
  gap: 1rem !important;
}
.ec-mnu-app .category-inner.ec-cat-rail li {
  flex: 0 0 auto;
}
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card {
  border-radius: 0.8rem !important;
  padding: 0.55rem 0.45rem 0.5rem !important;
  width: 6.8rem;
  min-width: 6.8rem;
  max-width: 6.8rem;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  line-height: 1.25;
  min-height: 6.9rem !important;
  background: #fff !important;
  border: none !important;
  color: var(--ec-front-secondary, #8898aa) !important;
  box-shadow: none !important;
}
/* Icon tile: fixed square, no border — Tabler glyphs sized uniformly */
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card .ec-cat-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.35rem;
  height: 4.35rem;
  min-width: 4.35rem;
  min-height: 4.35rem;
  border-radius: 0.7rem;
  background: color-mix(in srgb, var(--ec-front-primary) 7%, #fff);
  border: none !important;
  box-shadow: none;
  flex-shrink: 0;
}
.ec-mnu-app .category-inner.ec-cat-rail .ec-cat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 2rem;
  height: 2rem;
}
.ec-mnu-app .category-inner.ec-cat-rail .ec-cat-card__icon i {
  font-size: 2.05rem !important;
  width: 1em;
  height: 1em;
  line-height: 1 !important;
  display: block;
  color: var(--ec-front-secondary, #8898aa);
}
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card .ec-cat-card__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  width: 100%;
  min-height: 2.7em;
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
  padding: 0 0.05rem;
}
.ec-mnu-app .category-inner.ec-cat-rail li.active a.ec-cat-card,
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card:hover,
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card:focus-visible {
  background: #ffffff !important;
  border-color: transparent !important;
  color: var(--ec-front-primary, #525f7f) !important;
  box-shadow: none !important;
}
.ec-mnu-app .category-inner.ec-cat-rail li.active a.ec-cat-card .ec-cat-card__visual,
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card:hover .ec-cat-card__visual,
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card:focus-visible .ec-cat-card__visual {
  background: color-mix(in srgb, var(--ec-front-primary) 12%, #fff);
  border: none !important;
}
.ec-mnu-app .category-inner.ec-cat-rail li.active a.ec-cat-card .ec-cat-card__icon i,
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card:hover .ec-cat-card__icon i,
.ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card:focus-visible .ec-cat-card__icon i {
  color: var(--ec-front-primary, #525f7f) !important;
}

@media (max-width: 767.98px) {
  .ec-mnu-app .category-inner.ec-cat-rail {
    gap: 0.65rem !important;
  }
  .ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card {
    min-height: 6.5rem !important;
    width: 6.2rem;
    min-width: 6.2rem;
    max-width: 6.2rem;
    padding: 0.55rem 0.45rem 0.5rem !important;
    font-size: 0.74rem !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
    touch-action: manipulation;
  }
  .ec-mnu-app .category-inner.ec-cat-rail li a.ec-cat-card .ec-cat-card__visual {
    width: 4.1rem;
    height: 4.1rem;
    min-width: 4.1rem;
    min-height: 4.1rem;
  }
  .ec-mnu-app .category-inner.ec-cat-rail .ec-cat-card__icon i {
    font-size: 1.9rem !important;
  }
  .ec-mnu-app .category-inner:not(.ec-cat-rail) li a {
    min-height: 2.75rem;
    min-width: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
    touch-action: manipulation;
  }
}

/* Dietary notice */
.ec-mnu-app .alert-warning {
  border-radius: var(--ec-mnu-radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Product grid cards (fetch_items) */
.ec-mnu-app .ec-mnu-product-card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ec-mnu-app .ec-mnu-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}
.ec-mnu-app .ec-mnu-product-card .card-img-top,
.ec-mnu-app .ec-mnu-product-card .ec-mnu-product-card__img,
.ec-mnu-app .ec-mnu-product-card img[src*='upload'] {
  object-fit: cover;
}
.ec-mnu-app .ec-mnu-product-card:not(.ec-mnu-product-card--grid) .card-img-top,
.ec-mnu-app .ec-mnu-product-card:not(.ec-mnu-product-card--grid) img[src*='upload'] {
  max-height: 200px;
}

/* Two-column mobile grid + FoodScan-style card body (inc/fetch_items.php) */
.ec-mnu-app .ec-mnu-product-grid {
  --ec-mnu-card-img-ratio: 4 / 3;
}
.ec-mnu-app .ec-mnu-product-card--grid .ec-mnu-product-card__media {
  background: #f2f4f7;
}
.ec-mnu-app .ec-mnu-product-card--grid .ec-mnu-product-card__img-wrap {
  aspect-ratio: var(--ec-mnu-card-img-ratio);
  overflow: hidden;
}
.ec-mnu-app .ec-mnu-product-card--grid .ec-mnu-product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.ec-mnu-app .ec-mnu-product-card--grid .ec-mnu-product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ec-mnu-app .ec-mnu-product-card--grid .ec-mnu-product-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  min-height: 0;
}
.ec-mnu-app .ec-mnu-diet-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px #fff;
  flex-shrink: 0;
}
.ec-mnu-app .ec-mnu-diet-dot--veg {
  background: #22c55e;
}
.ec-mnu-app .ec-mnu-diet-dot--meat {
  background: #ef4444;
}
.ec-mnu-app .ec-mnu-product-card--grid .ec-mnu-card-add {
  font-size: 0.8125rem;
  font-weight: 600;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.ec-mnu-app .ec-mnu-product-card--grid .ec-mnu-product-card__price {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.ec-mnu-app .ec-mnu-product-card--grid.ec-mnu-product-card--disabled {
  opacity: 0.9;
}
.ec-mnu-app .ec-mnu-product-card--grid.ec-mnu-product-card--disabled:hover {
  transform: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Fixed cart bar */
.ec-mnu-app .fixed-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0.65rem 1rem max(0.65rem, env(safe-area-inset-bottom));
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.04) 100%), var(--ec-cart-bg);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
}
.ec-mnu-app #cart-button {
  border-radius: var(--ec-mnu-radius) !important;
  min-height: 3.15rem;
  padding: 0.7rem 0.9rem;
  font-weight: 600;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  line-height: 1.15;
}
.ec-mnu-app #cart-button .ec-cart-btn__left,
.ec-mnu-app #cart-button .ec-cart-btn__right {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ec-mnu-app #cart-button .ec-cart-btn__right {
  margin-left: auto;
}
.ec-mnu-app #cart-button .ec-cart-btn__label {
  font-weight: 700;
}
.ec-mnu-app #cart-button .ec-cart-btn__total {
  font-weight: 700;
}
.ec-mnu-app #cart-button .badge {
  min-width: 1.5rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .ec-mnu-app .fixed-button {
    left: 50%;
    right: auto;
    width: min(560px, calc(100% - 2rem));
    transform: translateX(-50%);
    border-radius: 0.85rem 0.85rem 0 0;
  }
}

/* Modals */
.ec-mnu-app .modal-content {
  border-radius: var(--ec-mnu-radius);
  border: none;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

/* Same Bootstrap scrollable-modal flex fix as admin (form wrapping header/body/footer, or tall body). */
body.ec-mnu-app .modal-dialog-scrollable .modal-content > form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}
body.ec-mnu-app .modal-dialog-scrollable .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Welcome / session modal (guest count) */
.ec-mnu-app .ec-session-welcome-dialog {
  width: calc(100% - 1.25rem);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.ec-mnu-app .ec-session-welcome-sheet {
  border-radius: 1rem !important;
  overflow: hidden;
  border-top: 3px solid var(--ec-front-primary, #525f7f);
}
.ec-mnu-app .ec-session-welcome-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: color-mix(in srgb, var(--ec-front-primary) 12%, #fff);
  color: var(--ec-front-primary);
  font-size: 1.35rem;
  border: 1px solid color-mix(in srgb, var(--ec-front-primary) 25%, rgba(0, 0, 0, 0.06));
}
.ec-mnu-app .ec-session-welcome-tip {
  background: color-mix(in srgb, #0dcaf0 12%, #f8f9fa) !important;
  color: #0b4f5f !important;
  border-radius: 0.65rem !important;
}
.ec-mnu-app .ec-session-mates-select {
  font-weight: 600;
  min-height: 3.25rem;
  border-radius: 0.65rem;
  border-color: rgba(0, 0, 0, 0.12);
}
.ec-mnu-app .ec-session-mates-select:focus {
  border-color: var(--ec-front-primary);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--ec-front-primary) 25%, transparent);
}
.ec-mnu-app .ec-session-mates-select.is-invalid {
  border-color: #dc3545;
}
.ec-mnu-app .ec-session-start-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.ec-mnu-app .ec-session-response-slot {
  min-height: 0;
  color: #b02a37;
}
.ec-mnu-app .ec-session-response-slot:empty {
  display: none;
}
body.ec-mnu-app.modal-open .modal-backdrop.show {
  opacity: 0.55;
}
@keyframes ec-session-spin {
  to {
    transform: rotate(360deg);
  }
}
.ec-mnu-app .ec-session-start-btn .ti-loader-2 {
  animation: ec-session-spin 0.8s linear infinite;
}

/* Tabler loader spin (e.g. cancel order JS) */
.ec-icon-spin {
  animation: ec-session-spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: -0.125em;
}

/* Tab panes — leave room for fixed cart + home indicator */
.ec-mnu-app .tab-content {
  padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px));
}

/* Loader */
.ec-mnu-app .loader {
  border-top-color: var(--ec-front-primary) !important;
}

/* Product detail (view.php) */
body.ec-mnu-app .ec-view-page {
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}
body.ec-mnu-app .ec-view-back {
  border-radius: 999px;
  padding-left: 1rem;
  padding-right: 1rem;
  border-color: rgba(0, 0, 0, 0.12) !important;
  font-weight: 500;
}
body.ec-mnu-app .ec-view-hero-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--ec-nav-border, rgba(0, 0, 0, 0.08));
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  background: #fff;
}
body.ec-mnu-app .ec-view-hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: min(85vw, 480px);
  min-height: 200px;
  background: var(--inapp-gray-100, #f5f5f5);
}
@media (min-width: 992px) {
  body.ec-mnu-app .ec-view-hero-img {
    max-height: min(70vh, 560px);
  }
}
body.ec-mnu-app .ec-view-detail-card {
  border-radius: 1rem;
  border: 1px solid var(--ec-nav-border, rgba(0, 0, 0, 0.08));
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  background: #fff;
}
body.ec-mnu-app .ec-view-detail-card--muted {
  background: #f8fafc;
  border-style: dashed;
}
body.ec-mnu-app .ec-view-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.2;
}
body.ec-mnu-app .ec-view-category.ls-wide {
  letter-spacing: 0.12em;
  font-weight: 600;
}
body.ec-mnu-app .ec-view-extra-hint {
  border-left: 3px solid color-mix(in srgb, var(--ec-front-primary) 45%, #cbd5e1);
  padding-left: 0.65rem;
}
body.ec-mnu-app .ec-view-price {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--ec-front-primary, #525f7f);
  font-variant-numeric: tabular-nums;
}
body.ec-mnu-app .ec-view-price-label-over {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}
body.ec-mnu-app .ec-view-price-sub {
  font-variant-numeric: tabular-nums;
}
body.ec-mnu-app .ec-view-price-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 1rem;
}
/* Vertical quantity: minus → qty → plus (FoodScan-style) */
body.ec-mnu-app .ec-view-qty.ec-view-qty--vertical {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 3.25rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
body.ec-mnu-app .ec-view-qty--vertical .ec-view-qty-btn {
  border-radius: 0 !important;
  border: none !important;
  padding: 0.45rem 0.25rem;
  line-height: 1;
  margin: 0 !important;
  color: #334155;
  background: #f8fafc;
}
body.ec-mnu-app .ec-view-qty--vertical .ec-view-qty-btn:hover {
  background: #e2e8f0;
}
body.ec-mnu-app .ec-view-qty--vertical .ec-view-qty-input {
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 0.15rem;
  min-height: 2.5rem;
  max-width: none;
}
body.ec-mnu-app .ec-view-options-card {
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
body.ec-mnu-app .ec-view-options-head {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--ec-front-primary, #525f7f);
  padding: 0.65rem 1rem;
  margin: 0;
  display: flex;
  align-items: center;
}
body.ec-mnu-app .ec-view-options-body {
  border: none;
  border-radius: 0;
  padding: 0.25rem 1rem 0.75rem;
  background: #fafafa;
}
body.ec-mnu-app .ec-view-option-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.12);
}
body.ec-mnu-app .ec-view-option-row:last-child {
  border-bottom: 0;
}
body.ec-mnu-app .ec-view-option-row .form-check-input {
  margin-top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.25rem;
}
body.ec-mnu-app .ec-view-option-row .form-check-label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #1e293b;
}
body.ec-mnu-app .ec-view-option-price {
  margin-left: auto;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ec-front-primary, #525f7f);
  white-space: nowrap;
}
body.ec-mnu-app .ec-view-note {
  border-radius: 0.65rem;
  font-size: 0.9rem;
}
body.ec-mnu-app .ec-view-add-btn {
  border-radius: var(--ec-mnu-radius, 0.75rem);
  font-weight: 600;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
}
body.ec-mnu-app .ec-view-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

/* view.php: cart bar matches content width (fluid grid), not a narrow centered pill */
@media (min-width: 992px) {
  body.ec-mnu-app .ec-view-page .fixed-button {
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    border-radius: 0;
  }
  body.ec-mnu-app .ec-view-page .fixed-button #cart-button {
    max-width: 100%;
  }
}

/* Cart modal — Ready to checkout */
.ec-mnu-app .ec-cart-modal .modal-dialog {
  margin-top: max(1rem, env(safe-area-inset-top, 0px));
}
.ec-mnu-app .ec-cart-modal__sheet {
  overflow: hidden;
}
.ec-mnu-app .ec-cart-modal__header .modal-title {
  color: #1e293b;
}
.ec-mnu-app .ec-cart-modal__check {
  font-size: 1.25rem;
  line-height: 1;
}
.ec-mnu-app .ec-cart-table-responsive {
  margin: 0 -0.25rem;
}
.ec-mnu-app .ec-cart-table {
  font-size: 0.875rem;
  border-color: rgba(0, 0, 0, 0.1) !important;
}
.ec-mnu-app .ec-cart-table__head th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  background: #f1f5f9 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  font-weight: 600;
  padding: 0.65rem 0.5rem;
  vertical-align: middle;
}
.ec-mnu-app .ec-cart-table td {
  border-color: rgba(0, 0, 0, 0.08) !important;
  padding: 0.6rem 0.5rem;
  vertical-align: middle;
}
.ec-mnu-app .ec-cart-table__item-name {
  font-weight: 600;
  color: #0f172a;
}
.ec-mnu-app .ec-cart-sub,
.ec-mnu-app .ec-cart-total {
  color: #16a34a !important;
}
.ec-mnu-app .ec-cart-table__total-row td,
.ec-mnu-app .ec-cart-table__total-row th {
  background: #f8fafc;
  border-top-width: 2px !important;
}
.ec-mnu-app .ec-cart-table__note {
  max-width: 10rem;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  line-height: 1.35;
}
.ec-mnu-app .ec-cart-sub .ec-fx-hint,
.ec-mnu-app .ec-cart-total .ec-fx-hint {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
  line-height: 1.25;
}
.ec-mnu-app .ec-cart-remove {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ec-mnu-app .ec-cart-checkout-btn {
  background: #fff !important;
  color: #111 !important;
  border: 2px solid #111 !important;
  border-radius: var(--ec-mnu-radius, 0.75rem) !important;
  font-weight: 600;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.ec-mnu-app .ec-cart-checkout-btn:hover:not(:disabled) {
  background: #f8fafc !important;
  border-color: #000 !important;
  color: #000 !important;
}
.ec-mnu-app .ec-cart-checkout-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
@media (max-width: 575.98px) {
  .ec-mnu-app .ec-cart-table__note {
    max-width: 6.5rem;
    font-size: 0.72rem;
  }
}

/* Menu notice banner (dietary legend) */
body.ec-mnu-app .ec-menu-notice-legend code {
  color: #c2185b;
  font-weight: 600;
  background: transparent;
  padding: 0;
  font-size: inherit;
}
body.ec-mnu-app .ec-menu-notice-bullets li {
  color: #3d3d2f;
}

/* Checkout thank-you (checkout.php) */
body.ec-mnu-app.ec-checkout-page {
  min-height: 100vh;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}
body.ec-mnu-app.ec-checkout-page .ec-checkout-fail__icon {
  font-size: 3.5rem;
  line-height: 1;
}
.ec-mnu-app .ec-checkout-success.container-narrow {
	max-width: 36rem;
}
.ec-mnu-app .ec-checkout-success__img {
	max-height: 200px;
	width: auto;
	object-fit: contain;
}
.ec-mnu-app .ec-checkout-success__hero {
	margin-bottom: 1.25rem !important;
}
.ec-mnu-app .ec-checkout-success__title {
  color: #0f172a;
  letter-spacing: -0.02em;
}
.ec-mnu-app .ec-checkout-success__pill {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: #e2e8f0;
  color: #64748b;
  border-radius: 0.5rem;
  font-weight: 500;
}
.ec-mnu-app .ec-checkout-success__cta {
  background: var(--ec-front-primary) !important;
  border: 1px solid var(--ec-front-primary) !important;
  color: #fff !important;
  font-weight: 600;
}
.ec-mnu-app .ec-checkout-success__cta:hover {
  filter: brightness(0.95);
  color: #fff !important;
}
.ec-mnu-app .ec-checkout-order-wrap {
	max-width: 36rem;
	margin-top: 0.25rem;
}
.ec-mnu-app .ec-checkout-receipt {
	background: #fff;
}
.ec-mnu-app .ec-checkout-receipt__head {
	background: #f8fafc;
}
.ec-mnu-app .ec-checkout-table-wrap {
	background: #fff;
}
.ec-mnu-app .ec-checkout-table thead.ec-checkout-table__head th {
	background: #f1f5f9 !important;
	color: #334155;
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: 600;
	border-color: rgba(0, 0, 0, 0.08) !important;
	padding: 0.85rem 0.85rem;
}
.ec-mnu-app .ec-checkout-table td,
.ec-mnu-app .ec-checkout-table th {
	border-color: rgba(0, 0, 0, 0.08) !important;
	padding: 0.85rem 0.85rem;
	vertical-align: middle;
	font-size: 1rem;
}
.ec-mnu-app .ec-checkout-table__item {
	font-weight: 600;
	color: #0f172a;
	line-height: 1.35;
}
.ec-mnu-app .ec-checkout-table__note {
	font-weight: 400;
	font-size: 0.9375rem !important;
	max-width: 12rem;
	word-break: break-word;
	hyphens: auto;
}
@media (min-width: 576px) {
	.ec-mnu-app .ec-checkout-table__note {
		max-width: 16rem;
	}
}
.ec-mnu-app .ec-checkout-money,
.ec-mnu-app .ec-checkout-total {
  color: #16a34a !important;
  font-variant-numeric: tabular-nums;
}
.ec-mnu-app tr.ec-checkout-table__total-row th,
.ec-mnu-app tr.ec-checkout-table__total-row td {
	background: #f1f5f9;
	font-size: 1.05rem;
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
	border-top: 2px solid rgba(15, 23, 42, 0.12) !important;
}
.ec-mnu-app .ec-checkout-accent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 100;
  background: var(--ec-front-primary);
}

/* Readable labels on primary / outline-primary (legacy cos.css used global a { !important } + .btn) */
body.ec-mnu-app .btn-primary,
body.ec-mnu-app a.btn-primary,
body.ec-mnu-app button.btn-primary {
  color: #fff !important;
}
body.ec-mnu-app .btn-primary:hover,
body.ec-mnu-app .btn-primary:focus-visible,
body.ec-mnu-app .btn-primary:active,
body.ec-mnu-app a.btn-primary:hover,
body.ec-mnu-app a.btn-primary:focus-visible,
body.ec-mnu-app a.btn-primary:active {
  color: #fff !important;
}
body.ec-mnu-app .btn-outline-primary,
body.ec-mnu-app a.btn-outline-primary {
  color: var(--ec-front-primary) !important;
}
body.ec-mnu-app .btn-outline-primary:hover,
body.ec-mnu-app .btn-outline-primary:focus-visible,
body.ec-mnu-app .btn-outline-primary:active,
body.ec-mnu-app a.btn-outline-primary:hover,
body.ec-mnu-app a.btn-outline-primary:focus-visible,
body.ec-mnu-app a.btn-outline-primary:active {
  color: #fff !important;
}

/* Help / call waiter — navbar pill + modal */
body.ec-mnu-app .ec-mnu-navbar .ec-call-waiter-btn {
  border: 1px solid color-mix(in srgb, var(--ec-front-primary) 35%, #fff);
  background: linear-gradient(180deg, #fff 0%, #f8f4f2 100%);
  color: var(--ec-front-primary);
  border-radius: var(--ec-mnu-radius, 12px);
  min-width: 3.35rem;
  min-height: 48px;
  padding: 0.35rem 0.55rem !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
body.ec-mnu-app .ec-mnu-navbar .ec-call-waiter-btn__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
body.ec-mnu-app .ec-mnu-navbar .ec-call-waiter-btn__icon {
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 0.1rem;
}
body.ec-mnu-app .ec-mnu-navbar .ec-call-waiter-btn:hover,
body.ec-mnu-app .ec-mnu-navbar .ec-call-waiter-btn:focus-visible {
  background: var(--ec-front-primary);
  color: #fff;
  border-color: var(--ec-front-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--ec-front-primary) 35%, transparent);
}
body.ec-mnu-app .ec-mnu-navbar .ec-call-waiter-btn.ec-call-waiter-btn--sent {
  background: color-mix(in srgb, #16a34a 12%, #fff);
  border-color: #16a34a;
  color: #15803d;
}

.ec-help-modal .ec-help-modal__sheet {
  border-radius: 1rem;
  overflow: hidden;
}
.ec-help-modal .ec-help-modal__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ec-front-primary) 12%, #fff);
  color: var(--ec-front-primary);
  font-size: 1.35rem;
}
.ec-help-modal .ec-help-modal__illus {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #64748b;
}
.ec-help-modal .ec-help-modal__success {
  width: 3.5rem;
  height: 3.5rem;
  background: color-mix(in srgb, #16a34a 15%, #fff);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.ec-help-modal .ec-help-type-btn {
  border: 1px solid var(--ec-nav-border, #e5e7eb);
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.85rem 0.5rem;
  min-height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.ec-help-modal .ec-help-type-btn i {
  font-size: 1.35rem;
  color: var(--ec-front-primary);
}
.ec-help-modal .ec-help-type-btn:hover,
.ec-help-modal .ec-help-type-btn:focus-visible {
  border-color: var(--ec-front-primary);
  background: color-mix(in srgb, var(--ec-front-primary) 8%, #fff);
  color: var(--ec-front-primary);
}

/* Checkout — bar order status */
.ec-bar-status-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
  border: 1px solid #bae6fd;
}
.ec-bar-status-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0ea5e9;
  color: #fff;
  font-size: 1.2rem;
}
.ec-bar-status-card--ready {
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
  border-color: #86efac;
}
.ec-bar-status-card--ready .ec-bar-status-card__icon {
  background: #16a34a;
}
