/* ============================================
   PANGA RESTO - Modern Food Delivery App Design
   ============================================ */

:root {
  --primary: #FF5A00;
  --primary-dark: #e04e00;
  --primary-light: #fff3ed;
  --primary-gradient: linear-gradient(135deg, #FF5A00 0%, #ff9a3c 100%);
  --dark: #0f0f23;
  --dark-secondary: #1a1a2e;
  --text: #1a1a2e;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --bg: #f6f5f2;
  --bg-card: #ffffff;
  --border: #f0ebe5;
  --border-light: #f5f0eb;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-orange: 0 8px 24px rgba(255,90,0,0.2);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font: 'Poppins', sans-serif;
}

/* ============================================
   LAYOUT
   ============================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ============================================
   NAVBAR
   ============================================ */
.resto-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.resto-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.resto-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.resto-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark-secondary);
  letter-spacing: -0.5px;
}
.resto-logo:hover { color: var(--dark-secondary); }
.resto-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255,90,0,0.3);
  transition: transform 0.2s;
}
.resto-logo:hover .resto-logo-icon {
  transform: scale(1.05) rotate(-5deg);
}
.resto-logo span { color: var(--primary); }
.resto-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.resto-nav-link:hover,
.resto-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(255,90,0,0.15);
}

@media (max-width: 576px) {
  .resto-navbar { height: 58px; }
  .resto-logo { font-size: 1.2rem; }
  .resto-logo-icon { width: 32px; height: 32px; font-size: 0.85rem; border-radius: 10px; }
  .resto-nav-link { padding: 6px 12px; font-size: 0.85rem; }
  .resto-nav-link span { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.resto-hero {
  position: relative;
  min-height: 440px;
  background: var(--dark-secondary);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0 4rem;
}
.resto-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/img/Resto-dash.webp') center/cover no-repeat;
  opacity: 0.4;
  transform: scale(1.05);
}
.resto-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,15,35,0.7) 0%, rgba(15,15,35,0.2) 100%);
}
.resto-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.resto-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,90,0,0.2);
  border: 1px solid rgba(255,90,0,0.35);
  color: #ff9a3c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: 12px;
  animation: fadeInUp 0.5s ease-out;
}
.resto-hero-title {
  font-size: clamp(1.8rem, 6vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  animation: fadeInUp 0.6s ease-out;
}
.resto-hero-title span { color: var(--primary); }
.resto-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  margin-top: 12px;
  margin-bottom: 0;
  animation: fadeInUp 0.7s ease-out;
}

.resto-search-wrap {
  position: relative;
  margin-top: 24px;
  max-width: 560px;
  animation: fadeInUp 0.8s ease-out;
}
.resto-search-wrap .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1rem;
  z-index: 2;
}
.resto-search-wrap input {
  width: 100%;
  padding: 14px 130px 14px 48px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-family: var(--font);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  outline: none;
  transition: box-shadow 0.3s, transform 0.2s;
  color: var(--text);
  background: #fff;
}
.resto-search-wrap input::placeholder { color: #b0b0b0; }
.resto-search-wrap input:focus {
  box-shadow: 0 8px 32px rgba(255,90,0,0.3);
  transform: scale(1.01);
}
.resto-search-wrap .scan-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  box-shadow: 0 4px 14px rgba(255,90,0,0.35);
}
.resto-search-wrap .scan-btn:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 6px 20px rgba(255,90,0,0.45);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STATS STRIP
   ============================================ */
.resto-stats {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  margin-top: -28px;
  position: relative;
  z-index: 3;
}
.resto-stat {
  text-align: center;
  flex: 1;
}
.resto-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.resto-stat-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.resto-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .resto-hero { min-height: unset; padding: 1.5rem 0 3rem; }
  .resto-stats { gap: 0; padding: 12px 12px; margin-top: -20px; border-radius: var(--radius); }
  .resto-stat-num { font-size: 1.2rem; }
  .resto-stat-lbl { font-size: 0.62rem; letter-spacing: 0.3px; }
  .resto-stat-divider { height: 30px; }
}

