/* =============================================================
   Sunshine Pizza — Just-Eat-inspiriert, einfach & klar
   ============================================================= */

.je-order-page {
  --je-orange: #ff8000;
  --je-orange-dark: #e67300;
  --je-orange-soft: rgba(255, 128, 0, 0.08);
  --je-bg: #f4f4f4;
  --je-surface: #ffffff;
  --je-text: #242424;
  --je-muted: #6e6e6e;
  --je-line: #ebebeb;
  --je-radius: 8px;
  --sp-radius-sm: 4px;
  --je-container: 720px;
  --je-nav-h: 96px;
  --je-layout-max: 100%;
  --je-page-pad-x: 1rem;
  --je-page-gap: 1rem;
  --je-page-pad-top: 1rem;
  --je-cart-sidebar-w: 100%;
  --je-fab-size: 3.35rem;
  --je-fab-gap: 1rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--je-bg);
  color: var(--je-text);
  padding-bottom: calc(var(--je-fab-size) + var(--je-fab-gap) + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
}

.je-order-page * { box-sizing: border-box; }

/* ── Seiten-Ladeanimation ─────────────────────────────────── */
.je-order-page--loading {
  overflow: hidden;
}

.je-page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--je-bg);
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

.je-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.je-page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: min(18rem, 100%);
  text-align: center;
}

.je-page-loader__logo {
  width: min(168px, 72vw);
  height: auto;
  animation: je-loader-logo 1.8s ease-in-out infinite;
}

.je-page-loader__ring {
  width: 2.35rem;
  height: 2.35rem;
  border: 3px solid var(--je-line);
  border-top-color: var(--je-orange);
  border-radius: 50%;
  animation: je-loader-spin 0.8s linear infinite;
}

.je-page-loader__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--je-muted);
  letter-spacing: 0.01em;
}

@keyframes je-loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes je-loader-logo {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.82; transform: translateY(2px); }
}

/* Mobile: kein Browser-Blau bei Buttons (Tap/Focus) */
.je-extra-chip,
.je-type-btn,
.je-time-opt,
.je-pay-opt,
.je-tip__btn {
  color: var(--je-text);
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.je-extra-chip:focus,
.je-type-btn:focus,
.je-time-opt:focus,
.je-pay-opt:focus,
.je-tip__btn:focus {
  outline: none;
  color: var(--je-text);
}

.je-extra-chip:focus-visible,
.je-type-btn:focus-visible,
.je-time-opt:focus-visible,
.je-pay-opt:focus-visible,
.je-tip__btn:focus-visible {
  outline: 2px solid var(--je-orange);
  outline-offset: 2px;
}

/* ── Ferienmodus: nur Meldung, zentriert ───────────────────── */
.je-order-page--vacation {
  padding-bottom: 0;
  overflow: hidden;
}

.je-order-page--vacation > *:not(#jeVacationScreen) {
  display: none !important;
}

.je-vacation-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  min-height: 100vh;
  padding: 1.5rem;
  background: var(--je-bg);
}

.je-vacation-screen__card {
  width: min(28rem, 100%);
  padding: 2rem 1.75rem;
  text-align: center;
  background: var(--je-surface);
  border: 1px solid var(--je-line);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.je-vacation-screen__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 128, 0, 0.12);
  color: var(--je-orange-dark);
  font-size: 1.45rem;
}

.je-vacation-screen__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--je-text);
}

.je-vacation-screen__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--je-muted);
}

.je-vacation-screen__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.72rem 1.25rem;
  border-radius: var(--je-radius);
  background: var(--je-orange);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.je-vacation-screen__link:hover {
  background: var(--je-orange-dark);
  color: #fff;
}

/* ── Navbar-Status (Lieferung bis / geschlossen) ─────────── */
.je-order-page.has-nav-status {
  --je-nav-h: 130px;
}

.je-nav-status {
  border-bottom: 1px solid var(--je-line);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.je-nav-status__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 34px;
  padding-block: 0.4rem;
  text-align: center;
}

.je-nav-status.is-open {
  background: rgba(45, 138, 78, 0.08);
  color: #1f6b3c;
}

.je-nav-status.is-open .je-nav-status__icon {
  color: #2d8a4e;
}

.je-nav-status.is-closed {
  background: rgba(180, 83, 9, 0.08);
  color: #9a3412;
}

.je-nav-status.is-closed .je-nav-status__icon {
  color: #c2410c;
}

.je-nav-status.is-soon {
  background: linear-gradient(90deg, #fff8ef 0%, #fff4e6 100%);
  border-bottom-color: rgba(255, 159, 28, 0.18);
  color: #6b4c2e;
}

.je-nav-status.is-soon .je-nav-status__icon {
  color: #d97706;
}

.je-store__closed {
  color: #b45309;
  font-weight: 600;
}

.je-store__closed i {
  color: #c2410c;
}

.je-store__soon {
  color: #8a6a3d;
  font-weight: 600;
}

.je-store__soon i {
  color: #d97706;
}

.je-order-page--closed-today .je-page-body {
  pointer-events: none;
  opacity: 0.5;
}

.je-order-page--closed-today .je-nav {
  pointer-events: auto;
  opacity: 1;
}

.je-closed-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--je-radius);
  color: #9a3412;
}

.je-closed-banner__icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(194, 65, 12, 0.12);
  color: #c2410c;
  flex-shrink: 0;
}

.je-closed-banner__body strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.je-closed-banner__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #b45309;
}

.je-closed-banner--soft {
  background: linear-gradient(90deg, #fff8ef 0%, #fff4e6 100%);
  border-color: rgba(255, 159, 28, 0.22);
  color: #6b4c2e;
}

.je-closed-banner--soft .je-closed-banner__icon {
  background: rgba(255, 159, 28, 0.14);
  color: #d97706;
}

.je-closed-banner--soft .je-closed-banner__body p {
  color: #7a6248;
}

.je-header__cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.je-container {
  width: min(var(--je-container), calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Navbar (Header + Kategorien) ─────────────────────────── */
.je-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--je-surface);
  border-bottom: 1px solid var(--je-line);
  box-shadow: 0 1px 0 var(--je-line);
  transition: box-shadow 200ms ease;
}

.je-nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.je-header {
  border-bottom: 1px solid var(--je-line);
}

.je-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 52px;
  padding-block: 0.5rem;
}

.je-header__back {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--je-text);
  border-radius: var(--sp-radius-sm);
  flex-shrink: 0;
}

.je-header__back:hover {
  color: var(--je-orange);
  background: var(--je-orange-soft);
}

.je-header__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.je-header__logo-img {
  display: block;
  height: 30px;
  width: auto;
  max-width: min(118px, 36vw);
  object-fit: contain;
}

.je-header__logo-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--je-radius);
  background: var(--je-orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.je-header__logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.je-header__logo-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.je-header__logo-text small {
  font-size: 0.7rem;
  color: var(--je-muted);
  font-weight: 500;
}

.je-header__auth-guest[hidden],
.je-header__auth-user[hidden] {
  display: none !important;
}

.je-header__auth {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
}

.je-header__auth-guest {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

.je-header__auth-guest a,
.je-header__auth-user {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--je-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease;
}

.je-header__auth-guest a:hover,
.je-header__auth-user:hover {
  color: var(--je-text);
}

.je-header__auth-user {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
}

.je-header__auth-label {
  color: var(--je-muted);
  font-weight: 500;
}

.je-header__auth-name {
  color: var(--je-text);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.je-header__auth-sep {
  color: var(--je-muted);
  opacity: 0.65;
  user-select: none;
}

.je-header__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  padding: 0;
  border: 1px solid var(--je-line);
  border-radius: var(--sp-radius-sm);
  background: var(--je-surface);
  color: var(--je-text);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.je-header__account:hover {
  border-color: var(--je-orange);
  background: var(--je-orange-soft);
  color: var(--je-text);
}

.je-header__account.is-logged-in,
.je-header__account.is-logged-in:hover {
  border-color: var(--je-line);
  background: var(--je-surface);
  color: var(--je-text);
}

.je-header__account.is-logged-in:hover {
  border-color: var(--je-orange);
  background: var(--je-orange-soft);
}

.je-header__account i {
  font-size: 0.85rem;
}

.je-header__menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.je-header__menu a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--je-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease;
}

.je-header__menu a:hover { color: var(--je-text); }

.je-header__menu a.is-active {
  color: var(--je-orange);
  font-weight: 700;
}

.je-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
}

.je-header__call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--je-line);
  border-radius: var(--sp-radius-sm);
  background: var(--je-surface);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--je-text);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.je-header__call:hover {
  border-color: var(--je-orange);
  background: var(--je-orange-soft);
  color: var(--je-text);
}

.je-header__call-label {
  display: none;
}

.je-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 38px;
  min-width: 56px;
  padding: 0 0.75rem;
  border: 1px solid var(--je-line);
  border-radius: var(--sp-radius-sm);
  background: var(--je-surface);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--je-text);
  transition: border-color 150ms ease, background 150ms ease;
}

.je-header__cart:hover {
  border-color: var(--je-orange);
  background: var(--je-orange-soft);
}

.je-header__cart-label { display: none; }

.je-header__cart-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--je-orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 99px;
  display: grid;
  place-items: center;
}

.je-header__cart-badge:empty,
.je-header__cart-badge[data-count="0"] { display: none; }

/* Kategorien */
.je-cats-wrap {
  background: var(--je-surface);
}

.je-cats-scroll {
  position: relative;
}

.je-cats-scroll::before,
.je-cats-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.25rem;
  z-index: 2;
  pointer-events: none;
}

.je-cats-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--je-surface), transparent);
}

.je-cats-scroll::after {
  right: 0;
  background: linear-gradient(270deg, var(--je-surface), transparent);
}

.je-cats {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.je-cats::-webkit-scrollbar { display: none; }

.je-cat-btn {
  flex-shrink: 0;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--je-line);
  border-radius: var(--je-radius);
  background: var(--je-surface);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--je-muted);
  cursor: pointer;
  transition: all 150ms ease;
}

.je-cat-btn:hover {
  color: var(--je-text);
  border-color: #d8d8d8;
}

.je-cat-btn.is-active {
  color: #fff;
  background: var(--je-orange);
  border-color: var(--je-orange);
}

/* ── Restaurant-Leiste ────────────────────────────────────── */
.je-store {
  background: var(--je-surface);
  border: 1px solid var(--je-line);
  border-radius: var(--je-radius);
  padding: 1.15rem 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.je-store h2 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.je-store__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.82rem;
  color: var(--je-muted);
}

.je-store__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.je-store__meta i {
  font-size: 0.78rem;
  color: var(--je-muted);
}

.je-store__open {
  color: #2d8a4e;
  font-weight: 600;
}

.je-store__open i { color: #2d8a4e; }

.je-store__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--je-orange);
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
}

.je-store__link:hover {
  text-decoration: underline;
}

.je-store__link i { color: var(--je-orange); }

/* ── Angebote (horizontal) ──────────────────────────────── */
.je-offers {
  margin: 0 0 1.15rem;
  padding: 0.95rem 0 0.15rem;
}

.je-offers__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.7rem;
}

.je-offers__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--je-text);
  letter-spacing: -0.02em;
}

.je-offers__sub {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--je-muted);
}

.je-offers__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.15rem 0.1rem 0.65rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 128, 0, 0.45) transparent;
}

.je-offers__track::-webkit-scrollbar {
  height: 6px;
}

