top of page

free shipping on orders over £100

freepik__adjust__47801.jpg

PLEASURE

DELIVERED

London's Only 2-hour Delivery Sex Shop

New Arrivals

Convenient
Swift
Reliable

We understand that time is of the essence, whether it's a spontaneous moment or a planned occasion. That's why we guarantee lightning-fast delivery within just 2 hours*, ensuring you're never left waiting.

Always Open
Always Here

No more rushing to make it before closing time. Our 24/7 operation means you can shop whenever it suits you, whether it's the crack of dawn or the middle of the night.

Privacy Matters

Your privacy is our priority. Our discreet packaging and secure delivery process ensure that your purchases remain confidential, leaving no room for embarrassment or prying eyes.

WHAT SETS US APART

At ToiStore, we believe that taking care of your sexual wellness should be as easy as a click of a button. Say goodbye to inconvenient store visits, awkward encounters, and limited store hours. We're here to redefine your shopping experience, offering a wide range of essential products delivered right to your doorstep within 2 hours*, day or night.

*2-hour delivery for destinations in London's transportation zone 1 and 2. Get in touch to get your order delivered to a location outside Central London.

bottom of page
const validPostcodes = ["12345", "67890", "ABCDE"]; // Example list of valid postcodes function checkPostcode() { const postcode = document.getElementById("postcode").value; const result = document.getElementById("result"); if (validPostcodes.includes(postcode)) { result.textContent = "Your postcode is eligible for free delivery!"; result.style.color = "green"; } else { result.textContent = "Sorry, your postcode is not eligible for free delivery."; result.style.color = "red"; } } body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; } .container { text-align: center; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } input { padding: 10px; margin: 10px 0; width: 80%; border: 1px solid #ccc; border-radius: 5px; } button { padding: 10px 20px; background-color: #28a745; color: white; border: none; border-radius: 5px; cursor: pointer; } button:hover { background-color: #218838; } #result { margin-top: 20px; font-size: 1.2em; }