:root {
  --teal: #3FA0AD;
  --teal-dark: #2D7A85;
  --teal-darker: #1E5A63;
  --teal-light: #7FC0CB;
  --teal-pale: #D4ECEF;
  --teal-hero: #A7D8E0;
  --gold: #E8B547;
  --gold-bright: #F5CF5A;
  --gold-dark: #B8862C;
  --pink: #F5A5B8;
  --pink-bright: #E87598;
  --pistachio: #A8C88A;
  --cream: #FEF8E8;
  --cream-warm: #FAEEC8;
  --white: #FFFFFF;
  --ink: #1A2E33;
  --ink-soft: #3D4F54;
  --muted: #7A8A8E;
  --shadow-sm: 0 2px 8px rgba(26,46,51,0.06);
  --shadow-md: 0 8px 24px rgba(26,46,51,0.10);
  --shadow-lg: 0 20px 50px rgba(26,46,51,0.18);
  --border: rgba(63,160,173,0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-round: 999px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ANNOUNCEMENT */
.announce {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.announce-track { display: flex; gap: 60px; animation: scroll 40s linear infinite; width: max-content; }
.announce-item { display: inline-flex; align-items: center; gap: 16px; white-space: nowrap; }
.announce-item::before { content: '✦'; color: var(--gold); font-size: 14px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  background: rgba(254,248,232,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 90;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(26,46,51,0.15);
}
.nav-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  color: var(--teal-dark);
  letter-spacing: -1.5px;
  line-height: 1;
}
.nav-links { display: flex; gap: 32px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.nav-links a { color: var(--ink); position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a.active::after, .nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-links a::after { width: 0; }
.nav-links a.active::after { width: 100%; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; gap: 12px; align-items: center; }
.lang-switcher {
  display: flex; gap: 2px; background: var(--teal-pale);
  padding: 4px; border-radius: var(--radius-round);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.lang-switcher button {
  padding: 5px 10px; border-radius: var(--radius-round);
  cursor: pointer; color: var(--teal-dark); transition: all 0.2s;
}
.lang-switcher button.active { background: var(--teal-dark); color: var(--cream); }
.cart-btn {
  background: var(--ink); color: var(--cream);
  padding: 11px 20px; border-radius: var(--radius-round);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; display: inline-flex; align-items: center;
  gap: 10px; transition: all 0.2s;
}
.cart-btn:hover { background: var(--teal-dark); transform: translateY(-2px); }
.cart-count {
  background: var(--gold); color: var(--ink);
  min-width: 22px; height: 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; padding: 0 6px;
}
.nav-toggle {
  display: none; width: 40px; height: 40px;
  border-radius: 50%; background: var(--cream-warm);
  align-items: center; justify-content: center; font-size: 20px;
}

/* MENU HERO */
.menu-hero {
  padding: 60px 40px 40px;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(245,207,90,0.2), transparent),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(245,165,184,0.18), transparent),
    linear-gradient(180deg, var(--cream) 0%, var(--teal-pale) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.menu-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.menu-hero-label {
  font-family: var(--font-hand);
  color: var(--pink-bright);
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}
.menu-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 18px;
}
.menu-hero-title em {
  font-style: italic;
  color: var(--teal-dark);
  position: relative;
}
.menu-hero-title em::after {
  content: ''; position: absolute;
  left: 0; bottom: 6px; width: 100%; height: 8px;
  background: var(--gold); z-index: -1; border-radius: 3px;
}
.menu-hero-lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 24px;
}
.menu-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--gold-bright);
  padding: 10px 22px; border-radius: var(--radius-round);
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* PRICE MODE SELECTOR */
.pricebar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  position: sticky;
  top: 80px;
  z-index: 80;
  box-shadow: var(--shadow-sm);
}
.pricebar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricebar-text {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.pricebar-text strong { color: var(--ink); font-weight: 700; }
.mode-selector {
  display: flex;
  gap: 4px;
  background: var(--teal-pale);
  padding: 5px;
  border-radius: var(--radius-round);
}
.mode-selector button {
  padding: 10px 18px;
  border-radius: var(--radius-round);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-darker);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mode-selector button.active {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.mode-selector .save {
  font-size: 10px;
  opacity: 0.7;
  margin-left: 4px;
}

/* CATEGORY FILTER PILLS */
.filters {
  padding: 16px 24px 6px;
  position: sticky;
  top: 161px;
  z-index: 70;
  background: var(--cream);
}
.filters-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-pill {
  padding: 7px 13px;
  border-radius: var(--radius-round);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}
.cat-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.cat-pill.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--gold);
}
.cat-pill .count {
  font-size: 11px;
  opacity: 0.6;
  font-weight: 600;
}
.cat-pill.active .count { opacity: 0.8; }
.cat-pill .emoji { font-size: 14px; }

/* PRODUCTS SECTION */
.menu-section {
  padding: 20px 40px 80px;
}
.menu-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.cat-group {
  margin-bottom: 60px;
  scroll-margin-top: 230px;
}
.cat-group-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.cat-group-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.cat-group-title em { font-style: italic; color: var(--teal-dark); }
.cat-group-emoji { font-size: 32px; }
.cat-group-count {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* PRODUCT CARD */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--teal-hero), var(--teal-pale));
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-savings-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--ink);
  color: var(--gold-bright);
  padding: 6px 12px;
  border-radius: var(--radius-round);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