.je-offers__track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 128, 0, 0.4);
}

.je-offer-card {
  flex: 0 0 min(17rem, 78vw);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: stretch;
  padding: 0.65rem;
  border: 1px solid var(--je-line);
  border-radius: var(--je-radius);
  background: var(--je-surface);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.je-offer-card:hover,
.je-offer-card:focus-visible {
  border-color: rgba(255, 128, 0, 0.45);
  box-shadow: 0 6px 18px rgba(255, 128, 0, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.je-offer-card__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 5.5rem;
  flex-shrink: 0;
  overflow: visible;
  background: transparent;
}

.je-offer-card__media img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: calc(var(--je-radius) - 2px);
  object-fit: cover;
  display: block;
  background: #f3f3f3;
}

.je-offer-card__placeholder {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: calc(var(--je-radius) - 2px);
  background: #f3f3f3;
  color: #c8c8c8;
  font-size: 1.35rem;
}

.je-offer-card__media .je-card__badge {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  z-index: 1;
  margin: 0;
}

.je-offer-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.2rem;
}

.je-offer-card__name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--je-text);
}

.je-offer-card__desc {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--je-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.je-offer-card__footer {
  margin-top: auto;
  padding-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.je-offer-card__add {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: var(--je-orange);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 128, 0, 0.35);
  transition: background 150ms ease, transform 150ms ease;
}

.je-offer-card__add:hover {
  background: var(--je-orange-dark);
  transform: scale(1.04);
}

/* ── Menü ─────────────────────────────────────────────────── */
.je-page-body {
  position: relative;
}

.je-page-main {
  min-width: 0;
}

.je-main { padding-bottom: 1.5rem; }

/* ── Warenkorb-Panel (Mobile Sheet / Desktop Sidebar) ─────── */
.je-cart-panel.je-sheet {
  min-height: 0;
}

.je-cart-panel__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 0.85rem 1rem 0.65rem;
}

.je-cart-panel .je-cart-panel__title {
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.je-cart-panel__items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding-right: 0.1rem;
}

.je-cart-panel #jeCartList {
  min-height: 0;
}

.je-cart-drinks {
  flex-shrink: 0;
  margin: 0.35rem 0 0.65rem;
  padding: 0.75rem 0 0.15rem;
  border-top: 1px solid var(--je-line);
}

.je-cart-drinks__title {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--je-text);
}

.je-cart-drinks__scroll {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.1rem 0.15rem 0.35rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.je-cart-drinks__scroll::-webkit-scrollbar {
  display: none;
}

.je-cart-drink {
  flex: 0 0 auto;
  width: 5.65rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.4rem 0.48rem;
  border: 1px solid var(--je-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 120ms ease;
}

.je-cart-drink:hover,
.je-cart-drink:focus-visible {
  border-color: rgba(255, 128, 0, 0.45);
  box-shadow: 0 4px 14px rgba(255, 128, 0, 0.1);
  outline: none;
}

.je-cart-drink:active {
  transform: scale(0.97);
}

.je-cart-drink__media {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 9px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.je-cart-drink__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.je-cart-drink__placeholder {
  color: var(--je-orange);
  font-size: 1.2rem;
  line-height: 1;
}

.je-cart-drink__name {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--je-text);
}

.je-cart-drink__meta {
  font-size: 0.64rem;
  line-height: 1.2;
  color: var(--je-muted);
}

.je-cart-drink__price {
  margin-top: 0.05rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--je-orange-dark);
}

.je-cart-panel__footer {
  flex-shrink: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--je-line);
  background: var(--je-surface);
}

.je-cart-panel__footer .je-promo {
  margin: 0 0 0.75rem;
  padding-top: 0;
  border-top: none;
}

.je-cart-panel__footer .je-totals {
  margin-bottom: 0.65rem;
}

.je-cart-panel__footer .je-checkout-btn {
  margin-top: 0.15rem;
}

.je-cart-pay-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.6rem;
  margin-top: 0.7rem;
  padding: 0.6rem 0.55rem;
  border-radius: 8px;
  background: #ffffff;
}

.je-cart-pay-badges img {
  display: block;
  height: 0.95rem;
  width: auto;
  object-fit: contain;
}

.je-cart-pay-badges__cash {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--je-muted);
}

.je-cart-pay-badges__cash i {
  font-size: 0.78rem;
}

.je-section {
  scroll-margin-top: calc(var(--je-nav-h) + 1.25rem);
}

.je-section-title {
  scroll-margin-top: calc(var(--je-nav-h) + 1.25rem);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.25rem 0 0.65rem;
  background: transparent;
  color: var(--je-text);
}

.je-cards {
  background: var(--je-surface);
}

.je-card {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  padding: 1rem;
  border-bottom: 1px solid var(--je-line);
  cursor: pointer;
}

.je-card:last-child { border-bottom: none; }

.je-card:active { background: #fafafa; }

.je-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 0.25rem;
}

.je-card__head {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.je-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  min-width: 0;
  flex: 1 1 auto;
}

.je-card__desc {
  font-size: 0.8rem;
  color: var(--je-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.je-card__footer {
  margin-top: auto;
  padding-top: 0.4rem;
}

.je-card__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.je-card__price-old {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--je-muted);
  text-decoration: line-through;
}

.je-card__price--sale {
  color: #c2410c;
}

.je-sheet__price {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.je-sheet__price .je-card__price-old {
  font-size: 0.92rem;
}

.je-sheet__price .je-card__price--sale {
  font-size: 1.15rem;
  font-weight: 800;
}

.je-card__price {
  font-size: 0.9rem;
  font-weight: 700;
}

.je-card__badge {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.1rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 1px 6px rgba(255, 94, 0, 0.28);
  pointer-events: none;
}

.je-sheet__badge {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.je-sheet__badge[hidden],
.je-sheet__badge:empty {
  display: none !important;
  margin: 0;
  padding: 0;
}

.je-card__hint { display: none; }

.je-card__media {
  position: relative;
  flex-shrink: 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.je-card__img {
  width: 108px;
  height: 108px;
  border-radius: var(--je-radius);
  overflow: hidden;
  background: var(--je-bg);
}

.je-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.je-card__img--empty {
  display: grid;
  place-items: center;
  color: #d0d0d0;
  font-size: 1.4rem;
}

.je-card__add {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--je-orange);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(255, 128, 0, 0.35);
}

.je-card__add:hover { background: var(--je-orange-dark); }

.je-card.is-unavailable {
  opacity: 0.72;
  cursor: default;
}

.je-card.is-unavailable:active { background: transparent; }

.je-card.is-unavailable .je-card__img img,
.je-offer-card.is-unavailable .je-offer-card__media img {
  filter: grayscale(0.35);
}

.je-card__unavail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  background: #ece8e2;
  color: #7a6a58;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.je-offer-card.is-unavailable {
  opacity: 0.72;
  cursor: default;
}

/* ── Warenkorb FAB ────────────────────────────────────────── */
.je-cart-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 420;
  width: var(--je-fab-size);
  height: var(--je-fab-size);
  border: none;
  border-radius: 50%;
  background: var(--je-orange);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.je-cart-fab:hover {
  background: var(--je-orange-dark);
  transform: scale(1.04);
}

.je-cart-fab:active {
  transform: scale(0.97);
}

.je-cart-fab__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--je-text);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  border: 2px solid #fff;
}

.je-cart-fab__badge:empty,
.je-cart-fab__badge[data-count="0"] {
  display: none;
}

/* ── Overlay / Sheets ───────────────────────────────────── */
.je-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.je-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.je-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 510;
  max-height: 90vh;
  max-height: 90dvh;
  background: var(--je-surface);
  border-radius: 12px 12px 0 0;
  transform: translateY(100%);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.je-sheet.is-open { transform: translateY(0); }

.je-sheet__handle {
  width: 36px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.je-sheet__hero {
  background: var(--je-bg);
}

.je-sheet__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.je-product-sheet__layout {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.je-product-sheet__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.je-product-sheet__intro {
  margin-bottom: 0.25rem;
}

#jeProductSheet .je-sheet__hero {
  padding: 1rem 1.2rem 0.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

#jeProductSheet .je-sheet__img {
  width: 180px;
  height: 180px;
  aspect-ratio: 1;
  max-height: none;
  margin-inline: auto;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--je-line);
}

.je-sheet__scroll {
  overflow-y: auto;
  flex: 1;
  padding: 1.1rem 1.2rem 1rem;
}

.je-sheet__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.je-sheet__desc {
  font-size: 0.875rem;
  color: var(--je-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.je-sheet__section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--je-text);
  margin: 0;
  padding: 0;
  border: none;
}

.je-extras-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--je-line);
}

.je-extras-optional {
  flex-shrink: 0;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #f0f0f0;
  color: var(--je-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.je-extras-filter-wrap {
  margin-bottom: 0.9rem;
}

.je-extras-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.je-extras-filter__btn {
  border: none;
  background: #f3f3f3;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--je-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease;
}

.je-extras-filter__btn:hover {
  background: #e8e8e8;
  color: var(--je-text);
}

.je-extras-filter__btn.is-active {
  background: var(--je-text);
  color: #fff;
}

.je-extras-filter__btn.is-active:hover {
  background: #222;
  color: #fff;
}

/* Extras — Karten-Grid (3 pro Zeile) */
.je-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.je-extra-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.52rem 0.4rem 0.62rem;
  border: 1.5px solid transparent;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.je-extra-card:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.je-extra-card.is-selected {
  border-color: var(--je-orange);
  box-shadow: 0 0 0 1px var(--je-orange), 0 3px 12px rgba(232, 93, 4, 0.15);
}

.je-extra-card[hidden],
.je-extra-card.is-filter-hidden {
  display: none !important;
}

.je-extra-card__media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 0.35rem;
  overflow: hidden;
}

.je-extra-card__img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.je-extra-card__placeholder {
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3f3f3;
  color: var(--je-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.je-extra-card__name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--je-text);
  line-height: 1.22;
  margin-bottom: 0.12rem;
}

.je-extra-card.is-selected .je-extra-card__name {
  color: var(--je-orange-dark);
}

.je-extra-card__price {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--je-muted);
}

/* Produkt-Sheet: kompakte Extra-Karten (3 pro Zeile) */
#jeProductSheet .je-extras-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

#jeProductSheet .je-extra-card {
  padding: 0.42rem 0.28rem 0.48rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

#jeProductSheet .je-extra-card__media {
  width: min(100%, 4.6rem);
  max-width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  margin-bottom: 0.28rem;
}

#jeProductSheet .je-extra-card__img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

#jeProductSheet .je-extra-card__placeholder {
  width: 58%;
  font-size: 0.85rem;
}

#jeProductSheet .je-extra-card__name {
  font-size: 0.7rem;
  line-height: 1.18;
  margin-bottom: 0.06rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#jeProductSheet .je-extra-card__price {
  font-size: 0.66rem;
}

.je-extra-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--je-line);
  background: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.je-extra-chip:last-child { border-bottom: none; }

.je-extra-chip__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.je-extra-chip__check {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 150ms ease;
}

.je-extra-chip.is-selected {
  color: var(--je-text);
}

.je-extra-chip.is-selected .je-extra-chip__check {
  background: var(--je-orange);
  border-color: var(--je-orange);
  color: #fff;
}

.je-extra-chip.is-selected .je-extra-chip__name {
  color: var(--je-orange-dark);
  font-weight: 600;
}