/* ============================================
   SECTION TITLES
   ============================================ */
.resto-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.resto-section-title span { color: var(--primary); }
.resto-section-title .title-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
}

/* ============================================
   RESTAURANT CARDS
   ============================================ */
.resto-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.resto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.resto-card:active {
  transform: translateY(-2px) scale(0.98);
}
.resto-card-img.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.resto-card-img.no-image::after {
  content: '\f2e7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
}
.resto-card-img {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-secondary) 0%, #0f3460 100%);
}
.resto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.resto-card:hover .resto-card-img img { transform: scale(1.08); }
.resto-card-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.resto-card-img .card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.resto-card-body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.resto-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.resto-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.resto-card-meta i { color: var(--primary); width: 16px; font-size: 0.78rem; }
.resto-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resto-card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.resto-card:hover .resto-card-cta { gap: 10px; }
.resto-open-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: #ecfdf5;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 4px;
}
.resto-card-img .card-rating {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skel {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes skel-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skel-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.skel-img { height: 190px; }
.skel-body { padding: 16px 20px; }
.skel-line { height: 14px; margin-bottom: 10px; }
.skel-line.s60 { width: 60%; }
.skel-line.s40 { width: 40%; }

/* ============================================
   EMPTY STATE
   ============================================ */
.resto-empty {
  text-align: center;
  padding: 60px 20px;
}
.resto-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--primary);
}
.resto-empty h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.resto-empty p { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================
   BUTTONS
   ============================================ */
.resto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border-radius: var(--radius);
}
.resto-btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,90,0,0.3);
}
.resto-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,90,0,0.4);
  color: #fff;
}
.resto-btn-primary:active {
  transform: translateY(0);
}
.resto-btn-secondary {
  background: var(--dark-secondary);
  color: #fff;
}
.resto-btn-secondary:hover {
  background: #15152e;
  color: #fff;
}
.resto-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}
.resto-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.resto-btn-sm { padding: 8px 16px; font-size: 0.85rem; border-radius: var(--radius); }
.resto-btn-md { padding: 12px 24px; font-size: 0.95rem; border-radius: var(--radius); }
.resto-btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius); }
.resto-btn-block { width: 100%; }
.resto-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ============================================
   QR MODAL
   ============================================ */
.resto-modal-content {
  border-radius: var(--radius-xl) !important;
  border: none !important;
  overflow: hidden;
}
.resto-modal-header {
  border: none;
  padding: 20px 24px 0;
}
.resto-modal-header .modal-title {
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   RESTAURANT DETAIL HERO
   ============================================ */
.resto-detail-hero {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, var(--dark-secondary) 0%, #0f3460 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.resto-detail-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-img, none) center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.resto-detail-hero.loaded .resto-detail-hero-bg { opacity: 0.6; }
.resto-detail-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,35,0.95) 0%, rgba(15,15,35,0.3) 60%, transparent 100%);
}
.resto-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 32px;
  width: 100%;
}
.resto-detail-name {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.resto-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.resto-detail-meta-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.resto-detail-meta-item i { color: var(--primary); }

@media (max-width: 576px) {
  .resto-detail-hero { height: 240px; }
  .resto-detail-hero-content { padding: 16px 20px; }
}

/* ============================================
   MENU CONTROLS BAR
   ============================================ */
.resto-menu-bar {
  background: #fff;
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.resto-menu-search {
  position: relative;
}
.resto-menu-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 1;
}
.resto-menu-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  background: var(--bg);
}
.resto-menu-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,90,0,0.1);
  background: #fff;
}
.resto-category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.resto-category-pills::-webkit-scrollbar { display: none; }
.resto-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font);
}
.resto-pill:hover,
.resto-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,90,0,0.25);
}

/* ============================================
   MENU SECTION LABEL
   ============================================ */
.resto-menu-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.resto-menu-label span { color: var(--primary); }
.resto-menu-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-left: 12px;
}