/* Angebots-Badge (gads_offers33). Sitzt links oben, gegenüber vom
   "frisch"-Tag rechts — zwei Aussagen, die sich nicht überdecken dürfen. */
.product-offer-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: #C0392B;
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-round);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  z-index: 3;
  box-shadow: var(--shadow-md);
}
/* Auf Arabisch bleibt der "frisch"-Tag rechts (Regel weiter unten), also
   bleibt das Angebots-Badge links — sonst lägen beide übereinander. */
.product-habubu-hint {
  position: absolute;
  bottom: 10px; left: 10px;
  background: linear-gradient(135deg, var(--pink-bright), var(--gold-bright));
  color: var(--ink);
  padding: 5px 11px;
  border-radius: var(--radius-round);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
}
html[dir="rtl"] .product-habubu-hint { left: auto; right: 10px; }
.product-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.product-price { display: flex; flex-direction: column; gap: 2px; }
.product-price-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}
.product-price-new {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1;
}
/* "ab" prefix on multi-size products — smaller and lighter than the amount */
.product-price-from {
  font-family: var(--font-body, inherit);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}
.product-add {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.product-add:hover {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(90deg);
}

/* EMPTY */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

/* FOOTER */
.footer { background: var(--ink); color: var(--cream); padding: 80px 40px 30px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(254,248,232,0.1);
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  font-style: italic;
  color: var(--teal-light);
  margin-bottom: 8px;
  line-height: 1;
}
.footer-tagline {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-description {
  color: rgba(254,248,232,0.7);
  font-size: 14px;
  max-width: 340px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(254,248,232,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  transition: all 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--ink); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  margin-bottom: 16px; color: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(254,248,232,0.7); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(254,248,232,0.5);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--cream); }

/* CART DRAWER (same as index) */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,46,51,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%; max-width: 440px;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.cart-head {
  padding: 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900; color: var(--ink);
}
.cart-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--muted); padding: 80px 20px; }
.cart-empty .big { font-size: 60px; margin-bottom: 10px; }
.cart-item {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border); align-items: center;
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden; background: var(--teal-pale);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 4px; line-height: 1.2;
}
.cart-item-price { font-size: 13px; color: var(--teal-dark); font-weight: 700; }
.cart-qty { display: inline-flex; gap: 8px; align-items: center; margin-top: 6px; }
.cart-qty button {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); font-size: 14px; font-weight: 700; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-qty span { font-weight: 700; font-size: 13px; min-width: 20px; text-align: center; }
.cart-remove { color: var(--muted); font-size: 18px; cursor: pointer; }
.cart-foot { padding: 24px; padding-bottom: calc(24px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: var(--white); }
.cart-mode {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 16px; padding: 6px;
  background: var(--teal-pale); border-radius: var(--radius-round);
}
.cart-mode button {
  padding: 10px; border-radius: var(--radius-round);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal-darker); transition: all 0.2s;
}
.cart-mode button.active { background: var(--ink); color: var(--cream); }
.cart-total {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 14px;
}
.cart-total-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.cart-total-value {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 900; color: var(--ink);
}
.cart-checkout {
  width: 100%; background: var(--ink); color: var(--cream);
  padding: 16px; border-radius: var(--radius-round);
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.2s;
}
.cart-checkout:hover:not(:disabled) { background: var(--teal-dark); }
.cart-checkout:disabled { opacity: 0.4; cursor: not-allowed; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 100%; max-width: 340px;
  height: 100vh; height: 100dvh; background: var(--cream);
  z-index: 150; transform: translateX(100%);
  transition: transform 0.3s;
  padding: 70px 30px 30px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 16px 0;
  font-size: 18px; font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); font-size: 20px;
}

