.cart-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  h1 {
    text-align: center;
    color: #444;
    margin-bottom: 20px;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  th {
    background-color: #f8f8f8;
    font-weight: 600;
  }
  .product-info {
    display: flex;
    align-items: center;
    width: 360px;
  }
  .product-info img {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    object-fit: contain;
  }
  .product-info div {
    display: flex;
    flex-direction: column;
  }
  .product-info strong {
    font-size: 1.1em;
    color: #222;
  }
  .product-info span {
    font-size: 0.9em;
    color: #666;
  }
  .quantity-control {
    display: flex;
    align-items: center;
  }
  .quantity-control input {
    width: 25px;
    text-align: center;
    margin: 0 5px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
  }
  input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .quantity-control button {
    /* padding: 8px 12px; */
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
  }
  .quantity-control button:hover {
    background-color: #e0e0e0;
  }
  .total-price {
    font-weight: 600;
    color: #222;
  }
  .grand-total {
    text-align: right;
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: #222;
  }
  .notice {
    text-align: right;
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
  }
  .checkout-button {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 600;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .checkout-button:hover {
    background-color: #0056b3;
  }

  /* Responsive Styles */
  @media (max-width: 600px) {
    .cart-container {
        margin: 0 10px;
        width: auto;
    }
    h1 {
      font-size: 1.5em;
    }
    table, tbody, th, td, tr {
      display: block;
    }
    th, thead {
      display: none;
    }
    tr {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 10px;
    }
    td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      border: none;
    }
    td::before {
      content: attr(data-label);
      font-weight: 600;
      color: #444;
      margin-right: 10px;
    }
    .product-info {
      flex-direction: column;
      align-items: flex-end;
      text-align: right;
    }
    .product-info img {
      margin-bottom: 10px;
    }
    .quantity-control {
      justify-content: center;
    }
    .quantity-control input {
      width: 20px;
      font-size: 0.8em;
    }
    .quantity-control button {
      padding: 4px 10px;
    }
    .grand-total {
      text-align: right;
    }
    .checkout-button {
      max-width: 100%;
    }
  }