body {
      font-family: Arial, sans-serif;
      margin: 0; padding: 0;
      background: #f4f4f4;
    }
    header {
      background: #333; color: #fff;
      padding: 15px; text-align: center;
    }

    .products-title
    {
padding: 15px;
text-align: center;
    }
    .container {
      display: flex;
      padding: 20px;
    }
    .products {
      flex: 3;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
    }
    .product {
      background: #fff;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .product img {
      max-width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 5px;
    }
    .product h3 {
      margin: 10px 0 5px;
      color: black;
    }
    .product button {
      background: #28a745; color: #fff;
      border: none; padding: 10px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }
    .product button:hover {
      background: #218838;
    }
    .cart {
      flex: 1;
      background: #fff;
      margin-left: 20px;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .cart h2 {
      margin-top: 0;
    }
    .cart ul {
      list-style: none;
      padding: 0;
    }
    .cart ul li {
      margin: 5px 0;
      padding: 5px;
      border-bottom: 0px solid #ddd;


    }

#cart {
      background: #ffe8b5;
      padding: 62px;
      border-radius: -6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    #cart ul {
      list-style: none;
      padding: 0;
    }
    #cart li {
      padding: 8px 0;
      border-bottom: 1px solid #ffb700;
    }
    #sendCart {
      margin-top: 5px;
      background: #ff6600;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    #sendCart:hover {
      background: #0069d9;
    }

    .submit
    {
 padding: 5;
 font-size: 1.5rem;
      background: orange;
      padding: 10px 20px;
      border-radius: 10px;
      margin-left: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    }
    .total {
      margin-top: 15px;
      font-weight: bold;
    }

     /* Cart styles */
    .cart {
      background: #20a508ad;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: auto;
    }

    .cart h2 {
      margin-top: 0;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .cart ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .cart li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .quantity-controls button {
      background: #ff9800;
      border: none;
      color: white;
      font-size: 18px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s;
    }

    .quantity-controls button:hover {
      background: #e68900;
    }

    .quantity-controls span {
      min-width: 25px;
      text-align: center;
      font-weight: bold;
    }

    .cart-total {
      text-align: right;
      margin-top: 15px;
      font-weight: bold;
      font-size: 18px;
    }


    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .product {
      background: white;
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .product img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 8px;
    }

    .product h3 {
      margin: 10px 0 5px;
    }

    .product p {
      margin: 0;
      color: #555;
    }

    .product button {
      margin-top: 10px;
      padding: 8px 14px;
      background: #ff9800;
      border: none;
      color: white;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .product button:hover {
      background: #e68900;
    }
