body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
    background-color: #1e1e1e;
  }
  
  .home {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-image 2s linear; 
  }
  
  .home-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 15%;
  }
  
  .home-content h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 40px;
    margin: 0px;
  }
  
  .order-button {
    background-color: #ffd700;
    color: black;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .order-button:hover {
    background-color: #ffa500;
  }
  
  .product-slider {
    width: 80%;
    margin-top: 2%;
    border-radius: 20px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
  }
  
  .product-item-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    padding: 20px;
    background-color: white;
    border-left: 1px solid #1e1e1e;
    cursor: pointer;
  }
  
  .product-image-home {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #1e1e1e;
  }
  
  .product-item-home .product-details{
    width: 83%;
  }
  .product-heading{
    height: 48px;
    width: 100%;
    border-bottom: 2px solid black;
  }
  .product-name1 {
    margin-top: 10px;
    font-size: 15px;
    padding-bottom: 7px;
    text-align: start;
    color: black;
  }
  
  .product-price1 {
    font-size: 14px;
    text-align: start;
    color: black;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 1100px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      width: 55%;
      background: rgba(0, 0, 0, 0.9);
      padding: 20px 0;
      z-index: 1000;
    }
  
    .nav-links.open {
      display: flex;
      flex-direction: column; /* Ensure it's a column layout */
      align-items: flex-start; /* Align items to the start */
      padding: 10px;
    }
  
    .icons {
      flex-direction: row;
      gap: 20px;
    }
  
    .drawer-icon {
      display: block;
    }
  
    .logo {
      flex-grow: 1;
    }
  
    .home-content h1 {
      font-size: 36px;
    }
  
    .order-button {
      font-size: 18px;
      padding: 10px 20px;
      font-family: "Poppins", sans-serif;
    }
  }
  