.je-extra-chip__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: inherit;
}

.je-extra-chip__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--je-muted);
}

.je-extra-chip--radio .je-extra-chip__check {
  border-radius: 50%;
}

.je-extras-group {
  margin-bottom: 0.85rem;
}

.je-extras-singles-title {
  margin: 0.85rem 0 0.65rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--je-line);
}

.je-extras-group .je-extras-grid {
  margin-bottom: 0.25rem;
}

.je-extras-group__title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--je-muted);
  margin: 0 0 0.35rem;
}

.je-tip--confirm {
  margin: 1.1rem 0 0.85rem;
}

.je-tip__title {
  margin-bottom: 0.65rem;
}

.je-tip__optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  opacity: 0.85;
}

.je-tip__opts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.je-tip__btn {
  padding: 0.62rem 0.35rem;
  border: 1.5px solid var(--je-line);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--je-text);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}

.je-tip__btn:hover {
  border-color: #d4d4d4;
  background: #fafafa;
}

.je-tip__btn.is-active {
  border-color: var(--je-text);
  background: #f3f3f3;
  color: var(--je-text);
  font-weight: 700;
}

.je-tip .je-tip__btn:focus-visible {
  outline-color: #888;
}

.je-tip__custom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.je-tip__custom[hidden] {
  display: none !important;
}

.je-tip__custom span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--je-muted);
}

.je-tip__custom input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--je-line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  background: #fff;
}

.je-tip__custom input:focus {
  outline: none;
  border-color: #b8b8b8;
}

.je-pay-opt[hidden],
.je-pay-opt.is-wallet-hidden {
  display: none !important;
}

.je-cart-pay-badge[hidden],
.je-cart-pay-badge.is-wallet-hidden {
  display: none !important;
}

.je-pay-opt.is-unavailable {
  opacity: 0.5;
  cursor: not-allowed;
}

.je-confirm__section-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--je-muted);
}

.je-confirm-discount-alert {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #7a3b12;
  background: #fff4e8;
  border: 1px solid rgba(230, 126, 34, 0.28);
  border-radius: var(--je-radius-sm);
}

.je-confirm__summary {
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--je-line);
}

.je-confirm__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--je-muted);
  font-weight: 500;
}

.je-confirm__summary-row span:last-child {
  font-weight: 700;
  color: var(--je-text);
}

@media (max-width: 520px) {
  .je-tip__opts {
    grid-template-columns: repeat(2, 1fr);
  }

  .je-tip__btn {
    font-size: 0.82rem;
    padding: 0.7rem 0.5rem;
  }
}

/* Pizza Fifty-Fifty */
.je-fifty {
  margin-bottom: 1rem;
}

.je-fifty__lead {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--je-muted);
  line-height: 1.45;
}

.je-fifty__grid {
  display: grid;
  gap: 0.85rem;
}

.je-fifty__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.je-fifty__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--je-text);
}

.je-fifty__select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--je-line);
  border-radius: var(--je-radius);
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--je-text);
}

.je-fifty__select:focus {
  outline: none;
  border-color: rgba(255, 159, 28, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.14);
}

/* Notiz pro Gericht */
.je-sheet-note {
  margin-bottom: 0.25rem;
}

.je-sheet-note__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--je-text);
  margin-bottom: 0.4rem;
}

.je-sheet-note__input {
  width: 100%;
  min-height: 4.25rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--je-line);
  border-radius: var(--je-radius);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--je-text);
  background: #fff;
  resize: vertical;
}

.je-sheet-note__input::placeholder {
  color: #aaa;
}

.je-sheet-note__input:focus {
  outline: none;
  border-color: var(--je-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.je-cart-line__note {
  font-size: 0.78rem;
  color: var(--je-muted);
  font-style: italic;
  margin-top: 0.15rem;
  line-height: 1.35;
}

.je-checkout-summary__extras {
  display: block;
  font-size: 0.72rem;
  color: var(--je-muted);
  font-weight: 400;
  margin-top: 0.1rem;
  line-height: 1.35;
}

.je-checkout-summary__note {
  display: block;
  font-size: 0.72rem;
  color: var(--je-muted);
  font-weight: 400;
  margin-top: 0.1rem;
  font-style: italic;
}

/* Menge */
.je-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0;
  border-top: 1px solid var(--je-line);
}

.je-qty-row > span {
  font-weight: 600;
  font-size: 0.9rem;
}

.je-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.je-qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--je-line);
  border-radius: var(--je-radius);
  background: var(--je-surface);
  font-size: 1.05rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.je-qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.je-qty-num {
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
}

.je-sheet__footer {
  flex-shrink: 0;
  padding: 0.85rem 1.2rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--je-line);
  background: var(--je-surface);
}

.je-sheet__add-btn {
  width: 100%;
  padding: 0.95rem;
  background: var(--je-orange);
  color: #fff;
  border: none;
  border-radius: var(--je-radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.je-sheet__add-btn:hover { background: var(--je-orange-dark); }

.je-sheet__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  cursor: pointer;
  z-index: 12;
  font-size: 0.9rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

/* ── Warenkorb ────────────────────────────────────────────── */
.je-line-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--je-radius);
  overflow: hidden;
  background: var(--je-bg);
}

.je-line-thumb--sm {
  width: 48px;
  height: 48px;
}

.je-line-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.je-line-thumb--empty {
  display: grid;
  place-items: center;
  color: #d0d0d0;
  font-size: 1.1rem;
}

.je-cart-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--je-line);
}

.je-cart-line:last-child { border-bottom: none; }

.je-cart-line__info { flex: 1; min-width: 0; }

.je-cart-line__name {
  font-size: 0.9rem;
  font-weight: 700;
}

.je-cart-line__extras {
  font-size: 0.72rem;
  color: var(--je-muted);
  margin-top: 0.12rem;
  line-height: 1.35;
}

.je-cart-line__price {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.je-cart-line__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.je-cart-qty-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  padding: 0.1rem 0.15rem;
  background: #f2f2f2;
  border-radius: 999px;
}

.je-cart-qty-pill__btn {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--je-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 999px;
  padding: 0;
  transition: background 150ms ease;
}

.je-cart-qty-pill__btn i {
  font-size: 0.68rem;
}

.je-cart-qty-pill__btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.je-cart-qty-pill__btn:active {
  background: rgba(0, 0, 0, 0.1);
}

.je-cart-qty-pill__num {
  min-width: 1.15rem;
  padding: 0 0.15rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--je-text);
  user-select: none;
}

.je-cart-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--je-muted);
  font-size: 0.875rem;
}

.je-cart-empty i {
  font-size: 1.75rem;
  opacity: 0.2;
  display: block;
  margin-bottom: 0.75rem;
}

/* Rabattcode */
.je-promo {
  margin: 0.85rem 0 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--je-line);
}

.je-promo__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--je-muted);
  margin-bottom: 0.4rem;
}

.je-promo__row {
  display: flex;
  gap: 0.5rem;
}

.je-promo__row input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--je-line);
  border-radius: var(--je-radius);
  font-family: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.je-promo__row input:focus {
  outline: none;
  border-color: var(--je-orange);
}

.je-promo__btn {
  flex-shrink: 0;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--je-orange);
  border-radius: var(--je-radius);
  background: var(--je-orange-soft);
  color: var(--je-orange);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.je-promo__btn:hover {
  background: var(--je-orange);
  color: #fff;
}

.je-promo__msg {
  font-size: 0.8rem;
  margin: 0.45rem 0 0;
}

.je-promo__msg.is-ok { color: #2d8a4e; }
.je-promo__msg.is-error { color: #c0392b; }

.je-auto-discount {
  margin-bottom: 0.75rem;
}

.je-auto-discount__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.je-auto-discount__inner.is-applied {
  background: rgba(45, 138, 78, 0.1);
  border: 1px solid rgba(45, 138, 78, 0.22);
  color: #1f6b3b;
}

.je-auto-discount__inner.is-preview {
  background: rgba(255, 159, 28, 0.1);
  border: 1px solid rgba(255, 159, 28, 0.28);
  color: #8a5a00;
}

.je-auto-discount__inner i {
  margin-top: 0.1rem;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.je-auto-discount__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.je-auto-discount__text strong {
  font-weight: 700;
}

.je-auto-discount__meta {
  font-size: 0.75rem;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .je-cart-panel__footer .je-auto-discount {
    margin-bottom: 0.4rem;
  }

  .je-cart-panel__footer .je-auto-discount__inner {
    gap: 0.35rem;
    padding: 0.38rem 0.48rem;
    border-radius: 7px;
    font-size: 0.68rem;
    line-height: 1.22;
  }

  .je-cart-panel__footer .je-auto-discount__inner i {
    font-size: 0.68rem;
    margin-top: 0;
  }

  .je-cart-panel__footer .je-auto-discount__text {
    gap: 0.04rem;
  }

  .je-cart-panel__footer .je-auto-discount__text strong {
    font-size: 0.7rem;
    font-weight: 600;
  }

  .je-cart-panel__footer .je-auto-discount__text > span:not(.je-auto-discount__meta) {
    font-size: 0.64rem;
  }

  .je-cart-panel__footer .je-auto-discount__meta {
    font-size: 0.6rem;
    line-height: 1.2;
    opacity: 0.82;
  }
}

.je-promo--confirm {
  margin: 0 0 0.65rem;
  padding-top: 0;
  border-top: none;
}

.je-promo__free-pizza {
  margin-top: 0.65rem;
}

.je-promo__hint {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
}

.je-promo__select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  background: #fff;
  color: inherit;
}

.je-promo__select:focus {
  outline: none;
  border-color: var(--je-accent, #e85d04);
  box-shadow: 0 0 0 2px rgba(232, 93, 4, 0.15);
}

.je-auto-discount--confirm {
  margin: 0 0 1.1rem;
}

#jeConfirmSheet .je-auto-discount__inner {
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.35;
}

#jeConfirmSheet .je-auto-discount__text strong {
  font-size: 0.86rem;
}

#jeConfirmSheet .je-auto-discount__meta {
  font-size: 0.74rem;
}

.je-confirm__summary-row--discount {
  color: #2d8a4e;
  font-weight: 600;
}

.je-confirm__summary-row--discount span:last-child {
  color: #2d8a4e;
}

.je-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--je-muted);
  padding: 0.25rem 0;
}

.je-totals__row[hidden] {
  display: none !important;
}

.je-totals__row--discount {
  color: #2d8a4e;
  font-weight: 600;
}

.je-discount-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.je-discount-remove {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.je-discount-remove:hover {
  background: rgba(192, 57, 43, 0.22);
}

.je-promo__btn--remove {
  background: transparent;
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.35);
}

.je-promo__btn--remove:hover {
  background: rgba(192, 57, 43, 0.08);
}

.je-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.65rem 0 0.5rem;
  border-top: 1px solid var(--je-line);
  margin-top: 0.35rem;
}

.je-checkout-btn {
  width: 100%;
  padding: 0.95rem;
  background: var(--je-orange);
  color: #fff;
  border: none;
  border-radius: var(--je-radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
}

.je-checkout-btn:hover:not(:disabled) { background: var(--je-orange-dark); }

.je-checkout-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Checkout ─────────────────────────────────────────────── */
#jeCheckoutSheet .je-sheet__scroll {
  padding: 1rem 1.15rem 1.15rem;
}

#jeCheckoutSheet .je-sheet__scroll.je-sheet__scroll--success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: min(72vh, 520px);
  padding: 2rem 1.25rem;
}

