/* Public customer menu page styles. */

.topbar-actions .preference-controls,
.customer-tools .preference-controls {
  margin-top: 0;
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.privacy-note a {
  color: var(--accent-dark);
  font-weight: 800;
}

.customer-page,
.dashboard-page {
  background:
    var(--app-bg-overlay),
    url("../img/sante-hero.jpg") center / cover fixed no-repeat,
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
}

.home-panel .muted-label,
.auth-card .muted-label,
.status-card .muted-label,
.topbar .muted-label,
.customer-header .muted-label {
  color: var(--menu-accent-dark, var(--accent-dark));
}

.customer-page {
  padding: 0 0 96px;
}

.customer-page:not(.menu-view-only) {
  padding-bottom: calc(96px + 32vh);
}

.menu-shell {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  overflow: visible;
}

.menu-shell.menu-readonly {
  max-width: 960px;
}

.customer-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin: -18px -18px 2px;
  padding: 24px 24px 22px;
  color: #f8f5ee;
  background: #090909;
  border-bottom: 3px solid var(--accent);
}

.customer-header h1 {
  margin: 0;
  font-size: clamp(1.85rem, 9vw, 2.6rem);
  line-height: 1;
}

.table-chip,
.count-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 7px 12px;
  font-weight: 800;
}

.customer-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-top: 2px;
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  gap: 8px;
  margin: -2px -18px 0;
  padding: 10px 18px;
  overflow-x: auto;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  scrollbar-width: thin;
}

