SpaceZ Transports logo featuring a pin with Europe map and an arrow.

Shipping Calculator

Get instant shipping quotes and book your shipment

1
Calculate
2
Review
3
Payment

Contact Information

Shipping Options

Based on your information, we've calculated the following shipping options:

Standard Shipping

$1,249
Estimated Transit Time: 5-7 business days
Carrier Type: Open Transport

Expedited Shipping

$1,849
Estimated Transit Time: 3-4 business days
Carrier Type: Open Transport

Premium Enclosed

$2,499
Estimated Transit Time: 5-7 business days
Carrier Type: Enclosed Transport

Insurance Options

Quote Summary

Base Shipping Cost: $1,249.00
Insurance: Included
Total: $1,249.00

Payment Information

Complete your booking by providing payment details below

Billing Address

Amount to Pay Now: $295.00

Payment Successful!

Your shipping request has been confirmed and paid. You will receive a confirmation email shortly with all the details.

Order Reference: SHP-12345

Amount Paid: $295.00

// Add this to the completePaymentButton click handler function addToSquarespaceCart() { const variantId = getVariantIdForShippingOption(selectedShippingOption.name); const quantity = 1; // Use Squarespace's JavaScript API window.Squarespace.globalCart.addItem({ variantId: variantId, quantity: quantity }).then(() => { // Redirect to checkout window.location.href = '/checkout'; }).catch(error => { console.error('Error adding to cart:', error); alert('There was an error processing your request. Please try again.'); }); } function getVariantIdForShippingOption(optionName) { // Replace these with your actual variant IDs from Squarespace const variantMap = { 'Standard Shipping': '12345-abcde', 'Expedited Shipping': '67890-fghij', 'Premium Enclosed': '54321-klmno' }; return variantMap[optionName] || variantMap['Standard Shipping']; }