.je-checkout-form__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
}

.je-checkout-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--je-text);
}

.je-checkout-form input:not([type="checkbox"]),
.je-checkout-form textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  background: var(--je-surface);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.je-checkout-form textarea {
  min-height: 3.25rem;
  resize: vertical;
  line-height: 1.45;
}

.je-checkout-form textarea.je-checkout-note {
  resize: none;
  min-height: 4.5rem;
  max-height: 4.5rem;
  overflow-y: auto;
}

.je-checkout-form input:not([type="checkbox"]):focus,
.je-checkout-form textarea:focus {
  outline: none;
  border-color: var(--je-orange);
  box-shadow: 0 0 0 3px rgba(255, 128, 0, 0.12);
}

.je-checkout-street-wrap {
  margin-bottom: 0.65rem;
}

.je-checkout-street-input {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.je-checkout-street-input:focus {
  outline: none;
  border-color: var(--je-orange);
  box-shadow: 0 0 0 3px var(--je-orange-soft);
}

.je-checkout-note {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: none;
  min-height: 4.5rem;
  max-height: 4.5rem;
  overflow-y: auto;
  background: #fff;
}

.je-checkout-note:focus {
  outline: none;
  border-color: var(--je-orange);
  box-shadow: 0 0 0 3px var(--je-orange-soft);
}

.je-checkout-section__title--label {
  cursor: default;
}

.je-plz-gate .je-plz-change {
  margin: 0.45rem 0 0;
}

.je-plz-gate {
  margin: 0 0 1.35rem;
  padding: 0;
  border: none;
  background: none;
}

.je-plz-gate > label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--je-text);
  margin-bottom: 0.5rem;
}

.je-plz-gate__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: stretch;
}

.je-plz-gate__row input {
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  min-height: 2.75rem;
}

.je-plz-gate__row input:focus {
  outline: none;
  border-color: #bbb;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.je-plz-gate__btn {
  width: auto;
  max-width: 100%;
  min-width: 0;
  padding: 0 0.85rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: var(--je-text);
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
  min-height: 2.75rem;
  white-space: nowrap;
  margin-bottom: 0.55rem;
}

.je-plz-gate__btn:hover {
  background: #f5f5f5;
}

.je-plz-gate__msg {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--je-muted);
}

.je-plz-gate__menu-btn {
  color: var(--je-text);
  font-size: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.je-plz-gate__menu-btn:hover {
  color: var(--je-text);
}

.je-plz-gate__msg.is-ok {
  padding: 0;
  background: none;
  border: none;
  color: var(--je-muted);
}

.je-plz-gate__msg.is-warn {
  margin-top: 0.7rem;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  background: #fff8f0;
  border: 1px solid rgba(255, 128, 0, 0.45);
  color: #9a4a00;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.je-plz-gate__msg.is-warn .je-plz-gate__warn-amount {
  color: #c2410c;
  font-weight: 700;
}

.je-plz-gate__msg.is-warn .je-plz-gate__menu-btn {
  display: inline-block;
  margin-top: 0.55rem;
  color: #9a4a00;
  font-weight: 700;
}

.je-plz-change {
  margin: 0.35rem 0 0;
}

.je-plz-change__btn {
  padding: 0;
  border: none;
  background: none;
  color: var(--je-orange);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.je-plz-change__btn:hover {
  color: var(--je-orange-dark);
}

.je-plz-gate__msg.is-error {
  color: #a33;
  padding: 0;
  background: none;
  border: none;
}

.je-plz-gate__msg.is-paused {
  color: #8a6a00;
  font-weight: 600;
  padding: 0;
  background: none;
  border: none;
}

.je-checkout-step[hidden] {
  display: none !important;
}

#jeCheckoutSheet .je-sheet__scroll--checkout-step {
  display: flex;
  flex-direction: column;
  min-height: min(64vh, 480px);
}

#jeCheckoutSheet .je-sheet__scroll--checkout-step #jeCheckoutForm:not([hidden]) {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#jeCheckoutForm[hidden],
#jeCheckoutSuccess[hidden],
#jeCheckoutProcessing[hidden] {
  display: none !important;
}

.je-checkout-processing {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  max-width: 20rem;
  margin: 0 auto;
}

.je-checkout-processing__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 128, 0, 0.1);
  color: var(--je-orange);
  font-size: 1.35rem;
}

.je-checkout-processing__title {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--je-text);
}

.je-checkout-processing__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--je-muted);
  line-height: 1.5;
}

/* Nach Stripe-Rückkehr: kein Warenkorb-Flash (bfcache / alter Zustand) */
html.je-stripe-return-pending .je-cart-fab,
html.je-stripe-return-pending #jeCartSheet,
html.je-stripe-return-pending #jeConfirmSheet {
  display: none !important;
}

html.je-stripe-return-pending #jeCheckoutProcessing {
  display: block !important;
}

html.je-stripe-return-pending #jeCheckoutForm,
html.je-stripe-return-pending #jeCheckoutSuccess {
  display: none !important;
}

@media (max-width: 900px) {
  html.je-stripe-return-pending #jeCheckoutSheet {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 410;
    max-height: min(92dvh, 100%);
    transform: translateY(0);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
  }

  html.je-stripe-return-pending #jeOverlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

#jeCheckoutSheet .je-sheet__scroll--success #jeCheckoutForm {
  display: none !important;
}

.je-checkout-step--sticky:not([hidden]) {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.je-checkout-step__head {
  flex-shrink: 0;
}

.je-checkout-step__head .je-checkout-form__title {
  margin-bottom: 0.65rem;
}

.je-checkout-step__content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.je-checkout-step--balance .je-checkout-step__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.35rem 0;
}

.je-checkout-step__center {
  width: 100%;
}

.je-checkout-step__bottom {
  flex-shrink: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--je-line);
}

.je-checkout-step__footer {
  flex-shrink: 0;
  margin-top: 0;
  padding-top: 0.85rem;
  padding-bottom: max(0.35rem, env(safe-area-inset-bottom, 0));
}

.je-checkout-step__footer .je-checkout-btn {
  margin-top: 0;
}

.je-checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.15rem;
  border: none;
  background: none;
  color: var(--je-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.je-checkout-back:hover {
  color: var(--je-text);
}

.je-checkout-delivery-badge {
  margin: -0.35rem 0 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: #f0faf4;
  border: 1px solid rgba(31, 107, 63, 0.18);
  color: #1f6b3f;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.je-checkout-form__fields {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

#jeCheckoutStep2 .je-checkout-form__fields {
  margin-top: 0.15rem;
}

.je-checkout-form__row--2 {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 0.45rem;
}

.je-checkout-form__row--contact {
  grid-template-columns: 1fr;
  gap: 0;
}

.je-checkout-form__row--2 > div {
  min-width: 0;
}

.je-checkout-form__row--2 input {
  margin-bottom: 0.5rem;
}

.je-checkout-layout {
  display: flex;
  flex-direction: column;
}

.je-checkout-layout__sub {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--je-muted);
  line-height: 1.45;
}

.je-checkout-step__intro {
  margin-bottom: 1.1rem;
}

.je-checkout-section {
  margin-bottom: 1rem;
}

.je-checkout-section__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--je-text);
}

.je-checkout-section__title i {
  color: var(--je-orange);
  font-size: 0.9rem;
}

.je-checkout-section__lead {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--je-muted);
  line-height: 1.4;
}

.je-type-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.je-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 0.55rem;
  border: 1.5px solid var(--je-line);
  border-radius: 10px;
  background: var(--je-surface);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 150ms ease, color 150ms ease;
}

.je-type-btn i {
  margin: 0;
  font-size: 1.15rem;
}

.je-type-btn.is-active {
  border-color: var(--je-orange);
  background: #fff;
  color: var(--je-orange);
  box-shadow: none;
}

.je-type-btn.is-active:focus,
.je-type-btn.is-active:focus-visible {
  color: var(--je-orange);
}

.je-checkout-aside__title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--je-text);
}

.je-checkout-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: start;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--je-line);
}

.je-checkout-item:last-child {
  border-bottom: none;
}

.je-checkout-item__name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--je-text);
}

.je-checkout-item__meta {
  margin-top: 0.15rem;
  font-size: 0.76rem;
  color: var(--je-muted);
  line-height: 1.35;
}

.je-checkout-item__price {
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--je-text);
}

.je-checkout-aside__savings {
  margin: 0.15rem 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
}

.je-checkout-aside__savings[hidden],
.je-checkout-aside__banner[hidden] {
  display: none !important;
}

.je-checkout-aside__banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.je-checkout-aside__banner i {
  color: #22c55e;
}

.je-checkout-aside__info {
  font-size: 0.72rem;
  color: var(--je-muted);
  margin-left: 0.2rem;
}

.je-checkout-aside__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  font-size: 0.74rem;
  color: var(--je-muted);
  text-align: center;
}

.je-checkout-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
}

.je-checkout-aside__actions .je-checkout-btn[hidden] {
  display: none !important;
  margin: 0;
}

.je-checkout-delivered-to {
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}

.je-checkout-address-fields {
  margin-bottom: 0.15rem;
}

.je-checkout-btn__label--short {
  display: none;
}

.je-checkout-mobile-summary {
  display: none;
}

.je-checkout-btn--primary i {
  font-size: 0.85rem;
}