/* ============================================
   MENU CARDS
   ============================================ */
.menu-card-modern {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
}
.menu-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card-modern-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  cursor: pointer;
}
.menu-card-modern-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.menu-card-modern:hover .menu-card-modern-img img { transform: scale(1.06); }
.menu-card-modern-category {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15,15,35,0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: capitalize;
}
.menu-card-modern-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
}
.menu-card-modern-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-modern-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.menu-card-modern-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}
.menu-card-modern-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Quantity Controls */
.resto-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  border: 1.5px solid var(--primary);
}
.resto-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resto-qty-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
.resto-qty-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  min-width: 24px;
  text-align: center;
}
.resto-add-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.resto-add-btn:hover { background: var(--primary-dark); transform: scale(1.03); }

/* ============================================
   FAB BUTTONS
   ============================================ */
.resto-fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  z-index: 900;
}
.resto-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.resto-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  color: #fff;
}
.resto-fab-cart { background: var(--dark-secondary); }
.resto-fab-call { background: var(--primary-gradient); }
.resto-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--error);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}

@media (max-width: 576px) {
  .resto-fab-wrap { bottom: 20px; right: 16px; gap: 10px; }
  .resto-fab { width: 52px; height: 52px; font-size: 1.1rem; }
}

/* ============================================
   DETAIL MODAL
   ============================================ */
.resto-detail-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
.resto-detail-modal-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.resto-detail-modal-cat {
  display: inline-block;
  background: var(--dark-secondary);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}
.resto-modal-qty {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border-radius: var(--radius-full);
  padding: 6px 20px;
  border: 1.5px solid var(--border);
  width: fit-content;
  margin: 0 auto;
}
.resto-modal-qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resto-modal-qty-btn:hover { background: var(--primary-dark); transform: scale(1.08); }
.resto-modal-add-btn {
  width: 100%;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.resto-modal-add-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* ============================================
   CART PAGE
   ============================================ */
.cart-page {
  background: var(--bg);
  min-height: 100vh;
}
.cart-card {
  background: #fff;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cart-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-card-header h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-card-header h5 i { color: var(--primary); }

.cart-item-modern {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  gap: 14px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
.cart-item-modern:last-child { border-bottom: none; }
.cart-item-modern:hover { background: #fafafa; }
.cart-item-icon-modern {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,90,0,0.2);
}
.cart-item-info { flex: 1; min-width: 120px; }
.cart-item-info h6 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 0 0 2px; }
.cart-item-info small { color: var(--text-muted); font-size: 0.8rem; }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-qty-controls {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 2px 4px;
  gap: 2px;
}
.cart-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.cart-qty-btn:hover { background: var(--primary); color: #fff; }
.cart-qty-input {
  border: none;
  background: transparent;
  text-align: center;
  width: 32px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
}
.cart-item-total {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  min-width: 90px;
  text-align: right;
}
.cart-remove-btn {
  background: transparent;
  border: none;
  color: #d1d5db;
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
  border-radius: 50%;
}
.cart-remove-btn:hover { color: var(--error); background: #fef2f2; }

.empty-cart-modern {
  text-align: center;
  padding: 60px 24px;
}
.empty-cart-modern .empty-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: var(--primary);
}
.empty-cart-modern h5 { font-weight: 700; color: var(--text); margin-bottom: 8px; }
.empty-cart-modern p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   CUSTOMER FORM
   ============================================ */
.resto-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.resto-form-label i { color: var(--primary); }
.resto-input-wrap {
  position: relative;
  background: var(--bg);
  border-radius: 14px;
  padding: 8px 16px 8px 44px;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.resto-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,90,0,0.08);
  background: #fff;
}
.resto-input-wrap .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.85rem;
  pointer-events: none;
}
.resto-input-wrap input,
.resto-input-wrap textarea {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  width: 100%;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
}
.resto-input-wrap input::placeholder,
.resto-input-wrap textarea::placeholder {
  color: #c0b8af;
}
.resto-input-underline {
  border: none !important;
  border-bottom: 2px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 12px 4px 10px !important;
  font-family: var(--font);
  font-size: 0.9rem;
  background: transparent !important;
  outline: none;
  width: 100%;
  color: var(--text);
}
.resto-input-underline:focus {
  border-bottom-color: var(--primary) !important;
  box-shadow: 0 2px 0 0 rgba(255,90,0,0.25) !important;
}

/* ============================================
   SWITCH TOGGLE
   ============================================ */
.resto-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.resto-switch input[type="checkbox"] {
  width: 46px;
  height: 26px;
  appearance: none;
  background: #d1d5db;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
  flex-shrink: 0;
}
.resto-switch input[type="checkbox"]::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.resto-switch input[type="checkbox"]:checked { background: var(--primary); }
.resto-switch input[type="checkbox"]:checked::after { transform: translateX(20px); }
.resto-switch label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  margin: 0;
}

