/* ========== Menu page base (mobile-first) ========== */
.menu-page { min-height: 100vh; display: flex; flex-direction: column; }
.menu-page-inner { flex: 1; display: flex; flex-direction: column; }
.menu-page main { padding-bottom: 5rem; }

/* Header: navbar değil, nötr alan - logo açık/koyu her türlü görünsün (tema rengi yok) */
.menu-header {
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 1rem;
  text-align: center;
}
.menu-header .menu-logo {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: min(200px, 50vw);
  height: auto;
  min-height: 60px;
  max-height: 90px;
  object-fit: contain;
  border: none;
}
@media (min-width: 640px) {
  .menu-header .menu-logo { min-height: 70px; max-height: 100px; max-width: 220px; }
}
.menu-header .menu-company-name { color: #111827; margin: 0; }
.menu-header .menu-description { color: #6b7280; }
.menu-header-logo-wrap { display: inline-block; width: 100%; }
.menu-header-logo-wrap-colored {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Sticky category nav - mobilde kompakt, yatay kaydırma */
.menu-cat-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.menu-cat-nav::-webkit-scrollbar { display: none; }
.menu-cat-nav-inner {
  display: flex;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  align-items: center;
  min-width: min-content;
  padding-inline-end: 1rem;
}
@media (min-width: 640px) {
  .menu-cat-nav-inner { gap: 0.5rem; padding: 0.75rem 1rem; padding-inline-end: 1.5rem; }
}
.menu-cat-nav a {
  flex-shrink: 0;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
@media (min-width: 640px) {
  .menu-cat-nav a { padding: 0.5rem 1rem; font-size: 0.875rem; }
}
.menu-cat-nav a:hover { transform: translateY(-1px); }
.menu-cat-nav a.active { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

/* Tema 1, 2, 5: Kategori butonları (filtre) */
.menu-cat-nav-buttons .menu-cat-nav-inner { flex-wrap: wrap; justify-content: center; }
.menu-cat-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.menu-cat-btn:hover { transform: translateY(-2px); }
.menu-cat-btn.active { box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* Filtre modu: sadece seçili kategori bölümü görünsün */
.menu-filter-section {
  display: none;
  animation: menuFadeIn 0.35s ease;
}
.menu-filter-section.menu-section-visible {
  display: block;
}
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tema 3: Accordion */
.menu-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-accordion-item {
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.menu-accordion-item.menu-accordion-open { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.menu-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border: none;
  background: inherit;
  color: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.menu-accordion-trigger:hover { background: rgba(0,0,0,0.04); }
.menu-accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  position: relative;
}
.menu-accordion-icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -60%) rotate(45deg);
}
.menu-accordion-open .menu-accordion-icon { transform: rotate(180deg); }
.menu-accordion-content {
  overflow: visible;
  transition: max-height 0.4s ease-out;
}
.menu-accordion-content[hidden] { display: block !important; max-height: 0; opacity: 0; overflow: hidden; }
.menu-accordion-content:not([hidden]) { max-height: 8000px; opacity: 1; }
.menu-accordion-content > .grid { padding: 0 1.25rem 1.25rem; }
.menu-accordion-content > .text-sm { padding: 0 1.25rem 0.5rem; }

/* Section anchors for smooth scroll */
.menu-section { scroll-margin-top: 4.5rem; }

/* Product card base - tıklanmaz, bilgi kartı */
.menu-product-card {
  transition: all 0.25s ease;
  cursor: pointer;
}
.menu-product-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.menu-product-card img[loading="lazy"] { min-height: 120px; background: var(--menu-card-bg, #f3f4f6); }

/* Görseli olmayan ürünler için placeholder stili */
.menu-product-no-image {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: inherit;
  overflow: hidden;
}
.menu-product-no-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.8) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.02) 0%, transparent 40%);
}
.menu-product-no-image-icon {
  width: 48px;
  height: 48px;
  color: #cbd5e1;
  opacity: 0.6;
}

/* Tema 1: Luxury - Krem/altın placeholder */
.menu-theme-1 .menu-product-no-image {
  background: linear-gradient(135deg, #faf8f5 0%, #f0ece4 100%);
}
.menu-theme-1 .menu-product-no-image-icon { color: #d4c4a8; }

/* Tema 2: Cafe - Mavi tonlu placeholder */
.menu-theme-2 .menu-product-no-image {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}
.menu-theme-2 .menu-product-no-image-icon { color: #93c5fd; }

/* Tema 3: Traditional - Amber placeholder */
.menu-theme-3 .menu-product-no-image {
  background: linear-gradient(135deg, #fffbf5 0%, #fef3c7 100%);
}
.menu-theme-3 .menu-product-no-image-icon { color: #fcd34d; }

/* Tema 4: Street Food - Teal placeholder */
.menu-theme-4 .menu-product-no-image {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}
.menu-theme-4 .menu-product-no-image-icon { color: #5eead4; }

/* Tema 5: Minimal/Glass - Mor placeholder */
.menu-theme-5 .menu-product-no-image {
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.menu-theme-5 .menu-product-no-image::before {
  background: 
    radial-gradient(circle at 25% 25%, rgba(167,139,250,0.1) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(196,181,253,0.1) 0%, transparent 40%);
}
.menu-theme-5 .menu-product-no-image-icon { color: #c4b5fd; }
/* Modern ürün kartı içerik alanı */
.menu-product-card-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.menu-product-card-info {
  flex: 1;
  min-width: 0;
}
.menu-product-name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
}
.menu-product-description {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-product-card .price {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

/* Drawer (slide-over) */
.menu-drawer-backdrop {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.menu-drawer-backdrop.show { opacity: 1; visibility: visible; }
.menu-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 50;
  width: 100%; max-width: 28rem;
  background: var(--menu-drawer-bg, #fff);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: auto;
}
.menu-drawer.show { transform: translateX(0); }
.menu-drawer-content { padding: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════════
   YENİ GÖRSEL KATEGORİ KARTLARI
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Kategori Grid Container */
.menu-category-grid {
  padding: 1.25rem 1rem;
}
.menu-category-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  max-width: 800px;
  margin: 0 auto;
  isolation: isolate;
}
@media (min-width: 640px) {
  .menu-category-grid-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .menu-category-grid-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Kategori Kart */
.menu-category-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  border: none;
  cursor: pointer;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Masaüstü: hover efektleri */
@media (hover: hover) and (pointer: fine) {
  .menu-category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .menu-category-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 10;
  }
}

/* Mobil: active/touch efektleri (hover yok) */
.menu-category-card:active {
  transform: scale(0.96);
  transition: transform 0.1s ease;
}

/* Kategori Kart Background */
.menu-category-card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.menu-category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-category-card:hover .menu-category-card-img {
    transform: scale(1.1);
  }
}
.menu-category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  transition: opacity 0.2s ease;
}
/* Mobil touch feedback - overlay hafifler */
.menu-category-card:active .menu-category-card-overlay {
  opacity: 0.7;
}

/* Kategori Kart Content */
.menu-category-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
  text-align: center;
  pointer-events: none;
}
.menu-category-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
@media (min-width: 640px) {
  .menu-category-card-icon { font-size: 3rem; }
}
.menu-category-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.2;
}
@media (min-width: 640px) {
  .menu-category-card-title { font-size: 1.125rem; }
}
.menu-category-card-count {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Geri Butonu ve Navigation */
.menu-back-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 30;
  background: inherit;
}
.menu-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.menu-back-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.menu-current-category {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

/* Ürün Grid - Ferah ve modern spacing */
.menu-products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  padding: 1rem 1rem 2.5rem;
}
@media (min-width: 640px) {
  .menu-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.25rem 1.25rem 3rem;
  }
}
@media (min-width: 1024px) {
  .menu-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.menu-products-grid-sm {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  padding: 0 0 1rem;
}
@media (min-width: 480px) {
  .menu-products-grid-sm { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* Kategori Açıklama */
.menu-category-desc {
  padding: 0 1rem 1rem;
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   YENİ ACCORDION STİLLERİ (Görsel Kartlı)
   ═══════════════════════════════════════════════════════════════════════════════ */
.menu-accordion-wrap {
  padding: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.menu-accordion-item {
  margin-bottom: 0.75rem;
  border-radius: 1rem;
  overflow: hidden;
}
.menu-accordion-trigger {
  position: relative;
  width: 100%;
  min-height: 100px;
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.menu-accordion-trigger-bg {
  position: absolute;
  inset: 0;
}
.menu-accordion-trigger-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-accordion-trigger-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}
.menu-accordion-trigger-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  color: #fff;
}
.menu-accordion-icon-emoji {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.menu-accordion-trigger-text {
  flex: 1;
  text-align: left;
}
.menu-accordion-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.menu-accordion-count {
  display: block;
  font-size: 0.8125rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}
.menu-accordion-arrow {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}
.menu-accordion-arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}
.menu-accordion-open .menu-accordion-arrow {
  transform: rotate(180deg);
}
.menu-accordion-content {
  background: inherit;
  overflow: hidden;
}
.menu-accordion-content[hidden] {
  display: block !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.menu-accordion-content:not([hidden]) {
  max-height: 8000px;
  opacity: 1;
  padding: 1rem;
}
.menu-accordion-desc {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   YENİ BENTO NAVIGATION STİLLERİ
   ═══════════════════════════════════════════════════════════════════════════════ */
.menu-bento-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-bento-nav::-webkit-scrollbar { display: none; }
.menu-bento-nav-inner {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  min-width: min-content;
}
.menu-bento-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.menu-bento-nav-item:hover {
  transform: translateY(-2px);
}
.menu-bento-nav-item.active {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.menu-bento-nav-thumb {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.menu-bento-nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-bento-nav-text {
  font-size: 0.6875rem;
  font-weight: 500;
  white-space: nowrap;
  max-width: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 640px) {
  .menu-bento-nav-thumb {
    width: 56px;
    height: 56px;
  }
  .menu-bento-nav-text {
    font-size: 0.75rem;
    max-width: 72px;
  }
}
.menu-bento-content {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TEMA 1: LUXURY (Fine Dining)
   Krem/altın tonları, zarif tipografi - Lüks restoran konsepti
   Layout: Geniş kartlar, büyük padding, yatay liste
   ═══════════════════════════════════════════════════════════════════════════════ */
.menu-theme-1.menu-page { 
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%); 
  color: #3d3529; 
}
.menu-theme-1 .menu-header { 
  background: #fff !important; 
  border-bottom: 1px solid rgba(180,144,80,0.15);
}
.menu-theme-1 .menu-header .menu-company-name { 
  color: #2c2418; 
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.menu-theme-1 .menu-header .menu-description { color: #7a6f5d; font-style: italic; }
/* T1: Geri Nav */
.menu-theme-1 .menu-back-nav { 
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,144,80,0.12);
}
.menu-theme-1 .menu-back-btn { 
  background: linear-gradient(135deg, #b4905020 0%, #d4b87020 100%); 
  color: #8b7355;
  border: 1px solid rgba(180,144,80,0.2);
}
.menu-theme-1 .menu-back-btn:hover { background: rgba(180,144,80,0.15); }
.menu-theme-1 .menu-current-category { 
  color: #2c2418; 
  font-weight: 300; 
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.menu-theme-1 .menu-category-desc { color: #7a6f5d; font-style: italic; }
/* T1: Ürün Kartları - Yatay, görsel sola yapışık, kenar yumuşatma */
.menu-theme-1 .menu-products-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.menu-theme-1 .menu-product-card { 
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff; 
  border: 1px solid rgba(180,144,80,0.1);
  color: #3d3529;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(180,144,80,0.06);
  padding: 0;
  padding-right: 3.5rem;
}
.menu-theme-1 .menu-product-card:hover { 
  box-shadow: 0 6px 20px rgba(180,144,80,0.12);
}
/* T1: Görsel - sola, üste, alta yapışık */
.menu-theme-1 .menu-product-card > div:first-child {
  flex-shrink: 0;
  margin: 0;
  position: static !important;
}
.menu-theme-1 .menu-product-card .aspect-video,
.menu-theme-1 .menu-product-card .menu-product-no-image {
  width: 110px;
  height: 100%;
  min-height: 100px;
  aspect-ratio: auto;
  flex-shrink: 0;
  border-radius: 0;
  position: static !important;
}
.menu-theme-1 .menu-product-card img {
  width: 110px;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 640px) {
  .menu-theme-1 .menu-product-card .aspect-video,
  .menu-theme-1 .menu-product-card .menu-product-no-image,
  .menu-theme-1 .menu-product-card img {
    width: 140px;
    min-height: 110px;
  }
}
/* T1: Metin alanı */
.menu-theme-1 .menu-product-card .menu-product-name { 
  color: #2c2418; 
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.menu-theme-1 .menu-product-card .menu-product-description { 
  color: #7a6f5d; 
  font-style: italic;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.menu-theme-1 .menu-product-card .price { 
  color: #b49050; 
  font-weight: 600;
  font-size: 1rem;
}
/* T1: İçerik alanı - padding */
.menu-theme-1 .menu-product-card .p-3,
.menu-theme-1 .menu-product-card .p-4 {
  padding: 0.75rem 0.875rem !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
/* T1: Etiket - kartın sağ üstü */
.menu-theme-1 .menu-product-card .product-label {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 20;
  display: inline-flex !important;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #f5f0e8 0%, #ede6db 100%) !important;
  border: none !important;
  border-bottom-left-radius: 0.75rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 0.375rem 0.625rem !important;
  font-size: 0.6875rem;
}
.menu-theme-1 .menu-product-card .product-label-text {
  color: #7a6f5d !important;
  font-weight: 600;
  font-size: 0.6875rem;
}
.menu-theme-1 .menu-product-card .product-label-icon {
  font-size: 0.75rem;
}
/* T1: Beğen butonu - kartın sağ altı, "56 ♡" formatında */
.menu-theme-1 .menu-product-card .product-like-btn {
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 20;
  background: linear-gradient(135deg, #f5f0e8 0%, #ede6db 100%);
  border: none;
  border-top-left-radius: 0.75rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.04);
  color: #b49050;
  padding: 0.375rem 0.5rem;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
}
.menu-theme-1 .menu-product-card .product-like-btn:hover {
  background: linear-gradient(135deg, #ede6db 0%, #e5ddd0 100%);
  transform: none !important;
}
.menu-theme-1 .menu-product-card .product-like-btn svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
}
.menu-theme-1 .menu-product-card .product-like-btn .heart-empty,
.menu-theme-1 .menu-product-card .product-like-btn .heart-filled {
  width: 14px !important;
  height: 14px !important;
}
.menu-theme-1 .menu-product-card .product-like-btn .like-count {
  position: static !important;
  display: inline !important;
  background: none !important;
  min-width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8b7355;
  order: -1;
  line-height: 1;
}
.menu-theme-1 .menu-product-card .product-like-btn.liked {
  background: linear-gradient(135deg, #b49050 0%, #a07d3a 100%);
  color: #fff;
}
.menu-theme-1 .menu-product-card .product-like-btn.liked .like-count {
  color: #fff !important;
}
.menu-theme-1 .menu-drawer-backdrop.show { background: rgba(44,36,24,0.4); }
.menu-theme-1 .menu-drawer { --menu-drawer-bg: #fff; color: #3d3529; }
.menu-theme-1 .menu-drawer h3 { color: #2c2418; }
.menu-theme-1 .menu-drawer .price { color: #b49050; }
.menu-theme-1 .menu-footer { background: #faf8f5; border-top: 1px solid rgba(180,144,80,0.1); }

/* ═══════════════════════════════════════════════════════════════════════════════
   TEMA 2: CAFE (Modern Bistro)
   Temiz beyaz, mavi vurgulu - Modern cafe konsepti
   Layout: Kompakt grid, yuvarlak köşeler, hafif gölge
   ═══════════════════════════════════════════════════════════════════════════════ */
.menu-theme-2.menu-page { background: #f8fafc; color: #1e293b; }
.menu-theme-2 .menu-header { 
  background: #fff !important; 
  border-bottom: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.menu-theme-2 .menu-header .menu-company-name { 
  color: #0f172a; 
  font-weight: 700; 
  letter-spacing: -0.02em; 
}
.menu-theme-2 .menu-header .menu-description { color: #64748b; }
/* T2: Geri Nav */
.menu-theme-2 .menu-back-nav { 
  background: rgba(248,250,252,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}
.menu-theme-2 .menu-back-btn { background: #e2e8f0; color: #334155; border-radius: 9999px; }
.menu-theme-2 .menu-back-btn:hover { background: #cbd5e1; }
.menu-theme-2 .menu-current-category { color: #0f172a; font-weight: 600; }
.menu-theme-2 .menu-category-desc { color: #64748b; }
/* T2: Ürün Kartları - Kompakt grid, pill butonlar */
.menu-theme-2 .menu-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .menu-theme-2 .menu-products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.menu-theme-2 .menu-product-card { 
  background: #fff; 
  border: none;
  color: #1e293b; 
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}
.menu-theme-2 .menu-product-card:hover { 
  box-shadow: 0 12px 28px rgba(59,130,246,0.12), 0 4px 8px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}
.menu-theme-2 .menu-product-card .menu-product-name { 
  color: #0f172a; 
  font-weight: 600;
  font-size: 0.9375rem;
}
.menu-theme-2 .menu-product-card .menu-product-description { 
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.menu-theme-2 .menu-product-card .price { 
  color: #3b82f6; 
  font-weight: 700;
  background: #eff6ff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  font-size: 0.875rem;
}
.menu-theme-2 .menu-drawer { --menu-drawer-bg: #fff; color: #1e293b; border-left: none; box-shadow: -8px 0 32px rgba(0,0,0,0.1); }
.menu-theme-2 .menu-footer { background: #fff; border-top: 1px solid #e2e8f0; }

/* ═══════════════════════════════════════════════════════════════════════════════
   TEMA 3: TRADITIONAL (Sıcak / Geleneksel)
   Sıcak amber tonları - Ev yapımı konsept
   Layout: Büyük kartlar, belirgin gölge, rounded
   ═══════════════════════════════════════════════════════════════════════════════ */
.menu-theme-3.menu-page { 
  background: linear-gradient(180deg, #fffbf5 0%, #fef7ed 100%); 
  color: #451a03; 
}
.menu-theme-3 .menu-header { 
  background: #fff !important;
  border-bottom: none;
  box-shadow: 0 4px 16px rgba(180,83,9,0.06);
}
.menu-theme-3 .menu-header .menu-company-name { 
  color: #78350f; 
  font-weight: 700;
  font-size: 1.5rem;
}
.menu-theme-3 .menu-header .menu-description { color: #a16207; }
/* T3: Accordion - Görsel Kartlı */
.menu-theme-3 .menu-accordion-wrap { background: transparent; padding: 1rem; }
.menu-theme-3 .menu-accordion-item { 
  background: #fff; 
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(180,83,9,0.08);
  margin-bottom: 1rem;
  overflow: hidden;
}
.menu-theme-3 .menu-accordion-trigger-overlay {
  background: linear-gradient(to right, rgba(120,53,15,0.8) 0%, rgba(120,53,15,0.4) 100%);
}
.menu-theme-3 .menu-accordion-title { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.2); font-weight: 600; }
.menu-theme-3 .menu-accordion-count { color: rgba(255,255,255,0.85); }
.menu-theme-3 .menu-accordion-arrow::before { border-color: #fff; }
.menu-theme-3 .menu-accordion-content { background: #fff; padding: 1.5rem; }
.menu-theme-3 .menu-accordion-desc { color: #a16207; margin-bottom: 1.25rem; }
/* T3: Ürün Kartları - Büyük, belirgin, sıcak */
.menu-theme-3 .menu-products-grid,
.menu-theme-3 .menu-products-grid-sm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .menu-theme-3 .menu-products-grid,
  .menu-theme-3 .menu-products-grid-sm { grid-template-columns: repeat(2, 1fr); }
}
.menu-theme-3 .menu-product-card { 
  background: #fff; 
  border: none;
  color: #451a03;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(180,83,9,0.08);
  transition: all 0.3s ease;
}
.menu-theme-3 .menu-product-card:hover { 
  box-shadow: 0 12px 32px rgba(180,83,9,0.15);
  transform: translateY(-2px);
}
.menu-theme-3 .menu-product-card .menu-product-name { 
  color: #78350f; 
  font-weight: 700;
  font-size: 1.0625rem;
}
.menu-theme-3 .menu-product-card .menu-product-description { 
  color: #a16207;
  font-size: 0.875rem;
  line-height: 1.6;
}
.menu-theme-3 .menu-product-card .price { 
  color: #d97706; 
  font-weight: 700;
  font-size: 1.125rem;
}
.menu-theme-3 .menu-footer { background: #fffbf5; border-top: 1px solid rgba(180,83,9,0.08); }
.menu-theme-3 .menu-drawer { --menu-drawer-bg: #fff; border-radius: 1.5rem 0 0 1.5rem; box-shadow: -8px 0 32px rgba(180,83,9,0.1); }

/* ═══════════════════════════════════════════════════════════════════════════════
   TEMA 4: STREET FOOD (Sokak Lezzetleri)
   Enerjik coral/teal - Cesur ve dinamik
   Layout: Masonry benzeri grid, bold tipografi, renkli aksan
   ═══════════════════════════════════════════════════════════════════════════════ */
.menu-theme-4.menu-page { 
  background: linear-gradient(180deg, var(--menu-theme4-bg-start, #fffaf3) 0%, var(--menu-theme4-bg-end, #fff4e6) 100%);
  color: #2f2417;
}
.menu-theme-4 .menu-header { 
  background: #ffffff !important;
  border-bottom: 2px solid var(--menu-accent-border);
}
.menu-theme-4 .menu-header .menu-company-name { 
  color: #7a3b15;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 1.375rem;
}
.menu-theme-4 .menu-header .menu-description { color: #a16207; font-weight: 500; }
/* T4: Bento Navigation */
.menu-theme-4 .menu-bento-nav { 
  background: linear-gradient(180deg, var(--menu-theme4-bg-start, #fffdf9) 0%, var(--menu-theme4-bg-end, #fff2de) 100%);
  border-bottom: 1px solid var(--menu-accent-border);
  box-shadow: 0 3px 10px rgba(122,59,21,0.08);
  top: var(--dinein-sticky-offset, 0px);
}
.menu-theme-4 .menu-bento-nav-item { 
  background: transparent;
  color: var(--menu-accent-solid);
  border-radius: 0.75rem;
}
.menu-theme-4 .menu-bento-nav-item:hover { 
  background: var(--menu-theme4-bg-end, #fff2de);
  color: var(--menu-accent-solid);
}
.menu-theme-4 .menu-bento-nav-item.active { 
  background: var(--menu-accent-gradient);
  color: #fff;
  box-shadow: var(--menu-accent-shadow);
}
.menu-theme-4 .menu-bento-nav-thumb {
  border: 2px solid var(--menu-accent-border);
  border-radius: 0.5rem;
}
.menu-theme-4 .menu-bento-nav-item.active .menu-bento-nav-thumb {
  border-color: #fff;
}
.menu-theme-4 .menu-bento-nav-text { color: inherit; font-weight: 600; }
.menu-theme-4 .menu-bento-content { background: transparent; }
.menu-theme-4 .menu-section { scroll-margin-top: calc(var(--dinein-sticky-offset, 0px) + 4.5rem); }
/* T4: Section */
.menu-theme-4 .menu-section { 
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(122,59,21,0.08);
}
.menu-theme-4 .menu-section-title { 
  color: #7a3b15;
  border: none;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-theme-4 .menu-section-title::before {
  content: '';
  width: 4px;
  height: 1.25rem;
  background: var(--menu-accent-gradient);
  border-radius: 2px;
}
/* T4: Ürün Kartları - Cesur, renkli */
.menu-theme-4 .menu-bento-grid { 
  display: grid; 
  gap: 1rem; 
  grid-template-columns: repeat(2, 1fr); 
}
@media (min-width: 640px) { 
  .menu-theme-4 .menu-bento-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } 
}
.menu-theme-4 .menu-product-card { 
  background: #fff; 
  border: 1px solid var(--menu-accent-border);
  color: #2f2417;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s ease;
}
.menu-theme-4 .menu-product-card.bento-large { grid-column: span 2; }
.menu-theme-4 .menu-product-card:hover { 
  border-color: var(--menu-accent-solid);
  box-shadow: var(--menu-accent-shadow-lg);
  transform: translateY(-3px);
}
.menu-theme-4 .menu-product-card .menu-product-name { 
  color: #7a3b15;
  font-weight: 800;
  font-size: 0.9375rem;
}
.menu-theme-4 .menu-product-card .menu-product-description { 
  color: #9a6b2f;
  font-size: 0.8125rem;
}
.menu-theme-4 .menu-product-card .price { 
  color: #fff;
  font-weight: 800;
  background: var(--menu-accent-gradient);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  display: inline-block;
  font-size: 0.9375rem;
}
.menu-theme-4 .menu-drawer { --menu-drawer-bg: #fff; color: #2f2417; border-left: 3px solid var(--menu-accent-solid); }
.menu-theme-4 .menu-footer { background: #fff; border-top: 2px solid var(--menu-accent-border); }

/* ═══════════════════════════════════════════════════════════════════════════════
   TEMA 5: MINIMAL (Modern Minimalist) - GLASSMORPHISM
   Açık zemin üzerinde cam efekti, mor/lavanta vurgulu
   Layout: Geniş spacing, cam kartlar, soft blur
   ═══════════════════════════════════════════════════════════════════════════════ */
.menu-theme-5.menu-page { 
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 30%, #ede9fe 60%, #e0e7ff 100%); 
  color: #3730a3; 
  min-height: 100vh; 
  position: relative; 
}
.menu-theme-5 .menu-bg-image {
  position: fixed; inset: 0; z-index: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(167,139,250,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(196,181,253,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(221,214,254,0.1) 0%, transparent 70%);
}
.menu-theme-5 .menu-bg-overlay { display: none; }
.menu-theme-5 .menu-header { 
  position: relative; 
  z-index: 2;
  background: rgba(255,255,255,0.6) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(167,139,250,0.15);
  box-shadow: 0 4px 24px rgba(139,92,246,0.06);
}
.menu-theme-5 .menu-header .menu-company-name { 
  color: #4c1d95; 
  font-weight: 600; 
  letter-spacing: -0.01em;
}
.menu-theme-5 .menu-header .menu-description { color: #7c3aed; }
/* T5: Geri Nav - Glass */
.menu-theme-5 .menu-back-nav { 
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(167,139,250,0.12);
}
.menu-theme-5 .menu-back-btn { 
  background: rgba(139,92,246,0.1); 
  color: #7c3aed;
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 9999px;
}
.menu-theme-5 .menu-back-btn:hover { background: rgba(139,92,246,0.15); }
.menu-theme-5 .menu-current-category { color: #4c1d95; font-weight: 600; }
.menu-theme-5 .menu-filter-content { position: relative; z-index: 2; }
.menu-theme-5 .menu-category-desc { color: #7c3aed; }
/* T5: Ürün Kartları - Glassmorphism */
.menu-theme-5 .menu-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .menu-theme-5 .menu-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (min-width: 1024px) {
  .menu-theme-5 .menu-products-grid { grid-template-columns: repeat(3, 1fr); }
}
.menu-theme-5 .menu-product-card { 
  background: rgba(255,255,255,0.55); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); 
  border: 1px solid rgba(255,255,255,0.6); 
  color: #3730a3; 
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139,92,246,0.08);
  transition: all 0.3s ease;
}
.menu-theme-5 .menu-product-card:hover { 
  background: rgba(255,255,255,0.7);
  box-shadow: 0 16px 48px rgba(139,92,246,0.15);
  transform: translateY(-4px);
  border-color: rgba(167,139,250,0.3);
}
.menu-theme-5 .menu-product-card .menu-product-name { 
  color: #4c1d95;
  font-weight: 600;
  font-size: 1.0625rem;
}
.menu-theme-5 .menu-product-card .menu-product-description { 
  color: #7c3aed;
  font-size: 0.875rem;
  line-height: 1.6;
}
.menu-theme-5 .menu-product-card .price { 
  color: #7c3aed; 
  font-weight: 700;
  font-size: 1.125rem;
  background: rgba(139,92,246,0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 0.75rem;
  display: inline-block;
}
.menu-theme-5 .menu-drawer-backdrop.show { background: rgba(76,29,149,0.2); backdrop-filter: blur(4px); }
.menu-theme-5 .menu-drawer { 
  --menu-drawer-bg: rgba(255,255,255,0.85); 
  backdrop-filter: blur(24px); 
  -webkit-backdrop-filter: blur(24px); 
  border-left: 1px solid rgba(167,139,250,0.2); 
  color: #3730a3; 
}
.menu-theme-5 .menu-drawer .price { color: #7c3aed; }
.menu-theme-5 .menu-footer { 
  position: relative; 
  z-index: 2;
  background: rgba(255,255,255,0.6); 
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(167,139,250,0.1); 
}

/* ========== Menu footer (tüm temalarda en altta) ========== */
.menu-footer {
  margin-top: auto;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.menu-footer-logo-link {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.menu-footer-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  vertical-align: middle;
}
.menu-footer-text {
  margin: 0;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}
.menu-footer-brand-link {
  color: #374151;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.menu-footer-brand-link:hover {
  color: #111827;
  text-decoration: underline;
}

/* Premium: değerlendirme şeridi/yüzen buton yok; ilk siparişten sonra panel JS ile açılır */
.premium-feedback-post-order #feedback-trigger {
  display: none !important;
}

/* ========== PRO UI ELEMENTS ========== */

/* Header Actions (Login butonu) */
.menu-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.menu-header { position: relative; }

.menu-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.menu-login-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.menu-login-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* Sepete Ekle butonu (ürün kartları) */
.menu-add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  margin-top: auto;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(99,102,241,0.25);
}
.menu-add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99,102,241,0.35);
}
.menu-add-to-cart-btn:active {
  transform: translateY(0);
}
.menu-add-to-cart-btn.added {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 8px rgba(16,185,129,0.25);
  pointer-events: none;
}
.menu-add-to-cart-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* Ürün kartı Pro düzeni */
.menu-product-card.has-cart-btn .p-4,
.menu-product-card.has-cart-btn .p-3 {
  padding-bottom: 0.75rem;
}
.menu-product-card .menu-card-footer {
  padding: 0 1rem 1rem;
  margin-top: auto;
}

/* Dine-In: Kart içi hızlı ekle (+) */
.dine-in-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 9999px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 2px 8px rgba(99,102,241,0.28);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  flex-shrink: 0;
}
.dine-in-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99,102,241,0.34);
}
.dine-in-add-btn:active {
  transform: translateY(0);
}
.dine-in-add-btn .dine-in-add-btn-icon {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.menu-card-footer.dine-in-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-card-footer.dine-in-footer .menu-add-to-cart-btn {
  flex: 1 1 auto;
}
.dine-in-inline-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.625rem;
}

/* Tema paletine göre dine-in + butonu */
.menu-theme-1 .dine-in-add-btn {
  background: linear-gradient(135deg, #b49050 0%, #a07d3a 100%);
  box-shadow: 0 2px 8px rgba(180,144,80,0.28);
}
.menu-theme-2 .dine-in-add-btn {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 2px 8px rgba(37,99,235,0.28);
}
.menu-theme-3 .dine-in-add-btn {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 2px 8px rgba(234,88,12,0.28);
}
.menu-theme-4 .dine-in-add-btn {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  box-shadow: 0 2px 8px rgba(15,118,110,0.28);
}
.menu-theme-5 .dine-in-add-btn {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
  color: #1f2937;
  box-shadow: 0 2px 8px rgba(251,191,36,0.32);
}

/* Sabit Sepet İkonu */
.menu-cart-fab {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(99,102,241,0.4);
  transition: all 0.3s ease;
}
.menu-cart-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(99,102,241,0.5);
}
.menu-cart-fab svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #fff;
}
.menu-cart-fab-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.375rem;
  height: 1.375rem;
  padding: 0 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #ef4444;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(239,68,68,0.4);
}
.menu-cart-fab-badge:empty { display: none; }

/* Mobil responsive */
@media (max-width: 640px) {
  .menu-header-actions {
    top: 0.75rem;
    right: 0.75rem;
  }
  .menu-login-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }
  .menu-login-btn span { display: none; }
  .menu-login-btn svg { width: 1.25rem; height: 1.25rem; }
  .menu-cart-fab {
    width: 3rem;
    height: 3rem;
    bottom: 4.5rem;
    right: 0.75rem;
  }
  .menu-cart-fab svg { width: 1.375rem; height: 1.375rem; }
}

/* Tema bazlı Pro UI renkleri */
/* Tema 1 - Modern Dark */
.menu-theme-1 .menu-login-btn {
  background: rgba(31,41,55,0.9);
  color: #f9fafb;
  border-color: rgba(255,255,255,0.15);
}
.menu-theme-1 .menu-login-btn:hover {
  background: rgba(55,65,81,0.95);
  border-color: rgba(255,255,255,0.25);
}

/* Tema 3 - Vibrant Cafe */
.menu-theme-3 .menu-add-to-cart-btn {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 2px 8px rgba(234,88,12,0.25);
}
.menu-theme-3 .menu-add-to-cart-btn:hover {
  box-shadow: 0 4px 12px rgba(234,88,12,0.35);
}
.menu-theme-3 .menu-cart-fab {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 4px 20px rgba(234,88,12,0.4);
}
.menu-theme-3 .menu-cart-fab:hover {
  box-shadow: 0 6px 28px rgba(234,88,12,0.5);
}

/* Tema 4 - Street Food (Amber/Orange) */
.menu-theme-4 .menu-add-to-cart-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  box-shadow: 0 2px 8px rgba(234,88,12,0.25);
}
.menu-theme-4 .menu-add-to-cart-btn:hover {
  box-shadow: 0 4px 12px rgba(234,88,12,0.35);
}
.menu-theme-4 .menu-cart-fab {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  box-shadow: 0 4px 20px rgba(234,88,12,0.4);
}
.menu-theme-4 .menu-cart-fab:hover {
  box-shadow: 0 6px 28px rgba(234,88,12,0.5);
}

/* Tema 5 - Glassmorphism */
.menu-theme-5 .menu-login-btn {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f9fafb;
  border-color: rgba(255,255,255,0.2);
}
.menu-theme-5 .menu-login-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}
.menu-theme-5 .menu-add-to-cart-btn {
  background: linear-gradient(135deg, rgba(251,191,36,0.9) 0%, rgba(245,158,11,0.9) 100%);
  color: #1f2937;
}
.menu-theme-5 .menu-cart-fab {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
  box-shadow: 0 4px 20px rgba(251,191,36,0.4);
}
.menu-theme-5 .menu-cart-fab svg { color: #1f2937; }

/* ========== SEPET DRAWER ========== */

/* Backdrop */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 13020;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  pointer-events: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.cart-drawer-backdrop.open {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
}

/* Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 13030;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
  transform: translateX(0);
}

/* Drawer Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  flex-shrink: 0;
}
.cart-drawer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.cart-drawer-title svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #6366f1;
}
.cart-drawer-count {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.9375rem;
}
.cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart-drawer-close:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.cart-drawer-close svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
}

/* Drawer Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

/* Boş Sepet */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
}
.cart-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
  background: #f3f4f6;
  border-radius: 50%;
}
.cart-empty-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #9ca3af;
}
.cart-empty-text {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}
.cart-empty-hint {
  margin: 0;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Ürün Listesi */
.cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-item {
  display: flex;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-image {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f3f4f6;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #e5e7eb;
}
.cart-item-image-placeholder svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #9ca3af;
}
.cart-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.cart-item-name {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}
.cart-item-options {
  margin: 0 0 0.25rem;
}
.cart-item-option-line {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.25;
}
.cart-item-total {
  margin-top: auto;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cart-item-remove:hover {
  background: #fef2f2;
}
.cart-item-remove svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #ef4444;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}
.cart-item-qty button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: #f9fafb;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cart-item-qty button:hover {
  background: #e5e7eb;
}
.cart-item-qty button svg {
  width: 1rem;
  height: 1rem;
  color: #374151;
}
.cart-item-qty span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
}

/* Drawer Footer */
.cart-drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  flex-shrink: 0;
}
.cart-drawer-footer.hidden {
  display: none;
}
.cart-summary {
  margin-bottom: 1rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: #6b7280;
}
.cart-summary-total {
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}
.cart-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}
.cart-checkout-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.cart-clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cart-clear-btn:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #ef4444;
}
.cart-clear-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Mobil tam ekran drawer */
@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
}

/* Tema bazlı renkler */
.menu-theme-3 .cart-drawer-title svg { color: #ea580c; }
.menu-theme-3 .cart-checkout-btn {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}
.menu-theme-3 .cart-checkout-btn:hover {
  box-shadow: 0 6px 20px rgba(234,88,12,0.4);
}

.menu-theme-5 .cart-drawer {
  background: rgba(31,41,55,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.menu-theme-5 .cart-drawer-header {
  background: rgba(17,24,39,0.8);
  border-color: rgba(255,255,255,0.1);
}
.menu-theme-5 .cart-drawer-title { color: #f9fafb; }
.menu-theme-5 .cart-drawer-title svg { color: #fcd34d; }
.menu-theme-5 .cart-drawer-count { color: #9ca3af; }
.menu-theme-5 .cart-drawer-close {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.menu-theme-5 .cart-drawer-close:hover { background: rgba(255,255,255,0.15); }
.menu-theme-5 .cart-drawer-close svg { color: #d1d5db; }
.menu-theme-5 .cart-empty-icon { background: rgba(255,255,255,0.1); }
.menu-theme-5 .cart-empty-icon svg { color: #6b7280; }
.menu-theme-5 .cart-empty-text { color: #e5e7eb; }
.menu-theme-5 .cart-item { border-color: rgba(255,255,255,0.1); }
.menu-theme-5 .cart-item-name { color: #f9fafb; }
.menu-theme-5 .cart-item-total { color: #fcd34d; }
.menu-theme-5 .cart-item-qty { border-color: rgba(255,255,255,0.15); }
.menu-theme-5 .cart-item-qty button { background: rgba(255,255,255,0.1); }
.menu-theme-5 .cart-item-qty button:hover { background: rgba(255,255,255,0.15); }
.menu-theme-5 .cart-item-qty button svg { color: #e5e7eb; }
.menu-theme-5 .cart-item-qty span { background: rgba(255,255,255,0.05); color: #f9fafb; }
.menu-theme-5 .cart-drawer-footer {
  background: rgba(17,24,39,0.8);
  border-color: rgba(255,255,255,0.1);
}
.menu-theme-5 .cart-summary-row { color: #9ca3af; }
.menu-theme-5 .cart-summary-total { color: #fcd34d; border-color: rgba(255,255,255,0.1); }
.menu-theme-5 .cart-checkout-btn {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
  color: #1f2937;
}
.menu-theme-5 .cart-clear-btn {
  color: #9ca3af;
  border-color: rgba(255,255,255,0.15);
}
.menu-theme-5 .cart-clear-btn:hover {
  background: rgba(239,68,68,0.15);
  border-color: rgba(239,68,68,0.3);
  color: #f87171;
}

/* ═══════════════════════════════════════════════════════════════
   AUTH MODAL
═══════════════════════════════════════════════════════════════ */

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.auth-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 10000;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.auth-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.auth-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}
.auth-modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.auth-modal-title svg {
  width: 1.375rem;
  height: 1.375rem;
}
.auth-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.auth-modal-close:hover {
  background: rgba(255,255,255,0.25);
}
.auth-modal-close svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #fff;
}

/* Modal Body */
.auth-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: calc(90vh - 8rem);
}

/* Tab Switch */
.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.25rem;
  background: #f3f4f6;
  border-radius: 0.75rem;
}
.auth-tab {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6b7280;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 2px 8px rgba(99,102,241,0.3);
}
.auth-tab:not(.active):hover {
  color: #374151;
  background: rgba(255,255,255,0.5);
}

/* Form Panels */
.auth-panel {
  display: none;
}
.auth-panel.active {
  display: block;
}

/* Form Fields */
.auth-form-group {
  margin-bottom: 1rem;
}
.auth-form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.auth-form-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  transition: all 0.15s ease;
  outline: none;
}
.auth-form-input:focus {
  background: #fff;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.auth-form-input::placeholder {
  color: #9ca3af;
}

/* Error message */
.auth-error {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
}
.auth-error.show {
  display: flex;
}
.auth-error svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* Submit button */
.auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}
.auth-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}
.auth-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.auth-submit-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Logged In State */
.auth-logged-in {
  text-align: center;
  padding: 1rem 0;
}
.auth-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6366f1;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
  border: 2px solid rgba(99,102,241,0.2);
  border-radius: 50%;
}
.auth-user-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem;
}
.auth-user-phone {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1.25rem;
}
.auth-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  margin-top: 0.5rem;
}
.auth-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3b82f6;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.auth-action-btn:hover {
  background: #dbeafe;
  border-color: #93c5fd;
}
.auth-action-btn svg {
  width: 1rem;
  height: 1rem;
}
.auth-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ef4444;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.auth-logout-btn:hover {
  background: #fee2e2;
  border-color: #fca5a5;
}
.auth-logout-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Loading spinner */
.auth-spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: auth-spin 0.8s linear infinite;
}
@keyframes auth-spin {
  to { transform: rotate(360deg); }
}

/* Mobile fullscreen */
@media (max-width: 480px) {
  .auth-modal {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }
  .auth-modal-body {
    max-height: calc(100vh - 5rem);
  }
}

/* Tema bazlı renkler */
.menu-theme-3 .auth-modal-header {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}
.menu-theme-3 .auth-tab.active {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 2px 8px rgba(234,88,12,0.3);
}
.menu-theme-3 .auth-form-input:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.15);
}
.menu-theme-3 .auth-submit-btn {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}
.menu-theme-3 .auth-submit-btn:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(234,88,12,0.4);
}
.menu-theme-3 .auth-user-avatar {
  color: #ea580c;
  background: linear-gradient(135deg, rgba(234,88,12,0.1), rgba(249,115,22,0.1));
  border-color: rgba(234,88,12,0.2);
}

/* Dark theme (Theme 5) */
.menu-theme-5 .auth-modal {
  background: rgba(31,41,55,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.menu-theme-5 .auth-modal-header {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
}
.menu-theme-5 .auth-modal-title { color: #1f2937; }
.menu-theme-5 .auth-modal-close {
  background: rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.25);
}
.menu-theme-5 .auth-modal-close:hover { background: rgba(0,0,0,0.25); }
.menu-theme-5 .auth-modal-close svg { color: #1f2937; }
.menu-theme-5 .auth-tabs {
  background: rgba(255,255,255,0.1);
}
.menu-theme-5 .auth-tab {
  color: #9ca3af;
}
.menu-theme-5 .auth-tab.active {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
  color: #1f2937;
  box-shadow: 0 2px 8px rgba(251,191,36,0.3);
}
.menu-theme-5 .auth-tab:not(.active):hover {
  color: #e5e7eb;
  background: rgba(255,255,255,0.15);
}
.menu-theme-5 .auth-form-label { color: #d1d5db; }
.menu-theme-5 .auth-form-input {
  color: #f9fafb;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.menu-theme-5 .auth-form-input:focus {
  background: rgba(255,255,255,0.15);
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}
.menu-theme-5 .auth-form-input::placeholder { color: #6b7280; }
.menu-theme-5 .auth-error {
  color: #f87171;
  background: rgba(239,68,68,0.15);
  border-color: rgba(239,68,68,0.3);
}
.menu-theme-5 .auth-submit-btn {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
  color: #1f2937;
}
.menu-theme-5 .auth-user-avatar {
  color: #fbbf24;
  background: linear-gradient(135deg, rgba(251,191,36,0.1), rgba(245,158,11,0.1));
  border-color: rgba(251,191,36,0.2);
}
.menu-theme-5 .auth-user-name { color: #f9fafb; }
.menu-theme-5 .auth-user-phone { color: #9ca3af; }
.menu-theme-5 .auth-action-btn {
  color: #60a5fa;
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}
.menu-theme-5 .auth-action-btn:hover {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.4);
}
.menu-theme-5 .auth-logout-btn {
  color: #f87171;
  background: rgba(239,68,68,0.15);
  border-color: rgba(239,68,68,0.3);
}
.menu-theme-5 .auth-logout-btn:hover {
  background: rgba(239,68,68,0.2);
  border-color: rgba(239,68,68,0.4);
}

/* ═══════════════════════════════════════════════════════════════
   ADDRESS MODAL
═══════════════════════════════════════════════════════════════ */

.address-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.address-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.address-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 10000;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.address-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.address-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  flex-shrink: 0;
}
.address-modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.address-modal-title svg {
  width: 1.375rem;
  height: 1.375rem;
}
.address-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.address-modal-close:hover {
  background: rgba(255,255,255,0.25);
}
.address-modal-close svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #fff;
}

/* Modal Body */
.address-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* Address List */
.address-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.address-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.address-item.selected {
  background: rgba(99,102,241,0.05);
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.address-item-radio {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
  position: relative;
  transition: all 0.15s ease;
}
.address-item.selected .address-item-radio {
  border-color: #6366f1;
  background: #6366f1;
}
.address-item.selected .address-item-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
}
.address-item-content {
  flex: 1;
  min-width: 0;
}
.address-item-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
.address-item-default {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6366f1;
  background: rgba(99,102,241,0.1);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}
.address-item-text {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}
.address-item-actions {
  display: flex;
  gap: 0.375rem;
  flex-shrink: 0;
}
.address-item-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.address-item-action:hover {
  background: rgba(0,0,0,0.05);
}
.address-item-action.delete:hover {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
}
.address-item-action svg {
  width: 1rem;
  height: 1rem;
  color: #6b7280;
}
.address-item-action.delete:hover svg {
  color: #ef4444;
}

/* Empty Address */
.address-empty {
  text-align: center;
  padding: 2rem 1rem;
}
.address-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #f3f4f6;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.address-empty-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #9ca3af;
}
.address-empty-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  margin: 0 0 0.25rem;
}
.address-empty-hint {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0;
}

/* Add Address Button */
.address-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6366f1;
  background: transparent;
  border: 2px dashed #c7d2fe;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.address-add-btn:hover {
  background: rgba(99,102,241,0.05);
  border-color: #a5b4fc;
}
.address-add-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Address Form */
.address-form {
  display: none;
}
.address-form.active {
  display: block;
}

.address-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.address-form-row.full {
  grid-template-columns: 1fr;
}

/* Select Dropdown */
.address-form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 1rem;
  color: #111827;
  background: #f9fafb url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") no-repeat right 0.75rem center/1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  transition: all 0.15s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.address-form-select:focus {
  background-color: #fff;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.address-form-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.address-form-select option[value=""] {
  color: #9ca3af;
}

/* Textarea */
.address-form-textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  transition: all 0.15s ease;
  outline: none;
  resize: vertical;
  min-height: 80px;
}
.address-form-textarea:focus {
  background: #fff;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* Default Checkbox */
.address-form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
}
.address-form-checkbox input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #6366f1;
}
.address-form-checkbox span {
  font-size: 0.875rem;
  color: #374151;
}

/* Form Actions */
.address-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.address-form-cancel {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6b7280;
  background: #f3f4f6;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.address-form-cancel:hover {
  background: #e5e7eb;
}
.address-form-save {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}
.address-form-save:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}
.address-form-save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Modal Footer (for select action) */
.address-modal-footer {
  display: none;
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.address-modal-footer.show {
  display: block;
}
.address-select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}
.address-select-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}
.address-select-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.address-select-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile fullscreen */
@media (max-width: 560px) {
  .address-modal {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }
  .address-form-row {
    grid-template-columns: 1fr;
  }
}

/* Tema bazlı renkler */
.menu-theme-3 .address-modal-header {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}
.menu-theme-3 .address-item.selected {
  background: rgba(234,88,12,0.05);
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.1);
}
.menu-theme-3 .address-item.selected .address-item-radio {
  border-color: #ea580c;
  background: #ea580c;
}
.menu-theme-3 .address-item-default {
  color: #ea580c;
  background: rgba(234,88,12,0.1);
}
.menu-theme-3 .address-add-btn {
  color: #ea580c;
  border-color: #fdba74;
}
.menu-theme-3 .address-add-btn:hover {
  background: rgba(234,88,12,0.05);
  border-color: #fb923c;
}
.menu-theme-3 .address-form-select:focus,
.menu-theme-3 .address-form-textarea:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.15);
}
.menu-theme-3 .address-form-checkbox input {
  accent-color: #ea580c;
}
.menu-theme-3 .address-form-save,
.menu-theme-3 .address-select-btn {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}
.menu-theme-3 .address-form-save:hover:not(:disabled),
.menu-theme-3 .address-select-btn:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(234,88,12,0.4);
}

/* Dark theme (Theme 5) */
.menu-theme-5 .address-modal {
  background: rgba(31,41,55,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.menu-theme-5 .address-modal-header {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
}
.menu-theme-5 .address-modal-title { color: #1f2937; }
.menu-theme-5 .address-modal-close {
  background: rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.25);
}
.menu-theme-5 .address-modal-close:hover { background: rgba(0,0,0,0.25); }
.menu-theme-5 .address-modal-close svg { color: #1f2937; }
.menu-theme-5 .address-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.menu-theme-5 .address-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.menu-theme-5 .address-item.selected {
  background: rgba(251,191,36,0.08);
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.1);
}
.menu-theme-5 .address-item-radio {
  border-color: rgba(255,255,255,0.3);
}
.menu-theme-5 .address-item.selected .address-item-radio {
  border-color: #fbbf24;
  background: #fbbf24;
}
.menu-theme-5 .address-item-title { color: #f9fafb; }
.menu-theme-5 .address-item-default {
  color: #fbbf24;
  background: rgba(251,191,36,0.15);
}
.menu-theme-5 .address-item-text { color: #9ca3af; }
.menu-theme-5 .address-item-action:hover {
  background: rgba(255,255,255,0.1);
}
.menu-theme-5 .address-item-action svg { color: #9ca3af; }
.menu-theme-5 .address-empty-icon {
  background: rgba(255,255,255,0.1);
}
.menu-theme-5 .address-empty-icon svg { color: #6b7280; }
.menu-theme-5 .address-empty-text { color: #e5e7eb; }
.menu-theme-5 .address-empty-hint { color: #6b7280; }
.menu-theme-5 .address-add-btn {
  color: #fbbf24;
  border-color: rgba(251,191,36,0.3);
}
.menu-theme-5 .address-add-btn:hover {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.5);
}
.menu-theme-5 .auth-form-label { color: #d1d5db; }
.menu-theme-5 .address-form-select,
.menu-theme-5 .address-form-textarea {
  color: #f9fafb;
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.menu-theme-5 .address-form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}
.menu-theme-5 .address-form-select:focus,
.menu-theme-5 .address-form-textarea:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}
.menu-theme-5 .address-form-checkbox span { color: #d1d5db; }
.menu-theme-5 .address-form-checkbox input { accent-color: #fbbf24; }
.menu-theme-5 .address-form-cancel {
  color: #9ca3af;
  background: rgba(255,255,255,0.1);
}
.menu-theme-5 .address-form-cancel:hover {
  background: rgba(255,255,255,0.15);
}
.menu-theme-5 .address-form-save,
.menu-theme-5 .address-select-btn {
  background: linear-gradient(135deg, rgba(251,191,36,0.95) 0%, rgba(245,158,11,0.95) 100%);
  color: #1f2937;
}
.menu-theme-5 .address-modal-footer {
  background: rgba(17,24,39,0.8);
  border-color: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   ORDER MODAL
═══════════════════════════════════════════════════════════════ */

.order-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.order-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 10001;
  width: calc(100% - 2rem);
  max-width: 480px;
  max-height: calc(100vh - 2rem);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.order-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.order-view {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2rem);
}
.order-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  flex-shrink: 0;
}
.order-modal-header.success {
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}
.order-modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.order-modal-title svg {
  width: 1.25rem;
  height: 1.25rem;
}
.order-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.order-modal-close:hover {
  background: rgba(255,255,255,0.25);
}
.order-modal-close svg {
  width: 1rem;
  height: 1rem;
  color: #fff;
}
.order-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.order-success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
}
.order-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}
.order-section {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.order-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.order-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}
.order-address {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}
.order-address-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.order-address-text {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}
.order-change-btn {
  margin-top: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #3b82f6;
  background: transparent;
  border: 1px solid #bfdbfe;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.order-change-btn:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}
.order-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.order-item-info {
  flex: 1;
  min-width: 0;
}
.order-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}
.order-item-qty {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.125rem;
}
.order-item-options {
  margin-top: 0.25rem;
}
.order-item-option {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.25;
}
.order-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
}
.order-note-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.order-note-input {
  width: 100%;
  min-height: 4rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  resize: vertical;
  transition: all 0.15s ease;
}
.order-note-input:focus {
  outline: none;
  background: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.order-payment-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
  color: #065f46;
  font-size: 0.875rem;
  font-weight: 500;
}
.order-payment-method svg {
  width: 1.25rem;
  height: 1.25rem;
}
.order-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.order-error svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.order-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-total-label {
  font-size: 0.875rem;
  color: #6b7280;
}
.order-total-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}
.order-confirm-btn,
.order-done-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.order-confirm-btn:hover:not(:disabled),
.order-done-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.order-confirm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.order-confirm-btn svg,
.order-done-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Success view */
.order-success-content {
  text-align: center;
  padding: 1rem 0;
}
.order-success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem;
}
.order-success-number {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0 0 0.5rem;
}
.order-success-number strong {
  color: #1f2937;
  font-weight: 600;
}
.order-success-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}
.order-cancel-timer {
  padding: 1rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.order-cancel-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #92400e;
  margin: 0 0 0.75rem;
}
.order-cancel-text svg {
  width: 1rem;
  height: 1rem;
}
.order-cancel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #dc2626;
  background: #fff;
  border: 1px solid #fca5a5;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.order-cancel-btn:hover {
  background: #fef2f2;
  border-color: #f87171;
}
.order-cancel-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .order-modal {
    max-width: none;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
  .order-view {
    height: 100%;
    max-height: 100vh;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════════════════════
   Siparişlerim Modal
═══════════════════════════════════════════════════════════════════════════════════════════════ */
.myorders-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10010;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.myorders-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.myorders-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 480px;
  max-height: 85vh;
  z-index: 10011;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.myorders-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.myorders-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.myorders-modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}
.myorders-modal-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #3b82f6;
}
.myorders-modal-close {
  padding: 0.375rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.myorders-modal-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}
.myorders-modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.myorders-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

/* Loading */
.myorders-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.myorders-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Empty state */
.myorders-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  color: #9ca3af;
}
.myorders-empty svg {
  width: 3rem;
  height: 3rem;
  stroke-width: 1;
}
.myorders-empty p {
  font-size: 0.9375rem;
  margin: 0;
}

/* Order list */
.myorders-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.myorders-item {
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.myorders-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.myorders-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.myorders-item-number {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f2937;
}
.myorders-item-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.myorders-item-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.myorders-item-date {
  font-size: 0.8125rem;
  color: #6b7280;
}
.myorders-item-total {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f2937;
}
.myorders-item-cancel {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #e5e7eb;
  font-size: 0.75rem;
  color: #f59e0b;
}
.myorders-item-cancel svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Contact info */
.myorders-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.875rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
}
.myorders-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.myorders-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: #1e40af;
}
.myorders-contact-phone {
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
}
.myorders-contact-phone:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════════════════════════
   Sipariş Detay Modal
═══════════════════════════════════════════════════════════════════════════════════════════════ */
.orderdetail-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10020;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.orderdetail-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.orderdetail-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 480px;
  max-height: 85vh;
  z-index: 10021;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.orderdetail-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.orderdetail-modal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.orderdetail-back-btn {
  padding: 0.375rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.orderdetail-back-btn:hover {
  background: #f3f4f6;
  color: #1f2937;
}
.orderdetail-back-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}
.orderdetail-modal-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}
.orderdetail-modal-close {
  padding: 0.375rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.orderdetail-modal-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}
.orderdetail-modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.orderdetail-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

/* Loading */
.orderdetail-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Content */
.orderdetail-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.orderdetail-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.orderdetail-number {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f2937;
}
.orderdetail-date {
  font-size: 0.8125rem;
  color: #6b7280;
}
.orderdetail-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border-radius: 9999px;
  margin-top: 0.25rem;
}

/* Sections */
.orderdetail-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.orderdetail-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.orderdetail-address {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}
.orderdetail-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.orderdetail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: #f9fafb;
  border-radius: 0.375rem;
}
.orderdetail-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.orderdetail-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}
.orderdetail-item-qty {
  font-size: 0.75rem;
  color: #6b7280;
}
.orderdetail-item-options {
  margin-top: 0.25rem;
}
.orderdetail-item-option {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.25;
}
.orderdetail-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}
.orderdetail-note {
  font-size: 0.875rem;
  color: #374151;
  padding: 0.625rem 0.75rem;
  background: #fef3c7;
  border-radius: 0.375rem;
  font-style: italic;
}
.orderdetail-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #166534;
}
.orderdetail-total {
  font-size: 1.125rem;
  font-weight: 700;
  color: #15803d;
}

/* Cancel section */
.orderdetail-cancel {
  margin-top: 0.5rem;
  padding: 1rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
}
.orderdetail-cancel-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #92400e;
  margin: 0 0 0.75rem;
}
.orderdetail-cancel-timer svg {
  width: 1rem;
  height: 1rem;
}
.orderdetail-cancel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #dc2626;
  background: #fff;
  border: 1px solid #fca5a5;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.orderdetail-cancel-btn:hover {
  background: #fef2f2;
  border-color: #f87171;
}
.orderdetail-cancel-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.orderdetail-cancel-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .myorders-modal,
  .orderdetail-modal {
    max-width: none;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CUSTOMER ORDER STATUS TOAST - Sipariş durum bildirimi (müşteri tarafı)
   ═══════════════════════════════════════════════════════════════════════════════ */
.customer-order-toast {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  z-index: 2147483647;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: calc(100vw - 2rem);
  width: 360px;
}
.customer-order-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.customer-toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.customer-toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: white;
}
.customer-toast-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.customer-toast-text {
  flex: 1;
  min-width: 0;
}
.customer-toast-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.125rem;
}
.customer-toast-message {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
}
.customer-toast-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
}
.customer-toast-close:hover {
  background: #f3f4f6;
  color: #6b7280;
}
.customer-toast-close svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .customer-order-toast {
    bottom: 5rem;
    width: calc(100vw - 2rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOME / ABOUT TAB NAVİGASYONU
   ═══════════════════════════════════════════════════════════════ */
.menu-tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem 1rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 40;
}
.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.menu-tab-btn:hover { background: rgba(0,0,0,0.04); color: #374151; }
.menu-tab-btn.active {
  background: #111827;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.menu-tab-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ═══ ABOUT BÖLÜMÜ ═══ */
.menu-about-section {
  padding: 1.5rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  animation: aboutFadeIn 0.35s ease-out;
}
@keyframes aboutFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-about-inner { }
.menu-about-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  color: #111827;
}
.menu-about-desc {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.menu-about-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.menu-about-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.menu-about-card--link { cursor: pointer; }
.menu-about-card--link:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.menu-about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-about-card-icon svg { width: 22px; height: 22px; }
.menu-about-card-icon--location { background: #fee2e2; color: #dc2626; }
.menu-about-card-icon--phone { background: #dbeafe; color: #2563eb; }
.menu-about-card-icon--wifi { background: #d1fae5; color: #059669; }
.menu-about-card-icon--google { background: #fef3c7; color: #d97706; }
.menu-about-card-icon--google svg { width: 20px; height: 20px; }
.menu-about-card-body { flex: 1; min-width: 0; }
.menu-about-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.125rem;
}
.menu-about-card-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
  word-break: break-word;
}
.menu-about-card-arrow {
  width: 18px;
  height: 18px;
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.menu-about-card--link:hover .menu-about-card-arrow { transform: translateX(2px); color: #6b7280; }

/* WiFi Şifre */
.menu-about-wifi-pass {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.375rem;
}
.menu-about-wifi-pass-label {
  font-size: 0.8rem;
  color: #6b7280;
}
.menu-about-wifi-pass-code {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: #f3f4f6;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.05em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.menu-about-wifi-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: #fff;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.menu-about-wifi-copy svg { width: 14px; height: 14px; }
.menu-about-wifi-copy:hover { background: #f3f4f6; color: #374151; }
.menu-about-wifi-copy.copied {
  background: #d1fae5;
  border-color: #6ee7b7;
  color: #059669;
}

/* Boş about */
.menu-about-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}
.menu-about-empty-icon { width: 48px; height: 48px; margin: 0 auto 0.75rem; color: #d1d5db; }
.menu-about-empty p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════════
   TEMA 1 (Luxury) — TAB & ABOUT
   ═══════════════════════════════════════════════════════════════ */
.menu-theme-1 .menu-tab-nav {
  background: #fff;
  border-bottom: 1px solid rgba(180,144,80,0.15);
}
.menu-theme-1 .menu-tab-btn { color: #8b7355; }
.menu-theme-1 .menu-tab-btn:hover { background: rgba(180,144,80,0.06); }
.menu-theme-1 .menu-tab-btn.active {
  background: linear-gradient(135deg, #2c2418, #3d3225);
  color: #e8d5b5;
}
.menu-theme-1 .menu-about-title { color: #2c2418; }
.menu-theme-1 .menu-about-desc { color: #7a6f5d; }
.menu-theme-1 .menu-about-card { background: #fffcf7; border-color: rgba(180,144,80,0.18); }
.menu-theme-1 .menu-about-card--link:hover { border-color: rgba(180,144,80,0.35); }
.menu-theme-1 .menu-about-card-value { color: #2c2418; }
.menu-theme-1 .menu-about-wifi-pass-code { background: #fef8ee; color: #2c2418; }

/* ═══════════════════════════════════════════════════════════════
   TEMA 2 (Cafe / Minimalist White) — TAB & ABOUT
   ═══════════════════════════════════════════════════════════════ */
.menu-theme-2 .menu-tab-nav {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.menu-theme-2 .menu-tab-btn { color: #64748b; }
.menu-theme-2 .menu-tab-btn:hover { background: #f1f5f9; }
.menu-theme-2 .menu-tab-btn.active {
  background: #0f172a;
  color: #fff;
}
.menu-theme-2 .menu-about-title { color: #0f172a; }
.menu-theme-2 .menu-about-desc { color: #64748b; }
.menu-theme-2 .menu-about-card { background: #fff; border-color: #e2e8f0; }
.menu-theme-2 .menu-about-card--link:hover { border-color: #cbd5e1; }

/* ═══════════════════════════════════════════════════════════════
   TEMA 3 (Traditional / Vibrant Cafe) — TAB & ABOUT
   ═══════════════════════════════════════════════════════════════ */
.menu-theme-3 .menu-tab-nav {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(180,83,9,0.06);
}
.menu-theme-3 .menu-tab-btn { color: #a16207; }
.menu-theme-3 .menu-tab-btn:hover { background: rgba(180,83,9,0.04); }
.menu-theme-3 .menu-tab-btn.active {
  background: linear-gradient(135deg, #78350f, #92400e);
  color: #fef3c7;
}
.menu-theme-3 .menu-about-title { color: #78350f; }
.menu-theme-3 .menu-about-desc { color: #a16207; }
.menu-theme-3 .menu-about-card { background: #fffbf5; border-color: rgba(180,83,9,0.12); }
.menu-theme-3 .menu-about-card--link:hover { border-color: rgba(180,83,9,0.25); }
.menu-theme-3 .menu-about-card-value { color: #78350f; }
.menu-theme-3 .menu-about-wifi-pass-code { background: #fef7ee; color: #78350f; }

/* ═══════════════════════════════════════════════════════════════
   TEMA 4 (Street Food / Bento) — TAB & ABOUT
   ═══════════════════════════════════════════════════════════════ */
.menu-theme-4 .menu-tab-nav {
  background: #fff;
  border-bottom: 2px solid #f59e0b;
}
.menu-theme-4 .menu-tab-btn { color: #a16207; font-weight: 700; }
.menu-theme-4 .menu-tab-btn:hover { background: rgba(245,158,11,0.08); color: #7a3b15; }
.menu-theme-4 .menu-tab-btn.active {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
}
.menu-theme-4 .menu-about-title { color: #7a3b15; font-weight: 800; text-transform: none; }
.menu-theme-4 .menu-about-desc { color: #a16207; }
.menu-theme-4 .menu-about-card { background: #fff7eb; border-color: #f7c57f; }
.menu-theme-4 .menu-about-card--link:hover { border-color: #f59e0b; }
.menu-theme-4 .menu-about-card-value { color: #7a3b15; }
.menu-theme-4 .menu-about-wifi-pass-code { background: #ffedd5; color: #9a3412; }

/* ═══════════════════════════════════════════════════════════════
   TEMA 5 (Glassmorphism / Minimal) — TAB & ABOUT
   ═══════════════════════════════════════════════════════════════ */
.menu-theme-5 .menu-tab-nav {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,92,246,0.1);
}
.menu-theme-5 .menu-tab-btn { color: #7c3aed; }
.menu-theme-5 .menu-tab-btn:hover { background: rgba(139,92,246,0.06); }
.menu-theme-5 .menu-tab-btn.active {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 12px rgba(139,92,246,0.3);
}
.menu-theme-5 .menu-about-section { }
.menu-theme-5 .menu-about-title { color: #4c1d95; }
.menu-theme-5 .menu-about-desc { color: #7c3aed; }
.menu-theme-5 .menu-about-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(139,92,246,0.12);
}
.menu-theme-5 .menu-about-card--link:hover { border-color: rgba(139,92,246,0.3); }
.menu-theme-5 .menu-about-card-value { color: #4c1d95; }
.menu-theme-5 .menu-about-wifi-pass-code { background: rgba(237,233,254,0.6); color: #4c1d95; }

/* Mobile tab */
@media (max-width: 480px) {
  .menu-tab-btn { padding: 0.5rem 1rem; font-size: 0.8125rem; }
  .menu-tab-icon { width: 16px; height: 16px; }
  .menu-about-section { padding: 1.25rem 0.75rem; }
  .menu-about-title { font-size: 1.25rem; }
}

/* Tema 1-5: kart kuculurse etiket icon moda duser */
@media (max-width: 640px) {
  .menu-theme-1 .menu-product-card .product-label,
  .menu-theme-2 .menu-product-card .product-label,
  .menu-theme-3 .menu-product-card .product-label,
  .menu-theme-4 .menu-product-card .product-label,
  .menu-theme-5 .menu-product-card .product-label {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,0.28);
    box-shadow: 0 4px 10px rgba(15,23,42,0.16);
  }
  .menu-theme-1 .menu-product-card .product-label-text,
  .menu-theme-2 .menu-product-card .product-label-text,
  .menu-theme-3 .menu-product-card .product-label-text,
  .menu-theme-4 .menu-product-card .product-label-text,
  .menu-theme-5 .menu-product-card .product-label-text {
    display: none !important;
  }
  .menu-theme-1 .menu-product-card .product-label-icon,
  .menu-theme-2 .menu-product-card .product-label-icon,
  .menu-theme-3 .menu-product-card .product-label-icon,
  .menu-theme-4 .menu-product-card .product-label-icon,
  .menu-theme-5 .menu-product-card .product-label-icon {
    font-size: 0.72rem;
    line-height: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ALERJEN UYARI SİSTEMİ
   ═══════════════════════════════════════════════════════════════ */
.menu-allergen-bar {
  display: flex;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}
.menu-allergen-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.875rem;
  border: 1.5px solid #fbbf24;
  border-radius: 9999px;
  background: #fffbeb;
  color: #92400e;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.menu-allergen-toggle:hover { background: #fef3c7; border-color: #f59e0b; }
.menu-allergen-toggle.has-filter { background: #fef3c7; border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.menu-allergen-toggle-icon { width: 16px; height: 16px; flex-shrink: 0; }
.menu-allergen-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; border-radius: 9999px;
  background: #f59e0b; color: #fff;
  font-size: 0.6875rem; font-weight: 700;
}

/* Alerjen Panel */
.menu-allergen-panel {
  padding: 0.75rem 1rem;
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  animation: allergenSlide 0.25s ease-out;
  position: relative;
  z-index: 13060 !important;
  pointer-events: auto;
}
.menu-allergen-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 13040;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.menu-allergen-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@keyframes allergenSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-allergen-panel-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem;
}
.menu-allergen-panel-title { font-size: 0.8125rem; font-weight: 600; color: #92400e; }
.menu-allergen-clear {
  font-size: 0.75rem; font-weight: 500; color: #d97706;
  background: none; border: none; cursor: pointer; text-decoration: underline;
}
/* Grup Tabları */
.menu-allergen-group-tabs {
  display: flex; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 0.5rem;
}
.menu-allergen-group-tab {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.5rem; border-radius: 0.375rem;
  font-size: 0.6875rem; font-weight: 600;
  border: 1px solid #e5e7eb; background: #fff; color: #6b7280;
  cursor: pointer; transition: all 0.15s ease;
}
.menu-allergen-group-tab:hover { background: #f9fafb; }
.menu-allergen-group-tab.active { border-color: #f59e0b; background: #fef3c7; color: #92400e; }
.menu-allergen-group-label {
  width: 100%; font-size: 0.5625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #9ca3af; margin-top: 0.25rem; padding-bottom: 0.125rem;
}
.menu-allergen-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.menu-allergen-chip {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0.5rem; border-radius: 9999px;
  border: 1.5px solid #e5e7eb; background: #fff; color: #374151;
  font-size: 0.6875rem; font-weight: 500; cursor: pointer;
  transition: all 0.15s ease; user-select: none;
  pointer-events: auto;
}
.menu-allergen-chip:hover { border-color: #fbbf24; background: #fffbeb; }
.menu-allergen-chip.active { border-color: #f59e0b; background: #fef3c7; color: #92400e; font-weight: 600; box-shadow: 0 0 0 2px rgba(245,158,11,0.15); }
.menu-allergen-chip span { font-size: 0.8125rem; }
.menu-allergen-hint { font-size: 0.6875rem; color: #a16207; margin-top: 0.5rem; }
.menu-allergen-legal-note {
  display: flex; align-items: flex-start; gap: 0.375rem;
  font-size: 0.625rem; color: #92400e; line-height: 1.4;
  margin-top: 0.5rem; padding: 0.5rem 0.625rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 0.5rem;
}
.menu-allergen-legal-icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; color: #d97706; }

/* Ürün kartı: Alerjen Rozeti */
.allergen-warning-badge {
  position: static;
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.3rem 0.5rem;
  margin: 0.45rem 0.5rem 0.55rem;
  background: rgba(245,158,11,0.95);
  color: #fff; font-size: 0.6875rem; font-weight: 600;
  border-radius: 0.5rem;
  max-width: calc(100% - 1rem);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.allergen-warning-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.allergen-warning-badge span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Alerjen çakışma — kart border */
.menu-product-card.allergen-conflict { border-color: #fbbf24 !important; }

/* Ortak katman hiyerarsisi: kart icerigi */
.menu-product-card { position: relative; z-index: 1; }
.menu-product-card .product-label,
.menu-product-card .product-like-btn,
.menu-product-card .allergen-warning-badge { z-index: 2; }

/* Lightbox Alerjen Bölümü */
.modal-allergen-section {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
}
.modal-allergen-warning {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: #b45309;
  margin-bottom: 8px;
}
.modal-allergen-warning svg { width: 18px; height: 18px; flex-shrink: 0; color: #f59e0b; }
.modal-allergen-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.modal-allergen-tag {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 8px; border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 600;
  background: #fef3c7; color: #92400e;
  border: 1px solid #fde68a;
}
.modal-allergen-tag.conflict { background: #fde68a; border-color: #f59e0b; color: #78350f; }

/* ═══ Tema Uyumları — Alerjen ═══ */
.menu-theme-1 .menu-allergen-bar { background: #fff; border-color: rgba(180,144,80,0.1); }
.menu-theme-1 .menu-allergen-panel { background: #fffdf7; border-color: rgba(180,144,80,0.2); }
.menu-theme-2 .menu-allergen-bar { background: #fff; border-color: #f1f5f9; }
.menu-theme-3 .menu-allergen-bar { background: #fff; border-color: rgba(180,83,9,0.06); }
.menu-theme-4 .menu-allergen-bar { background: #fff; border-color: #99f6e4; }
.menu-theme-5 .menu-allergen-bar { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); border-color: rgba(139,92,246,0.08); }
.menu-theme-5 .menu-allergen-panel {
  position: relative;
  z-index: 36;
}

@media (max-width: 480px) {
  .menu-allergen-chip { padding: 0.25rem 0.5rem; font-size: 0.6875rem; }
  .allergen-warning-badge { font-size: 0.625rem; padding: 0.25rem 0.375rem; margin: 0.3rem 0.375rem 0.42rem; max-width: calc(100% - 0.75rem); }
}

/* ======================================================
   THEME 6 - APP LIKE PREMIUM
   ====================================================== */
.menu-theme-6.menu-page {
  background: #f8fafc;
  color: #0f172a;
}
.menu-theme-6 .menu-header,
.menu-theme-6 .menu-tab-nav {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.menu-theme-6 .menu-tab-nav {
  z-index: 42;
  position: static !important;
  top: auto !important;
}
.menu-theme-6 .menu-tab-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.42rem;
  padding: 0.42rem;
  border-radius: 16px;
  margin: 0 0.7rem 0.55rem;
}
.menu-theme-6 .menu-tab-btn,
.menu-theme-6 .menu-tab-filter-btn {
  position: relative;
  min-height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #334155;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
}
.menu-theme-6 .menu-tab-btn.active,
.menu-theme-6 .menu-tab-filter-btn.has-filter {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.28);
}
.menu-theme-6 .menu-tab-filter-btn .menu-allergen-count {
  position: absolute;
  top: 4px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  font-size: 0.62rem;
}

.menu-theme-6 .menu-category-grid {
  padding-top: 0.5rem;
  margin-bottom: 0.4rem;
}
.menu-theme-6 .menu-category-grid-inner {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  grid-template-columns: none;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu-theme-6 .menu-category-grid-inner::-webkit-scrollbar { display: none; width: 0; height: 0; }
.menu-theme-6 .menu-category-card {
  min-width: 138px;
  max-width: 146px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.menu-theme-6 .menu-category-card.is-active {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.22);
  transform: translateY(-2px);
}
.menu-theme-6 .menu-category-card-title { font-size: 0.84rem; }
.menu-theme-6 .menu-category-card-count { font-size: 0.68rem; }

.menu-theme-6 .menu-filter-content {
  display: block;
  padding-top: 0.15rem;
}
.menu-theme-6 .menu-back-nav {
  position: static;
  top: auto;
  z-index: 43;
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.7rem;
  gap: 0.5rem;
}
.menu-theme-6 .menu-back-btn { display: none; }
.menu-theme-6 .menu-current-category {
  font-size: 0.9rem;
  font-weight: 700;
}

.premium-grid-switcher {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  padding: 0.2rem;
}
.premium-grid-switcher-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #475569;
  border-radius: 999px;
  cursor: pointer;
}
.premium-grid-switcher-btn svg { width: 17px; height: 17px; }
.premium-grid-switcher-btn.is-active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.14);
}

.menu-theme-6 .menu-products-grid { grid-template-columns: 1fr; gap: 0.8rem; }
.menu-theme-6 .premium-layout-double .menu-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.58rem; }
.menu-theme-6 .menu-product-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.menu-theme-6 .premium-layout-single .menu-product-card img,
.menu-theme-6 .premium-layout-single .menu-product-card .menu-product-no-image { min-height: 156px; }
.menu-theme-6 .premium-layout-double .menu-product-card img,
.menu-theme-6 .premium-layout-double .menu-product-card .menu-product-no-image { min-height: 108px; }
.menu-theme-6 .premium-layout-double .menu-product-card .p-4 { padding: 0.62rem; }
.menu-theme-6 .premium-layout-double .menu-product-name { font-size: 0.82rem; line-height: 1.2; }
.menu-theme-6 .premium-layout-double .menu-product-description {
  font-size: 0.69rem;
  -webkit-line-clamp: 1;
  line-height: 1.28;
}
.menu-theme-6 .premium-layout-double .menu-product-price { font-size: 0.86rem; margin-top: 0.28rem; }
.menu-theme-6 .menu-add-to-cart-btn {
  min-height: 44px;
  border-radius: 12px;
  font-size: 0.88rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.26);
}
.menu-theme-6 .premium-layout-double .menu-add-to-cart-btn {
  min-height: 36px;
  font-size: 0.74rem;
  padding: 0.35rem 0.5rem;
}
.menu-theme-6 .menu-product-price,
.menu-theme-6 .price {
  color: #ea580c;
}

.menu-theme-6 .menu-product-card .product-label {
  z-index: 2;
  max-width: calc(100% - 12px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-theme-6 .premium-layout-double .menu-product-card .product-label {
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  padding: 0;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
}
.menu-theme-6 .premium-layout-double .menu-product-card .product-label-icon { font-size: 0.7rem; line-height: 1; }
.menu-theme-6 .premium-layout-double .menu-product-card .product-label-text,
.menu-theme-6 .premium-layout-double .menu-product-card .product-label-text::after { display: none !important; content: none; }
.menu-theme-6 .premium-layout-double .menu-product-card .product-like-btn {
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  padding: 0;
}
.menu-theme-6 .premium-layout-double .menu-product-card .product-like-btn .heart-empty,
.menu-theme-6 .premium-layout-double .menu-product-card .product-like-btn .heart-filled {
  width: 11px;
  height: 11px;
}
.menu-theme-6 .premium-layout-double .menu-product-card .product-like-btn .like-count {
  display: none;
}

.menu-theme-6 .menu-allergen-bar { display: none; }
.menu-theme-6 .menu-allergen-panel {
  margin: 0 0.7rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}
.menu-theme-6 .allergen-warning-badge {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0.35rem 0.5rem 0.5rem;
  border-radius: 10px;
  font-size: 0.66rem;
  line-height: 1.25;
  max-width: calc(100% - 1rem);
}
.menu-theme-6 .premium-layout-double .allergen-warning-badge {
  margin: 0.28rem 0.38rem 0.38rem;
  font-size: 0.6rem;
}

/* Modal - centered, glass clear content */
.menu-theme-6 .product-modal-overlay {
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.menu-theme-6 .product-modal-backdrop {
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(7px);
}
.menu-theme-6 .product-modal-container {
  width: min(92vw, 440px);
  max-height: min(84vh, 760px);
  margin: 0;
  transform: translateY(10px) scale(0.985);
}
.menu-theme-6 .product-modal-overlay.active .product-modal-container {
  transform: translateY(0) scale(1);
}
.menu-theme-6 .product-modal-content {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(248,250,252,0.83));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

/* Z-index hierarchy */
.menu-theme-6 .menu-product-card { z-index: 1; }
.menu-theme-6 .product-label,
.menu-theme-6 .allergen-warning-badge { z-index: 2; }
.menu-theme-6 .menu-header,
.menu-theme-6 .menu-tab-nav,
.menu-theme-6 #dineInBar,
.menu-theme-6 .menu-back-nav { z-index: 40 !important; }
.menu-theme-6 .product-modal-overlay { z-index: 13050 !important; }
.menu-theme-6 .cart-drawer,
.menu-theme-6 .cart-drawer-backdrop,
.menu-theme-6 .order-modal,
.menu-theme-6 .order-modal-backdrop,
.menu-theme-6 #dineInCodeModal,
.menu-theme-6 #dineInOffcanvas,
.menu-theme-6 #dineInOverlay { z-index: 13020 !important; }
.menu-theme-6 .menu-lang-switcher { z-index: 92 !important; }
.menu-theme-6 .ai-fab { z-index: 13040 !important; }
.menu-theme-6 .ai-chat-overlay { z-index: 13040 !important; }
.menu-theme-6 .ai-chat { z-index: 13050 !important; }

/* Modernized fixed controls */
.menu-theme-6 #dineInBar {
  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(30,41,59,0.86)) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}
.menu-theme-6 .premium-dinein-btn {
  border-radius: 999px !important;
  font-size: 0.72rem !important;
}
.menu-theme-6 .menu-lang-toggle,
.menu-theme-6 .ai-fab {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  border: 1px solid rgba(251, 146, 60, 0.5);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.3);
}
.menu-theme-6 .menu-lang-toggle svg,
.menu-theme-6 .ai-fab svg { color: #ffffff; }
.menu-theme-6 .menu-lang-flags {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  margin: 0;
  transform: translate(-50%, 8px);
  border-radius: 14px;
  padding: 8px;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  z-index: 3;
}
.menu-theme-6 .menu-lang-switcher.open .menu-lang-flags {
  transform: translate(-50%, 0);
}
.menu-theme-6 .menu-lang-switcher { bottom: 20px; left: 14px; top: auto; }
.menu-theme-6 .ai-fab {
  bottom: 20px;
  right: 14px;
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  border-color: rgba(251, 146, 60, 0.55);
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.35);
}
.menu-theme-6 .ai-fab svg { color: #ffffff; }
.menu-theme-6 .ai-chat-header {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.menu-theme-6 .ai-fab-pulse {
  border-color: rgba(251, 146, 60, 0.5);
}
@media (max-width: 768px) {
  .menu-theme-6 .menu-lang-switcher {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 20px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .menu-theme-6 .menu-lang-flags {
    left: 50%;
    bottom: calc(100% + 8px);
    margin: 0;
    transform: translate(-50%, 8px);
    border-radius: 14px;
  }
  .menu-theme-6 .menu-lang-switcher.open .menu-lang-flags { transform: translate(-50%, 0); }
}

.menu-theme-6 .menu-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 1rem 1.5rem;
}
.menu-theme-6 .menu-footer-text { font-size: 0.8125rem; color: #6b7280; }

/* ======================================================
   THEME 7 - PREMIUM DARK MODE
   ====================================================== */
.menu-theme-7.menu-page {
  background: #0b1120;
  color: #e2e8f0;
}
.menu-theme-7 .menu-header,
.menu-theme-7 .menu-tab-nav {
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.7);
}
.menu-theme-7 .menu-company-name { color: #f8fafc; }
.menu-theme-7 .menu-description { color: #94a3b8; }
.menu-theme-7 .menu-header-logo-wrap {
  background: transparent !important;
}

.menu-theme-7 .menu-tab-nav {
  position: static !important;
  top: auto !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.42rem;
  padding: 0.42rem;
  border-radius: 16px;
  margin: 0 0.7rem 0.55rem;
}
.menu-theme-7 .menu-tab-btn,
.menu-theme-7 .menu-tab-filter-btn {
  position: relative;
  min-height: 40px;
  border: 1px solid rgba(71, 85, 105, 0.65);
  border-radius: 12px;
  background: #0f172a;
  color: #cbd5e1;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  line-height: 1;
}
.menu-theme-7 .menu-tab-icon {
  width: 17px;
  height: 17px;
  display: block;
  transform: translateY(-0.5px);
}
.menu-theme-7 .menu-tab-filter-btn .menu-allergen-count {
  position: absolute;
  top: 4px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  font-size: 0.62rem;
}
.menu-theme-7 .menu-tab-btn.active,
.menu-theme-7 .menu-tab-filter-btn.has-filter {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-color: rgba(251, 146, 60, 0.8);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(239, 68, 68, 0.3);
}

.menu-theme-7 .menu-category-grid-inner {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  grid-template-columns: none;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu-theme-7 .menu-category-grid-inner::-webkit-scrollbar { display: none; width: 0; height: 0; }
.menu-theme-7 .menu-category-card {
  min-width: 138px;
  max-width: 146px;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(71, 85, 105, 0.7);
  background: #111827;
}
.menu-theme-7 .menu-category-card.is-active {
  border-color: rgba(251, 146, 60, 0.95);
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.35);
}

.menu-theme-7 .menu-filter-content { display: block; padding-top: 0.15rem; }
.menu-theme-7 .menu-back-nav {
  position: static;
  top: auto;
  z-index: 43;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(71, 85, 105, 0.65);
  border-radius: 14px;
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.7rem;
}
.menu-theme-7 .menu-back-btn { display: none; }
.menu-theme-7 .menu-current-category { color: #f8fafc; font-weight: 700; }

.menu-theme-7 .premium-grid-switcher {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #1e293b;
  border-radius: 999px;
  padding: 0.2rem;
}
.menu-theme-7 .premium-grid-switcher-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #cbd5e1;
  border-radius: 999px;
}
.menu-theme-7 .premium-grid-switcher-btn.is-active {
  background: #334155;
  color: #f8fafc;
  box-shadow: 0 3px 10px rgba(2, 6, 23, 0.4);
}

.menu-theme-7 .menu-products-grid { grid-template-columns: 1fr; gap: 0.8rem; }
.menu-theme-7 .premium-layout-double .menu-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.58rem; }
.menu-theme-7 .menu-product-card {
  background: #0f172a;
  border: 1px solid rgba(51, 65, 85, 0.8);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.35);
}
.menu-theme-7 .menu-product-name { color: #f8fafc; }
.menu-theme-7 .menu-product-description { color: #94a3b8; }
.menu-theme-7 .menu-product-price,
.menu-theme-7 .price { color: #fb923c; }
.menu-theme-7 .premium-layout-single .menu-product-card img,
.menu-theme-7 .premium-layout-single .menu-product-card .menu-product-no-image { min-height: 156px; }
.menu-theme-7 .premium-layout-double .menu-product-card img,
.menu-theme-7 .premium-layout-double .menu-product-card .menu-product-no-image { min-height: 108px; }
.menu-theme-7 .premium-layout-double .menu-product-card .p-4 { padding: 0.62rem; }
.menu-theme-7 .premium-layout-double .menu-product-name { font-size: 0.82rem; line-height: 1.2; }
.menu-theme-7 .premium-layout-double .menu-product-description { font-size: 0.69rem; -webkit-line-clamp: 1; line-height: 1.28; }
.menu-theme-7 .premium-layout-double .menu-product-price { font-size: 0.86rem; margin-top: 0.28rem; }

.menu-theme-7 .menu-add-to-cart-btn {
  min-height: 44px;
  border-radius: 12px;
  font-size: 0.88rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.28);
}
.menu-theme-7 .premium-layout-double .menu-add-to-cart-btn { min-height: 36px; font-size: 0.74rem; padding: 0.35rem 0.5rem; }

.menu-theme-7 .menu-product-card .product-label {
  z-index: 2;
  max-width: calc(100% - 12px);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.55);
}
.menu-theme-7 .menu-product-card .product-label-text { color: #f8fafc; }
.menu-theme-7 .menu-product-card .product-label-icon { color: #e2e8f0; }
.menu-theme-7 .premium-layout-double .menu-product-card .product-label {
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  border: 1px solid rgba(129, 140, 248, 0.55);
}
.menu-theme-7 .premium-layout-double .menu-product-card .product-label-icon { font-size: 0.7rem; line-height: 1; }
.menu-theme-7 .premium-layout-double .menu-product-card .product-label-text { display: none !important; }

.menu-theme-7 .menu-product-card .product-like-btn {
  background: rgba(15, 23, 42, 0.75);
  color: #cbd5e1;
  border: 1px solid rgba(71, 85, 105, 0.7);
}
.menu-theme-7 .menu-product-card .product-like-btn .like-count { color: #e2e8f0; }
.menu-theme-7 .menu-product-card .product-like-btn.liked {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(248, 113, 113, 0.75);
  color: #fca5a5;
}

.menu-theme-7 .menu-allergen-bar { display: none; }
.menu-theme-7 .menu-allergen-panel {
  margin: 0 0.7rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(71, 85, 105, 0.65);
  background: rgba(15, 23, 42, 0.9);
}
.menu-theme-7 .menu-allergen-panel-title,
.menu-theme-7 .menu-allergen-hint,
.menu-theme-7 .menu-allergen-legal-note { color: #cbd5e1; }
.menu-theme-7 .menu-allergen-group-tab { background: #0f172a; color: #cbd5e1; border-color: rgba(71,85,105,0.8); }
.menu-theme-7 .menu-allergen-group-tab.active { background: #312e81; color: #e0e7ff; border-color: rgba(129,140,248,0.8); }
.menu-theme-7 .menu-allergen-chip { background: #0f172a; color: #e2e8f0; border-color: rgba(71,85,105,0.8); }
.menu-theme-7 .menu-allergen-chip.active { background: rgba(194, 65, 12, 0.35); color: #ffedd5; border-color: rgba(251,146,60,0.8); box-shadow: none; }
.menu-theme-7 .allergen-warning-badge {
  background: rgba(180, 83, 9, 0.9);
  color: #fff7ed;
  border: 1px solid rgba(251, 146, 60, 0.6);
}

.menu-theme-7 .product-modal-overlay { padding: 20px; align-items: center; justify-content: center; }
.menu-theme-7 .product-modal-backdrop { background: rgba(2, 6, 23, 0.55); backdrop-filter: blur(7px); }
.menu-theme-7 .product-modal-container { width: min(92vw, 440px); max-height: min(84vh, 760px); margin: 0; transform: translateY(10px) scale(0.985); }
.menu-theme-7 .product-modal-overlay.active .product-modal-container { transform: translateY(0) scale(1); }
.menu-theme-7 .product-modal-content {
  border-radius: 20px;
  border: 1px solid rgba(71, 85, 105, 0.7);
  background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(2,6,23,0.95));
  color: #e2e8f0;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
}
.menu-theme-7 .product-modal-name { color: #f8fafc; }
.menu-theme-7 .product-modal-desc { color: #94a3b8; }
.menu-theme-7 .product-modal-price { color: #fcd34d; }
.menu-theme-7 .product-modal-like-btn { background: #111827; color: #cbd5e1; border-color: rgba(71,85,105,0.8); }

.menu-theme-7 .menu-header,
.menu-theme-7 .menu-tab-nav,
.menu-theme-7 #dineInBar,
.menu-theme-7 .menu-back-nav { z-index: 40 !important; }
.menu-theme-7 .product-modal-overlay { z-index: 13050 !important; }
.menu-theme-7 .cart-drawer,
.menu-theme-7 .cart-drawer-backdrop,
.menu-theme-7 .order-modal,
.menu-theme-7 .order-modal-backdrop,
.menu-theme-7 #dineInCodeModal,
.menu-theme-7 #dineInOffcanvas,
.menu-theme-7 #dineInOverlay { z-index: 13020 !important; }
.menu-theme-7 .menu-lang-switcher { z-index: 92 !important; }
.menu-theme-7 .ai-fab { z-index: 13040 !important; }
.menu-theme-7 .ai-chat-overlay { z-index: 13040 !important; }
.menu-theme-7 .ai-chat { z-index: 13050 !important; }

.menu-theme-7 #dineInBar {
  background: linear-gradient(135deg, rgba(30,41,59,0.92), rgba(15,23,42,0.92)) !important;
  border-bottom: 1px solid rgba(71,85,105,0.7);
}
.menu-theme-7 .premium-dinein-btn {
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  background: rgba(249, 115, 22, 0.18) !important;
  color: #ffedd5 !important;
  border-color: rgba(251,146,60,0.45) !important;
}
.menu-theme-7 .menu-lang-toggle {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  border: 1px solid rgba(251, 146, 60, 0.75);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.38);
}
.menu-theme-7 .menu-lang-toggle svg { color: #ffffff; }
.menu-theme-7 .menu-lang-flags {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  margin: 0;
  transform: translate(-50%, 8px);
  border-radius: 14px;
  padding: 8px;
  gap: 8px;
  background: #0f172a;
  border: 1px solid rgba(71, 85, 105, 0.75);
}
.menu-theme-7 .menu-lang-switcher.open .menu-lang-flags { transform: translate(-50%, 0); }
.menu-theme-7 .ai-fab {
  bottom: 20px;
  right: 14px;
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  border-color: rgba(251, 146, 60, 0.65);
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.4);
}
.menu-theme-7 .ai-fab svg { color: #ffffff; }
.menu-theme-7 .ai-chat-header {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.menu-theme-7 .ai-fab-pulse {
  border-color: rgba(251, 146, 60, 0.55);
}

.menu-theme-7 .menu-footer {
  background: #0f172a;
  border-top: 1px solid rgba(71, 85, 105, 0.7);
  padding: 1.25rem 1rem 1.5rem;
}
.menu-theme-7 .menu-footer-text { font-size: 0.8125rem; color: #94a3b8; }
.menu-theme-7 .menu-footer-brand-link { color: #e2e8f0; }

.menu-theme-7 .menu-about-section { background: #0b1120; }
.menu-theme-7 .menu-about-title { color: #f8fafc; }
.menu-theme-7 .menu-about-desc { color: #94a3b8; }
.menu-theme-7 .menu-about-card {
  background: #111827;
  border-color: rgba(71,85,105,0.7);
}
.menu-theme-7 .menu-about-card-label { color: #94a3b8; }
.menu-theme-7 .menu-about-card-value { color: #e2e8f0; }
.menu-theme-7 .menu-about-wifi-pass-code {
  background: #0f172a;
  color: #e2e8f0;
  border-color: rgba(71,85,105,0.7);
}

.menu-theme-7 .cart-drawer {
  background: #0f172a;
  color: #e2e8f0;
}
.menu-theme-7 .cart-drawer-header,
.menu-theme-7 .cart-drawer-footer {
  background: #111827;
  border-color: rgba(71,85,105,0.7);
}
.menu-theme-7 .cart-drawer-title,
.menu-theme-7 .cart-item-name,
.menu-theme-7 .cart-summary-total { color: #f8fafc; }
.menu-theme-7 .cart-item,
.menu-theme-7 .cart-item-qty,
.menu-theme-7 .cart-summary-row { border-color: rgba(71,85,105,0.7); color: #94a3b8; }
.menu-theme-7 .cart-checkout-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

@media (max-width: 768px) {
  .menu-theme-7 .menu-lang-switcher {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 20px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .menu-theme-7 .menu-lang-flags {
    left: 50%;
    bottom: calc(100% + 8px);
    margin: 0;
    transform: translate(-50%, 8px);
    border-radius: 14px;
  }
  .menu-theme-7 .menu-lang-switcher.open .menu-lang-flags { transform: translate(-50%, 0); }
}

/* ======================================================
  THEME 8 - PREMIUM HIGH-END EDITORIAL
  ====================================================== */
.menu-theme-8.menu-page {
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 191, 36, 0.08) 0%, transparent 38%),
    radial-gradient(circle at 88% 2%, rgba(249, 115, 22, 0.12) 0%, transparent 32%),
    linear-gradient(180deg, #0e0a07 0%, #1c120c 32%, #110c08 100%);
  color: #fdf4e7;
}
.menu-theme-8 .menu-header,
.menu-theme-8 .menu-tab-nav {
  background: rgba(24, 15, 10, 0.82) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}
.menu-theme-8 .menu-company-name { color: #fff7ed; font-weight: 700; letter-spacing: -0.01em; }
.menu-theme-8 .menu-description { color: #fdba74; }
.menu-theme-8 .menu-header-logo-wrap {
  background: transparent !important;
}
.menu-theme-8 .menu-tab-nav {
  position: static !important;
  top: auto !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.42rem;
  padding: 0.42rem;
  border-radius: 16px;
  margin: 0 0.7rem 0.55rem;
}
.menu-theme-8 .menu-tab-btn,
.menu-theme-8 .menu-tab-filter-btn {
  position: relative;
  min-height: 40px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 12px;
  background: rgba(39, 24, 15, 0.84);
  color: #fdba74;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.menu-theme-8 .menu-tab-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}
.menu-theme-8 .menu-tab-filter-btn .menu-allergen-count {
  position: absolute;
  top: 4px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  font-size: 0.62rem;
}
.menu-theme-8 .menu-tab-btn.active,
.menu-theme-8 .menu-tab-filter-btn.has-filter {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.32);
}

.menu-theme-8 .menu-category-grid {
  padding-top: 0.45rem;
  margin-bottom: 0.42rem;
}
.menu-theme-8 .menu-category-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
  padding: 0 0.7rem 0.2rem;
}
.menu-theme-8 .menu-category-card {
  min-height: 140px;
  border-radius: 16px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  background: linear-gradient(160deg, rgba(41, 25, 15, 0.76), rgba(22, 13, 9, 0.88));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.menu-theme-8 .menu-category-card:nth-child(4n + 1) { grid-column: span 2; min-height: 164px; }
.menu-theme-8 .menu-category-card.is-active {
  border-color: rgba(251, 191, 36, 0.62);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.33);
  transform: translateY(-2px);
}
.menu-theme-8 .menu-category-card-bg {
  border-radius: 16px;
}
.menu-theme-8 .menu-category-card-overlay {
  background: linear-gradient(180deg, rgba(17, 12, 8, 0.12) 10%, rgba(17, 12, 8, 0.88) 92%);
}
.menu-theme-8 .menu-category-card-content {
  padding: 0.72rem;
}
.menu-theme-8 .menu-category-card-title {
  color: #fff7ed;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.menu-theme-8 .menu-category-card-count {
  color: #fdba74;
  font-size: 0.68rem;
}

.menu-theme-8 .menu-filter-content {
  display: block;
  padding-top: 0.15rem;
}
.menu-theme-8 .menu-back-nav {
  position: static;
  top: auto;
  z-index: 43;
  background: linear-gradient(145deg, rgba(43, 26, 15, 0.86), rgba(17, 11, 8, 0.9));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 16px;
  padding: 0.45rem 0.55rem;
  margin: 0 0.7rem 0.7rem;
  gap: 0.5rem;
}
.menu-theme-8 .menu-back-btn { display: none; }
.menu-theme-8 .menu-current-category {
  color: #fff7ed;
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-theme-8 .premium-grid-switcher {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--menu-accent-border);
  border-radius: 999px;
  padding: 0.2rem;
}
.menu-theme-8 .premium-grid-switcher-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--menu-accent-solid);
  border-radius: 999px;
  cursor: pointer;
}
.menu-theme-8 .premium-grid-switcher-btn.is-active {
  background: var(--menu-accent-gradient);
  color: #ffffff;
  box-shadow: var(--menu-accent-shadow);
}

.menu-theme-8 .menu-products-grid {
  grid-template-columns: 1fr;
  gap: 0.78rem;
}
.menu-theme-8 .premium-layout-double .menu-products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}
.menu-theme-8 .menu-product-card {
  border-radius: 18px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  background: linear-gradient(155deg, rgba(37, 23, 14, 0.9), rgba(19, 12, 8, 0.94));
  box-shadow: 0 10px 26px rgba(7, 4, 2, 0.3);
  overflow: hidden;
}
.menu-theme-8 .menu-product-name { color: #fff7ed; letter-spacing: 0.01em; }
.menu-theme-8 .menu-product-description { color: #fdba74; }
.menu-theme-8 .menu-product-price,
.menu-theme-8 .price { color: #facc15; }
.menu-theme-8 .premium-layout-single .menu-product-card {
  display: flex;
  align-items: stretch;
  min-height: 152px;
}
.menu-theme-8 .premium-layout-single .menu-product-card > div:first-child {
  flex: 0 0 40%;
  max-width: 40%;
}
.menu-theme-8 .premium-layout-single .menu-product-card img,
.menu-theme-8 .premium-layout-single .menu-product-card .menu-product-no-image {
  min-height: 100%;
  height: 100%;
  border-radius: 0;
}
.menu-theme-8 .premium-layout-single .menu-product-card .p-4 {
  padding: 0.82rem 0.78rem;
}
.menu-theme-8 .premium-layout-double .menu-product-card img,
.menu-theme-8 .premium-layout-double .menu-product-card .menu-product-no-image { min-height: 108px; }
.menu-theme-8 .premium-layout-double .menu-product-card .p-4 { padding: 0.62rem; }
.menu-theme-8 .premium-layout-double .menu-product-name { font-size: 0.82rem; line-height: 1.2; }
.menu-theme-8 .premium-layout-double .menu-product-description { font-size: 0.69rem; -webkit-line-clamp: 1; line-height: 1.28; }
.menu-theme-8 .premium-layout-double .menu-product-price { font-size: 0.86rem; margin-top: 0.28rem; }
.menu-theme-8 .menu-add-to-cart-btn {
  min-height: 44px;
  border-radius: 12px;
  font-size: 0.88rem;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.menu-theme-8 .premium-layout-double .menu-add-to-cart-btn {
  min-height: 36px;
  font-size: 0.74rem;
  padding: 0.35rem 0.5rem;
}

.menu-theme-8 .menu-product-card .product-label {
  z-index: 2;
  max-width: calc(100% - 12px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(255, 247, 237, 0.95);
  border-color: rgba(251, 191, 36, 0.35);
}
.menu-theme-8 .menu-product-card .product-label-text { color: #9a3412; }
.menu-theme-8 .menu-product-card .product-label-icon { color: #c2410c; }
.menu-theme-8 .premium-layout-double .menu-product-card .product-label {
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.menu-theme-8 .premium-layout-double .menu-product-card .product-label-icon { font-size: 0.7rem; line-height: 1; }
.menu-theme-8 .premium-layout-double .menu-product-card .product-label-text { display: none !important; }
.menu-theme-8 .menu-product-card .product-like-btn {
  background: rgba(17, 10, 6, 0.72);
  border-color: rgba(251, 191, 36, 0.25);
}
.menu-theme-8 .menu-product-card .product-like-btn .like-count { color: #fed7aa; }
.menu-theme-8 .menu-product-card .product-like-btn.liked {
  background: rgba(249, 115, 22, 0.24);
  border-color: rgba(251, 146, 60, 0.52);
}

.menu-theme-8 .menu-allergen-bar { display: none; }
.menu-theme-8 .menu-allergen-panel {
  margin: 0 0.7rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: linear-gradient(150deg, rgba(43, 25, 15, 0.86), rgba(22, 13, 8, 0.9));
  backdrop-filter: blur(10px);
}
.menu-theme-8 .menu-allergen-panel-title,
.menu-theme-8 .menu-allergen-hint,
.menu-theme-8 .menu-allergen-legal-note { color: #fed7aa; }
.menu-theme-8 .menu-allergen-group-tab {
  background: rgba(17, 10, 6, 0.86);
  color: #fdba74;
  border-color: rgba(217, 119, 6, 0.42);
}
.menu-theme-8 .menu-allergen-group-tab.active {
  background: rgba(249, 115, 22, 0.3);
  color: #fff7ed;
  border-color: rgba(251, 191, 36, 0.62);
}
.menu-theme-8 .menu-allergen-chip {
  background: rgba(17, 10, 6, 0.86);
  color: #fdba74;
  border-color: rgba(217, 119, 6, 0.36);
}
.menu-theme-8 .menu-allergen-chip.active {
  background: rgba(249, 115, 22, 0.32);
  color: #fff7ed;
  border-color: rgba(251, 191, 36, 0.6);
}
.menu-theme-8 .allergen-warning-badge {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0.35rem 0.5rem 0.5rem;
  border-radius: 10px;
  font-size: 0.66rem;
  line-height: 1.25;
  max-width: calc(100% - 1rem);
}
.menu-theme-8 .premium-layout-double .allergen-warning-badge {
  margin: 0.28rem 0.38rem 0.38rem;
  font-size: 0.6rem;
}

.menu-theme-8 .product-modal-overlay { padding: 20px; align-items: center; justify-content: center; }
.menu-theme-8 .product-modal-backdrop { background: rgba(11, 6, 3, 0.58); backdrop-filter: blur(7px); }
.menu-theme-8 .product-modal-container {
  width: min(92vw, 440px);
  max-height: min(84vh, 760px);
  margin: 0;
  transform: translateY(10px) scale(0.985);
}
.menu-theme-8 .product-modal-overlay.active .product-modal-container { transform: translateY(0) scale(1); }
.menu-theme-8 .product-modal-content {
  border-radius: 20px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: linear-gradient(160deg, rgba(31, 19, 11, 0.95), rgba(17, 11, 8, 0.96));
  box-shadow: 0 24px 60px rgba(7, 4, 2, 0.45);
}
.menu-theme-8 .product-modal-name { color: #fff7ed; }
.menu-theme-8 .product-modal-desc { color: #fdba74; }
.menu-theme-8 .product-modal-price { color: #facc15; }
.menu-theme-8 .product-modal-like-btn { background: #2b1b10; color: #fdba74; border-color: rgba(251, 191, 36, 0.34); }

/* Z-index hierarchy */
.menu-theme-8 .menu-product-card { z-index: 1; }
.menu-theme-8 .product-label,
.menu-theme-8 .allergen-warning-badge { z-index: 2; }
.menu-theme-8 .menu-header,
.menu-theme-8 .menu-tab-nav,
.menu-theme-8 #dineInBar,
.menu-theme-8 .menu-back-nav { z-index: 40 !important; }
.menu-theme-8 .product-modal-overlay { z-index: 13050 !important; }
.menu-theme-8 .cart-drawer,
.menu-theme-8 .cart-drawer-backdrop,
.menu-theme-8 .order-modal,
.menu-theme-8 .order-modal-backdrop,
.menu-theme-8 #dineInCodeModal,
.menu-theme-8 #dineInOffcanvas,
.menu-theme-8 #dineInOverlay { z-index: 13020 !important; }
.menu-theme-8 .menu-lang-switcher { z-index: 92 !important; }
.menu-theme-8 .ai-fab { z-index: 13040 !important; }
.menu-theme-8 .ai-chat-overlay { z-index: 13040 !important; }
.menu-theme-8 .ai-chat { z-index: 13050 !important; }

.menu-theme-8 #dineInBar {
  background: linear-gradient(135deg, rgba(31,19,11,0.96), rgba(68,37,16,0.9)) !important;
  border-bottom: 1px solid rgba(251, 191, 36, 0.24);
}
.menu-theme-8 .premium-dinein-btn {
  border-radius: 999px !important;
  font-size: 0.72rem !important;
}
.menu-theme-8 .menu-lang-toggle,
.menu-theme-8 .ai-fab {
  background: linear-gradient(135deg, #f59e0b, #f97316) !important;
  border: 1px solid rgba(251, 191, 36, 0.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}
.menu-theme-8 .menu-lang-toggle svg,
.menu-theme-8 .ai-fab svg { color: #ffffff; }
.menu-theme-8 .menu-lang-flags {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  margin: 0;
  transform: translate(-50%, 8px);
  border-radius: 14px;
  padding: 8px;
  gap: 8px;
  background: #22150c;
  border: 1px solid rgba(251, 191, 36, 0.3);
  z-index: 3;
}
.menu-theme-8 .menu-lang-switcher.open .menu-lang-flags { transform: translate(-50%, 0); }
.menu-theme-8 .menu-lang-switcher { bottom: 20px; left: 14px; top: auto; }
.menu-theme-8 .ai-fab {
  bottom: 20px;
  right: 14px;
  background: linear-gradient(135deg, #f59e0b, #f97316) !important;
  border-color: rgba(251, 191, 36, 0.52);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.35);
}
.menu-theme-8 .ai-fab-pulse { border-color: rgba(251, 191, 36, 0.5); }
.menu-theme-8 .ai-chat-header { background: linear-gradient(135deg, #f59e0b, #f97316); }

.menu-theme-8 .menu-footer {
  background: #1a110b;
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding: 1.25rem 1rem 1.5rem;
}
.menu-theme-8 .menu-footer-text { font-size: 0.8125rem; color: #fdba74; }
.menu-theme-8 .menu-footer-brand-link { color: #fff7ed; }
.menu-theme-8 .menu-about-section { background: #110c08; }
.menu-theme-8 .menu-about-title { color: #fff7ed; }
.menu-theme-8 .menu-about-desc { color: #fdba74; }
.menu-theme-8 .menu-about-card {
  background: #22150c;
  border-color: rgba(251, 191, 36, 0.22);
}
.menu-theme-8 .menu-about-card-label { color: #fdba74; }
.menu-theme-8 .menu-about-card-value { color: #fff7ed; }
.menu-theme-8 .menu-about-wifi-pass-code {
  background: #1a110b;
  color: #fff7ed;
  border-color: rgba(251, 191, 36, 0.22);
}
.menu-theme-8 .cart-drawer {
  background: #1a110b;
  color: #fff7ed;
}
.menu-theme-8 .cart-drawer-header,
.menu-theme-8 .cart-drawer-footer {
  background: #22150c;
  border-color: rgba(251, 191, 36, 0.22);
}
.menu-theme-8 .cart-drawer-title,
.menu-theme-8 .cart-item-name,
.menu-theme-8 .cart-summary-total { color: #fff7ed; }
.menu-theme-8 .cart-item,
.menu-theme-8 .cart-item-qty,
.menu-theme-8 .cart-summary-row { border-color: rgba(251, 191, 36, 0.2); color: #fdba74; }

@media (max-width: 768px) {
  .menu-theme-8 .menu-lang-switcher {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 20px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .menu-theme-8 .menu-lang-flags {
    left: 50%;
    bottom: calc(100% + 8px);
    margin: 0;
    transform: translate(-50%, 8px);
    border-radius: 14px;
  }
  .menu-theme-8 .menu-lang-switcher.open .menu-lang-flags { transform: translate(-50%, 0); }
}

/* Theme 8 - light editorial refinement + separate page flow */
.menu-theme-8.menu-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(219, 234, 254, 0.7) 0%, transparent 42%),
    radial-gradient(circle at 92% 2%, rgba(238, 242, 255, 0.75) 0%, transparent 36%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 46%, #f8fafc 100%);
  color: #0f172a;
}
.menu-theme-8 .menu-header,
.menu-theme-8 .menu-tab-nav {
  background: rgba(255, 255, 255, 0.78) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.menu-theme-8 .menu-company-name { color: #0f172a; }
.menu-theme-8 .menu-description { color: #334155; }
.menu-theme-8 .menu-category-grid {
  position: relative;
  top: auto;
  z-index: 1;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.menu-theme-8 .menu-category-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  width: 100%;
  padding: 0.48rem 0.7rem 0.62rem;
}
.menu-theme-8 .menu-category-grid-inner::-webkit-scrollbar {
  display: none;
}
.menu-theme-8 .menu-category-card {
  position: relative;
  width: 100%;
  min-height: 84px;
  height: 84px;
  aspect-ratio: auto;
  min-width: 0;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  background: #0f3f5d;
  padding: 0.5rem 0.65rem;
  touch-action: manipulation;
}
.menu-theme-8 .menu-category-card:nth-child(4n + 1) {
  grid-column: auto;
  min-height: 84px;
}
.menu-theme-8 .menu-category-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 0;
  pointer-events: none;
}
.menu-theme-8 .menu-category-card-bg .menu-category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.menu-theme-8 .menu-category-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14) 0%, rgba(15, 23, 42, 0.58) 100%);
  backdrop-filter: blur(0.5px);
  pointer-events: none;
}
.menu-theme-8 .menu-category-card-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  width: 100%;
  pointer-events: auto;
}
.menu-theme-8 .menu-category-card-title {
  color: #f8fdff;
  font-size: 0.8rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.menu-theme-8 .menu-category-card-count {
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.66rem;
  margin-top: 0.08rem;
}
.menu-theme-8 .menu-category-card-icon {
  color: #ffffff;
  font-size: 0.92rem;
  margin-bottom: 0.12rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.menu-theme-8 .menu-category-card.is-active {
  border-color: var(--menu-accent-border);
  box-shadow: var(--menu-accent-shadow);
  transform: translateY(-1px);
}

.menu-theme-8 .menu-back-nav {
  background: rgba(248, 250, 252, 0.82);
  border-color: rgba(148, 163, 184, 0.3);
}
.menu-theme-8 .menu-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #334155;
  background: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
}
.menu-theme-8 .menu-current-category { color: #0f172a; }

.menu-theme-8 .menu-product-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.menu-theme-8 .menu-product-name { color: #0f172a; }
.menu-theme-8 .menu-product-description { color: #475569; }
.menu-theme-8 .menu-product-price,
.menu-theme-8 .price { color: #ea580c; }

.menu-theme-8 .premium-layout-single .menu-product-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  min-height: 126px;
}
.menu-theme-8 .premium-layout-single .menu-product-card > div:first-child {
  width: 118px;
  min-width: 118px;
  max-width: 118px;
  flex: 0 0 118px;
}
.menu-theme-8 .premium-layout-single .menu-product-card img,
.menu-theme-8 .premium-layout-single .menu-product-card .menu-product-no-image {
  width: 118px;
  min-height: 126px;
  height: 100%;
  border-radius: 0;
}
.menu-theme-8 .premium-layout-single .menu-product-card .p-3,
.menu-theme-8 .premium-layout-single .menu-product-card .p-4 {
  padding: 0.66rem 0.72rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  min-width: 0;
}
.menu-theme-8 .premium-layout-single .menu-product-description {
  -webkit-line-clamp: 2;
  line-height: 1.35;
  font-size: 0.76rem;
}
.menu-theme-8 .premium-layout-single .menu-product-name {
  font-size: 0.9rem;
  line-height: 1.25;
}
.menu-theme-8 .premium-layout-single .menu-product-price,
.menu-theme-8 .premium-layout-single .price {
  font-size: 0.92rem;
}
.menu-theme-8 .premium-layout-single .menu-product-card .product-label-text,
.menu-theme-8 .premium-layout-single .menu-product-card .product-label-text::after {
  display: none !important;
  content: none;
}
.menu-theme-8 .premium-layout-single .menu-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.58rem;
  transition: all 0.25s ease;
}
.menu-theme-8 .premium-layout-double .menu-products-grid {
  transition: all 0.25s ease;
}

.menu-theme-8 .menu-allergen-panel {
  border-color: rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.86);
}
.menu-theme-8 .menu-allergen-panel-title,
.menu-theme-8 .menu-allergen-hint,
.menu-theme-8 .menu-allergen-legal-note { color: #334155; }

.menu-theme-8 .product-modal-backdrop { background: rgba(15, 23, 42, 0.36); }
.menu-theme-8 .product-modal-content {
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.88));
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.24);
}
.menu-theme-8 .product-modal-name { color: #0f172a; }
.menu-theme-8 .product-modal-desc { color: #334155; }
.menu-theme-8 .product-modal-price { color: #f97316; }
.menu-theme-8 .product-modal-like-btn {
  background: #f8fafc;
  color: #334155;
  border-color: rgba(148, 163, 184, 0.34);
}

.menu-theme-8 .menu-lang-flags {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.28);
}
.menu-theme-8 .menu-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.menu-theme-8 .menu-footer-text { color: #6b7280; }
.menu-theme-8 .menu-footer-brand-link { color: #334155; }
.menu-theme-8 .menu-about-section { background: #f8fafc; }
.menu-theme-8 .menu-about-title { color: #0f172a; }
.menu-theme-8 .menu-about-desc { color: #475569; }
.menu-theme-8 .menu-about-card {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.22);
}
.menu-theme-8 .menu-about-card-label { color: #475569; }
.menu-theme-8 .menu-about-card-value { color: #0f172a; }
.menu-theme-8 .menu-about-wifi-pass-code {
  background: #f8fafc;
  color: #0f172a;
  border-color: rgba(148, 163, 184, 0.22);
}
.menu-theme-8 .cart-drawer {
  background: #ffffff;
  color: #0f172a;
}
.menu-theme-8 .cart-drawer-header,
.menu-theme-8 .cart-drawer-footer {
  background: #f8fafc;
  border-color: #e5e7eb;
}
.menu-theme-8 .cart-drawer-title,
.menu-theme-8 .cart-item-name,
.menu-theme-8 .cart-summary-total { color: #0f172a; }
.menu-theme-8 .cart-item,
.menu-theme-8 .cart-item-qty,
.menu-theme-8 .cart-summary-row { border-color: #e5e7eb; color: #64748b; }

/* Theme 8 - tab/allergen inactive states follow selected palette */
.menu-theme-8 .menu-tab-btn:not(.active),
.menu-theme-8 .menu-tab-filter-btn:not(.has-filter) {
  background: rgba(255, 255, 255, 0.9);
  color: var(--menu-accent-solid);
  border-color: var(--menu-accent-border);
  box-shadow: 0 2px 8px rgba(148, 163, 184, 0.15);
}
.menu-theme-8 .menu-tab-btn:not(.active):hover,
.menu-theme-8 .menu-tab-filter-btn:not(.has-filter):hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--menu-accent-solid);
}
.menu-theme-8 .menu-allergen-group-tab,
.menu-theme-8 .menu-allergen-chip {
  background: #ffffff;
  color: var(--menu-accent-solid);
  border-color: var(--menu-accent-border);
}
.menu-theme-8 .menu-allergen-group-tab.active,
.menu-theme-8 .menu-allergen-chip.active {
  background: var(--menu-accent-gradient);
  color: #ffffff;
  border-color: var(--menu-accent-border);
  box-shadow: var(--menu-accent-shadow);
}

/* ======================================================
   GLOBAL THEME COLOR PALETTE (all basic + premium)
   ====================================================== */
.menu-page {
  --menu-accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --menu-accent-solid: #ef4444;
  --menu-accent-strong: #dc2626;
  --menu-accent-shadow: 0 4px 14px rgba(239, 68, 68, 0.28);
  --menu-accent-shadow-hover: 0 6px 20px rgba(239, 68, 68, 0.38);
  --menu-accent-shadow-lg: 0 10px 30px rgba(239, 68, 68, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(239, 68, 68, 0.42);
  --menu-accent-pulse: rgba(239, 68, 68, 0.45);
  --menu-accent-border: rgba(248, 113, 113, 0.7);
  --menu-theme4-bg-start: #fffaf3;
  --menu-theme4-bg-end: #fff4e6;
}

.menu-page.menu-color-1 {
  --menu-accent-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --menu-accent-solid: #2563eb;
  --menu-accent-strong: #1d4ed8;
  --menu-accent-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  --menu-accent-shadow-hover: 0 6px 20px rgba(37, 99, 235, 0.4);
  --menu-accent-shadow-lg: 0 10px 30px rgba(37, 99, 235, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(37, 99, 235, 0.45);
  --menu-accent-pulse: rgba(37, 99, 235, 0.45);
  --menu-accent-border: rgba(96, 165, 250, 0.72);
  --menu-theme4-bg-start: #f4f8ff;
  --menu-theme4-bg-end: #e8f0ff;
}

.menu-page.menu-color-2 {
  --menu-accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --menu-accent-solid: #ef4444;
  --menu-accent-strong: #dc2626;
  --menu-accent-shadow: 0 4px 14px rgba(239, 68, 68, 0.28);
  --menu-accent-shadow-hover: 0 6px 20px rgba(239, 68, 68, 0.38);
  --menu-accent-shadow-lg: 0 10px 30px rgba(239, 68, 68, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(239, 68, 68, 0.42);
  --menu-accent-pulse: rgba(239, 68, 68, 0.45);
  --menu-accent-border: rgba(248, 113, 113, 0.7);
  --menu-theme4-bg-start: #fffaf3;
  --menu-theme4-bg-end: #fff4e6;
}

.menu-page.menu-color-3 {
  --menu-accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --menu-accent-solid: #7c3aed;
  --menu-accent-strong: #6d28d9;
  --menu-accent-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
  --menu-accent-shadow-hover: 0 6px 20px rgba(124, 58, 237, 0.4);
  --menu-accent-shadow-lg: 0 10px 30px rgba(124, 58, 237, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(124, 58, 237, 0.45);
  --menu-accent-pulse: rgba(124, 58, 237, 0.45);
  --menu-accent-border: rgba(167, 139, 250, 0.72);
  --menu-theme4-bg-start: #faf5ff;
  --menu-theme4-bg-end: #f3e8ff;
}

.menu-page.menu-color-4 {
  --menu-accent-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --menu-accent-solid: #059669;
  --menu-accent-strong: #047857;
  --menu-accent-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
  --menu-accent-shadow-hover: 0 6px 20px rgba(5, 150, 105, 0.4);
  --menu-accent-shadow-lg: 0 10px 30px rgba(5, 150, 105, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(5, 150, 105, 0.45);
  --menu-accent-pulse: rgba(5, 150, 105, 0.45);
  --menu-accent-border: rgba(52, 211, 153, 0.72);
  --menu-theme4-bg-start: #f0fdf9;
  --menu-theme4-bg-end: #e2fcef;
}

.menu-page.menu-color-5 {
  --menu-accent-gradient: linear-gradient(135deg, #db2777 0%, #f43f5e 100%);
  --menu-accent-solid: #db2777;
  --menu-accent-strong: #be185d;
  --menu-accent-shadow: 0 4px 14px rgba(219, 39, 119, 0.3);
  --menu-accent-shadow-hover: 0 6px 20px rgba(219, 39, 119, 0.4);
  --menu-accent-shadow-lg: 0 10px 30px rgba(219, 39, 119, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(219, 39, 119, 0.45);
  --menu-accent-pulse: rgba(219, 39, 119, 0.45);
  --menu-accent-border: rgba(244, 114, 182, 0.72);
  --menu-theme4-bg-start: #fff5fa;
  --menu-theme4-bg-end: #ffeaf3;
}

.menu-page.menu-color-6 {
  --menu-accent-gradient: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 100%);
  --menu-accent-solid: #b91c1c;
  --menu-accent-strong: #991b1b;
  --menu-accent-shadow: 0 4px 14px rgba(185, 28, 28, 0.3);
  --menu-accent-shadow-hover: 0 6px 20px rgba(185, 28, 28, 0.4);
  --menu-accent-shadow-lg: 0 10px 30px rgba(185, 28, 28, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(185, 28, 28, 0.45);
  --menu-accent-pulse: rgba(185, 28, 28, 0.45);
  --menu-accent-border: rgba(239, 68, 68, 0.68);
  --menu-theme4-bg-start: #fff5f5;
  --menu-theme4-bg-end: #ffe9e9;
}

.menu-page.menu-color-7 {
  --menu-accent-gradient: linear-gradient(135deg, #111827 0%, #374151 100%);
  --menu-accent-solid: #111827;
  --menu-accent-strong: #030712;
  --menu-accent-shadow: 0 4px 14px rgba(17, 24, 39, 0.35);
  --menu-accent-shadow-hover: 0 6px 20px rgba(17, 24, 39, 0.45);
  --menu-accent-shadow-lg: 0 10px 30px rgba(17, 24, 39, 0.4);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(17, 24, 39, 0.52);
  --menu-accent-pulse: rgba(55, 65, 81, 0.5);
  --menu-accent-border: rgba(107, 114, 128, 0.75);
  --menu-theme4-bg-start: #f8fafc;
  --menu-theme4-bg-end: #eef2f6;
}

.menu-page.menu-color-8 {
  --menu-accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --menu-accent-solid: #ea580c;
  --menu-accent-strong: #c2410c;
  --menu-accent-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
  --menu-accent-shadow-hover: 0 6px 20px rgba(234, 88, 12, 0.4);
  --menu-accent-shadow-lg: 0 10px 30px rgba(234, 88, 12, 0.35);
  --menu-accent-shadow-lg-hover: 0 14px 38px rgba(234, 88, 12, 0.45);
  --menu-accent-pulse: rgba(234, 88, 12, 0.45);
  --menu-accent-border: rgba(251, 146, 60, 0.72);
  --menu-theme4-bg-start: #fff9ef;
  --menu-theme4-bg-end: #fff1df;
}

.menu-tab-btn.active,
.menu-tab-filter-btn.has-filter,
.menu-add-to-cart-btn,
.menu-cart-fab,
.cart-checkout-btn,
.product-modal-add-btn,
.dine-in-add-btn {
  background: var(--menu-accent-gradient) !important;
}

.menu-add-to-cart-btn,
.menu-cart-fab,
.cart-checkout-btn,
.product-modal-add-btn,
.dine-in-add-btn {
  box-shadow: var(--menu-accent-shadow) !important;
}

.menu-add-to-cart-btn:hover,
.menu-cart-fab:hover,
.cart-checkout-btn:hover,
.product-modal-add-btn:hover,
.dine-in-add-btn:hover {
  box-shadow: var(--menu-accent-shadow-hover) !important;
}

.menu-page .menu-lang-toggle {
  background: var(--menu-accent-gradient) !important;
  border-color: var(--menu-accent-border) !important;
  box-shadow: var(--menu-accent-shadow) !important;
}

.menu-page .menu-lang-toggle svg {
  color: #ffffff !important;
}

.menu-page .menu-lang-btn.active {
  border-color: var(--menu-accent-solid) !important;
  box-shadow: 0 0 0 3px var(--menu-accent-pulse) !important;
}

.menu-theme-6 .menu-tab-btn.active,
.menu-theme-6 .menu-tab-filter-btn.has-filter,
.menu-theme-7 .menu-tab-btn.active,
.menu-theme-7 .menu-tab-filter-btn.has-filter,
.menu-theme-8 .menu-tab-btn.active,
.menu-theme-8 .menu-tab-filter-btn.has-filter {
  border-color: var(--menu-accent-border) !important;
  box-shadow: var(--menu-accent-shadow) !important;
}

.menu-theme-6 .menu-category-card.is-active,
.menu-theme-7 .menu-category-card.is-active,
.menu-theme-8 .menu-category-card.is-active {
  border-color: var(--menu-accent-border) !important;
  box-shadow: var(--menu-accent-shadow) !important;
}

.menu-theme-6 .menu-add-to-cart-btn,
.menu-theme-7 .menu-add-to-cart-btn,
.menu-theme-8 .menu-add-to-cart-btn,
.menu-theme-6 .product-modal-add-btn,
.menu-theme-7 .product-modal-add-btn,
.menu-theme-8 .product-modal-add-btn {
  box-shadow: var(--menu-accent-shadow) !important;
}

.menu-theme-6 .menu-lang-toggle,
.menu-theme-6 .ai-fab,
.menu-theme-7 .menu-lang-toggle,
.menu-theme-7 .ai-fab,
.menu-theme-8 .menu-lang-toggle,
.menu-theme-8 .ai-fab {
  background: var(--menu-accent-gradient) !important;
  border-color: var(--menu-accent-border) !important;
  box-shadow: var(--menu-accent-shadow-lg) !important;
}

.menu-theme-6 .ai-fab-pulse,
.menu-theme-7 .ai-fab-pulse,
.menu-theme-8 .ai-fab-pulse {
  border-color: var(--menu-accent-pulse) !important;
}

.menu-theme-6 .ai-chat-header,
.menu-theme-7 .ai-chat-header,
.menu-theme-8 .ai-chat-header {
  background: var(--menu-accent-gradient) !important;
}

.menu-page #dineInBar {
  background: var(--menu-accent-gradient) !important;
  box-shadow: var(--menu-accent-shadow) !important;
}

.menu-page .premium-dinein-btn.premium-dinein-btn-cart {
  color: var(--menu-accent-solid) !important;
}

.menu-theme-6 .cart-checkout-btn,
.menu-theme-7 .cart-checkout-btn,
.menu-theme-8 .cart-checkout-btn {
  background: var(--menu-accent-gradient) !important;
  box-shadow: var(--menu-accent-shadow) !important;
}
