Política de envío

Shipping Price Calculator body { font-family: Arial, sans-serif; background-color: #000; /* Black background */ color: #f4f4f4; /* Light text color */ margin: 0; padding: 0; /* Removed padding to avoid scrolling issues */ box-sizing: border-box; /* Ensures padding is included in element's total width and height */ } .wrapper { padding: 20px; /* Added padding to wrapper */ height: 100vh; /* Set wrapper height */ overflow-y: auto; /* Ensure vertical scrolling */ display: flex; justify-content: center; align-items: center; } .container { background: #333; /* Darker container background */ padding: 60px; /* Increased padding for larger size */ border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); text-align: center; max-width: 1000px; /* Increased max-width for larger size */ width: 100%; } h1 { font-size: 36px; /* Larger font size for the title */ } label { font-size: 24px; /* Larger font size for labels */ } .slider { width: 100%; height: 30px; /* Larger slider size */ } .shipping-options, .warehouse-options { margin: 20px 0; font-size: 24px; /* Larger font size for options */ } .result { margin-top: 20px; font-weight: bold; color: #28a745; /* Green highlight for results */ font-size: 24px; /* Larger font size for result */ } button { font-size: 24px; /* Larger font size for button */ padding: 10px 20px; background-color: #28a745; /* Green background for button */ color: #fff; border: none; border-radius: 5px; cursor: pointer; margin-top: 20px; } button:hover { background-color: #218838; /* Darker green on hover */ }

Shipping Price Calculator

iTech Warehouse Vista Warehouse
Product Price: $0
Standard Priority Express
Calculate Shipping
const priceRange = document.getElementById('priceRange'); const priceValue = document.getElementById('priceValue'); const result = document.getElementById('result'); priceRange.oninput = function() { if (this.value == 101) { priceValue.textContent = 'Over $100'; } else { priceValue.textContent = this.value; } } function calculateShipping() { const price = parseFloat(priceRange.value); const shippingMethod = document.querySelector('input[name="shippingMethod"]:checked').value; const warehouse = document.querySelector('input[name="warehouse"]:checked').value; let shippingCost = 0; if (warehouse === 'itech') { if (shippingMethod === 'standard') { shippingCost = 0; // Free shipping for standard in North America } else if (shippingMethod === 'express') { if (price <= 75) { shippingCost = 9.80; } else { shippingCost = 0; // Free shipping for orders above $75 } } else if (shippingMethod === 'economy') { if (price <= 9.99) { shippingCost = 12; } else if (price <= 19.99) { shippingCost = 19; } else { shippingCost = 30; } } else if (shippingMethod === 'standardworldwide') { if (price <= 9.99) { shippingCost = 26; } else if (price <= 19.99) { shippingCost = 32; } else { shippingCost = 46; } } else if (shippingMethod === 'expressworldwide') { if (price <= 9.99) { shippingCost = 30; } else if (price <= 19.99) { shippingCost = 48; } else { shippingCost = 54; } } } else if (warehouse === 'vista') { if (shippingMethod === 'standard') { if (price <= 9.99) { shippingCost = 6; } else if (price <= 19.99) { shippingCost = 9; } else { shippingCost = 12; } } else if (shippingMethod === 'priority') { if (price <= 9.99) { shippingCost = 18; } else if (price <= 19.99) { shippingCost = 26; } else { shippingCost = 30; } } else if (shippingMethod === 'express') { if (price <= 9.99) { shippingCost = 32; } else if (price <= 19.99) { shippingCost = 40; } else { shippingCost = 49; } } } result.textContent = `Shipping Cost: $${shippingCost}`; }

body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 20px; background-color: #000; /* Changed background color to black */ color: #f4f4f4; /* Adjusted text color for readability */ } .container { max-width: 800px; margin: 0 auto; background: #333; /* Darker container background */ padding: 20px; box-shadow: 0 0 10px rgba(0,0,0,0.1); border-radius: 10px; } h1, h2 { color: #fff; } p { color: #ddd; } .highlight { color: #28a745; /* Changed highlight color to green */ font-weight: bold; } ul { list-style-type: none; padding: 0; } ul li { margin-bottom: 10px; } .italic { font-style: italic; /* Italic style for specified text */ }

Shipping Information

We understand that timely and reliable shipping is critical for our customers. That's why we've strategically placed our warehouses to ensure your orders are delivered promptly, no matter where you are located. You can calculate your shipping price here: Shipping Calculator

Shipping From "iTech Warehouse"

  • To North America:
  • Standard (3-4 days): Free
  • Express (1-3 days):
  • Orders $0-$75: $9.80
  • Orders $75 and up: Free
  • Worldwide:
  • Economy (6-18 days):
  • Orders $0-$9.99: $12
  • Orders $10-$19.99: $19
  • Orders $20 and up: $30
  • Standard (6-12 days):
  • Orders $0-$9.99: $26
  • Orders $10-$19.99: $32
  • Orders $20 and up: $46
  • Express (1-5 days):
  • Orders $0-$9.99: $30
  • Orders $10-$19.99: $48
  • Orders $20 and up: $54

Shipping From "Vista Warehouse"

  • To North America:
  • Standard:
  • Orders $0-$9.99: $6 (6-12 days)
  • Orders $10-$19.99: $9 (6-12 days)
  • Orders above $20: $12 (6-12 days)
  • Priority:
  • Orders $0-$9.99: $18 (4-10 days)
  • Orders $10-$19.99: $26 (4-10 days)
  • Orders above $20: $30 (4-10 days)
  • Express:
  • Orders $0-$9.99: $32 (2-7 days)
  • Orders $10-$19.99: $40 (2-7 days)
  • Orders above $20: $49 (2-7 days)
  • Worldwide:
  • Standard:
  • Orders $0-$9.99: $6 (4-16 days)
  • Orders $10-$19.99: $9 (4-16 days)
  • Orders above $20: $12 (4-16 days)
  • Priority:
  • Orders $0-$9.99: $18 (3-12 days)
  • Orders $10-$19.99: $26 (3-12 days)
  • Orders above $20: $30 (3-12 days)
  • Express:
  • Orders $0-$9.99: $32 (2-9 days)
  • Orders $10-$19.99: $40 (2-9 days)
  • Orders above $20: $49 (2-9 days)

Warehouse Information

To find out which warehouse your product is shipped from, check the label above the product title on our website. It will indicate iTech or Vista. Please don't hesitate to contact us with any questions, our team is always here to assist you.

Our Commitment

At iTech, we are committed to providing you with a seamless shopping experience. Our logistics teams are dedicated to handling your orders with the utmost care and precision. Should you have any questions about your order status or delivery times, our customer service team is always here to assist you.

Thank you for choosing iTechVista! We look forward to serving you.