  .cart-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
  }

  .cart-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 0.95rem;
  }

  .cart-table thead {
    background: #f5f5f5;
  }

  .cart-table th,
  .cart-table td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
  }

  .cart-table th {
    font-weight: 600;
    color: #009;
  }

  .cart-table td.product-info {
    width: 70px;
  }

  .cart-table td.product-info img {
    display: block;
    max-width: 60px;
    max-height: 60px;
    border-radius: 4px;
  }

  .cart-table td.product-name {
    font-weight: 600;
  }

  .cart-table td.product-options {
    color: #555;
    font-size: 0.9rem;
  }

  .cart-table td.product-qty input[type="number"] {
    width: 70px;
    padding: 0.2rem;
  }

  .cart-table td.product-price,
  .cart-table td.product-subtotal {
    white-space: nowrap;
  }

  .cart-table .btn {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #888;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 0.85rem;
  }

  .cart-table .btn:hover {
    background: #e5e5e5;
  }

  .cart-table .btn-remove {
    border-color: #a00;
  }

  /* Hide the action buttons for now (you can remove this later) */
  .future-action {
    display: none;
  }

  /* ====== Responsive (stacked) layout for small screens ====== */
  @media (max-width: 768px) {
    .cart-table thead {
      display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
      display: block;
      width: 100%;
    }

    .cart-table tr {
      border: 1px solid #ddd;
      margin-bottom: 1rem;
      padding: 0.5rem;
      border-radius: 4px;
    }

    .cart-table td {
      border: none;
      padding: 0.25rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-table td::before {
      content: attr(data-label);
      font-weight: 600;
      margin-right: 0.5rem;
      flex: 0 0 40%;
      text-align: left;
    }

    /* Image row: center image, no label */
    .cart-table td.product-info {
      justify-content: center;
    }

    .cart-table td.product-info::before {
      content: "";
    }

    .cart-table td.product-info img {
      max-width: 80px;
      max-height: 80px;
    }

    /* Let name and options wrap nicely */
    .cart-table td.product-name,
    .cart-table td.product-options {
      flex-direction: column;
      align-items: flex-start;
    }

    .cart-table td.product-name::before,
    .cart-table td.product-options::before {
      margin-bottom: 0.1rem;
    }
  }