/* Checkout: kompakt auf Handy */
@media (max-width: 767px) {
  #jeCheckoutSheet .je-sheet__scroll {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  #jeCheckoutSheet .je-sheet__scroll--checkout-step {
    min-height: 0;
    max-height: none;
    flex: 1;
  }

  #jeCheckoutSheet .je-sheet__scroll--checkout-step #jeCheckoutForm:not([hidden]) {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  #jeCheckoutSheet .je-checkout-layout {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  #jeCheckoutSheet .je-checkout-layout__main {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0.75rem 1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  #jeCheckoutSheet .je-checkout-layout__aside {
    flex-shrink: 0;
    margin: 0;
    padding: 0.65rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid var(--je-line);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06);
  }

  #jeCheckoutSheet .je-checkout-form__title {
    font-size: 1.1rem;
    margin: 0 0 0.55rem;
  }

  #jeCheckoutSheet .je-checkout-layout__sub,
  #jeCheckoutSheet .je-checkout-aside__title,
  #jeCheckoutSheet .je-checkout-aside__items,
  #jeCheckoutSheet .je-checkout-aside__secure,
  #jeCheckoutSheet .je-checkout-aside__banner,
  #jeCheckoutSheet .je-checkout-aside__savings,
  #jeCheckoutSheet #jeCheckoutSubtotalRow,
  #jeCheckoutSheet #jeCheckoutDeliveryRow,
  #jeCheckoutSheet #jeCheckoutDiscountRow {
    display: none !important;
  }

  #jeCheckoutSheet .je-checkout-mobile-summary {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--je-muted);
    text-align: center;
  }

  #jeCheckoutSheet .je-checkout-step__intro {
    margin-bottom: 0.55rem;
  }

  #jeCheckoutSheet .je-type-btns {
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }

  #jeCheckoutSheet .je-type-btn {
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.62rem 0.5rem;
    font-size: 0.84rem;
    border-radius: 8px;
  }

  #jeCheckoutSheet .je-type-btn i {
    font-size: 0.95rem;
  }

  #jeCheckoutSheet .je-checkout-section {
    margin-bottom: 0.65rem;
  }

  #jeCheckoutSheet .je-checkout-section__title {
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
    gap: 0.35rem;
  }

  #jeCheckoutSheet .je-checkout-section__title i {
    font-size: 0.78rem;
  }

  #jeCheckoutSheet .je-plz-gate {
    margin-bottom: 0.65rem;
  }

  #jeCheckoutSheet .je-plz-gate__row input,
  #jeCheckoutSheet .je-plz-gate__btn {
    min-height: 2.5rem;
    font-size: 0.92rem;
    border-radius: 8px;
  }

  #jeCheckoutSheet .je-plz-gate__msg {
    font-size: 0.78rem;
    margin-top: 0.35rem;
  }

  #jeCheckoutSheet .je-plz-change {
    margin-top: 0.25rem;
  }

  #jeCheckoutSheet .je-plz-change__btn {
    font-size: 0.78rem;
  }

  #jeCheckoutSheet .je-time-options {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
  }

  #jeCheckoutSheet .je-time-opt {
    padding: 0.58rem 0.7rem;
    border-radius: 8px;
    gap: 0.55rem;
  }

  #jeCheckoutSheet .je-time-opt__icon {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.78rem;
    border-radius: 6px;
  }

  #jeCheckoutSheet .je-time-opt__title {
    font-size: 0.84rem;
  }

  #jeCheckoutSheet .je-time-opt__sub {
    font-size: 0.74rem;
  }

  #jeCheckoutSheet .je-preorder-picker {
    margin-bottom: 0.45rem;
  }

  #jeCheckoutSheet .je-preorder-picker label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }

  #jeCheckoutSheet .je-preorder-picker select {
    padding: 0.58rem 0.7rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  #jeCheckoutSheet .je-time-step__msg {
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
  }

  #jeCheckoutSheet .je-checkout-form textarea.je-checkout-note {
    min-height: unset;
    max-height: unset;
    height: auto;
    padding: 0.62rem 0.75rem;
    font-size: 0.95rem;
    line-height: normal;
    margin-bottom: 0.55rem;
    border-radius: 8px;
    resize: none;
    overflow-y: auto;
  }

  #jeCheckoutSheet .je-checkout-form input:not([type="checkbox"]),
  #jeCheckoutSheet .je-checkout-form textarea {
    padding: 0.62rem 0.75rem;
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    border-radius: 8px;
  }

  #jeCheckoutSheet .je-checkout-form__row--contact {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #jeCheckoutSheet .je-checkout-delivered-to {
    margin-bottom: 0.45rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.78rem;
  }

  #jeCheckoutSheet .je-save-customer-wrap {
    margin-top: 0.35rem;
    padding: 0.65rem 0 0.2rem;
  }

  #jeCheckoutSheet .je-save-customer span {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  #jeCheckoutSheet .je-checkout-back {
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
  }

  #jeCheckoutSheet .je-checkout-aside__totals {
    padding: 0;
    border: none;
  }

  #jeCheckoutSheet .je-cart-total--checkout {
    margin: 0 0 0.45rem;
    padding: 0;
    border: none;
    font-size: 0.95rem;
  }

  #jeCheckoutSheet .je-cart-total--checkout span:last-child {
    font-size: 1.05rem;
    font-weight: 800;
  }

  #jeCheckoutSheet .je-checkout-aside__actions {
    margin: 0;
    padding: 0;
  }

  #jeCheckoutSheet .je-checkout-btn {
    margin: 0;
    padding: 0.78rem 0.9rem;
    font-size: 0.92rem;
    border-radius: 9px;
  }

  #jeCheckoutSheet .je-checkout-btn__label--long {
    display: none;
  }

  #jeCheckoutSheet .je-checkout-btn__label--short {
    display: inline;
  }
}

.je-time-step__lead {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--je-muted);
  line-height: 1.45;
}

#jeCheckoutStep1 .je-time-step__lead {
  display: none;
}

.je-time-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.je-time-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--je-line);
  border-radius: 10px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.je-time-opt__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f5f5f5;
  color: var(--je-muted);
  font-size: 0.9rem;
}

.je-time-opt.is-active .je-time-opt__icon {
  background: var(--je-orange-soft);
  color: var(--je-orange);
}

.je-time-opt__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.je-time-opt.is-active {
  border-color: var(--je-orange);
  background: #fff;
  box-shadow: none;
  color: var(--je-text);
}

.je-time-opt.is-active:focus,
.je-time-opt.is-active:focus-visible {
  color: var(--je-text);
}

.je-time-opt.is-disabled,
.je-time-opt:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

#jeCheckoutTimeSection.is-region-paused .je-time-options {
  pointer-events: none;
}

#jeCheckoutTimeSection.is-region-paused .je-preorder-picker {
  opacity: 0.55;
  pointer-events: none;
}

.je-time-opt__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--je-text);
}

.je-time-opt__sub {
  font-size: 0.82rem;
  color: var(--je-muted);
}

.je-preorder-picker {
  margin-bottom: 1rem;
}

.je-preorder-picker label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.je-preorder-picker select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.je-time-step__msg {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: #b45309;
  line-height: 1.4;
}

.je-confirm-order,
.je-checkout-overview {
  margin: 0 0 1.1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid var(--je-line);
  font-size: 0.86rem;
  line-height: 1.45;
}

.je-checkout-overview {
  margin-top: 0.25rem;
}

.je-checkout-step--balance .je-checkout-overview {
  margin: 0;
  padding: 0.35rem 1.1rem;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

#jeCheckoutStepOverview .je-checkout-form__title {
  margin-bottom: 0.35rem;
}

.je-checkout-overview .je-confirm-order__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.72rem 0;
}

.je-checkout-overview .je-confirm-order__row + .je-confirm-order__row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.je-checkout-overview .je-confirm-order__label {
  flex: 0 0 4.75rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #888;
  padding-top: 0.05rem;
}

.je-checkout-overview .je-confirm-order__val {
  flex: 1;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--je-text);
  line-height: 1.4;
}

.je-checkout-overview .je-confirm-order__row--products {
  align-items: flex-start;
}

.je-checkout-overview .je-confirm-order__val--products {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.je-checkout-overview .je-confirm-order__product {
  max-width: 100%;
  text-align: right;
}

.je-checkout-overview .je-confirm-order__extras {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.74rem;
  font-weight: 400;
  color: #999;
}

.je-checkout-step--balance .je-time-options {
  margin-bottom: 0.85rem;
}

.je-checkout-step--balance .je-preorder-picker {
  margin-bottom: 0.5rem;
}

.je-overview-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.15rem 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
  color: var(--je-text);
}

.je-overview-total strong {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#jeCheckoutStepOverview .je-checkout-step__bottom {
  padding-top: 0.9rem;
}

#jeCheckoutStepOverview .je-checkout-step__footer {
  padding-top: 0.75rem;
}

.je-confirm-order__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem 0.75rem;
  padding: 0.35rem 0;
}

.je-confirm-order__row + .je-confirm-order__row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.je-confirm-order__row--stack {
  align-items: start;
}

.je-confirm-order__val--products {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.je-confirm-order__product {
  display: block;
  line-height: 1.4;
}

.je-confirm-order__label {
  font-weight: 600;
  color: var(--je-muted);
  font-size: 0.8rem;
}

.je-confirm-order__val {
  color: var(--je-text);
  font-weight: 500;
}

.je-confirm-order__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.je-confirm-order__items li {
  padding: 0.12rem 0;
  color: var(--je-text);
}

.je-confirm-order__qty {
  font-weight: 700;
}

.je-confirm-order__extras {
  font-size: 0.78rem;
  color: var(--je-muted);
}

.je-checkout-form .je-totals__row {
  padding: 0.2rem 0;
  font-size: 0.95rem;
}

.je-cart-total--checkout {
  border: none;
  padding: 0.55rem 0 0.25rem;
  margin-top: 0.25rem;
  font-size: 1.15rem;
}

.je-save-customer-wrap[hidden] {
  display: none !important;
}

.je-save-customer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.25rem;
  padding: 1rem 0.75rem 0.35rem;
  border-top: 1px solid var(--je-line);
  text-align: center;
}

.je-checkout-form .je-save-customer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: auto;
  max-width: 20rem;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--je-muted);
  cursor: pointer;
}

.je-checkout-form .je-save-customer[hidden] {
  display: none !important;
}

.je-checkout-form .je-save-customer span {
  text-align: left;
}

.je-checkout-form .je-save-customer input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--je-orange);
  cursor: pointer;
}

.je-checkout-form .je-save-customer input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.je-save-customer__hint {
  margin: 0;
  max-width: 20rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--je-muted);
}

.je-save-customer__link {
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  color: var(--je-orange-dark);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.je-save-customer__link:hover {
  color: var(--je-orange);
}

.je-checkout-form .je-checkout-btn {
  padding: 0.95rem;
  margin-top: 0.85rem;
  font-size: 1.02rem;
  border-radius: 10px;
}

.je-checkout-summary {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--je-line);
}

.je-checkout-step--balance .je-checkout-summary {
  margin: 0;
  padding: 0.25rem 0;
  border-bottom: none;
}

.je-totals--checkout {
  margin: 0;
  padding: 0;
}

.je-checkout-step--balance .je-cart-total--checkout {
  border: none;
  padding: 0;
  margin: 0;
}

.je-checkout-summary__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  padding: 0.65rem 0;
  color: var(--je-muted);
  line-height: 1.4;
}

.je-checkout-summary__text {
  flex: 1;
  min-width: 0;
}

.je-checkout-summary__price {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 700;
  color: var(--je-text);
}

.je-checkout-summary__row strong { color: var(--je-text); }

/* ── Zahlung & Bestätigung ────────────────────────────────── */
#jeConfirmSheet .je-sheet__scroll {
  padding: 1rem 1.15rem 1.25rem;
}

#jeConfirmSheet .je-sheet__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.je-confirm__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(45, 138, 78, 0.1);
  color: #1f6b3f;
  font-size: 0.88rem;
  font-weight: 700;
}

.je-pay-options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.je-pay-opt {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid var(--je-line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.je-pay-opt:hover {
  border-color: rgba(255, 122, 0, 0.35);
}

.je-pay-opt.is-active {
  border-color: var(--je-orange);
  background: #fffaf5;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
  color: var(--je-text);
}

.je-pay-opt.is-active:focus,
.je-pay-opt.is-active:focus-visible {
  color: var(--je-text);
}

.je-pay-opt__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
}

.je-pay-opt.is-active .je-pay-opt__radio {
  border-color: var(--je-orange);
}

.je-pay-opt.is-active .je-pay-opt__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--je-orange);
}

.je-pay-opt__icon {
  width: 2.15rem;
  text-align: center;
  color: var(--je-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.je-pay-opt__icon--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 1.65rem;
}

.je-pay-opt__icon--cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 3.25rem;
  height: 1.65rem;
}

.je-pay-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.je-pay-opt__icon--cards .je-pay-logo {
  height: 0.95rem;
}

.je-pay-opt__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.je-pay-opt__text strong {
  font-size: 1rem;
  color: var(--je-text);
}

.je-pay-opt__text small {
  font-size: 0.85rem;
  color: var(--je-muted);
  line-height: 1.35;
}

.je-confirm__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0 0.35rem;
  font-size: 1rem;
  color: var(--je-muted);
  font-weight: 500;
}

.je-confirm__total strong {
  font-size: 1.35rem;
  color: var(--je-text);
  font-weight: 700;
}

