    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* FIX: اضافه شدن فونت برای کل بادی و تنظیمات اصلی */
    body {
      font-family: 'Vazir', sans-serif;
      background: #f5f5f5;
      color: #000;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      direction: rtl;
      overflow: hidden;
    }

    /* ---------------------------------------------------------------- */
    /* ---------- کلاس اصلی صفحه (بدون تغییر) ---------- */
    /* ---------------------------------------------------------------- */

    .screen {
      width: 100%;
      height: 100vh;
      margin: 0 auto;

      background-repeat: no-repeat, no-repeat, repeat;
      background-position: center center, center center, center center;
      background-size: cover, cover, auto;
      background-color: #f5f5f5;

      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    }

    /* ---------------------------------------------------------------- */
    /* ---------- افکت‌های بلوم اصلاح شده (دایره‌ای‌تر و نرم‌تر) ---------- */
    /* ---------------------------------------------------------------- */

    .screen::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;

      /* تغییرات: حذف Spread Radius (مقدار چهارم) و افزایش Blur Radius (مقدار سوم) */
      box-shadow:
        /* بلوم صورتی بزرگ در گوشه بالا راست */
        -10vw -10vh 250px 0 rgba(59, 130, 246, 0.35),
        /* 250px blur, 0 spread */
        /* بلوم صورتی کوچک‌تر در وسط چپ */
        -40vw 30vh 180px 0 rgba(191, 219, 254, 0.3),
        /* 180px blur, 0 spread */
        /* بلوم صورتی روشن‌تر در پایین مرکز */
        0 100vh 300px 0 rgba(219, 234, 254, 0.25);
      /* 300px blur, 0 spread */

      /* افزایش تاری (Blur) فیلتر برای نرم‌تر شدن لبه‌ها */
      filter: blur(100px);
      mix-blend-mode: screen;
      z-index: -1;
      pointer-events: none;
    }

    .screen::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;

      box-shadow:
        /* بلوم بنفش ملایم در گوشه پایین چپ */
        /* حذف Spread Radius (مقدار چهارم) و افزایش Blur Radius (مقدار سوم) */
        50vw 80vh 200px 0 rgba(0, 94, 255, 0.3);
      /* 200px blur, 0 spread */

      /* افزایش تاری فیلتر */
      filter: blur(80px);
      mix-blend-mode: screen;
      z-index: -1;
      pointer-events: none;
    }

    .menu-overlay.active {
      transform: translateX(0);
      /* وقتی فعال شد → به داخل صفحه میاد */
    }

    .page {
      display: none;
      flex: 1;
      overflow-y: auto;
      /* اسکرول اصلی اینجا مدیریت می‌شود */
      position: relative;
      /* FIX: افزایش padding-bottom برای جبران فضای Bottom Nav و Cart Total */
      padding-bottom: 80px;
      animation: fadeIn 0.4s ease;
      flex-direction: column;
    }

    /* مودال موفقیت سفارش */
    .order-success-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      animation: fadeIn 0.4s ease-out;
    }

    .order-success-modal.show {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 24px;
      padding: 32px 24px;
      text-align: center;
      max-width: 380px;
      width: 90%;
      box-shadow: 0 20px 60px rgba(96, 165, 250, 0.3);
      animation: slideUp 0.5s ease-out;
    }

    .success-icon {
      font-size: 64px;
      color: #4ade80;
      margin-bottom: 16px;
    }

    .success-icon i {
      animation: bounce 1.5s infinite;
    }

    .modal-content h2 {
      color: #e2e2e2;
      margin: 16px 0;
      font-size: 22px;
    }

    .order-id {
      color: #3b82f6;
      font-size: 18px;
      margin: 12px 0;
    }

    .important-alert {
      background: #fff3cd;
      border: 1px solid #ffeaa7;
      border-radius: 16px;
      padding: 16px;
      margin: 20px 0;
      text-align: right;
      color: #d35400;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .important-alert i {
      font-size: 28px;
      color: #f39c12;
    }

    .modal-btn {
      background: linear-gradient(135deg, #3b82f6, #bfdbfe);
      color: #f6f5f5;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 12px;
      font-family: 'Vazir', sans-serif;
      font-weight: bold;
      cursor: pointer;
      margin-top: 12px;
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
      transition: all 0.3s;
    }

    .modal-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
    }

    /* انیمیشن‌ها */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideUp {
      from {
        transform: translateY(50px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    /* FIX: کلاس کمکی عمومی برای پنهان‌سازی (استفاده شده در JS) */
    .hidden {
      display: none !important;
    }

    .page.active {
      display: flex;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Header */
    .header,
    .detail-header {

      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
      color: #ccc;
      backdrop-filter: blur(10px);
      background: rgba(30, 30, 30, 0.7);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .headerw .back,
    .header .menu,
    .header .favorite,
    .detail-header .back,
    .detail-header .favorite {
      font-size: 22px;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 6px;
      border-radius: 50%;
    }

    .header .favorite,
    .detail-header .favorite {
      color: #1d4ed8;
    }

    .header .favorite.filled,
    .detail-header .favorite.filled {
      animation: heartBeat 0.6s ease;
    }

    @keyframes heartBeat {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.3);
      }
    }

    /* Page 1: Hero (بدون تغییر) */
    #page1 .hero {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 60px 30px;
    }

    #page1 .food-img {
      width: 220px;
      height: 220px;
      margin-bottom: 32px;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    #page1 .food-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 15px 30px rgba(0, 111, 208, 0.5));
    }

    #page1 h1 {
      font-size: 34px;
      font-weight: 800;
      margin-bottom: 14px;
      background: linear-gradient(90deg, #3b82f6, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .takht {

      color: #fb0000;
      font-size: 10px;

    }

    #page1 p {
      font-size: 15px;
      color: #bbb;
      margin-bottom: 40px;
      line-height: 1.7;
      max-width: 280px;
    }

    #page1 .btn-start {
      background: linear-gradient(45deg, #3b82f6, #3b82f6);
      color: #f4f4f4;
      font-weight: 700;
      font-family: 'Vazir', sans-serif;
      padding: 16px 44px;
      border-radius: 30px;
      border: none;
      font-size: 17px;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(7, 127, 255, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #page1 .btn-start::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: 0.6s;
    }

    #page1 .btn-start:hover::before {
      left: 100%;
    }

    #page1 .btn-start:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(96, 165, 250, 0.5);
    }

    /* Page 2: Offers */
    #page2 .content {
      flex: 1;
      padding: 0 20px;
      /* FIX: حذف اسکرول تکراری */
      /* overflow-y: auto; */
    }

    #page2 .greeting {
      font-size: 19px;
      font-weight: 700;
      margin: 20px 0 6px;
    }

    #page2 .subtitle {
      font-size: 14px;
      color: #999;
      margin-bottom: 22px;
    }

    .search-bar {
      background: #fafafa;
      border-radius: 18px;
      padding: 14px 18px;
      display: flex;
      margin-top: 25px;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      border: 1px solid #e2e2e2;
      transition: all 0.3s;
    }

    .search-bar:focus-within {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(7, 114, 255, 0.2);
    }

    .form-container {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-container form {
      width: 90%;
    }

    .search-bar i {
      color: #888;
      font-size: 19px;
    }

    .search-bar input {
      background: none;
      border: none;
      outline: none;
      color: #000;
      flex: 1;
      font-size: 15px;
      font-family: 'Vazir', sans-serif;
    }

    .tabs {
      display: flex;
      gap: 12px;
      margin-bottom: 22px;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 8px;
    }

    .tabs::-webkit-scrollbar {
      display: none;
    }

    .tab {
      background: #fafafa;
      padding: 10px 22px;
      border-radius: 22px;
      font-size: 14px;
      white-space: nowrap;
      transition: all 0.3s ease;
      cursor: pointer;
      font-weight: 500;
    }

    /* -------------------------------------- */
    /* استایل‌های سفارشی اسکرول‌بار (جدید) */
    /* -------------------------------------- */
    /* برای مرورگرهای WebKit (Chrome, Safari, Edge) */
    *::-webkit-scrollbar {
      width: 8px;
    }

    /* مسیر اسکرول (Track) */
    *::-webkit-scrollbar-track {
      background: transparent;
    }

    /* نشانگر اسکرول (Thumb) */
    *::-webkit-scrollbar-thumb {
      background: #3b82f6;
      /* طلایی */
      border-radius: 10px;
    }

    *::-webkit-scrollbar-thumb:hover {
      background: #60a5fa;
      /* نارنجی تیره روی هاور */
    }

    /* -------------------------------------- */
    /* پایان استایل‌های اسکرول‌بار */
    /* -------------------------------------- */
    .tab.active {
      background: linear-gradient(45deg, #3b82f6, #93c5fd);
      color: #ffffff;
      font-weight: 700;
      box-shadow: 0 1px 5px rgba(7, 143, 255, 0.4);
    }

    .food-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    .food-card {
      background: #fafafa;
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      justify-content: space-around;
      direction: ltr;
      display: flex;
      transition: all 0.3s ease;
      border: 1px dashed #acacac;
      align-items: center;
    }

    .food-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 25px rgba(255, 255, 255, 0.4);
    }

    .food-card .img {

      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

.food-card .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

    .food-card:hover .img img {
      transform: scale(1.1);
    }

    .food-card .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #d81d1d;
      color: #ffffff;
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 10px;
      font-weight: 700;
    }

    .food-card .info {
      padding: 14px;
    }

    .food-card .name {
      font-size: 15px;
      font-weight: 700;
      color: #000;
      margin-bottom: 4px;
    }

    .food-card .type {
      font-size: 12px;
      color: #999;
      margin-bottom: 8px;
    }

    .food-card .price {
      font-size: 16px;
      display: flex;
      font-weight: 700;
      color: #3b82f6;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }

    .watermark-banner {
      position: fixed;
      bottom: 14%;
      left: 50%;
      transform: translate(-50%, -50%);
      /* وسط صفحه */
      background-color: rgba(255, 255, 255, 0.5);
      /* نیمه‌شفاف */
      color: #313131;
      padding: 6px 12px;
      /* کوچیک‌تر */
      font-size: 12px;
      /* کوچیک‌تر */
      font-family: 'Vazirmatn', sans-serif;
      border-radius: 6px;
      z-index: 10000;
      text-align: center;
      max-width: 80%;
      /* جلوگیری از بزرگ شدن بیش از حد در موبایل */
      white-space: nowrap;
      /* جلوگیری از شکستن خط */
    }

    .watermark-banner a {
      color: #bb9600;
      text-decoration: none;
    }

    .food-card .actions {
      display: flex;
      justify-content: space-between;
      padding: 0 14px 14px;
      gap: 8px;
    }

    .food-card .add-to-cart,
    .food-card .add-to-fav {
      padding: 8px 12px;
      border-radius: 14px;
      width: 45px;
      height: 45px;
      font-size: 9px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .food-card .add-to-cart {
      background: #3b82f6;
      color: #f2f2f2;
      font-family: 'Vazir', sans-serif;
      border: none;
      width: 90%;
      height: 45px;
      font-size: 12px;
    }

    .food-card .add-to-fav {
      background: #e2e2e2;
      color: #1d4ed8;
      border: 1px solid #1d4ed8;
    }

    .food-card .add-to-fav.filled {
      background: #1d4ed8;
      color: #ebebeb;
    }

    .category-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding-bottom: 20px;
    }

    .category-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #fafafa;
      padding: 14px;
      border-radius: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid #e2e2e2;
    }

    .category-item:hover {
      transform: translateX(-6px);
      background: #f0f0f0;
    }

    .category-item .icon {
      width: 48px;
      height: 48px;
      background: #e2e2e2;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .category-item .icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }

    .category-item .name {
      font-size: 16px;
      font-weight: 700;
      color: #000;
    }

    .category-item .count {
      font-size: 13px;
      color: #999;
    }

    .category-item .price {
      font-size: 16px;
      font-weight: 700;
      color: #3b82f6;
    }

    /* Page 3: Detail */
    /* FIX: نام کلاس از detail-hero به detail-img-container تغییر یافت */
    #page3 .detail-img-container {
      height: 250px;
      margin: 20px;
      border-radius: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* FIX: استایل برای کلاس detail-img */
    #page3 .detail-img {
      height: 84%;
      object-fit: contain;
    }

    #page3 .detail-content {
      padding: 0 20px;
      flex: 1;
    }

    /* FIX: اضافه شدن استایل برای detail-info برای مرتب‌سازی عنوان و قیمت */
    #page3 .detail-info {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
      gap: 10px;
    }

    #page3 .detail-name {
      flex: 1;
    }

    #page3 .detail-type {
      display: none;
    }

    /* این را پنهان کردم چون نام غذا خودش در عنوان است */
    #page3 .detail-price {
      font-size: 26px;
      font-weight: 800;
      color: #3b82f6;
      white-space: nowrap;
    }


    #page3 .detail-title {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 10px;
      background: linear-gradient(90deg, #3b82f6, #3b82f6ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .main-item-section {
      text-align: center;
      margin: 25px 0;
      display: flex;
      justify-content: center;
      padding: 20px 0;
      border-bottom: 1px solid #e2e2e2;
      flex-direction: column;
      align-items: center;
    }

    .variant-item {
      padding: 5px;
      display: flex;
      border-radius: 10px;
      border: 2px dashed #09090926;
      margin-bottom: 8px;
      align-items: center;
      justify-content: space-around;
    }

    #detail-price {
      font-size: 28px;
      font-weight: 800;
      color: #3b82f6;
      margin-bottom: 12px;
    }
