To track your order please enter your Order ID in the box below and press the "Track" button. This was given to you on your receipt and in the confirmation email you should have received.

				
					<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Seller Calculator</title>
    <style>
        body { font-family: Arial, sans-serif; text-align: center; }
        .container { max-width: 400px; margin: auto; padding: 20px; border: 1px solid #ddd; border-radius: 8px; }
        input, select { width: 100%; padding: 8px; margin: 8px 0; }
        .result { font-size: 18px; font-weight: bold; color: green; }
    </style>
</head>
<body>

    <div class="container">
        <h2>Seller Calculator</h2>
        <label>Selling Price (PKR):</label>
        <input type="number" id="price" placeholder="Enter selling price" oninput="calculateProfit()">

        <label>Category:</label>
        <select id="category" onchange="calculateProfit()">
            <option value="10">Default (10%)</option>
            <option value="12">Electronics (12%)</option>
        </select>

        <label>Shipping Fee (PKR):</label>
        <input type="number" id="shippingFee" value="50" oninput="calculateProfit()">

        <div class="result">Net Profit: PKR <span id="profit">0</span></div>
    </div>

    <script>
        function calculateProfit() {
            let price = parseFloat(document.getElementById("price").value) || 0;
            let commissionRate = parseFloat(document.getElementById("category").value);
            let shippingFee = parseFloat(document.getElementById("shippingFee").value) || 0;

            let commission = (price * commissionRate) / 100;
            let tax = (commission * 8) / 100;
            let totalFees = commission + tax + shippingFee;
            let profit = price - totalFees;

            document.getElementById("profit").innerText = profit.toFixed(2);
        }
    </script>

</body>
</html>

				
			

Main Menu