/* ============================================
   ORDER SUMMARY
   ============================================ */
.resto-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.resto-summary-total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.resto-summary-total .val { color: var(--primary); }

.resto-checkout-btn {
  width: 100%;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255,90,0,0.3);
}
.resto-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,90,0,0.4);
}
.resto-checkout-btn:disabled {
  background: #d1d5db;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

/* ============================================
   MAP
   ============================================ */
.resto-map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
  border: 1.5px solid var(--border);
  height: 350px;
}

/* ============================================
   MODAL
   ============================================ */
.resto-modal .modal-content {
  border-radius: var(--radius-xl) !important;
  border: none !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
}
.resto-modal .modal-header {
  border: none;
  padding: 20px 24px 0;
}
.resto-modal .modal-body {
  padding: 16px 24px 24px;
}

/* ============================================
   PAYMENT / ORDER STATUS
   ============================================ */
.resto-pay-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,90,0,0.25);
}
.resto-ussd-box {
  background: var(--dark-secondary);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 16px 0;
}
.resto-ussd-box small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}

/* ============================================
   ORDER STATUS
   ============================================ */
.resto-status-icon {
  font-size: 4rem;
  margin-bottom: 8px;
}
.resto-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.resto-order-item:last-child { border-bottom: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 576px) {
  .resto-navbar { height: 58px; }
  .resto-menu-bar { top: 58px; }
  .cart-item-modern { padding: 12px 16px; gap: 10px; }
  .cart-item-controls { flex-wrap: wrap; gap: 8px; }
  .cart-item-total { min-width: auto; }
  .cart-card-header { padding: 14px 16px; }
  .resto-input-wrap { padding: 6px 12px 6px 38px; }
}

/* ============================================
   MOBILE APP SHELL (max 767px)
   ============================================ */
