  html, body {
      height: 100%;
        background-color: #f4f4f4;
          color: #121212 !important;
    }
    body {
      display: flex;
      flex-direction: column;
        font-family: 'Roboto', sans-serif;
    }
    main {
      flex: 1;
        padding-bottom: 60px; /* space above footer */
    }
    header {
       background-color: #b30000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    header img {
  height: 80px;
  max-width: 160px;
  object-fit: contain;
}
  
    .category-scroll {
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 20px;
       padding-bottom: 10px;
    }
    .category-scroll::-webkit-scrollbar {
  height: 8px;
}
.category-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.category-scroll::-webkit-scrollbar-thumb {
  background-color: #ff0000;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

  #searchInput {
  border: 2px solid #ff0000;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 16px;
}

    .category-btn {
      display: inline-flex;
      align-items: center;
      margin-right: 10px;
      padding: 10px 18px;
      border-radius: 30px;
      border: none;
      font-weight: bold;
      background-color: #ff0000;
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .category-btn:hover {
      background-color: #cc0000;
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    }

    .category-btn.active {
      background-color: #b30000;
      box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
  

    .food-card:hover {
      transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    footer {
      background-color: #121212;
      color: #ffffff;
      margin-top: 40px;
    }
    footer {
  background: linear-gradient(to right, #121212, #3a3a3a);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.custom-footer {
  background: linear-gradient(to right, #121212, #3a3a3a);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.social-buttons .btn {
  margin: 0 5px;
  padding: 6px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  color: #fff;
}

.btn-facebook {
  background-color: #3b5998;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-whatsapp {
  background-color: #25D366;
}


    .mic-btn {
  background: linear-gradient(145deg, #ff0000, #cc0000);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mic-btn:hover {
  background: linear-gradient(145deg, #cc0000, #ff0000);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.6);
}

.mic-btn:focus {
  outline: none;
}

.mic-btn i {
  font-size: 18px;
}
#searchInput {
  border: none;
  border-radius: 40px;
  padding: 12px 20px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Left Floating Install Button */
.install-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(to right, #ee1010, #464a40);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  display: none;
  transition: transform 0.3s ease;
}
.install-fab:hover {
  transform: scale(1.1);
}

/* Right Floating Welcome Button */
.welcome-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(to right, #ee1010, #464a40);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.3s ease;
}
.welcome-fab:hover {
  transform: scale(1.1);
}


