/* food.css */
    :root {
      --primary-color: #dc3545;
      --secondary-color: #ffc107;
      --success-color: #198754;
      --dark-color: #212529;
    }
    
    .hero-section {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      padding: 100px 0;
    }
    
    .card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
    }
    
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .btn-add-cart {
      background: var(--primary-color);
      border: none;
      padding: 8px 20px;
      border-radius: 25px;
      transition: all 0.3s ease;
    }
    
    .btn-add-cart:hover {
      background: #c82333;
      transform: scale(1.05);
    }
    
    .cart-sidebar {
      position: fixed;
      right: -400px;
      top: 0;
      width: 400px;
      height: 100vh;
      background: white;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      z-index: 1050;
      overflow-y: auto;
    }
    
    .cart-sidebar.active {
      right: 0;
    }
    
    .cart-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1040;
      display: none;
    }
    
    .cart-overlay.active {
      display: block;
    }
    
    .badge-cart {
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--secondary-color);
      color: var(--dark-color);
      font-weight: bold;
    }
    
    .food-category {
      margin: 80px 0;
    }
    
    .category-filter {
      margin-bottom: 40px;
    }
    
    .filter-btn {
      margin: 5px;
      border-radius: 25px;
      padding: 10px 20px;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      background: white;
      transition: all 0.3s ease;
    }
    
    .filter-btn.active,
    .filter-btn:hover {
      background: var(--primary-color);
      color: white;
    }
    
    .delivery-info {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      padding: 60px 0;
    }
    
    .feature-icon {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    
    .rating {
      color: #ffc107;
    }
    
    .price {
      font-size: 1.25rem;
      font-weight: bold;
      color: var(--success-color);
    }
    
    .original-price {
      text-decoration: line-through;
      color: #6c757d;
      font-size: 1rem;
      margin-right: 10px;
    }

    a {
      text-decoration: none;
      color: inherit;
    }
   
    img {
      max-height: 150px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
      
    }
  