.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  direction: rtl;
  flex-wrap: wrap;
}

.price-box label {
  font-weight: bold;
  color: #333;
}

.price-box input {
  width: 80px;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
}

.price-box .price,
.price-box .total {
  color: #555;
  font-size: 16px;
}

.price-box .total {
  font-weight: bold;
  color: #000;
}

.pay-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pay-btn:hover {
  background-color: #218838;
}