 

  .menu-section {
    padding: 20px 0;
  }
  
  .menu-section .nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 12px 24px;
    margin-right: 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.menu-section .nav-tabs .nav-link:hover {
  background-color: #f8f9fa;
  color: #495057;
}

.menu-section .nav-tabs .nav-link.active {
  background-color: #0d6efd;
  color: white;
  border: none;
}

  .menu-filters {
    background: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    margin: 5px;
    border-radius: 25px;
    border: 2px solid #770202;
    background: transparent;
    color: #770202;
    transition: all 0.3s ease;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: #770202;
    color: white;
  }
  
  .category-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
   
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-header {
    background: linear-gradient(135deg, #ac0404, #831101);
    color: white;
    padding: 10px;
    text-align: center;
    scroll-margin-top: 210px;
  }
  
  .category-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
  }
  
  .category-description {
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
    font-size: 0.9rem;
  }
  
  .menu-item {
    border-bottom: 1px solid #eee;
    padding: 20px;
    transition: background-color 0.3s ease;
  }
  
  .menu-item:last-child {
    border-bottom: none;
  }
  
  .menu-item:hover {
    background-color: #f8f9fa;
  }
  
  .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  
  .menu-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'Roboto', sans-serif;
  }
  
  .menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #770202;
    margin: 0;
    font-family: 'Roboto', sans-serif;
  }
  
  .menu-item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .menu-item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
  }
  
  .badge-vegetarian { background: #28a745; color: white; }
  .badge-vegan { background: #20c997; color: white; }
  .badge-gluten-free { background: #ffc107; color: #212529; }
  .badge-spicy { background: #dc3545; color: white; }
  .badge-popular { background: #fd7e14; color: white; }
  
  .menu-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 15px;
  }
  
  .popular-section {
    background: linear-gradient(135deg, #fd7e14, #d63384);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .popular-title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .popular-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
  }
  
  .no-items {
    text-align: center;
    padding: 40px;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .menu-item-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .menu-item-price {
      margin-top: 10px;
    }
    
    .menu-item-image {
      margin-left: 0;
      margin-top: 10px;
    }
  }