wholesale tire sales

call to create an account

Search By Vehicle

Season And Size

Season

Tread Width

Aspect Ratio

Rim

Tire Size

ROADCRUZA 235/55/R19

Roadcruza RA-710 UHP All Season/Summer

$162.50 +GST

ROADCRUZA 235/40/ZR19

Original price was: $162.50.Current price is: $149.75. +GST
Sale!

ROADCRUZA 235/40/ZR19

Roadcruza RA-710 UHP All Season/Summer

Original price was: $162.50.Current price is: $149.75. +GST

ROADCRUZA 225/55/R19

Original price was: $162.25.Current price is: $137.50. +GST
Sale!

ROADCRUZA 225/55/R19

Roadcruza RA-710 UHP All Season/Summer

Original price was: $162.25.Current price is: $137.50. +GST

ROADCRUZA 215/50/R17

Roadcruza RA-710 UHP All Season/Summer

$112.50 +GST

ROADCRUZA 10PLY LT285/70/R17

Roadcruza 10Ply RA-1100 A/T All Terrain / All Season

$274.75 +GST

RAPID LT285/55R20

Rapid XTERRAIN Mud Terrain

$180.00 +GST
// ~~~ Clear Button ~~~ if (target.closest(".wlpf-group-clear-action-button")) { if (tireSizeDropdown) { tireSizeDropdown.selectedIndex = 0; console.log("🔄 Tire Size dropdown reset"); } // Also reset Make, Model, Year dropdowns const make = document.getElementById("make_selector"); const model = document.getElementById("model_selector"); const year = document.getElementById("year_selector"); if (make) { make.selectedIndex = 0; console.log("🔄 Make dropdown reset"); } if (model) { model.selectedIndex = 0; console.log("🔄 Model dropdown reset"); } if (year) { year.selectedIndex = 0; console.log("🔄 Year dropdown reset"); } // Also uncheck the tire size checkbox (if it was selected) const selectedSize = tireSizeDropdown.value.trim().replace(/^([A-Z]+)/, ''); const termLabels = document.querySelectorAll(".wlpf-term-name"); termLabels.forEach(function (label) { const labelText = label.textContent.trim().replace(/^([A-Z]+)/, ''); const checkbox = label.closest(".wlpf-term-item")?.querySelector("input[type='checkbox']"); if (checkbox && labelText === selectedSize && checkbox.checked) { checkbox.checked = false; checkbox.dispatchEvent(new Event("change", { bubbles: true })); console.log("❎ Tire size checkbox unchecked:", labelText); } }); }