.bag-show{
    padding: 30px 120px;
}

.bag-show h1{
    font-size: 2em;
    margin: 70px 70px 100px 70px;
}

.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.img-box {  
  display: flex;
}

.img-box img {
  width: 203px;
  object-fit: cover;
  border-radius: 10px;
}

.qty-select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ffffff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.qty-select:focus {
  outline: none;
  border-color: #aaa;
}


.product-details {
  flex: 1;
  text-align: right; /* عربي */
}

.product-details h3 {
  font-size: 24px;
  margin: 0 0 6px;
}

.price {
  margin: 2px 0;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.total{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.cart-total {
  text-align: right;
  font-size: 22px;
  font-weight: bold;
  margin-top: 50px;
}

.confirm-btn{
  background-color: #009be2;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color .3s ease;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #009be2;
  transition: .3s ease;
}

.remove-btn:hover {
  color: red;
  text-decoration: underline;
}

hr {
  border: none;
  height: 1px;
  background: #cacaca;
}

@media (max-width: 768px) {
  .bag-show {
    padding: 20px;
  }

  .bag-show h1 {
    font-size: 1.5em;
    margin: 50px 20px 70px 20px;
  }

  .product-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .img-box img {
    width: 100%;
    max-width: 300px;
  }

  .product-details {
    text-align: left; /* للغات من اليسار لليمين */
    margin-top: 10px;
  }

  .cart-total {
    font-size: 18px;
    margin-top: 30px;
  }
}
  