/* ========================================================= */
/*      سیستم پیگیری سفارش — استایل کامل مینیمال (مثل Pink اما تمیزتر)      */
/* ========================================================= */

/* دکمه شناور پیگیری سفارش */
.mini-track-btn {
  position: fixed;
  bottom: 88px;
  left: 18px;
  width: 58px;
  height: 58px;
  background: rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2.2px solid rgba(59, 130, 246, 0.35);
  border-radius: 50%;
  color: #3b82f6;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 20px rgba(59, 130, 246, 0.08);

}

.mini-track-btn:hover {
  transform: translateY(-6px) scale(1.08);
  background: rgba(59, 130, 246, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.mini-track-btn i {
  animation: gentlePulse 3s ease-in-out infinite;
}

/* بج نوتیفیکیشن روی دکمه */
.mini-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);

  z-index: 10;
}
.back{
  cursor: pointer;
}
/* صفحه پیگیری سفارش */
#trackingPage {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  z-index: 99999999999999999999999999999999999999;
}

.tracking-container {
  padding: 20px;
  min-height: 100%;
}

.current-order-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  text-align: center;
  animation: slideUp 0.6s ease-out;
}

.order-ref-big {
  font-size: 28px;
  font-weight: 800;
  color: #1e40af;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: 'Vazir', sans-serif;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  color: #1f2937;
  margin: 20px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.status-pending    { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.status-preparing  { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.status-ready      { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.status-delivered  { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.status-cancelled  { background: linear-gradient(135deg, #fee2e2, #fecaca); }

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.info-item {
  background: #f8fafc;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.info-item i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #64748b;
}

.info-item small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 4px;
}

.info-value {
  font-weight: 700;
  color: #1e293b;
  font-size: 16px;
}

.price-big {
  font-size: 20px !important;
  color: #3b82f6 !important;
}

/* لودر */
.tracking-loader {
  text-align: center;
  padding: 80px 20px;
  color: #94a3b8;
}

.tracking-loader i {
  font-size: 48px;
  margin-bottom: 20px;
  animation: spin 2s linear infinite;
}

/* انیمیشن‌ها */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ریسپانسیو */
@media (max-width: 480px) {
  .mini-track-btn {
    width: 54px;
    height: 54px;
    bottom: 82px;
    left: 14px;
  }
  .order-ref-big { font-size: 24px; }
  .order-info-grid { grid-template-columns: 1fr; }
}

/* صفحه پیگیری سفارش - طراحی ۲۰۲۵ */
.tracking-container {
  padding: 20px;
  font-family: 'Vazir', sans-serif;
}

.tracking-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1e40af;
  text-align: center;
  margin-bottom: 8px;
}

.tracking-time {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.tracking-table {
  text-align: center;
  padding: 12px;
  background: #f0f9ff;
  border-radius: 16px;
  font-weight: bold;
  color: #0369a1;
  margin: 16px 0;
  font-size: 16px;
}

.tracking-status {
  text-align: center;
  margin: 30px 0;
}

.status-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 40px;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tracking-status h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0;
}

.tracking-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 20px;
  position: relative;
}

.progress-step {
  text-align: center;
  z-index: 2;
  transition: all 0.4s;
}

.progress-step.active .step-icon {
  background: #3b82f6;
  color: white;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(59,130,246,0.6);
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 20px;
  color: #666;
  transition: all 0.4s;
}

.progress-step span {
  font-size: 11px;
  color: #666;
  display: block;
}

.progress-line {
  position: absolute;
  top: 25px;
  height: 4px;
  background: #e5e7eb;
  width: 100%;
  left: 0;
  z-index: 1;
  transition: background 0.6s;
}

.progress-line.active {
  background: #3b82f6;
}

.progress-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #3b82f6;
  transition: width 0.8s ease;
}

.progress-line.active::before {
  width: 100%;
}
    .main-order-btn {
      width: 100%;
      max-width: 340px;
      margin: 0 auto;
      background: linear-gradient(45deg, #3b82f6, #60a5fa);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    }

    .variant-add-btn {
      background: linear-gradient(45deg, #3b82f6, #60a5fa) !important;
      color: #ffffff !important;
      border: none !important;
      padding: 12px 22px !important;
      border-radius: 16px !important;
      font-weight: 700 !important;
      font-size: 15px !important;
      cursor: pointer !important;
      font-family: 'Vazir', sans-serif;
      transition: all 0.3s ease !important;
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4) !important;
      position: relative;
      overflow: hidden;
      min-width: 110px;
      text-align: center;
    }

    /* افکت هاور خفن */
    .variant-add-btn:hover:not(:disabled) {
      transform: translateY(-3px) !important;
      box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4) !important;
    }

    /* افکت کلیک */
    .variant-add-btn:active:not(:disabled) {
      transform: translateY(-1px) !important;
      box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4) !important;
    }

    /* حالت غیرفعال (ناموجود) */
    .variant-add-btn:disabled {
      background: #d5d5d5 !important;
      box-shadow: none !important;
      cursor: not-allowed !important;
      opacity: 0.7;
      color: #888 !important;
    }

    /* افکت موج دار موقع کلیک (خیلی خفنه!) */
    .variant-add-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
      z-index: 0;
    }

    .variant-add-btn:active::before {
      width: 300px;
      height: 300px;
    }

    /* متن دکمه بالای افکت باشه */
    .variant-add-btn span {
      position: relative;
      z-index: 1;
    }

    .variants-section {
      margin: 30px 0;
      padding: 0 20px;
    }

    .variants-title {
      font-size: 17px;
      font-weight: 700;
      color: #3b82f6;
      text-align: center;
      margin-bottom: 15px;
    }

    #page3 .detail-desc {
      font-size: 15px;
      color: #bbb;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .detail-nutrition {
      background: #fafafa;
      border-radius: 18px;
      padding: 18px;
      margin-bottom: 24px;
      border: 1px solid #e2e2e2;
    }

    .nutrition-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #e2e2e2;
    }

    .nutrition-item:last-child {
      border-bottom: none;
    }

    .nutrition-label {
      color: #aaa;
      font-size: 15px;
    }

    .nutrition-value {
      color: #3b82f6;
      font-weight: 700;
      font-size: 16px;
    }

    #page3 .detail-options {
      display: flex;
      gap: 12px;
      margin-bottom: 24px;
      overflow-x: auto;
      padding-bottom: 8px;
    }

    #page3 .option-btn {
      background: #fafafa;
      border: 1px solid #d5d5d5;
      color: #000;
      padding: 12px 18px;
      border-radius: 18px;
      font-size: 15px;
      cursor: pointer;
      font-family: 'Vazir', sans-serif;
      transition: all 0.3s;
      white-space: nowrap;
      font-weight: 500;
    }

    #page3 .option-btn.active {
      background: #3b82f6;
      font-weight: 700;
      border-color: #3b82f6;
    }

    #page3 .order-btn {
      background: linear-gradient(45deg, #3b82f6, #a1caff);
      color: #ffffff;
      font-weight: 700;
      font-family: 'Vazir', sans-serif;
      padding: 18px;
      border-radius: 18px;
      border: none;
      font-size: 17px;
      cursor: pointer;
      width: 100%;
      box-shadow: 0 10px 25px rgba(147, 197, 253, 0.4);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 20px 0;
    }

    #page3 .order-btn:hover {
      transform: translateY(-3px);
    }

    /* Favorites & Cart Content Area */
    #page-favorites .content,
    #page-cart .content,
    #page-order-form .content {
      flex: 1;
      padding: 20px;
      /* FIX: حذف اسکرول تکراری */
      /* overflow-y: auto; */
    }

    #favorites-list,
    #cart-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cart-item {
      background: #fafafa;
      border-radius: 18px;
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid #e2e2e2;
    }

    .cart-item img {
      width: 70px;
      height: 70px;
      border-radius: 14px;
      object-fit: cover;
    }

    .cart-item .info {
      flex: 1;
    }

    .cart-item .name {
      font-size: 10px;
      font-weight: 700;
      color: #000;
    }

    .cart-item .price {
      font-size: 10px;
      color: #3b82f6;
      font-weight: 600;
    }

    .cart-item .quantity {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #e2e2e2;
      padding: 3px 3px;
      border-radius: 12px;
    }

    .cart-item .quantity button {
      background: #3b82f6;
      color: #ece7e7;
      border: none;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      cursor: pointer;
      font-weight: bold;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }


    #cart-total {
      font-size: 20px;
      font-weight: 800;
      margin: 20px 0;
      text-align: center;
      color: #3b82f6;
    }

    /* FIX: استایل بخش جمع کل سبد خرید (Total Section) */
    .total-section {
      position: fixed;
      bottom: 80px;
      /* بالای نوار ناوبری ثابت می‌شود */
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 420px;
      border-radius: 15px;
      margin-bottom: 15px;
      background: #f5f5f5;
      padding: 15px 20px;
      border-top: 1px solid #e2e2e2;
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /* FIX: تنظیم padding برای صفحه سبد خرید برای جلوگیری از همپوشانی */
    #page-cart {
      padding-bottom: 200px;
      /* 80px (nav) + 70px (total-section) + 50px (احتیاط) */
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      padding-bottom: 10px;
      color: #000;
    }

    #cart-total-price {
      color: #3b82f6;
      font-size: 20px;
      font-weight: 800;
    }

    #checkout-btn,
    #submit-order {
      background: linear-gradient(45deg, #3b82f6, #60a5fa);
      color: #ececec;
      padding: 18px;
      font-family: 'Vazir', sans-serif;
      border-radius: 18px;
      border: none;
      font-size: 17px;
      cursor: pointer;
      width: 100%;
      font-weight: 700;
      box-shadow: 0 10px 25px rgb(6 139 229 / 39%);
      transition: all 0.3s;
      margin-top: 0;
      /* حذف مارجین اضافی */
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    #checkout-btn:hover,
    #submit-order:hover {
      transform: translateY(-3px);
    }

    /* فرم سفارش */
    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 15px;
      margin-bottom: 8px;
      color: #ccc;
    }

    /* FIX: اضافه شدن استایل برای textarea */
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px;
      background: #fafafa;
      border: 1px solid #d5d5d5;
      font-family: 'Vazir', sans-serif;
      border-radius: 14px;
      color: #000;
      font-size: 16px;
      transition: all 0.3s;
      resize: none;
      /* جلوگیری از تغییر اندازه دستی textarea */
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #3b82f6;
      font-family: 'Vazir', sans-serif;
      box-shadow: 0 0 0 3px rgba(7, 123, 255, 0.2);
    }

    .switch-container {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 20px 0;
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 64px;
      height: 36px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #d5d5d5;
      transition: .4s;
      border-radius: 36px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 28px;
      width: 28px;
      left: 4px;
      bottom: 4px;
      background: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked+.slider {
      background: linear-gradient(90deg, #3b82f6, #3b82f6ff);
    }

    input:checked+.slider:before {
      transform: translateX(28px);
    }

    /* FIX: این استایل برای transition هنگام مخفی شدن table-number-group درست است */
    #table-number-group {
      transition: all 0.3s ease;
    }

    #table-number-group.hidden {
      opacity: 0;
      height: 0;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }

    /* Bottom Navigation - همیشه پایین */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 94%;
      max-width: 420px;
      background: #c3eeffcc;
      padding: 14px 30px;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-bottom: 20px;
      border-radius: 20px;
      /* border-top-left-radius: 20px; */
      /* border-top-right-radius: 20px; */
      /* border-top: 1px solid #fafafa; */
      z-index: 1000;
      backdrop-filter: blur(10px);
    }

    .nav-item {
      color: #777;
      font-size: 22px;
      cursor: pointer;
      position: relative;
      transition: all 0.3s;
      padding: 8px;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      flex-direction: column;
      /* FIX: برای قرارگیری آیکون و متن زیر هم */
      align-items: center;
      justify-content: center;
      font-size: 12px;
      /* FIX: کوچکتر شدن فونت برای جا شدن متن */
    }

    .nav-item i {
      font-size: 22px;
    }

    .nav-item span {
      font-size: 11px;
      /* FIX: اندازه متن زیر آیکون */
      font-weight: 500;
    }

    .nav-item.active {
      font-size: 24px;
      width: 50px;
      height: 50px;
      background: linear-gradient(45deg, #3b82f6, #3b82f6ff);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(59, 130, 246, 0.45);
      transform: translateY(-25px);
    }

    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: 0px;
      /* FIX: جابجایی دایره فعال زیر متن */
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background: #3b82f6;
      border-radius: 50%;
      display: none;
      /* اگر نمی‌خواهید نمایش داده شود */
    }


    .nav-item.home i {
      font-size: 24px;
    }

    .nav-item.home span {
      display: none;
    }

    /* پنهان کردن متن زیر دکمه بزرگ */
    /* ----------------------------------------------------------- */
    /* استایل‌های اختصاصی گوگل ترنسلیت (مخفی کردن نوار زشت گوگل) */
    /* ----------------------------------------------------------- */
    .goog-te-banner-frame.skiptranslate {
      display: none !important;
    }

    body {
      top: 0px !important;
    }

    .goog-te-gadget-icon {
      display: none !important;
    }

    .goog-te-gadget-simple {
      background-color: transparent !important;
      border: none !important;
      padding: 0 !important;
      font-size: 15px !important;
      display: flex !important;
      align-items: center;
      cursor: pointer;
    }

    /* مخفی کردن متن "Powered by Google" */
    .goog-te-gadget span {
      display: none !important;
    }

    .goog-te-gadget {
      color: transparent !important;
      font-size: 0 !important;
    }

    /* استایل لینک انتخاب زبان */
    .goog-te-gadget .goog-te-combo {
      margin: 4px 0 !important;
      padding: 8px 15px !important;
      border-radius: 12px !important;
      border: 1px solid #3b82f6 !important;
      background: #fff !important;
      color: #333 !important;
      font-family: 'Vazir', sans-serif !important;
      font-weight: bold !important;
      outline: none !important;
      width: 100% !important;
    }

    /* ----------------------------------------------------------- */
    /* استایل صفحه اطلاعات رستوران */
    /* ----------------------------------------------------------- */
    .restaurant-info-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;
    }

    .restaurant-logo-large {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
      margin-bottom: 20px;
      border: 4px solid #fff;
    }

    .restaurant-name-large {
      font-size: 24px;
      font-weight: 800;
      color: #3b82f6;
      margin-bottom: 12px;
    }

    .restaurant-description-large {
      font-size: 15px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 30px;
      max-width: 90%;
    }

    .info-row {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #fff;
      padding: 15px;
      width: 100%;
      border-radius: 18px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .info-row i {
      font-size: 20px;
      color: #3b82f6;
      width: 30px;
      text-align: center;
    }

    .info-row span {
      font-size: 14px;
      color: #444;
      text-align: right;
      flex: 1;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
      width: 100%;
      justify-content: center;
    }

    .social-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px;
      font-family: 'Vazir', sans-serif;
      border-radius: 14px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      transition: transform 0.2s;
      color: white;
    }

    .social-btn:hover {
      transform: translateY(-3px);
    }

    .instagram-btn {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
    }

    .telegram-btn {
      background: linear-gradient(45deg, #229ED9, #0088cc);
      box-shadow: 0 8px 20px rgba(34, 158, 217, 0.3);
    }

    /* FIX: استایل badge در nav-item */
    .nav-item .badge {
      position: absolute;
      top: 0;
      right: 0;
      background: #1d4ed8;
      color: #ffffff;
      font-size: 10px;
      /* padding: 2px 6px; */
      width: 15px;
      height: 15px;
      border-radius: 10px;
      justify-content: center;
      /* font-weight: 700; */
      /* line-height: 1; */
      transform: translate(25%, -25%);
      align-items: center;
    }

    #restaurant-map {
      height: 340px !important;
      width: 100%;
      border-radius: 24px;
      border: 4px solid #57bdff;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .custom-marker {
      background: transparent;
      border: none;
    }

    .restaurant-info-content {
      padding: 20px;
      max-width: 480px;
      margin: 0 auto;
      font-family: 'Vazir', sans-serif;
    }

    .restaurant-logo-large {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 6px solid #57bdff;
      box-shadow: 0 10px 30px rgba(87, 189, 255, 0.3);
      margin: 10px auto;
      display: block;
      transition: all 0.4s ease;
    }

    .restaurant-logo-large:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(87, 189, 255, 0.5);
    }

    .restaurant-name-large {
      text-align: center;
      font-size: 28px;
      font-weight: 800;
      color: #1a1a1a;
      margin: 20px 0 12px;
      background: linear-gradient(135deg, #57bdff, #1d61b5);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 10px rgba(87, 189, 255, 0.2);
    }

    .restaurant-description-large {
      text-align: center;
      font-size: 16px;
      color: #555;
      line-height: 1.7;
      background: #f8fdff;
      padding: 18px;
      border-radius: 20px;
      border: 2px solid #e3f2fd;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin: 20px 0;
    }

    /* ردیف اطلاعات (آدرس، ساعت کاری و ...) */
    .info-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: white;
      border-radius: 18px;
      margin: 12px 0;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      border: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .info-row:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      border-color: #57bdff;
    }

    .info-row i {
      font-size: 24px;
      color: #57bdff;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #57bdff, #1d61b5);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(87, 189, 255, 0.4);
    }

    /* نقشه حرفه‌ای */
    .map-container {
      height: 320px;
      border-radius: 24px;
      overflow: hidden;
      margin: 25px 0;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      border: 4px solid #57bdff;
      position: relative;
    }

    .map-container::after {
      content: "موقعیت رستوران";
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(29, 97, 181, 0.9);
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: bold;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* دکمه گوگل مپ */
    .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.4s ease;
      font-size: 15px;
      min-width: 200px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border: none;
      cursor: pointer;
    }

    .social-btn:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    /* دکمه گوگل مپ */
    #open-google-maps-btn,
    .social-btn[onclick="openInGoogleMaps()"] {
      background: linear-gradient(135deg, #4285F4, #1a73e8);
      color: white !important;
    }

    #open-google-maps-btn i,
    .social-btn[onclick="openInGoogleMaps()"] i {
      font-size: 20px;
    }

    /* شبکه‌های اجتماعی */
    .instagram-btn {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: white;
    }

    .telegram-btn {
      background: #0088cc;
      color: white;
    }

    .rubika-btn {
      background: #6a1b9a;
      color: white;
    }

    .eitaa-btn {
      background: #00b488;
      color: white;
    }

    .youtube-btn {
      background: #ff0000;
      color: white;
    }

    .aparat-btn {
      background: #2ecc71;
      color: white;
    }

    .twitter-btn {
      background: #1da1f2;
      color: white;
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin: 30px 0 20px;
      padding: 10px;
    }

    /* انیمیشن لود */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .restaurant-info-content>* {
      animation: fadeInUp 0.6s ease-out forwards;
    }

    /* ریسپانسیو */

    /* منوی کشویی */
    .menu-overlay {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100%;
      background: #f7f7f7;
      z-index: 1000;
      padding: 70px 24px 24px;
      box-shadow: -15px 0 40px rgba(255, 255, 255, 0.6);
      transform: translateX(130%);
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      /* FIX: اضافه کردن flex و overflow برای اسکرول منو */
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .menu-list {
      flex: 1;
      overflow-y: auto;
    }

    .menu-overlay.open {
      transform: translateX(0);
    }

    .menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 26px;
      color: #ccc;
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .menu-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #000;
    }

    .menu-item {
      padding: 18px 0;
      font-size: 17px;
      color: #343434;
      border-bottom: 1px solid #e2e2e2;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .menu-item:hover {
      color: #3b82f6;
      padding-right: 10px;
    }

    .menu-item i {
      width: 24px;
      text-align: center;
      color: #000;
    }

    /* Toast (Notification) */
    .toast {
      position: fixed;
      /* FIX: جایگاه درست بالای Bottom Nav */
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      background: #e2e2e2;
      color: #e7e7e7;
      padding: 16px 28px;
      border-radius: 50px;
      font-size: 10px;
      font-weight: 600;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
      border: 1px solid #d5d5d5;
      max-width: 90%;
      text-align: center;
    }

    .toast.show {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(-10px);
    }

    .toast.success {
      background: linear-gradient(45deg, #4caf50, #66bb6a);
      border-color: #4caf50;
    }

    .toast.info {
      background: linear-gradient(45deg, #afa74c, #aabb66);
      border-color: #98af4c;
    }

    .toast.error {
      background: linear-gradient(45deg, #af4c4c, #e44242);
      border-color: #af4c4c;
    }

    .toast i {
      font-size: 18px;
    }

    @media (min-width: 800px) {
      .food-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Responsive */
    @media (max-width: 480px) {
      .screen {
        border-radius: 0;
      }

      .food-grid {
        grid-template-columns: repeat(1, 1fr);
      }
    }