/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #545353;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }
  
  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #222;
  }
  
  /* Hamburger Icon */
  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }
/* Page Heading */
h1 {
    text-align: center;
    font-size: 2rem;
    margin: 20px;
    color: #222;
}

/* Cart Container */
#cartItems {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item h3 {
    font-size: 1.2rem;
    margin: 0;
    flex: 2;
}

.cart-item p {
    font-size: 1rem;
    margin: 5px 0;
}

/* Remove Button */
.remove-item {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.remove-item:hover {
    background-color: #c62828;
}
.order-item{background-color: #e63946;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: 5px;
}
.order-item{
    background-color: #c62828;
}
/* Empty Cart Message */
#cartItems p {
    text-align: center;
    font-size: 1.2rem;
    padding: 20px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
      }
    
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #545353;
        padding: 10px 0;
        text-align: center;
      }
    
      .nav-links.active {
        display: flex;
      }
    
      .nav-links li {
        margin: 10px 0;
      }
    #cartItems {
        padding: 15px;
    }

    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-item img {
        margin-bottom: 10px;
    }

    .cart-item h3 {
        font-size: 1rem;
    }

    .cart-item p {
        font-size: 0.9rem;
    }

    .remove-item {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
}