/* TOAST */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--cream);
  padding: 14px 24px; border-radius: var(--radius-round);
  font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-lg); z-index: 300;
  transition: transform 0.35s;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .nav { padding: 10px 14px; gap: 8px; }
  .nav-logo-text { font-size: 22px; }
  .nav-logo-wrap { width: 40px; height: 40px; }
  .nav-right { gap: 6px; }
  .lang-switcher { padding: 3px; font-size: 10px; }
  .lang-switcher button { padding: 4px 8px; }
  .cart-btn { padding: 9px 12px; gap: 6px; font-size: 11px; }
  .cart-btn .cart-label { display: none; }
  .cart-count { min-width: 18px; height: 18px; font-size: 10px; }
  .nav-toggle { width: 36px; height: 36px; }

  .menu-hero { padding: 40px 20px 30px; }
  .pricebar { padding: 14px 20px; top: 66px; }
  .pricebar-inner { gap: 14px; }
  .filters {
    padding: 12px 0 10px;
    top: 138px;
    /* Horizontal scroll on mobile so pills stay on a single line and don't push products offscreen */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filters-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 20px;
    width: max-content;
    min-width: 100%;
  }
  .cat-pill { flex-shrink: 0; white-space: nowrap; padding: 9px 14px; font-size: 12px; }
  .menu-section { padding: 20px 20px 60px; }
  /* Large scroll-margin-top so category headers and first product are never hidden under sticky bars */
  .cat-group { margin-bottom: 40px; scroll-margin-top: 210px; }
  .footer { padding: 50px 20px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .cart-drawer { max-width: 100%; }
  .products-grid { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .mode-selector button { padding: 8px 12px; font-size: 11px; }
  .mode-selector .save { display: none; }
}

/* ============================================
   PRODUCT TEMP BADGE (Hot/Cold/Extra-cold)
   ============================================ */
.product-temp {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: var(--radius-round);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-temp.hot    { background: rgba(234, 88, 12, 0.92);  color: #fff; }
.product-temp.cold   { background: rgba(59, 130, 195, 0.88); color: #fff; }
.product-temp.xcold  { background: rgba(14, 100, 160, 0.95); color: #fff; }
html[dir="rtl"] .product-temp { left: auto; right: 10px; }

/* ============================================
   HABUBU ADDON MODAL (Frez Cup only)
   ============================================ */
.addon-overlay {
  position: fixed; inset: 0;
  background: rgba(26,46,51,0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.addon-overlay.active { opacity: 1; pointer-events: auto; }

.addon-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 92%;
  max-width: 480px;
  max-height: 85vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(26,46,51,0.3);
  z-index: 201;
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.addon-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1; pointer-events: auto;
}
.addon-head {
  padding: 20px 24px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
}
.addon-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.addon-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.addon-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.addon-section-title {
  padding: 16px 24px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.addon-options {
  padding: 4px 12px 16px;
}
.addon-body {
  overflow-y: auto;
  flex: 1;
  padding-bottom: 8px;
}
.addon-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s;
  border: 2px solid transparent;
}
.addon-option:hover { background: var(--teal-pale); }
.addon-option.selected {
  background: var(--teal-pale);
  border-color: var(--teal-dark);
}
.addon-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}
.addon-option.selected .addon-radio {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}
.addon-option.selected .addon-radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--white);
  border-radius: 50%;
}
.addon-label {
  flex: 1;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.addon-price {
  font-weight: 800;
  color: var(--teal-dark);
  font-size: 14px;
}
.addon-price.free { color: var(--muted); font-weight: 600; }
.addon-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
}
.addon-total {
  font-size: 14px;
  color: var(--ink-soft);
}
.addon-total strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--teal-darker);
  font-weight: 900;
  margin-left: 6px;
}
.addon-confirm {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--radius-round);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.2s;
}
.addon-confirm:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* ============================================
   RTL / ARABIC
   ============================================ */