@media (max-width: 575.98px) {

  html, body { height: 100%; overflow: hidden; }
  body { padding-bottom: 0; }

  .app-shell {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    background: var(--bg);
  }

  .app-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 16px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 100;
    gap: 12px;
    position: relative;
  }
  .app-header-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .app-header-back {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--bg);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
  }
  .app-header-back:active { background: #e5e5e5; }
  .app-header-action {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
  }
  .app-header-action:active { opacity: 0.6; }
  .app-header .resto-search-wrap {
    flex: 1;
    margin: 0;
    max-width: none;
    animation: none;
  }
  .app-header .resto-search-wrap input {
    padding: 8px 16px 8px 36px;
    font-size: 0.85rem;
    border-radius: 10px;
    box-shadow: none;
    background: var(--bg);
  }
  .app-header .resto-search-wrap input:focus {
    transform: none;
    box-shadow: 0 0 0 3px rgba(255,90,0,0.15);
  }
  .app-header .resto-search-wrap .search-icon { left: 12px; font-size: 0.85rem; }
  .app-header .resto-search-wrap .scan-btn { display: none; }

  .app-shell main {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 70px;
  }

  .app-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    height: 62px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
  }
  .app-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 600;
    transition: color 0.15s;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: var(--font);
    padding: 4px 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .app-bottom-nav-item i {
    font-size: 1.25rem;
    transition: transform 0.2s;
  }
  .app-bottom-nav-item:active i { transform: scale(0.9); }
  .app-bottom-nav-item.active,
  .app-bottom-nav-item.active i {
    color: var(--primary);
  }
  .app-bottom-nav-item .nav-badge {
    position: absolute;
    top: 3px;
    right: 50%;
    transform: translateX(16px);
    background: var(--error);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
  }
  .app-bottom-nav .resto-fab-badge { display: none; }

  /* Hide desktop navbar on mobile */
  .resto-navbar { display: none; }

  /* Override main padding */
  main { padding-top: 0 !important; }

  /* Menu bar sticks to top since navbar is hidden */
  .resto-menu-bar { top: 0; }

  .resto-hero {
    min-height: unset;
    padding: 0;
    background: transparent;
  }
  .resto-hero-bg, .resto-hero-overlay { display: none; }
  .resto-hero-content { padding: 16px; }
  .resto-hero-title {
    font-size: 1.45rem;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 4px;
  }
  .resto-hero-title br { display: none; }
  .resto-hero-sub {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 4px;
  }
  .resto-hero-tag {
    background: var(--primary-light);
    border-color: rgba(255,90,0,0.2);
    color: var(--primary);
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  .resto-search-wrap {
    max-width: none;
    margin-top: 12px;
    animation: none;
  }
  .resto-search-wrap input {
    padding: 10px 48px 10px 40px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    background: var(--bg);
  }
  .resto-search-wrap input:focus {
    transform: none;
    box-shadow: var(--shadow);
  }
  .resto-search-wrap .scan-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    display: flex;
    gap: 4px;
  }

  .resto-stats {
    margin-top: 0;
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    gap: 0;
  }
  .resto-stat-num { font-size: 1.1rem; }
  .resto-stat-lbl { font-size: 0.58rem; letter-spacing: 0.3px; }
  .resto-stat-divider { height: 28px; }

  .resto-section-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  .resto-card-img { height: 140px; }
  .resto-card-body { padding: 12px 14px 14px; }
  .resto-card-name { font-size: 0.95rem; }
  .resto-card-meta { font-size: 0.78rem; }
  .resto-card-cta { font-size: 0.78rem; }
  .resto-open-badge { font-size: 0.65rem; padding: 3px 10px; }

  /* Detail page mobile */
  .resto-detail-hero { height: 200px; }
  .resto-detail-hero-content { padding: 14px 16px; }
  .resto-detail-name { font-size: 1.25rem; }
  .resto-detail-meta { gap: 8px; }
  .resto-detail-meta-item { font-size: 0.78rem; }

  .resto-menu-bar {
    top: 0;
    padding: 10px 0;
    border-radius: 0;
    background: #fff;
    z-index: 90;
  }
  .resto-menu-bar .container { padding: 0 12px; }
  .resto-menu-search input {
    padding: 8px 12px 8px 34px;
    font-size: 0.85rem;
  }
  .resto-menu-search i { left: 12px; }
  .resto-pill {
    padding: 6px 14px;
    font-size: 0.78rem;
  }

  .menu-card-modern-img { height: 140px; }
  .menu-card-modern-body { padding: 10px 12px 12px; }
  .menu-card-modern-name { font-size: 0.9rem; }
  .menu-card-modern-price { font-size: 0.8rem; padding: 4px 10px; }
  .menu-card-modern-desc { font-size: 0.75rem; }

  .resto-fab-wrap { display: none; }

  /* Cart page mobile */
  .cart-item-modern { padding: 12px 14px; gap: 10px; }
  .cart-item-controls { gap: 6px; }
  .cart-item-total { font-size: 0.85rem; min-width: auto; }
  .cart-card-header { padding: 12px 14px; }
  .cart-card-header h5 { font-size: 0.95rem; }
  .cart-card .p-4 { padding: 16px !important; }

  .cart-qty-btn { width: 28px; height: 28px; font-size: 0.9rem; }
  .cart-qty-input { width: 28px; font-size: 0.85rem; }
  .cart-item-icon-modern { width: 40px; height: 40px; font-size: 1.1rem; }

  .resto-checkout-btn { padding: 14px; font-size: 0.95rem; }
  .resto-btn-md { padding: 10px 18px; font-size: 0.9rem; }

  .empty-cart-modern { padding: 40px 16px; }
  .empty-cart-modern .empty-icon-wrap { width: 72px; height: 72px; font-size: 1.8rem; }

  /* Bottom sheet modals */
  .resto-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
  }
  .resto-modal .modal-dialog-centered {
    align-items: flex-end;
    min-height: 100%;
  }
  .resto-modal.fade .modal-dialog {
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .resto-modal.show .modal-dialog {
    transform: translateY(0);
  }
  .resto-modal .modal-content {
    border-radius: 20px 20px 0 0 !important;
    max-height: 90dvh;
    overflow-y: auto;
  }
  .resto-modal-header { padding: 16px 20px 0; }
  .modal-body { padding: 12px 20px 20px; }

  .resto-detail-modal-img { height: 200px; }

  /* USSD box */
  .resto-ussd-box { padding: 12px; font-size: 1rem; }
  .resto-ussd-box .fw-800.fs-5 { font-size: 1rem !important; }

  /* Order status */
  .resto-status-icon { font-size: 3rem; }

  /* Map */
  .resto-map { height: 260px; }

  /* Swipeable cart items */
  .cart-item-modern { position: relative; overflow: hidden; }
  .cart-item-modern .cart-item-swipe-actions {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    display: flex;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .cart-item-modern.swiped .cart-item-swipe-actions { transform: translateX(0); }
  .cart-item-swipe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.15s;
  }
  .cart-item-swipe-btn.delete { background: var(--error); }
  .cart-item-swipe-btn.delete:active { background: #dc2626; }

  /* Pull to refresh indicator */
  .ptr-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    gap: 8px;
    transition: opacity 0.2s;
  }
  .ptr-indicator i { font-size: 1.2rem; }

  /* Remove hover effects on mobile (no hover on touch) */
  .resto-card:hover,
  .menu-card-modern:hover { transform: none; box-shadow: var(--shadow); }
  .resto-card:hover .resto-card-img img { transform: none; }
  .menu-card-modern:hover .menu-card-modern-img img { transform: none; }
  .resto-card:hover .resto-card-cta { gap: 6px; }

  /* Quick tap feedback */
  .resto-card:active { transform: scale(0.97); }
  .menu-card-modern:active { transform: scale(0.97); }
  .resto-btn:active, .resto-checkout-btn:active { transform: scale(0.97) !important; }

  /* Toast positioning for mobile */
  #toast-container {
    bottom: 70px !important;
    padding: 0 12px !important;
    left: 0;
    right: 0;
    width: 100%;
  }

  .skel-img { height: 140px; }
  .resto-menu-label { font-size: 1rem; margin: 16px 0 12px; }

  /* Keep FAB on mobile via inline app-bar */
  .resto-fab-wrap { display: none; }

  /* QR code scanner */
  #qr-reader { max-width: 100% !important; }

  /* Leaflet map mobile */
  .leaflet-control-zoom { display: none; }
}

/* ============================================
   TOAST OVERRIDES
   ============================================ */
.toast {
  border-radius: var(--radius) !important;
  border: none !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
}
.toast-body {
  font-weight: 500;
  padding: 12px 16px !important;
}

/* ============================================
   TABLE INFO BANNER
   ============================================ */
.resto-table-banner {
  background: var(--primary-gradient);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.25);
}
.resto-table-banner i {
  margin-right: 6px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: slideUp 0.3s ease-out forwards;
}
.cart-item-modern {
  animation: slideUp 0.3s ease-out;
}