#jeConfirmSheet .je-checkout-btn {
  padding: 0.95rem;
  font-size: 1.02rem;
  border-radius: 10px;
}

.je-confirm__back {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--je-muted);
  cursor: pointer;
}

.je-confirm__back:hover {
  color: var(--je-text);
}

/* ── Zeiten & Zonen Popup ─────────────────────────────────── */
#jeInfoSheet .je-sheet__scroll {
  padding: 1.15rem 1.2rem 1.35rem;
}

.je-info-sheet__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.je-info-sheet__head {
  text-align: center;
  padding: 0.25rem 0.5rem 1.1rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--je-line);
}

.je-info-sheet__head-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff4e8 0%, var(--je-orange-soft) 100%);
  color: var(--je-orange);
  font-size: 1.1rem;
}

.je-info-sheet__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.je-info-sheet__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--je-muted);
  line-height: 1.45;
  max-width: 28ch;
  margin-inline: auto;
}

.je-info-tabs {
  display: flex;
  gap: 0.35rem;
  margin: 1.1rem 0 1.15rem;
  padding: 0.3rem;
  border-radius: 12px;
  background: #f0f0f0;
}

.je-info-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.65rem;
  border: none;
  border-radius: 9px;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--je-muted);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.je-info-tab i {
  font-size: 0.82rem;
  opacity: 0.85;
}

.je-info-tab.is-active {
  background: var(--je-surface);
  color: var(--je-orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.je-info-panel {
  display: none;
}

.je-info-panel.is-active {
  display: block;
}

.je-info-times-grid {
  display: grid;
  gap: 1.15rem;
}

.je-info-times-block {
  min-width: 0;
}

.je-info-panel__label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--je-muted);
  margin: 0 0 0.55rem;
}

.je-info-panel__label i {
  color: var(--je-orange);
  font-size: 0.78rem;
}

.je-info-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--je-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--je-surface);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.je-info-row {
  display: grid;
  grid-template-columns: minmax(5.5rem, auto) 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--je-line);
}

.je-info-row:last-child {
  border-bottom: none;
}

.je-info-row > span:first-child {
  font-weight: 600;
  color: var(--je-text);
}

.je-info-row > span:last-child {
  text-align: right;
  color: var(--je-muted);
  line-height: 1.4;
  font-size: 0.88rem;
}

.je-info-row.is-today {
  background: linear-gradient(90deg, var(--je-orange-soft) 0%, rgba(255, 128, 0, 0.04) 100%);
  position: relative;
}

.je-info-row.is-today > span:first-child::after {
  content: "Heute";
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: var(--je-orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.je-info-row.is-today > span:first-child {
  color: var(--je-orange);
}

.je-info-row.is-closed > span:last-child {
  color: #b45309;
  font-weight: 600;
}

.je-info-panel__lead {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: var(--je-text);
  line-height: 1.45;
  background: #fffaf5;
  border: 1px solid rgba(255, 128, 0, 0.15);
  border-radius: 10px;
}

.je-info-panel__lead i {
  color: var(--je-orange);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.je-info-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--je-line);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.je-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.je-info-table th,
.je-info-table td {
  padding: 0.72rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--je-line);
}

.je-info-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--je-muted);
  background: #f8f8f8;
}

.je-info-table th:nth-child(2),
.je-info-table th:nth-child(3),
.je-info-table td:nth-child(2),
.je-info-table td:nth-child(3) {
  text-align: center;
}

.je-info-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.je-info-table tr:last-child td {
  border-bottom: none;
}

.je-info-table tr.is-home td {
  background: var(--je-orange-soft);
}

.je-info-table tr.is-home td:first-child {
  font-weight: 700;
  color: var(--je-orange);
}

.je-info-table td:nth-child(3) {
  color: #1f6b3f;
  font-weight: 600;
}

.je-info-panel__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--je-muted);
  text-align: center;
  background: #f8f8f8;
  border-radius: 10px;
}

.je-info-panel__note i {
  color: var(--je-orange);
}

.je-info-panel__note a {
  color: var(--je-orange);
  font-weight: 700;
  text-decoration: none;
}

.je-info-panel__note a:hover {
  text-decoration: underline;
}

/* ── Toast & Success ──────────────────────────────────────── */
.je-toast {
  position: fixed;
  bottom: calc(var(--je-fab-size) + var(--je-fab-gap) + 0.5rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--je-text);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--je-radius);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 600;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}

.je-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.je-success {
  text-align: center;
  padding: 0;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

.je-success__icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(45, 138, 78, 0.16), rgba(45, 138, 78, 0.08));
  color: #1f7a43;
  font-size: 1.65rem;
  box-shadow: 0 0 0 8px rgba(45, 138, 78, 0.08);
}

.je-success__eyebrow {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--je-text);
}

.je-success__order-card {
  margin: 0 0 1rem;
  padding: 1.1rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff8f0 0%, #fff1e0 100%);
  border: 1px solid rgba(255, 159, 28, 0.22);
  box-shadow: 0 10px 28px rgba(26, 18, 8, 0.06);
}

.je-success__order-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--je-muted);
}

.je-success__order-no {
  display: block;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--je-sun-dark, #e67300);
  font-variant-numeric: tabular-nums;
}