.menu-search-panel {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.menu-search-field {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.menu-search-icon,
.menu-search-clear {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--muted);
}

.menu-search-icon svg,
.menu-search-clear svg {
  width: 18px;
  height: 18px;
}

.menu-search-field input {
  min-width: 0;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.menu-search-field input::placeholder {
  color: var(--muted);
  font-weight: 700;
}

.menu-search-field input::-webkit-search-cancel-button,
.menu-search-field input::-webkit-search-decoration {
  appearance: none;
  display: none;
}

.menu-search-clear {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-search-clear[hidden] {
  display: none;
}

.menu-search-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.menu-search-status:empty {
  display: none;
}

.category-nav[hidden] {
  display: none;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.category-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-content {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.menu-category {
  scroll-margin-top: 68px;
}

.menu-category h2 {
  margin: 0 0 12px;
  color: var(--ink);
}

.menu-items {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.menu-item,
.cart-panel,
.order-card,
.editor-panel,
.sound-panel,
.admin-nav-cards a {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.menu-item {
  display: block;
  width: 100%;
  min-width: 0;
  border-top: 3px solid var(--card-top-border);
  overflow: hidden;
}

.menu-item.menu-item-direct {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 16px;
}

.menu-item-toggle {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 16px;
  text-align: left;
  cursor: pointer;
}

.menu-item-image {
  width: 96px;
  height: 96px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--control-bg);
}

.menu-item-copy {
  min-width: 0;
}

.menu-item-body {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.menu-item-summary-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  align-content: center;
  min-width: 82px;
}

.accordion-indicator {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--control-border);
  border-radius: 999px;
  background: var(--control-muted-bg);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.menu-item.is-open .accordion-indicator {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.menu-item-panel {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--border);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px 0 130px;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    max-height 0.28s ease,
    opacity 0.2s ease,
    padding 0.28s ease,
    transform 0.28s ease;
}

.menu-item.is-open .menu-item-panel {
  height: fit-content;
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-item h3 {
  margin: 0 0 4px;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
}

.menu-item-options {
  min-width: 0;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
}

.menu-item-options legend {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid var(--control-border);
  border-radius: 999px;
  background: var(--control-muted-bg);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.choice-pill input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent);
}

.choice-pill:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.menu-item-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
  min-width: 82px;
}

.menu-item-actions button {
  margin-bottom: 10px;
}

.menu-item-panel .menu-item-actions {
  justify-items: start;
  min-width: 0;
}

.price {
  font-size: 1.05rem;
}

.cart-panel {
  display: grid;
  gap: 16px;
  padding: 16px;
  scroll-margin-top: 76px;
}

.cart-header,
.cart-line-header,
.order-card-header,
.order-line-main,
.panel-heading,
.column-heading,
.save-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.cart-header h2,
.column-heading h2,
.panel-heading h2,
.section-title {
  margin: 0;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.cart-line.is-added {
  animation: cart-line-added 0.42s ease-out;
}

.cart-line-option,
.order-line-option {
  margin: -4px 0 0;
  color: var(--menu-accent-dark, var(--accent-dark));
  font-size: 0.92rem;
  font-weight: 800;
}

.quantity-controls {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  width: 152px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-value {
  text-align: center;
  font-weight: 800;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-size: 1.2rem;
  font-weight: 800;
}

.sticky-cart-button {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: calc(100vw - 32px);
  max-width: calc(100vw - 32px);
  min-height: 56px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--sticky-bg);
  color: var(--sticky-ink);
  padding: 14px 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
  cursor: pointer;
  transform-origin: center;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.sticky-cart-button:hover {
  transform: translateY(-1px);
}

.sticky-cart-button.has-items {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 0 2px rgba(27, 117, 109, 0.16);
}

.sticky-cart-button.is-pulsing {
  animation: cart-button-pulse 0.52s ease-out;
}

.cart-panel.is-updated {
  animation: cart-panel-added 0.7s ease-out;
}

.sticky-cart-button span {
  min-width: 0;
}

.sticky-cart-button strong {
  flex: 0 0 auto;
  white-space: nowrap;
}

@keyframes cart-button-pulse {
  0% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.065);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes cart-panel-added {
  0% {
    border-color: var(--menu-accent);
    box-shadow:
      0 10px 26px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(27, 117, 109, 0.24);
  }
  70% {
    border-color: var(--menu-accent);
    box-shadow:
      0 10px 26px rgba(0, 0, 0, 0.18),
      0 0 0 8px rgba(27, 117, 109, 0);
  }
  100% {
    border-color: var(--border);
    box-shadow: var(--card-shadow);
  }
}

@keyframes cart-line-added {
  0% {
    background: rgba(27, 117, 109, 0.12);
    transform: scale(0.985);
  }
  65% {
    background: rgba(27, 117, 109, 0.08);
    transform: scale(1.01);
  }
  100% {
    background: transparent;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-line.is-added,
  .cart-panel.is-updated,
  .sticky-cart-button.is-pulsing {
    animation: none;
  }
}

@media (min-width: 880px) {
  .customer-page:not(.menu-view-only) {
    padding-bottom: 32px;
  }

  .menu-shell {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
  }

  .menu-shell.menu-readonly {
    grid-template-columns: minmax(0, 1fr);
  }

  .customer-header,
  .category-nav {
    grid-column: 1 / -1;
  }

  .menu-content {
    grid-column: 1;
  }

  .cart-panel {
    grid-column: 2;
    position: sticky;
    top: 76px;
  }

  .sticky-cart-button {
    display: none;
  }
}

@media (max-width: 879px) {
  .menu-item,
  .cart-line-header,
  .order-card-header {
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .menu-shell,
  .dashboard-shell,
  .admin-shell,
  .admin-editor,
  .earnings-dashboard {
    padding: 14px;
  }

  .menu-item-toggle {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px;
  }

  .menu-item.menu-item-direct {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .menu-item-direct .menu-item-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-rows: auto minmax(38px, 1fr);
    column-gap: 10px;
    row-gap: 8px;
    align-items: start;
    min-height: 82px;
  }

  .menu-item-direct .menu-item-copy {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
  }

  .menu-item-image {
    width: 82px;
    height: 82px;
  }

  .menu-item-panel {
    padding: 0 12px;
  }

  .menu-item.is-open .menu-item-panel {
    padding-bottom: 12px;
  }

  .menu-item-actions {
    min-width: 0;
    justify-items: stretch;
    align-items: center;
  }

  .menu-item-direct .menu-item-actions {
    display: contents;
  }

  .menu-item-direct .price {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }

  .menu-item-direct .button {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    min-width: 86px;
    min-height: 40px;
    padding-inline: 12px;
  }

  .customer-header h1 {
    font-size: 2rem;
  }

  .customer-header {
    margin: -14px -14px 2px;
  }

  .table-chip {
    display: none;
  }
}

/* Active customer menu redesign. Keep this layer scoped to menu.php. */
.customer-page {
  --menu-accent: #1b756d;
  --menu-accent-dark: #115c55;
  --menu-accent-soft: rgba(27, 117, 109, 0.12);
  --menu-bg: #fffcf7;
  --menu-surface: #ffffff;
  --menu-surface-soft: #fff8ee;
  --menu-ink: #181512;
  --menu-muted: #655c53;
  --menu-line: rgba(24, 21, 18, 0.12);
  --menu-line-strong: rgba(24, 21, 18, 0.18);
  --menu-danger: #b42318;
  --menu-shadow: 0 12px 30px rgba(28, 19, 11, 0.08);
  --menu-shadow-strong: 0 20px 52px rgba(28, 19, 11, 0.14);
  --menu-font:
    "Century Gothic", "Avenir Next", "Montserrat", "Segoe UI", Arial, sans-serif;
  --bg: var(--menu-bg);
  --surface: var(--menu-surface);
  --surface-strong: var(--menu-surface-soft);
  --surface-raised: var(--menu-surface);
  --control-bg: var(--menu-surface);
  --control-muted-bg: #f5f1e9;
  --control-border: var(--menu-line-strong);
  --ink: var(--menu-ink);
  --muted: var(--menu-muted);
  --border: var(--menu-line);
  --accent: var(--menu-accent);
  --accent-dark: var(--menu-accent-dark);
  --danger: var(--menu-danger);
  --card-top-border: transparent;
  --sticky-bg: var(--menu-accent);
  --sticky-ink: #ffffff;
  --shadow: var(--menu-shadow-strong);
  --card-shadow: var(--menu-shadow);
  min-height: 100vh;
  padding: 0 0 calc(110px + env(safe-area-inset-bottom));
  background: var(--menu-bg);
  color: var(--menu-ink);
  color-scheme: light;
  font-family: var(--menu-font);
  letter-spacing: 0;
}

.customer-page:not(.menu-view-only) {
  padding-bottom: calc(118px + env(safe-area-inset-bottom));
}

.customer-page,
.customer-page *,
.customer-page *::before,
.customer-page *::after {
  box-sizing: border-box;
}

.customer-page button,
.customer-page input,
.customer-page textarea,
.customer-page select {
  font-family: inherit;
}

.customer-page button:focus,
.customer-page input:focus,
.customer-page textarea:focus {
  outline: 2px solid var(--menu-accent);
  outline-offset: 2px;
}

.customer-page .menu-item-toggle:focus {
  outline: 2px solid var(--menu-accent);
  outline-offset: -2px;
}

.customer-page .menu-shell {
  width: min(1120px, 100%);
  max-width: 1120px;
  gap: 12px;
  padding: 12px;
}

.customer-page .menu-shell.menu-readonly {
  max-width: 980px;
}

.customer-page .customer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: -12px -12px 0;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid var(--menu-line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--menu-ink);
  box-shadow: 0 8px 18px rgba(28, 19, 11, 0.08);
}

.customer-page .customer-brand {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.customer-page .brand-logo {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--menu-line);
  box-shadow: 0 8px 18px rgba(28, 19, 11, 0.1);
}

.customer-page .brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.customer-page .brand-name {
  margin: 0;
  color: var(--menu-accent-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.customer-page .customer-header h1 {
  margin: 0;
  color: var(--menu-ink);
  font-size: clamp(1.25rem, 4.2vw, 1.55rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1;
}

.customer-page .customer-header-side {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.customer-page .menu-table-chip {
  display: inline-flex;
  min-height: 30px;
  margin: 0;
  border: 1px solid rgba(27, 117, 109, 0.2);
  background: var(--menu-accent-soft);
  color: var(--menu-accent-dark);
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.customer-page .customer-tools,
.customer-page .customer-tools .preference-controls {
  margin: 0;
}

.customer-page .customer-tools .preference-controls {
  flex-wrap: nowrap;
  gap: 6px;
}

.customer-page .theme-toggle {
  display: none !important;
}

.customer-page .language-toggle {
  min-height: 30px;
  border-color: var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--menu-ink);
  padding: 4px 6px;
}

.customer-page .language-toggle span,
.customer-page .control-icon,
.customer-page .theme-icon {
  color: var(--menu-muted);
}

.customer-page .language-toggle-options {
  border-radius: 7px;
  background: #f5f1e9;
}

.customer-page .language-toggle-options span {
  min-width: 27px;
  border-radius: 5px;
  color: var(--menu-muted);
}

.customer-page .language-toggle[data-language="el"] [data-language-option="el"],
.customer-page
  .language-toggle[data-language="en"]
  [data-language-option="en"] {
  background: var(--menu-accent);
  color: #ffffff;
}

.customer-page .category-nav {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  gap: 8px;
  margin: -12px -12px 0;
  padding: 8px 12px;
  overflow-x: auto;
  background: var(--menu-bg);
  border-bottom: 1px solid var(--menu-line);
  box-shadow: 0 10px 24px rgba(28, 19, 11, 0.08);
  scrollbar-width: none;
}

.customer-page .menu-search-panel {
  min-width: 0;
}

.customer-page .menu-search-field {
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  border-color: var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--menu-shadow);
}

.customer-page .menu-search-field:focus-within {
  border-color: var(--menu-accent);
  box-shadow:
    var(--menu-shadow),
    0 0 0 2px var(--menu-accent);
}

.customer-page .menu-search-icon,
.customer-page .menu-search-clear {
  color: var(--menu-muted);
}

.customer-page .menu-search-field input {
  min-height: 40px;
  color: var(--menu-ink);
  font-size: 0.96rem;
  font-weight: 700;
}

.customer-page .menu-search-field input:focus {
  outline: none;
}

.customer-page .menu-search-field input::placeholder {
  color: rgba(101, 92, 83, 0.72);
}

.customer-page .menu-search-clear {
  border-radius: 8px;
  color: var(--menu-accent-dark);
}

.customer-page .menu-search-clear:hover,
.customer-page .menu-search-clear:focus-visible {
  background: var(--menu-accent-soft);
}

.customer-page .menu-search-status {
  color: var(--menu-muted);
}

.customer-page .menu-search-panel + .category-nav {
  margin-top: 0;
}

.customer-page .category-nav::-webkit-scrollbar {
  display: none;
}

.customer-page .category-nav[hidden] {
  display: none;
}

.customer-page .category-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--menu-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--menu-muted);
  padding: 7px 13px 7px 8px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(28, 19, 11, 0.05);
  transform: translateY(0);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.customer-page .category-tab:hover,
.customer-page .category-tab:focus-visible {
  border-color: rgba(27, 117, 109, 0.32);
  color: var(--menu-accent-dark);
  transform: translateY(-1px);
}

.customer-page .category-tab-icon {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: #f5f1e9;
  color: var(--menu-muted);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.customer-page .category-tab-icon svg {
  width: 16px;
  height: 16px;
}

.customer-page .category-tab-label {
  min-width: 0;
}

.customer-page .category-tab.is-active {
  border-color: var(--menu-accent);
  background: var(--menu-accent);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(27, 117, 109, 0.18);
}

.customer-page .category-tab.is-active .category-tab-icon {
  background: #ffffff;
  color: var(--menu-accent);
  transform: scale(1.04);
}

.customer-page .menu-content {
  gap: 28px;
  min-width: 0;
}

.customer-page .menu-category {
  scroll-margin-top: 72px;
}

.customer-page .menu-category h2 {
  margin: 0 0 12px;
  color: var(--menu-ink);
  font-size: clamp(1.22rem, 4.5vw, 1.55rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.customer-page .menu-items {
  display: grid;
  gap: 12px;
}

.customer-page .menu-item {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--menu-shadow);
  animation: customer-menu-card-in 0.32s ease both;
  animation-delay: var(--menu-card-delay, 0ms);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.customer-page .menu-item:hover {
  border-color: rgba(27, 117, 109, 0.2);
  box-shadow: 0 14px 34px rgba(28, 19, 11, 0.11);
}

.customer-page .menu-category.is-browsing .menu-item {
  animation: customer-menu-card-in 0.26s ease both;
  animation-delay: var(--menu-card-delay, 0ms);
}

.customer-page .menu-item.is-unavailable,
.customer-page .menu-item[aria-disabled="true"] {
  opacity: 0.58;
}

.customer-page .menu-item.menu-item-direct,
.customer-page .menu-item-toggle {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
}

.customer-page .menu-item.menu-item-direct {
  grid-template-columns: 88px minmax(0, 1fr) auto;
}

.customer-page .menu-item-toggle {
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
}

.customer-page .menu-item-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.customer-page .menu-item-image {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  background: #f4efe6;
  object-fit: cover;
}

.customer-page .menu-item-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.customer-page .menu-item-direct .menu-item-body {
  display: contents;
}

.customer-page .menu-item-direct > .menu-item-image {
  grid-column: 1;
  grid-row: 1;
}

.customer-page .menu-item-direct .menu-item-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.customer-page .menu-item-direct .menu-item-actions {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  align-self: center;
}

.customer-page .menu-item-direct .price,
.customer-page .menu-item-direct .button {
  grid-column: auto;
  grid-row: auto;
  justify-self: end;
}

.customer-page .menu-item-copy {
  min-width: 0;
}

.customer-page .menu-item h3 {
  margin: 0 0 5px;
  color: var(--menu-ink);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.22;
}

.customer-page .menu-item p {
  margin: 0;
  color: var(--menu-muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.customer-page .menu-item-actions,
.customer-page .menu-item-summary-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: center;
  min-width: 78px;
}

.customer-page .menu-item-panel .menu-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 42px;
  padding-top: 0;
}

.customer-page .price {
  color: var(--menu-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.customer-page .menu-item .button.secondary {
  min-width: 96px;
  min-height: 42px;
  border-color: var(--menu-accent);
  border-radius: 8px;
  background: var(--menu-accent);
  color: #ffffff;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(27, 117, 109, 0.18);
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease;
}

.customer-page .menu-item-actions button {
  margin-bottom: 0;
}

.customer-page .menu-item .button.secondary:hover,
.customer-page .menu-item .button.secondary:focus-visible {
  border-color: var(--menu-accent-dark);
  background: var(--menu-accent-dark);
  box-shadow: 0 12px 24px rgba(27, 117, 109, 0.2);
}

.customer-page .menu-item .button.secondary:active {
  transform: scale(0.96);
}

.customer-page .button.secondary.is-pressing {
  animation: customer-button-pop 0.24s ease-out;
}

.customer-page .accordion-indicator {
  width: 32px;
  height: 32px;
  border-color: var(--menu-line);
  background: var(--menu-accent-soft);
  color: var(--menu-accent-dark);
  font-size: 1.05rem;
}

.customer-page .menu-item.is-open .accordion-indicator {
  border-color: var(--menu-accent);
  background: var(--menu-accent);
  color: #ffffff;
}

.customer-page .menu-item-panel {
  display: grid;
  gap: 14px;
  max-height: 0;
  padding: 0 12px 0 112px;
  border-top: 1px solid transparent;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    max-height 0.22s ease,
    opacity 0.18s ease,
    padding 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.customer-page .menu-item.is-open .menu-item-panel {
  border-top-color: var(--menu-line);
  max-height: none !important;
  overflow: visible;
  padding-top: 16px;
  padding-bottom: 16px;
  pointer-events: auto;
  transform: translateY(0);
}

.customer-page .menu-item-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.customer-page .menu-item-options legend {
  margin: 0 0 10px;
  color: var(--menu-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.customer-page .choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-page .choice-pill {
  min-height: 34px;
  border: 1px solid var(--menu-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--menu-ink);
  padding: 7px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.customer-page .choice-pill input {
  accent-color: var(--menu-accent);
}

.customer-page .choice-pill:has(input:checked) {
  border-color: var(--menu-accent);
  background: var(--menu-accent-soft);
  color: var(--menu-accent-dark);
}

.customer-page .cart-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  scroll-margin-top: 74px;
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--menu-shadow);
}

.customer-page .cart-header,
.customer-page .cart-line-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-page .cart-header h2 {
  margin: 0;
  color: var(--menu-ink);
  font-size: 1.22rem;
  font-weight: 300;
  line-height: 1.2;
}

.customer-page .text-button {
  min-height: 34px;
  border: 1px solid rgba(180, 35, 24, 0.18);
  border-radius: 8px;
  background: rgba(180, 35, 24, 0.07);
  color: var(--menu-danger);
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

.customer-page .cart-items {
  display: grid;
  gap: 10px;
}

.customer-page .cart-line {
  display: grid;
  gap: 10px;
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: var(--menu-bg);
  padding: 12px;
}

.customer-page .cart-line-header strong {
  color: var(--menu-ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.customer-page .cart-line-header span {
  color: var(--menu-ink);
  font-weight: 800;
  white-space: nowrap;
}

.customer-page .cart-line-option {
  margin: -4px 0 0;
  color: var(--menu-accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.customer-page .quantity-controls {
  grid-template-columns: 40px 1fr 40px;
  width: 142px;
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
}

.customer-page .icon-button {
  height: 40px;
  background: #ffffff;
  color: var(--menu-accent-dark);
  font-size: 1.1rem;
  transition:
    background 0.14s ease,
    color 0.14s ease,
    transform 0.1s ease;
}

.customer-page .icon-button:hover,
.customer-page .icon-button:focus-visible {
  background: var(--menu-accent-soft);
}

.customer-page .icon-button:active {
  transform: scale(0.92);
}

.customer-page .quantity-value {
  color: var(--menu-ink);
  font-weight: 800;
}

.customer-page .field {
  gap: 6px;
  color: var(--menu-ink);
  font-weight: 700;
}

.customer-page .field span {
  color: var(--menu-muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.customer-page .field input,
.customer-page .field textarea {
  border: 1px solid var(--menu-line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--menu-ink);
  padding: 10px 12px;
}

.customer-page .field textarea {
  min-height: 82px;
}

.customer-page .field input::placeholder,
.customer-page .field textarea::placeholder {
  color: rgba(101, 92, 83, 0.72);
}

.customer-page .cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: var(--menu-surface-soft);
  padding: 12px;
  color: var(--menu-ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.customer-page .cart-total strong {
  color: var(--menu-accent-dark);
  font-size: 1.18rem;
}

.customer-page .button.primary {
  min-height: 46px;
  border-color: var(--menu-accent);
  border-radius: 8px;
  background: var(--menu-accent);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(27, 117, 109, 0.18);
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease;
}

.customer-page .button.primary:hover,
.customer-page .button.primary:focus-visible {
  border-color: var(--menu-accent-dark);
  background: var(--menu-accent-dark);
}

.customer-page .button.primary:active {
  transform: scale(0.985);
}

.customer-page .button.secondary {
  border-color: var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--menu-ink);
}

.customer-page .button.danger {
  border-color: rgba(180, 35, 24, 0.24);
  background: rgba(180, 35, 24, 0.08);
  color: var(--menu-danger);
}

.customer-page .privacy-note {
  margin: -2px 0 0;
  color: var(--menu-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.customer-page .privacy-note a {
  color: var(--menu-accent-dark);
  font-weight: 800;
}

.customer-page .delivery-chip {
  border-color: rgba(27, 117, 109, 0.28);
  background: var(--menu-accent);
  color: #ffffff;
}

.customer-page .delivery-checkout {
  display: grid;
  gap: 12px;
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: var(--menu-bg);
  padding: 12px;
}

.customer-page .delivery-availability {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(27, 117, 109, 0.18);
  border-radius: 8px;
  background: var(--menu-accent-soft);
  color: var(--menu-accent-dark);
  padding: 12px 14px;
}

.customer-page .delivery-availability.is-closed {
  border-color: rgba(180, 35, 24, 0.22);
  background: rgba(180, 35, 24, 0.07);
  color: var(--menu-danger);
}

.customer-page .delivery-availability h2,
.customer-page .delivery-availability p {
  margin: 0;
}

.customer-page .delivery-availability h2 {
  font-size: 1rem;
  font-weight: 900;
}

.customer-page .field small {
  display: block;
  margin-top: 2px;
  color: var(--menu-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.customer-page .delivery-pricing-note {
  display: grid;
  gap: 4px;
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
  padding: 9px 10px;
}

.customer-page .delivery-pricing-note p {
  margin: 0;
  color: var(--menu-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.customer-page .payment-notice {
  margin: 0;
  border: 1px solid rgba(27, 117, 109, 0.2);
  border-radius: 8px;
  background: var(--menu-accent-soft);
  color: var(--menu-accent-dark);
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.customer-page .payment-method-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.customer-page .payment-method-field legend {
  margin: 0 0 8px;
  color: var(--menu-muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.customer-page .delivery-payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-page .delivery-payment-options .choice-pill {
  border-radius: 8px;
}

.customer-page .delivery-terms {
  width: 100%;
  justify-content: flex-start;
  border-radius: 8px;
  white-space: normal;
}

.customer-page .delivery-terms > span {
  line-height: 1.45;
}

.customer-page .delivery-terms a {
  color: var(--menu-accent-dark);
  font-weight: 900;
}

.customer-page .delivery-terms.is-invalid {
  border-color: rgba(180, 35, 24, 0.36);
  background: rgba(180, 35, 24, 0.07);
  color: var(--menu-danger);
}

.customer-page .delivery-validation {
  min-height: 0;
  margin: -4px 0 0;
}

.customer-page .form-message {
  min-height: 20px;
  color: var(--menu-accent-dark);
}

.customer-page .form-message.is-error,
.customer-page .error-message {
  color: var(--menu-danger);
}

.customer-page .loading,
.customer-page .empty-inline,
.customer-page .cart-empty {
  margin: 0;
  color: var(--menu-muted);
}

.customer-page .menu-content > .error-message,
.customer-page .empty-state {
  border: 1px solid var(--menu-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--menu-ink);
  box-shadow: var(--menu-shadow);
  padding: clamp(22px, 6vw, 42px);
}

.customer-page .empty-state h1,
.customer-page .empty-state h2 {
  margin: 0 0 10px;
  color: var(--menu-ink);
  font-weight: 300;
  line-height: 1.1;
}

.customer-page .empty-state p {
  margin: 0;
  color: var(--menu-muted);
}

.customer-page .empty-state .preference-controls {
  margin-top: 18px;
}

.customer-page .empty-state .language-toggle {
  border-color: var(--menu-line);
  background: #ffffff;
  color: var(--menu-ink);
}

.customer-page .empty-state .language-toggle span,
.customer-page .empty-state .control-icon,
.customer-page .empty-state .theme-icon {
  color: var(--menu-muted);
}

.customer-page .empty-state .language-toggle-options {
  background: #f5f1e9;
}

.customer-page .empty-state .language-toggle-options span {
  color: var(--menu-muted);
}

.customer-page
  .empty-state
  .language-toggle[data-language="el"]
  [data-language-option="el"],
.customer-page
  .empty-state
  .language-toggle[data-language="en"]
  [data-language-option="en"] {
  background: var(--menu-accent);
  color: #ffffff;
}

.customer-page .sticky-cart-button {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100vw - 24px);
  max-width: calc(100vw - 24px);
  min-height: 58px;
  border: 1px solid var(--menu-accent);
  border-radius: 8px;
  background: var(--menu-accent);
  color: #ffffff;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(27, 117, 109, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.customer-page .sticky-cart-button.has-items {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 18px 38px rgba(27, 117, 109, 0.24);
}

.customer-page .sticky-cart-button:hover,
.customer-page .sticky-cart-button:focus-visible {
  background: var(--menu-accent-dark);
  transform: translateY(-1px);
}

.customer-page .sticky-cart-button strong {
  white-space: nowrap;
}

.customer-page .cart-panel.is-updated {
  animation: customer-cart-panel-added 0.62s ease-out;
}

.customer-page .cart-line.is-added {
  animation: customer-cart-line-added 0.42s ease-out;
}

.customer-page .sticky-cart-button.is-pulsing {
  animation: customer-cart-button-pulse 0.36s ease-out;
}

.cart-fly-feedback {
  position: fixed;
  z-index: 90;
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--menu-accent, #1b756d);
  box-shadow:
    0 10px 24px rgba(27, 117, 109, 0.26),
    0 0 0 7px rgba(27, 117, 109, 0.12);
  pointer-events: none;
  will-change: transform, opacity;
}

.cart-fly-feedback::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #ffffff;
  opacity: 0.36;
}

@keyframes customer-cart-button-pulse {
  0% {
    transform: translateY(0) scale(1);
  }

  48% {
    transform: translateY(0) scale(1.055);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes customer-cart-panel-added {
  0% {
    border-color: var(--menu-accent);
    box-shadow:
      var(--menu-shadow),
      0 0 0 0 rgba(27, 117, 109, 0.22);
  }

  70% {
    border-color: var(--menu-accent);
    box-shadow:
      var(--menu-shadow),
      0 0 0 8px rgba(27, 117, 109, 0);
  }

  100% {
    border-color: var(--menu-line);
    box-shadow: var(--menu-shadow);
  }
}

@keyframes customer-cart-line-added {
  0% {
    background: var(--menu-accent-soft);
    transform: scale(0.985);
  }

  65% {
    background: rgba(27, 117, 109, 0.08);
    transform: scale(1.01);
  }

  100% {
    background: var(--menu-bg);
    transform: scale(1);
  }
}

@keyframes customer-menu-card-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes customer-button-pop {
  0% {
    transform: scale(0.96);
  }

  65% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-page *,
  .customer-page *::before,
  .customer-page *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .customer-page .cart-line.is-added,
  .customer-page .menu-item,
  .customer-page .cart-panel.is-updated,
  .customer-page .sticky-cart-button.is-pulsing {
    animation: none;
  }

  .cart-fly-feedback {
    display: none;
  }
}

@media (min-width: 880px) {
  .customer-page:not(.menu-view-only) {
    padding-bottom: 32px;
  }

  .customer-page .menu-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    padding: 16px;
  }

  .customer-page .menu-shell.menu-readonly {
    grid-template-columns: minmax(0, 1fr);
  }

  .customer-page .customer-header,
  .customer-page .menu-search-panel,
  .customer-page .category-nav {
    grid-column: 1 / -1;
  }

  .customer-page .customer-header {
    margin: -16px -16px 0;
    padding: 9px 16px;
  }

  .customer-page .category-nav {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .customer-page .menu-content {
    grid-column: 1;
  }

  .customer-page .cart-panel {
    grid-column: 2;
    position: sticky;
    top: 72px;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .customer-page .sticky-cart-button {
    display: none;
  }
}

@media (min-width: 1080px) {
  .customer-page .menu-items {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .customer-page .customer-header {
    align-items: center;
  }

  .customer-page .customer-header-side {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .customer-page .customer-header {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
  }

  .customer-page .customer-header-side {
    justify-content: flex-end;
    width: auto;
  }

  .customer-page .customer-tools {
    margin-left: 0;
  }

  .customer-page .menu-item.menu-item-direct,
  .customer-page .menu-item-toggle {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 11px;
    padding: 11px;
  }

  .customer-page .menu-item.menu-item-direct {
    grid-template-columns: 78px minmax(0, 1fr) auto;
  }

  .customer-page .menu-item-toggle {
    grid-template-columns: 78px minmax(0, 1fr) auto;
  }

  .customer-page .menu-item-image {
    width: 78px;
    height: 78px;
  }

  .customer-page .menu-item-body {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .customer-page .menu-item-actions,
  .customer-page .menu-item-summary-meta {
    min-width: 72px;
  }

  .customer-page .menu-item .button.secondary {
    min-width: 78px;
    min-height: 38px;
    padding-inline: 10px;
  }

  .customer-page .menu-item-panel {
    padding-right: 11px;
    padding-left: 11px;
  }
}

@media (max-width: 420px) {
  .customer-page .menu-shell {
    gap: 10px;
    padding: 10px;
  }

  .customer-page .customer-header {
    margin: -10px -10px 0;
    padding: 7px 10px;
  }

  .customer-page .brand-logo {
    width: 32px;
    height: 32px;
  }

  .customer-page .customer-brand {
    gap: 7px;
  }

  .customer-page .brand-name {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .customer-page .customer-header h1 {
    font-size: 1.18rem;
  }

  .customer-page .category-nav {
    margin-right: -10px;
    margin-left: -10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .customer-page .language-toggle {
    padding-inline: 6px;
    min-height: 29px;
  }

  .customer-page .language-toggle .control-icon {
    display: none;
  }

  .customer-page .menu-table-chip {
    max-width: min(88px, 24vw);
    min-height: 29px;
    padding-inline: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.delivery-coupon { display: grid; gap: 7px; }
.delivery-coupon .field { margin: 0; }
.delivery-coupon-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: stretch; }
.delivery-coupon-controls input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid var(--control-border);
  border-radius: var(--radius);
  background: var(--control-bg);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  text-transform: uppercase;
}
.delivery-coupon-controls .button { white-space: nowrap; }
.cart-total { display: grid; gap: 3px; }
.customer-page .cart-total { display: grid; gap: 3px; justify-content: stretch; align-items: stretch; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  width: 100%;
}
.customer-page .cart-total-row { width: 100%; }
.cart-total-row > span { min-width: 0; line-height: 1.35; }
.cart-total-row > strong {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.coupon-discount-row { color: var(--accent); }
#couponDiscountLabel { overflow-wrap: normal; word-break: keep-all; }
.cart-total-final { margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--border); }
.cart-total-final > strong { font-size: 1.08em; }
@media (max-width: 560px) {
  .cart-total { gap: 0; }
  .customer-page .cart-total { gap: 0; }
  .cart-total-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 16px;
    padding: 9px 0;
  }
  .cart-total-row > strong { justify-self: end; }
  .coupon-discount-row { align-items: start; }
  .cart-total-final { margin-top: 4px; padding-top: 12px; }
}
@media (max-width: 420px) { .delivery-coupon-controls { grid-template-columns: 1fr; } }