html[dir="rtl"] body {
  font-family: 'Cairo', 'Inter', system-ui, sans-serif;
}
html[dir="rtl"] .menu-hero-label,
html[dir="rtl"] .footer-tagline,
html[dir="rtl"] .cat-group-title em {
  font-family: 'Cairo', cursive; font-weight: 700;
}
html[dir="rtl"] .announce-track { animation-direction: reverse; }
html[dir="rtl"] .nav-links,
html[dir="rtl"] .filters-inner,
html[dir="rtl"] .products-grid,
html[dir="rtl"] .cat-group-head,
html[dir="rtl"] .pricebar-inner,
html[dir="rtl"] .footer-top { direction: rtl; }
html[dir="rtl"] .product-savings-tag { left: auto; right: 12px; transform: rotate(6deg); }
html[dir="rtl"] .menu-hero-title { letter-spacing: 0; }
html[dir="rtl"] .menu-hero-title em::after { left: auto; right: 0; }

/* ============================================
   ALLERGENS (Task 2)
   ============================================ */
.product-allergens {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-soft);
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  margin-top: -2px;
}
.product-allergens-label {
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-inline-end: 4px;
}
.addon-allergens { padding: 4px 24px 18px; }
.allergen-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.allergen-chip {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--gold-dark);
  border-radius: var(--radius-round);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
}
.allergen-note {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

/* Greift nur, wenn die Allergenliste aus dem Offline-Katalog stammt, weil
   public.products.list nicht durchkam. Eine gespeicherte Liste darf nicht
   aussehen wie eine gepflegte — deshalb sichtbar abgesetzt, nicht dezent. */
.allergen-note-stale {
  margin-top: 8px;
  color: #9A3412;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-sm);
  padding: 6px 9px;
  font-weight: 600;
}
.product-allergens-stale {
  font-weight: 900;
  color: #9A3412;
  cursor: help;
}

/* ============================================
   CART FOOTER EXTRAS (Task 4)
   ============================================ */
.cart-suggest, .cart-minbar { display: none; }
.cart-suggest.is-shown, .cart-minbar.is-shown { display: block; }
.cart-suggest { margin-bottom: 14px; }
.cart-suggest-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.cart-suggest-row { display: flex; gap: 8px; }
.cart-suggest-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.cart-suggest-item:hover {
  background: var(--teal-pale);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}
.cart-suggest-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--teal-pale);
}
.cart-suggest-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-suggest-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-suggest-price { font-size: 11px; font-weight: 800; color: var(--teal-dark); }
.cart-suggest-add {
  position: absolute;
  top: 4px; inset-inline-end: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}
.cart-minbar {
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 14px;
}
.cart-minbar-text { font-size: 12px; font-weight: 600; color: var(--ink-soft); line-height: 1.4; }
.cart-minbar-text strong { color: var(--gold-dark); font-weight: 900; }
.cart-minbar-track {
  margin-top: 7px;
  height: 6px;
  border-radius: var(--radius-round);
  background: rgba(26,46,51,0.10);
  overflow: hidden;
}
.cart-minbar-track span {
  display: block;
  height: 100%;
  border-radius: var(--radius-round);
  background: var(--gold);
  transition: width 0.3s;
}

/* Free-delivery progress inside the cart drawer.
   Separate from .cart-minbar: that one is the MINIMUM order value, this one is
   the threshold above which delivery becomes free. Both can be visible. */
.cart-freeship{display:none;margin-top:8px;background:#f2f9f4;border:1px solid #d5e9dc;
  border-radius:12px;padding:10px 12px}
.cart-freeship.is-shown{display:block}
.cart-freeship.is-done{background:#eefaf1;border-color:#bfe3cc}
.cart-freeship-top{display:flex;justify-content:space-between;align-items:center;gap:8px;
  font-size:12px;font-weight:800;color:var(--teal-dark);margin-bottom:7px}
.cart-freeship-track{height:9px;background:#e3eee7;border-radius:99px;overflow:hidden}
.cart-freeship-track span{display:block;height:100%;border-radius:99px;
  background:linear-gradient(90deg,var(--teal),#7cc6b0 60%,var(--gold));
  transition:width .55s cubic-bezier(.3,1,.4,1)}
.cart-freeship-hint{font-size:12px;color:#5f7169;margin-top:7px;line-height:1.5}
.cart-freeship-hint b{color:var(--teal-dark)}
