body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fefefe;
    color: #333;
  }
  
  .navbar {
    background: #151515;
    padding: 1rem;
    text-align: right;
  }
  
  .navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
  }
  
  h2 {
    text-align: center;
    margin-top: 30px;
    font-size: 2rem;
  }
  
  .specials-section {
    padding: 40px 20px;
  }
  
  .carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .special-card {
    background: #fff9f2;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    padding: 15px;
    width: 250px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
  }
  
  .special-card:hover {
    transform: scale(1.05);
  }
  
  .special-card img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
  }
  
  .chef-pick {
    background-color: #ff6b6b;
  }
  
  .offer-badge {
    background-color: #4caf50;
  }
  
  .offer {
    color: #e53935;
    text-decoration: line-through;
    margin-left: 8px;
  }
  
  .suggestion-section {
    padding: 30px 20px;
    background-color: #f9f9f9;
  }
  
  .suggestion-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .suggestion-item {
    background: #fff;
    padding: 15px;
    width: 220px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .suggestion-item img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  footer {
    text-align: center;
    margin-top: 50px;
  }
  