.custom-cart {
  direction: rtl;
  font-family: 'Cairo', sans-serif;
  border: 1px solid #944c9a;
  border-radius: 10px;

}

.custom-cart h2 {
  color: #6f1a7b;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-left button {
  margin: 0 3px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #aaa;
  background: #f2f2f2;
  cursor: pointer;
}

.remove-item {
  color: red;
  font-size: 18px;
  font-weight: bold;
  background: none;
  border: none;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-top: 10px;
}

.order-button {
  display: block;
  background-color: #6f1a7b;
  color: white;
  padding: 8px;
  text-align: center;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 15px;
}
