✦ Preorder open : 26 Apr - 16 Mei 2026! ✦

✦ Tap the ID card to pre-order now...! ✦

PAYMENT CALCULATOR

Fill the items and make sure your input matches the order form!

Sticker Sheet

Fragments 001
Fragments 002

Metal Clip Case

Dainty Star
Rockstar

ID Photo

태용’s ID Photo - Set

Access Key

Yours
Core

Pin Button Series

Series 001
Series 002

String Pouch

RED vers.
BLUE vers.

Foldable Bag

Polka vers.
Stripe vers.

Phone Case

Total case

Select your payment method

function calc() { const ss1 = +document.getElementById("ss1").value; const ss2 = +document.getElementById("ss2").value; const mcc1 = +document.getElementById("mcc1").value; const mcc2 = +document.getElementById("mcc2").value; const idp = +document.getElementById("idp").value; const aky = +document.getElementById("aky").value; const akc = +document.getElementById("akc").value; const p1 = +document.getElementById("p1").value; const p2 = +document.getElementById("p2").value; const spr = +document.getElementById("spr").value; const spb = +document.getElementById("spb").value; const fbp = +document.getElementById("fbp").value; const fbs = +document.getElementById("fbs").value; const pc = +document.getElementById("pc").value; const total = ss1*23000 + ss2*23000 + mcc1*55000 + mcc2*55000 + idp*16000 + aky*55000 + akc*58000 + p1*18000 + p2*18000 + spr*22000 + spb*22000 + fbp*60000 + fbs*60000 + pc*65000; const dp = ss1*15000 + ss2*15000 + mcc1*45000 + mcc2*45000 + idp*10000 + aky*45000 + akc*48000 + p1*12000 + p2*12000 + spr*15000 + spb*15000 + fbp*50000 + fbs*50000 + pc*55000; const payment = document.getElementById("payment").value; let payNow = 0; let remaining = 0; let typeText = ""; if (payment === "dp") { payNow = dp; remaining = total - dp; typeText = "DP Payment"; } else { payNow = total; remaining = 0; typeText = "Full Payment"; } document.getElementById("resType").innerText = typeText; document.getElementById("resTotal").innerText = "Rp " + total.toLocaleString(); document.getElementById("resPay").innerText = "Rp " + payNow.toLocaleString(); if (remaining > 0) { document.getElementById("resRemain").innerText = "Rp " + remaining.toLocaleString(); document.getElementById("remainRow").style.display = "flex"; } else { document.getElementById("remainRow").style.display = "none"; } document.getElementById("resultBox").style.display = "block"; }