.cart.cart-form {
  border: 2px solid var(--bs-primary);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 40px;
  background-color: var(--tb5-gray)
}

.cart.cart-form table.table th {
  background: var(--bs-primary);
  color: #fff;
  padding: 1rem;
}

.cart.cart-form table.table thead th:first-child {
  border-top-left-radius: 1rem;
}

.cart.cart-form table.table thead th:last-child {
  border-top-right-radius: 1rem;
}

.cart.cart-form table.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}

.cart.cart-form table.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}

.cart.cart-form table.table tbody tr:last-child td {
  border-bottom: 0;
}