body {
      font-family: 'Outfit', sans-serif;
      overflow-x: hidden;
    }
    
    /* Hide scrollbar for Chrome, Safari and Opera */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    .no-scrollbar {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }

    .glassmorphism {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .dark .glassmorphism {
      background: rgba(18, 18, 18, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .glassmorphism-card {
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .dark .glassmorphism-card {
      background: rgba(30, 30, 30, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .food-card-shadow {
      box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    }
    .dark .food-card-shadow {
      box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
    }

    .glow-orange {
      box-shadow: 0 0 20px rgba(224, 90, 71, 0.2);
    }
    .glow-gold {
      box-shadow: 0 0 20px rgba(204, 164, 59, 0.25);
    }
    .glow-emerald {
      box-shadow: 0 0 20px rgba(13, 92, 58, 0.2);
    }
    .glow-amber {
      box-shadow: 0 0 20px rgba(139, 90, 43, 0.25);
    }
    .glow-purple {
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
    }
    .glow-pink {
      box-shadow: 0 0 20px rgba(236, 72, 153, 0.25);
    }
    .glow-teal {
      box-shadow: 0 0 20px rgba(13, 95, 110, 0.3);
    }

    /* Page transitions */
    .fade-in-up {
      animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scale-up {
      animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes scaleUp {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

/* Google Translate Widget Overrides */
.skiptranslate iframe { display: none !important; }
body { top: 0px !important; }
.goog-te-gadget { color: transparent !important; font-size: 0px !important; }
.goog-te-gadget .goog-te-combo { color: #334155; background-color: transparent; border: none; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14px; padding: 4px; outline: none; cursor: pointer; border-radius: 4px; }
.dark .goog-te-gadget .goog-te-combo { color: #f8fafc; }
.goog-logo-link { display: none !important; }
.goog-te-gadget img { display: none !important; }

/* ==========================================================================
   VITTO BRAND IDENTITY — ANIMATED LOGO & LOADING STAGE
   ========================================================================== */

/* Fullscreen Splash Screen Loader */
#vitto-splash-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F0EDE8;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s ease;
}

.dark #vitto-splash-loader {
  background: #0d131f;
}

#vitto-splash-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Responsive scale wrapper for the animated logo stage */
.vitto-stage-scale {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center center;
}

@media (max-width: 640px) {
  .vitto-stage-scale {
    transform: scale(0.68);
  }
}

@media (max-width: 440px) {
  .vitto-stage-scale {
    transform: scale(0.55);
  }
}

/* Stage container */
.stage {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ── ICONA ── */
.icon-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: #1A2744;
  opacity: 0;
  transform: scale(0.88);
  animation: bgPop 5.5s cubic-bezier(.34, 1.4, .64, 1) infinite;
}

@keyframes bgPop {
  0%, 5% { opacity: 0; transform: scale(0.88); }
  18%, 78% { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; transform: scale(0.96); }
}

/* Corner finders: outer -> inner -> core with progressive delays */
.corner {
  position: absolute;
  border-radius: 8px;
  background: #F7931E;
  opacity: 0;
  transform: scale(0);
  animation: cornerIn 5.5s cubic-bezier(.34, 1.5, .64, 1) infinite;
}
.corner.inner { border-radius: 5px; background: #1A2744; }
.corner.core  { border-radius: 3px; background: #F7931E; }

/* top-left */
.tl-o { width: 54px; height: 54px; top: 16px; left: 16px; animation-delay: .30s; }
.tl-i { width: 36px; height: 36px; top: 25px; left: 25px; animation-delay: .42s; }
.tl-c { width: 18px; height: 18px; top: 34px; left: 34px; animation-delay: .54s; }

/* top-right */
.tr-o { width: 54px; height: 54px; top: 16px; left: 90px; animation-delay: .70s; }
.tr-i { width: 36px; height: 36px; top: 25px; left: 99px; animation-delay: .82s; }
.tr-c { width: 18px; height: 18px; top: 34px; left: 108px; animation-delay: .94s; }

/* bottom-left */
.bl-o { width: 54px; height: 54px; top: 90px; left: 16px; animation-delay: 1.10s; }
.bl-i { width: 36px; height: 36px; top: 99px; left: 25px; animation-delay: 1.22s; }
.bl-c { width: 18px; height: 18px; top: 108px; left: 34px; animation-delay: 1.34s; }

/* bottom-right VD monogram node */
.br-o { width: 54px; height: 54px; top: 90px; left: 90px; animation-delay: 1.38s; border-radius: 8px; }
.br-i { width: 46px; height: 46px; top: 94px; left: 94px; animation-delay: 1.44s; border-radius: 6px; }
.br-vd {
  position: absolute;
  top: 94px;
  left: 94px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #F7931E;
  z-index: 3;
  opacity: 0;
  transform: scale(0);
  animation: cornerIn 5.5s cubic-bezier(.34, 1.5, .64, 1) infinite;
  animation-delay: 1.50s;
  letter-spacing: -0.5px;
}

@keyframes cornerIn {
  0%, 22% { opacity: 0; transform: scale(0); }
  38%, 72% { opacity: 1; transform: scale(1); }
  88%, 100% { opacity: 0; transform: scale(0.7); }
}

/* Glow animation */
.glow {
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  border: 2px solid #F7931E;
  opacity: 0;
  animation: glowOn 5.5s ease infinite;
}

@keyframes glowOn {
  0%, 60% { opacity: 0; transform: scale(1); }
  68% { opacity: 1; transform: scale(1.03); }
  76%, 100% { opacity: 0; transform: scale(1.08); }
}

/* ── TYPOGRAPHY ── */
.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-row {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.letter {
  font-family: 'Outfit', 'Georgia', serif;
  font-size: 64px;
  font-weight: 800;
  color: #1A2744;
  display: inline-block;
  opacity: 0;
  transform: translateY(-24px);
  animation: letterDrop 5.5s cubic-bezier(.22, 1, .36, 1) infinite;
}
.dark .letter:not(.dot):not(.digital-letter) {
  color: #f8fafc;
}
.letter.digital-letter {
  color: #F7931E;
  font-weight: 900;
}
.letter.dot {
  color: #F7931E;
  font-size: 70px;
}

.l1  { animation-delay: 1.45s; }
.l2  { animation-delay: 1.53s; }
.l3  { animation-delay: 1.61s; }
.l4  { animation-delay: 1.69s; }
.l5  { animation-delay: 1.77s; }
.l6  { animation-delay: 1.85s; }
.l7  { animation-delay: 1.93s; }
.l8  { animation-delay: 2.01s; }
.l9  { animation-delay: 2.09s; }
.l10 { animation-delay: 2.17s; }
.l11 { animation-delay: 2.25s; }
.l12 { animation-delay: 2.33s; }
.l13 { animation-delay: 2.41s; }

@keyframes letterDrop {
  0%, 26% { opacity: 0; transform: translateY(-28px); }
  40%, 72% { opacity: 1; transform: translateY(0); }
  87%, 100% { opacity: 0; transform: translateY(6px); }
}

.cursor {
  display: inline-block;
  width: 5px;
  height: 52px;
  background: #F7931E;
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: cursorLife 5.5s ease infinite;
}

@keyframes cursorLife {
  0%, 22% { opacity: 0; }
  26% { opacity: 1; }
  55%, 57% { opacity: 0; }
  59%, 61% { opacity: 1; }
  63%, 65% { opacity: 0; }
  67% { opacity: 1; }
  76%, 100% { opacity: 0; }
}

.sub-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  opacity: 0;
  animation: subSlide 5.5s ease infinite;
}

@keyframes subSlide {
  0%, 56% { opacity: 0; transform: translateX(-8px); }
  68%, 76% { opacity: 1; transform: translateX(0); }
  89%, 100% { opacity: 0; transform: translateX(-8px); }
}

.sub-line { width: 32px; height: 1.5px; background: #F7931E; border-radius: 1px; }
.sub-text { font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 7px; color: #F7931E; font-weight: 500; }
.sub-line-r { flex: 1; height: 1.5px; background: #F7931E; opacity: 0.25; border-radius: 1px; }

.tagline {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.5px;
  margin-top: 9px;
  opacity: 0;
  animation: subSlide 5.5s ease infinite;
  animation-delay: .15s;
}
.dark .tagline {
  color: #94a3b8;
}

/* ==========================================================================
   VITTO HEADER LOGO (ALTO-SINISTRA HEADER)
   ========================================================================== */
.vitto-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.vitto-header-brand:hover {
  transform: translateY(-1px);
}
.vitto-header-brand:active {
  transform: scale(0.98);
}

.vitto-header-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(26, 39, 68, 0.2), 0 0 0 1px rgba(247, 147, 30, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  object-fit: cover;
}
.vitto-header-brand:hover .vitto-header-icon {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(247, 147, 30, 0.35), 0 0 0 1.5px rgba(247, 147, 30, 0.6);
}

.vitto-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.vitto-header-title {
  display: flex;
  align-items: baseline;
  font-family: 'Georgia', serif;
  font-size: 21px;
  font-weight: 700;
  color: #1A2744;
  letter-spacing: -0.5px;
  line-height: 1;
}
.dark .vitto-header-title {
  color: #ffffff;
}

.vitto-header-dot {
  color: #F7931E;
  font-size: 23px;
  margin-left: 0.5px;
}

.vitto-header-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #F7931E;
  margin-left: 3px;
  border-radius: 1px;
  animation: cursorBlink 1.2s infinite ease-in-out;
  opacity: 0.8;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.vitto-header-sub {
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F7931E;
  margin-top: 3px;
  line-height: 1;
}

/* ==========================================================================
   VITTO MOBILE LANDING PAGE REDESIGN UX/UI SYSTEM
   ========================================================================== */

/* Frame styling when rendered inside HomeView */
.vitto-mobile-layout {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: #F5F3EF;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.dark .vitto-mobile-layout {
  background: #0f172a;
}

/* 1. Notch decorativo */
.vitto-notch-container {
  background: #1A2744;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.vitto-notch {
  width: 90px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #1A2744;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vitto-notch-speaker {
  width: 38px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}

/* 2. Navbar (3 zone: brand | cta primaria | hamburger) */
.vitto-mobile-nav {
  background: #1A2744;
  padding: 10px 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
}
.vitto-mobile-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  cursor: pointer;
}
.vitto-mobile-logo-qr {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #F7931E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vitto-mobile-wordmark {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.vitto-mobile-wordmark span {
  color: #F7931E;
}
.vitto-mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vitto-btn-accedi {
  background: #F7931E;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  line-height: 1;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.vitto-btn-accedi:active {
  transform: scale(0.96);
  opacity: 0.9;
}
.vitto-btn-hamburger {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.vitto-btn-hamburger:active {
  transform: scale(0.94);
  background: rgba(255, 255, 255, 0.1);
}

/* 3. Drawer (menu a scomparsa) */
.vitto-mobile-drawer {
  background: #1A2744;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.vitto-mobile-drawer.open {
  max-height: 220px;
}
.vitto-drawer-item {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.vitto-drawer-item:hover,
.vitto-drawer-item:active {
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.vitto-drawer-item i {
  color: #F7931E;
  font-size: 16px;
  flex-shrink: 0;
}

/* 4. Search bar */
.vitto-mobile-search-section {
  padding: 14px 14px 0;
}
.vitto-mobile-search-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid #E8E5E0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  transition: border-color 0.2s ease;
}
.dark .vitto-mobile-search-card {
  background: #1e293b;
  border-color: #334155;
}
.vitto-mobile-search-card:focus-within {
  border-color: #F7931E;
}
.vitto-search-icon {
  font-size: 18px;
  color: #aaaaaa;
  flex-shrink: 0;
}
.vitto-search-input {
  font-size: 13px;
  color: #1A2744;
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-family: inherit;
}
.dark .vitto-search-input {
  color: #f8fafc;
}
.vitto-search-input::placeholder {
  color: #aaaaaa;
}
.vitto-btn-search-submit {
  background: #F7931E;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  min-height: 30px;
  transition: transform 0.15s ease;
}
.vitto-btn-search-submit:active {
  transform: scale(0.95);
}

/* 5. Hero section */
.vitto-mobile-hero {
  padding: 20px 16px 16px;
  text-align: center;
}
.vitto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #F7931E;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.vitto-eyebrow::before,
.vitto-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #F7931E;
  opacity: 0.4;
}
.vitto-hero-h1 {
  font-size: 22px;
  font-weight: 800;
  color: #1A2744;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.dark .vitto-hero-h1 {
  color: #f8fafc;
}
.vitto-hero-h1 span {
  color: #F7931E;
}
.vitto-hero-paragraph {
  font-size: 12px;
  color: #888888;
  line-height: 1.6;
  margin-bottom: 16px;
}
.dark .vitto-hero-paragraph {
  color: #94a3b8;
}
.vitto-hero-cta-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.vitto-hero-btn-primary {
  background: #F7931E;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 15px;
  border-radius: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.15s ease;
}
.vitto-hero-btn-primary i {
  font-size: 18px;
}
.vitto-hero-btn-primary:active {
  transform: scale(0.98);
}
.vitto-hero-btn-ghost {
  border: 1.5px solid #dddddd;
  background: transparent;
  color: #888888;
  font-size: 12px;
  font-weight: 600;
  padding: 11px;
  border-radius: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  min-height: 44px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.dark .vitto-hero-btn-ghost {
  border-color: #334155;
  color: #94a3b8;
}
.vitto-hero-btn-ghost:active {
  transform: scale(0.98);
  border-color: #bbbbbb;
}

/* 6. Filtri categoria */
.vitto-chips-section {
  padding: 14px 16px 10px;
}
.vitto-chips-label {
  font-size: 11px;
  color: #aaaaaa;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.vitto-chips-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.vitto-filter-chip {
  background: #ffffff;
  border: 1.5px solid #eeeeee;
  color: #666666;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.dark .vitto-filter-chip {
  background: #1e293b;
  border-color: #334155;
  color: #cbd5e1;
}
.vitto-filter-chip:active {
  transform: scale(0.96);
}
.vitto-filter-chip.active {
  background: #1A2744 !important;
  border-color: #1A2744 !important;
  color: #ffffff !important;
}

/* 7. Lista ristoranti */
.vitto-restaurants-list-sec {
  padding: 4px 16px 20px;
  flex: 1;
}
.vitto-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.vitto-list-title {
  font-size: 14px;
  font-weight: 700;
  color: #1A2744;
}
.dark .vitto-list-title {
  color: #f8fafc;
}
.vitto-list-view-all {
  font-size: 11px;
  font-weight: 700;
  color: #F7931E;
  text-decoration: none;
  cursor: pointer;
}
.vitto-mobile-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  display: flex;
  height: 96px;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.15s ease;
  user-select: none;
}
.dark .vitto-mobile-card {
  background: #1e293b;
  border-color: #334155;
}
.vitto-mobile-card:active {
  transform: scale(0.98);
}
.vitto-mobile-card-thumb {
  width: 96px;
  flex-shrink: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  background-size: cover;
  background-position: center;
}
.vitto-mobile-city-badge {
  background: rgba(247, 147, 30, 0.92);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.vitto-cuisine-emoji {
  font-size: 26px;
  align-self: center;
  line-height: 1;
  margin-bottom: 4px;
}
.vitto-mobile-card-body {
  padding: 11px 13px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.vitto-mobile-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #1A2744;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.dark .vitto-mobile-card-name {
  color: #f8fafc;
}
.vitto-mobile-card-addr {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #bbbbbb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.vitto-mobile-card-addr i {
  font-size: 11px;
  color: #dddddd;
  flex-shrink: 0;
}
.vitto-mobile-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vitto-mobile-rating {
  font-size: 11px;
  font-weight: 700;
  color: #F7931E;
}
.vitto-mobile-open-badge {
  background: #E3F5E9;
  color: #1A7A3A;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1.2;
}
.dark .vitto-mobile-open-badge {
  background: rgba(26, 122, 58, 0.25);
  color: #4ade80;
}
.vitto-btn-view-menu {
  background: #1A2744;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  min-height: 24px;
  transition: background-color 0.15s ease;
}
.dark .vitto-btn-view-menu {
  background: #334155;
}
.vitto-btn-view-menu:active {
  transform: scale(0.95);
}

/* 8. Tab bar inferiore */
.vitto-mobile-tabbar {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  display: flex;
  padding: 10px 0 14px;
  flex-shrink: 0;
  user-select: none;
  position: sticky;
  bottom: 0;
  z-index: 20;
}
.dark .vitto-mobile-tabbar {
  background: #1e293b;
  border-color: #334155;
}
.vitto-bottom-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #cccccc;
  position: relative;
  min-height: 44px;
  transition: color 0.15s ease;
}
.dark .vitto-bottom-tab {
  color: #64748b;
}
.vitto-bottom-tab i {
  font-size: 20px;
  line-height: 1;
}
.vitto-bottom-tab-label {
  font-size: 9px;
  font-weight: 600;
  margin-top: 3px;
  line-height: 1;
}
.vitto-bottom-tab.active {
  color: #F7931E !important;
}
.vitto-tab-active-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F7931E;
  margin-top: 3px;
}