.je-success__thanks {
  margin: 0 0 1.35rem;
  color: var(--je-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.je-success__home {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
}

@media (max-width: 767px) {
  .je-order-page {
    padding-bottom: calc(var(--je-fab-size) + var(--je-fab-gap) + env(safe-area-inset-bottom, 0px));
  }

  .je-order-page.has-nav-status {
    --je-nav-h: 130px;
  }

  .je-order-page:not(.has-nav-status) {
    --je-nav-h: 96px;
  }

  .je-page-body {
    display: block;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: var(--je-page-pad-top) var(--je-page-pad-x) 0;
    min-height: 0;
  }

  .je-cart-fab {
    display: grid;
  }

  .je-cart-panel.je-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: auto;
    height: auto;
    max-height: 90vh;
    max-height: 90dvh;
    margin: 0;
    transform: translateY(100%);
    visibility: visible;
    border: none;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
    z-index: 510;
  }

  .je-cart-panel.je-sheet.is-open {
    transform: translateY(0);
  }

  .je-cart-panel .je-sheet__handle,
  .je-cart-panel .je-sheet__close {
    display: block;
  }

  .je-cards {
    border: none;
    border-radius: 0;
    overflow: visible;
  }
}

/* ── Tablet (768px+) ──────────────────────────────────────── */
@media (min-width: 768px) {
  .je-order-page.has-nav-status {
    --je-nav-h: 142px;
  }

  .je-order-page {
    --je-container: 100%;
    --je-nav-h: 108px;
    --je-layout-max: min(1240px, calc(100vw - 2rem));
    --je-page-pad-x: clamp(1rem, 2.5vw, 1.5rem);
    --je-page-gap: clamp(1rem, 2vw, 1.35rem);
    --je-page-pad-top: 1.25rem;
    --je-cart-sidebar-w: min(340px, 36vw);
    padding-bottom: 0;
  }

  .je-nav .je-container {
    width: min(var(--je-layout-max), calc(100% - 2 * var(--je-page-pad-x)));
    max-width: var(--je-layout-max);
  }

  .je-page-body {
    display: block;
    width: min(var(--je-layout-max), calc(100% - 2 * var(--je-page-pad-x)));
    max-width: var(--je-layout-max);
    margin-inline: auto;
    padding: var(--je-page-pad-top) var(--je-page-pad-x) 0;
    min-height: 0;
  }

  .je-page-main {
    min-width: 0;
  }

  .je-page-main .je-container {
    width: 100%;
    margin-inline: 0;
  }

  .je-page-main .je-store {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .je-main {
    padding-bottom: 1rem;
  }

  .je-header__inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 1rem;
    min-height: 60px;
    padding-block: 0.65rem;
  }

  .je-header__logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .je-header__logo-text strong { font-size: 1.05rem; }

  .je-header__call,
  .je-header__cart {
    height: 42px;
    padding: 0 1rem;
  }

  .je-header__call-label,
  .je-header__cart-label { display: inline; }

  .je-cats {
    gap: 0.5rem;
    padding: 0.75rem 0;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .je-cats-scroll::before,
  .je-cats-scroll::after { display: none; }

  .je-cat-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.875rem;
  }

  .je-store {
    margin-top: 1.25rem;
    padding: 1.35rem 1.5rem;
  }

  .je-store h2 { font-size: 1.45rem; }

  .je-card__img {
    width: 120px;
    height: 120px;
  }

  .je-sheet:not(.je-cart-panel) {
    left: 50%;
    right: auto;
    width: min(460px, calc(100% - 2rem));
    margin-left: calc(min(460px, calc(100% - 2rem)) / -2);
  }
}

/* ── Desktop ──────────────────────────────────────────────── */
@media (min-width: 768px) {
  .je-order-page {
    --je-layout-max: min(1320px, calc(100vw - 2.5rem));
    --je-cart-sidebar-w: min(380px, 32vw);
    --je-page-pad-top: 1.5rem;
    --je-page-gap: 1.5rem;
  }

  .je-cart-panel .je-cart-panel__title {
    font-size: 1.18rem;
  }

  .je-cart-panel .je-cart-panel__body {
    padding: 1.25rem 1.35rem 1.35rem;
  }

  .je-section-title {
    padding-top: 1.35rem;
  }

  .je-header__inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 1.25rem;
  }

  .je-header__auth {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .je-header__account {
    display: none;
  }

  /* Modals (Produkt, Kasse, Zahlung): breiter, oben, seitenmittig */
  .je-order-page {
    --je-modal-w: min(600px, calc(100vw - 2.5rem));
    --je-modal-gap-top: 0.75rem;
    --je-modal-gap-bottom: 2.75rem;
  }

  #jeInfoSheet {
    top: calc(var(--je-nav-h) + var(--je-modal-gap-top));
    bottom: var(--je-modal-gap-bottom);
    left: 50%;
    right: auto;
    width: var(--je-modal-w);
    margin-left: 0;
    max-height: none;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, 16px);
    opacity: 0;
    visibility: hidden;
    transition: transform 280ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  #jeInfoSheet.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }

  #jeInfoSheet .je-sheet__handle {
    display: none;
  }

  /* Produkt-Popup: zentriert, kompakt zweispaltig */
  #jeProductSheet {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    width: min(600px, calc(100vw - 3rem));
    max-height: min(82vh, 640px);
    height: auto;
    margin: 0;
    border-radius: 14px;
    border: 1px solid var(--je-line);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    transform: translate(-50%, calc(-50% + 18px));
    opacity: 0;
    visibility: hidden;
    transition: transform 280ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  #jeProductSheet.is-open {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
  }

  #jeProductSheet .je-sheet__handle {
    display: none;
  }

  #jeProductSheet .je-sheet__close {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--je-line);
    background: #fff;
    box-shadow: none;
    font-size: 1rem;
    color: var(--je-muted);
    transition: color 0.15s ease, border-color 0.15s ease;
  }

  #jeProductSheet .je-sheet__close:hover {
    color: var(--je-text);
    border-color: #ccc;
  }

  .je-product-sheet__layout {
    display: grid;
    grid-template-columns: minmax(180px, 32%) 1fr;
    align-items: stretch;
  }

  #jeProductSheet.is-no-image .je-product-sheet__layout {
    grid-template-columns: 1fr;
  }

  #jeProductSheet .je-sheet__hero {
    padding: 1.25rem 1.25rem;
    background: #ffffff;
    border-right: 1px solid var(--je-line);
    min-height: 200px;
  }

  #jeProductSheet.is-no-image .je-sheet__hero {
    display: none !important;
  }

  #jeProductSheet .je-sheet__img {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1;
    max-height: min(220px, 34vh);
    margin-inline: auto;
    border-radius: 12px;
    border: none;
    object-fit: cover;
  }

  #jeProductSheet .je-sheet__scroll {
    padding: 1.35rem 1.5rem 1.15rem;
  }

  #jeProductSheet .je-product-sheet__intro {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--je-line);
  }

  #jeProductSheet .je-sheet__title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    padding-right: 2.25rem;
    line-height: 1.25;
  }

  #jeProductSheet .je-sheet__price {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
  }

  #jeProductSheet .je-sheet__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0;
  }

  #jeProductSheet .je-sheet__section-title {
    margin-top: 0;
    margin-bottom: 0.85rem;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--je-muted);
  }

  #jeProductSheet .je-extras-head {
    margin-bottom: 0.65rem;
  }

  #jeProductSheet .je-extra-chip {
    padding: 0.75rem 0;
  }

  #jeProductSheet .je-sheet-note {
    margin-bottom: 1.25rem;
  }

  #jeProductSheet .je-qty-row {
    margin-top: 0.25rem;
    padding-top: 1.25rem;
  }

  #jeProductSheet .je-sheet__footer {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--je-line);
    background: #fafafa;
  }

  #jeProductSheet .je-sheet__add-btn {
    max-width: 100%;
    padding: 0.85rem 1.15rem;
    font-size: 0.98rem;
    border-radius: 10px;
  }

  #jeInfoSheet {
    --je-modal-w: min(640px, calc(100vw - 2.5rem));
    top: 50%;
    bottom: auto;
    max-height: min(88vh, 720px);
    border-radius: 14px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.16);
    transform: translate(-50%, calc(-50% + 18px));
  }

  #jeInfoSheet.is-open {
    transform: translate(-50%, -50%);
  }

  #jeInfoSheet .je-sheet__scroll {
    padding: 1.35rem 1.65rem 1.65rem;
    max-height: min(88vh, 720px);
  }

  /* Checkout-Popup: gross, zentriert */
  #jeCheckoutSheet,
  #jeConfirmSheet {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    margin: 0;
    border-radius: 16px;
    border: 1px solid var(--je-line);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    transform: translate(-50%, calc(-50% + 18px));
    opacity: 0;
    visibility: hidden;
    transition: transform 280ms ease, opacity 220ms ease, visibility 220ms ease;
    overflow: hidden;
  }

  #jeCheckoutSheet {
    width: min(920px, calc(100vw - 3rem));
    max-height: min(90vh, 840px);
    height: auto;
  }

  #jeConfirmSheet {
    width: min(760px, calc(100vw - 3rem));
    max-height: min(90vh, 820px);
    height: auto;
  }

  #jeCheckoutSheet.is-open,
  #jeConfirmSheet.is-open {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
  }

  #jeCheckoutSheet .je-sheet__handle,
  #jeConfirmSheet .je-sheet__handle {
    display: none;
  }

  #jeCheckoutSheet .je-sheet__close,
  #jeConfirmSheet .je-sheet__close {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--je-line);
    background: #fff;
    box-shadow: none;
    font-size: 1rem;
    color: var(--je-muted);
    transition: color 0.15s ease, border-color 0.15s ease;
  }

  #jeCheckoutSheet .je-sheet__close:hover,
  #jeConfirmSheet .je-sheet__close:hover {
    color: var(--je-text);
    border-color: #ccc;
  }

  .je-info-sheet__title {
    font-size: 1.5rem;
  }

  .je-info-sheet__sub {
    font-size: 0.92rem;
    max-width: none;
  }

  .je-info-tabs {
    margin: 1.25rem 0 1.35rem;
  }

  .je-info-tab {
    font-size: 0.98rem;
    padding: 0.78rem 0.85rem;
  }

  .je-info-times-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  .je-info-row {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .je-info-row > span:last-child {
    font-size: 0.9rem;
  }

  .je-info-table {
    font-size: 0.95rem;
  }

  .je-info-table th,
  .je-info-table td {
    padding: 0.78rem 1.1rem;
  }

  #jeCheckoutSheet .je-sheet__scroll--checkout-step {
    display: flex;
    flex-direction: column;
    min-height: min(560px, calc(90vh - 2rem));
    padding: 0;
    overflow: hidden;
  }

  #jeCheckoutSheet .je-sheet__scroll--checkout-step #jeCheckoutForm:not([hidden]) {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  #jeCheckoutSheet .je-sheet__scroll.je-sheet__scroll--success {
    min-height: min(480px, calc(90vh - 2rem));
    padding: 2rem 1.75rem;
  }

  #jeCheckoutSheet .je-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 38%);
    flex: 1;
    min-height: min(520px, calc(90vh - 2rem));
    align-items: stretch;
  }

  #jeCheckoutSheet .je-checkout-layout__main {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    border-right: 1px solid var(--je-line);
  }

  #jeCheckoutSheet .je-checkout-layout__aside {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 1.25rem;
    background: #fafafa;
    overflow-y: auto;
  }

  #jeCheckoutSheet .je-checkout-form__title {
    margin: 0;
    padding-right: 2.5rem;
    font-size: 1.45rem;
    line-height: 1.2;
  }

  #jeCheckoutSheet .je-checkout-back {
    margin-bottom: 0.65rem;
    font-size: 0.86rem;
  }

  #jeCheckoutSheet .je-checkout-aside__items {
    flex: 1;
    min-height: 0;
    max-height: min(280px, 32vh);
    overflow-y: auto;
    margin-bottom: 0.5rem;
  }

  #jeCheckoutSheet .je-checkout-aside__totals {
    padding-top: 0.65rem;
    border-top: 1px solid var(--je-line);
  }

  #jeCheckoutSheet .je-totals--checkout .je-totals__row {
    margin-bottom: 0.3rem;
    font-size: 0.86rem;
    color: var(--je-muted);
  }

  #jeCheckoutSheet .je-totals--checkout .je-totals__row span:last-child {
    color: var(--je-text);
    font-weight: 600;
  }

  #jeCheckoutSheet .je-cart-total--checkout {
    margin-top: 0.35rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--je-line);
    font-size: 1.12rem;
    font-weight: 700;
  }

  #jeCheckoutSheet .je-cart-total--checkout span:last-child {
    font-size: 1.2rem;
    font-weight: 800;
  }

  #jeCheckoutSheet .je-checkout-aside__actions {
    margin-top: auto;
    padding-top: 0.75rem;
  }

  #jeCheckoutSheet .je-checkout-btn {
    padding: 0.88rem 1.1rem;
    font-size: 0.96rem;
    border-radius: 10px;
  }

  #jeCheckoutSheet .je-time-options {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  #jeCheckoutSheet .je-checkout-form__row--contact {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0.15rem;
  }

  #jeCheckoutSheet .je-checkout-form__row--contact input {
    margin-bottom: 0;
  }

  #jeCheckoutSheet .je-checkout-step--balance .je-checkout-overview {
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 10px;
  }

  #jeConfirmSheet .je-sheet__scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 1.35rem 1.75rem 1.25rem;
  }

  #jeConfirmSheet .je-sheet__title {
    margin: 0 0 0.85rem;
    padding-right: 2.5rem;
    font-size: 1.35rem;
    line-height: 1.2;
  }

  #jeConfirmSheet .je-confirm__secure {
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
  }

  #jeConfirmSheet .je-confirm__section-label {
    margin-bottom: 0.55rem;
    font-size: 0.74rem;
  }

  #jeConfirmSheet .je-pay-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 0.85rem;
  }

  #jeConfirmSheet .je-pay-opt {
    padding: 0.72rem 0.8rem;
    border-radius: 8px;
    gap: 0.65rem;
  }

  #jeConfirmSheet .je-pay-opt__text strong {
    font-size: 0.92rem;
  }

  #jeConfirmSheet .je-pay-opt__text small {
    font-size: 0.74rem;
  }

  #jeConfirmSheet .je-tip--confirm {
    margin-top: 0;
    margin-bottom: 0.85rem;
  }

  #jeConfirmSheet .je-tip__opts {
    gap: 0.4rem;
  }

  #jeConfirmSheet .je-tip__btn {
    padding: 0.52rem 0.3rem;
    font-size: 0.74rem;
  }

  #jeConfirmSheet .je-confirm__summary {
    margin-top: 0;
    padding-top: 0.85rem;
    border-top: 1px solid var(--je-line);
  }

  #jeConfirmSheet .je-confirm__summary-row {
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
  }

  #jeConfirmSheet .je-checkout-btn {
    margin-top: 0.85rem;
    padding: 0.82rem 1.1rem;
    font-size: 0.98rem;
    border-radius: 10px;
  }

  #jeConfirmSheet .je-confirm__back {
    margin-top: 0.55rem;
    font-size: 0.88rem;
  }

  #jeConfirmSheet .je-confirm__total strong {
    font-size: 1.28rem;
  }
}

/* Tablet: 2 Spalten + Warenkorb als Sheet (600–1023px) */
@media (min-width: 600px) and (max-width: 1023px) {
  .je-order-page {
    --je-layout-max: min(1180px, calc(100vw - 2rem));
    padding-bottom: calc(var(--je-fab-size) + var(--je-fab-gap) + env(safe-area-inset-bottom, 0px));
  }

  .je-page-body {
    padding-inline: var(--je-page-pad-x);
  }

  .je-cart-fab {
    display: grid;
  }

  .je-cart-panel.je-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: auto;
    height: auto;
    max-height: 90vh;
    max-height: 90dvh;
    margin: 0;
    transform: translateY(100%);
    visibility: visible;
    border: none;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
    z-index: 510;
  }

  .je-cart-panel.je-sheet.is-open {
    transform: translateY(0);
  }

  .je-cart-panel .je-sheet__handle,
  .je-cart-panel .je-sheet__close {
    display: block;
  }

  .je-cards {
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .je-cards--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .je-cards--grid .je-card {
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--je-line);
    border-radius: var(--je-radius);
    background: var(--je-surface);
  }

  .je-cards--grid .je-card:last-child {
    border-bottom: 1px solid var(--je-line);
  }

  .je-cards--grid .je-card__body {
    gap: 0.12rem;
    padding-right: 0;
  }

  .je-cards--grid .je-card__name {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .je-cards--grid .je-card__desc {
    font-size: 0.72rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }

  .je-cards--grid .je-card__img {
    width: 84px;
    height: 84px;
  }

  .je-cards--grid .je-card__add {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .je-cards--grid .je-card__unavail {
    max-width: 84px;
    font-size: 0.52rem;
  }
}

@media (min-width: 1024px) {
  .je-order-page.has-nav-status {
    --je-nav-h: 152px;
  }

  .je-order-page {
    --je-nav-h: 118px;
    --je-layout-max: min(1400px, calc(100vw - 3rem));
    --je-cart-sidebar-w: 400px;
    --je-page-pad-x: 1.75rem;
    --je-page-gap: 1.75rem;
    padding-bottom: 0;
  }

  .je-page-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--je-cart-sidebar-w);
    align-items: start;
    gap: var(--je-page-gap);
    width: min(var(--je-layout-max), calc(100% - 2 * var(--je-page-pad-x)));
    max-width: var(--je-layout-max);
    margin-inline: auto;
    padding: var(--je-page-pad-top) 0 2.5rem;
    min-height: calc(100vh - var(--je-nav-h) - var(--je-page-pad-top));
  }

  .je-page-main {
    min-width: 0;
  }

  .je-page-main .je-container {
    width: 100%;
    margin-inline: 0;
  }

  .je-page-main .je-store {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .je-main {
    padding-bottom: 1rem;
  }

  .je-cards {
    border: 1px solid var(--je-line);
    border-radius: var(--je-radius);
    overflow: hidden;
  }

  .je-cart-fab {
    display: none;
  }

  .je-cart-panel.je-sheet {
    position: sticky;
    top: calc(var(--je-nav-h) + 0.85rem);
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: calc(100vh - var(--je-nav-h) - 1.75rem);
    max-height: calc(100vh - var(--je-nav-h) - 1.75rem);
    margin: 0;
    transform: none;
    visibility: visible;
    background: var(--je-surface);
    border: 1px solid var(--je-line);
    border-radius: var(--je-radius);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
    z-index: 100;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .je-cart-panel .je-sheet__handle,
  .je-cart-panel .je-sheet__close {
    display: none;
  }

  .je-cart-panel .je-cart-panel__title {
    margin: 0 0 0.5rem;
    padding: 0 0 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--je-line);
  }

  .je-cart-panel__body {
    padding: 0.85rem 1rem 0.65rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .je-cart-panel__items {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .je-cart-panel #jeCartList {
    margin-bottom: 0.2rem;
  }

  .je-cart-panel .je-cart-line {
    padding: 0.55rem 0;
    gap: 0.6rem;
  }

  .je-cart-panel .je-line-thumb {
    width: 48px;
    height: 48px;
  }

  .je-cart-panel .je-cart-line__name {
    font-size: 0.84rem;
  }

  .je-cart-panel .je-cart-qty-pill {
    margin-top: 0;
  }

  .je-cart-panel .je-cart-drinks {
    margin: 0.15rem 0 0.3rem;
    padding: 0.45rem 0 0;
    border-top-color: #eee;
  }

  .je-cart-panel .je-cart-drinks__title {
    margin-bottom: 0.35rem;
    font-size: 0.74rem;
  }

  .je-cart-panel .je-cart-drinks__scroll {
    gap: 0.4rem;
    padding-bottom: 0.15rem;
  }

  .je-cart-panel .je-cart-drink {
    width: 5rem;
    padding: 0.42rem 0.35rem 0.38rem;
    gap: 0.14rem;
    border-radius: 10px;
  }

  .je-cart-panel .je-cart-drink__media {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 7px;
  }

  .je-cart-panel .je-cart-drink__name {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .je-cart-panel .je-cart-drink__meta {
    display: block;
    font-size: 0.58rem;
  }

  .je-cart-panel .je-cart-drink__price {
    margin-top: 0.02rem;
    font-size: 0.64rem;
  }

  .je-cart-panel .je-cart-panel__footer {
    padding-top: 0.45rem;
  }

  .je-cart-panel .je-cart-panel__footer .je-totals {
    margin-bottom: 0.35rem;
  }

  .je-cart-panel .je-totals__row {
    padding: 0.1rem 0;
    font-size: 0.8rem;
  }

  .je-cart-panel .je-cart-total {
    padding: 0.3rem 0 0.1rem;
    font-size: 0.98rem;
  }

  .je-cart-panel .je-checkout-btn {
    padding: 0.72rem 0.85rem;
    font-size: 0.92rem;
  }

  .je-cart-panel .je-cart-pay-badges {
    margin-top: 0.45rem;
    padding: 0.42rem 0.4rem;
    gap: 0.35rem 0.5rem;
  }

  .je-cart-panel .je-cart-pay-badges img {
    height: 0.82rem;
  }

  .je-cart-panel .je-cart-empty {
    padding: 2rem 0.5rem 2.25rem;
  }

  .je-cart-panel.is-highlight {
    animation: je-cart-pulse 600ms ease;
  }

  @keyframes je-cart-pulse {
    0%, 100% { box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06); }
    50% { box-shadow: 0 6px 28px rgba(255, 128, 0, 0.2); }
  }

  .je-header__inner {
    min-height: 64px;
  }

  .je-header__back { display: none; }

  .je-header__logo-text strong { font-size: 1.1rem; }

  .je-cats {
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.8rem 0;
  }

  .je-store {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1.4rem 1.6rem;
  }

  .je-store h2 { margin-bottom: 0; }

  .je-store__meta { justify-content: flex-end; }

  .je-order-page {
    --je-modal-w: min(660px, calc(100vw - 3rem));
    --je-modal-gap-top: 0.65rem;
    --je-modal-gap-bottom: 3rem;
  }

  #jeInfoSheet {
    --je-modal-w: min(700px, calc(100vw - 3rem));
    max-height: min(86vh, 740px);
  }

  #jeProductSheet {
    width: min(640px, calc(100vw - 4rem));
    max-height: min(84vh, 680px);
  }

  #jeProductSheet .je-sheet__hero {
    padding: 1.35rem 1.35rem;
    min-height: 210px;
  }

  #jeProductSheet .je-sheet__img {
    max-width: 220px;
    max-height: min(240px, 36vh);
  }

  #jeProductSheet .je-sheet__scroll {
    padding: 1.5rem 1.65rem 1.25rem;
  }

  #jeProductSheet .je-sheet__title {
    font-size: 1.35rem;
  }

  #jeProductSheet .je-sheet__footer {
    padding: 1rem 1.65rem 1.35rem;
  }

  #jeCheckoutSheet {
    width: min(980px, calc(100vw - 4rem));
    max-height: min(92vh, 880px);
  }

  #jeConfirmSheet {
    width: min(820px, calc(100vw - 4rem));
    max-height: min(92vh, 860px);
  }

  #jeCheckoutSheet #jeCheckoutStep1 .je-checkout-step__content {
    max-height: min(360px, 40vh);
  }

  /* Produkt-Grid auf Desktop — mit Abstand, kompakt */
  .je-section + .je-section .je-section-title {
    padding-top: 1.75rem;
  }

  .je-section-title {
    padding: 1.15rem 0 0.6rem;
    font-size: 1.05rem;
  }

  .je-section:first-child .je-section-title {
    padding-top: 0.15rem;
  }

  .je-cards--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .je-cards--grid .je-card {
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--je-line);
    border-radius: var(--je-radius);
    background: var(--je-surface);
  }

  .je-cards--grid .je-card:last-child {
    border-bottom: 1px solid var(--je-line);
  }

  .je-cards--grid .je-card:hover {
    border-color: #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .je-cards--grid .je-card__body {
    gap: 0.15rem;
    padding-right: 0;
  }

  .je-cards--grid .je-card__name {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .je-cards--grid .je-card__desc {
    font-size: 0.74rem;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }

  .je-cards--grid .je-card__footer {
    padding-top: 0.3rem;
  }

  .je-cards--grid .je-card__price {
    font-size: 0.86rem;
  }

  .je-cards--grid .je-card__img {
    width: 92px;
    height: 92px;
  }

  .je-cards--grid .je-card__add {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
    bottom: -4px;
    right: -4px;
  }

  .je-cards--grid .je-card__unavail {
    max-width: 92px;
    font-size: 0.54rem;
    padding: 0.18rem 0.35rem;
  }

}

/* PC: Logo wie Startseite (90px), Nav mittig */
@media (min-width: 901px) {
  .je-order-page {
    --je-nav-h: 158px;
  }

  .je-order-page.has-nav-status {
    --je-nav-h: 192px;
  }

  .je-header__inner {
    grid-template-columns: 1fr auto 1fr;
    min-height: 84px;
    padding-block: 0.7rem;
  }

  .je-header__logo {
    grid-column: 1;
    justify-self: start;
  }

  .je-header__auth {
    grid-column: 2;
    justify-self: center;
    display: flex;
    justify-content: center;
  }

  .je-header__account {
    display: none;
  }

  .je-header__actions {
    grid-column: 3;
    justify-self: end;
  }

  .je-header__logo-img {
    height: 90px;
    max-width: 90px;
  }
}

/* Handy + Tablet (≤1024px): Navbar wie Mobile */
@media (max-width: 1024px) {
  .je-header__inner {
    grid-template-columns: 1fr;
    min-height: 76px;
    padding-block: 0.6rem;
    position: relative;
    gap: 0;
  }

  .je-header__logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    z-index: 1;
  }

  .je-header__logo-img {
    height: 48px;
    width: auto;
    max-width: 164px;
  }

  .je-header__back {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 2;
  }

  .je-header__actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    z-index: 2;
  }

  .je-header__cart {
    order: 1;
  }

  .je-header__call {
    order: 2;
  }

  .je-header__account {
    order: 3;
    display: inline-flex;
  }

  .je-header__auth {
    display: none;
  }

  .je-header__call-label,
  .je-header__cart-label {
    display: none;
  }

  .je-header__call,
  .je-header__account {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }

  .je-header__cart {
    width: auto;
    min-width: 56px;
    height: 38px;
    padding: 0 0.45rem;
    gap: 0.25rem;
    justify-content: center;
  }
}

@media (min-width: 1100px) {
  .je-order-page {
    --je-layout-max: 1440px;
    --je-cart-sidebar-w: 420px;
    --je-page-gap: 2rem;
  }

  .je-cart-panel .je-cart-panel__body {
    padding: 1.35rem 1.5rem 1.5rem;
  }

  .je-order-page {
    --je-modal-w: min(720px, calc(100vw - 3.5rem));
    --je-modal-gap-bottom: 3.25rem;
  }

  #jeProductSheet {
    width: min(660px, calc(100vw - 5rem));
    max-height: min(86vh, 700px);
  }

  #jeProductSheet .je-sheet__img {
    max-width: 230px;
    max-height: min(250px, 38vh);
  }

  #jeCheckoutSheet {
    width: min(1020px, calc(100vw - 5rem));
    max-height: min(92vh, 900px);
  }

  #jeConfirmSheet {
    width: min(860px, calc(100vw - 5rem));
  }

  .je-cards--grid {
    gap: 0.75rem;
  }

  .je-cards--grid .je-card {
    padding: 0.75rem 0.85rem;
  }

  .je-cards--grid .je-card__img {
    width: 96px;
    height: 96px;
  }
}

/* iOS/Android: Auto-Zoom bei Fokus vermeiden (min. 16px in Eingabefeldern) */
@media screen and (max-width: 900px) {
  .je-order-page .je-checkout-form input:not([type="checkbox"]):not([type="radio"]),
  .je-order-page .je-checkout-form textarea,
  .je-order-page .je-checkout-street-input,
  .je-order-page .je-checkout-note,
  .je-order-page .je-sheet-note__input,
  .je-order-page .je-promo__row input,
  .je-order-page .je-tip__custom input,
  .je-order-page .je-plz-gate__row input,
  .je-order-page .je-preorder-picker select,
  .je-order-page #jeCheckoutSheet .je-checkout-form input:not([type="checkbox"]):not([type="radio"]),
  .je-order-page #jeCheckoutSheet .je-checkout-form textarea,
  .je-order-page #jeCheckoutSheet .je-checkout-note,
  .je-order-page #jeCheckoutSheet .je-plz-gate__row input,
  .je-order-page #jeCheckoutSheet .je-preorder-picker select {
    font-size: 16px;
  }
}
