Longboard Wheels
{% if products.length > 1 %}{{ products.length }} results{% endif %}
- Venom Magnum Mach 1 Cannibal 74a WC Edition Longboard Wheels - 78mm
- Orangatang Dad Bod 80a Longboard Wheels - Orange - 105mm
- Venom Sideshow 80a Longboard Wheels - White - 70mm
- Hawgs Supremes 78a Longboard Wheels - Pink - 70mm
- Hawgs Doozies 78a Stone Ground Longboard Wheels - Mango Orange - 63mm
- Hawgs Doozies 78a Stone Ground Longboard Wheels - Blue - 63mm
- Hawgs Doozies 78a Stone Ground Longboard Wheels - Black - 63mm
- Blood Orange Drift Delinquents 81A Longboard Wheels - Nightfall - 70mm
- Blood Orange Drift Delinquents 81A Longboard Wheels - Nightfall - 66mm
- Blood Orange Drift Delinquents 78A Longboard Wheels - Oxblood - 70mm
- Blood Orange Drift Delinquents 78A Longboard Wheels - Oxblood - 66mm
- Arbor Vice Tyler Howell 75a Longboard Wheels - White - 69mm
- Arbor Summit Daniel MacDonald 78a Longboard Wheels - White - 71mm
- Arbor Summit Daniel MacDonald 78a Longboard Wheels - Black - 71mm
- Venom SideShow 83a Longboard Wheels - 70mm
- Venom SideShow 80a Longboard Wheels - 65mm
- Blood Orange Drift 81a Longboard Wheels - White - 70mm
- Blood Orange Drift 81a Longboard Wheels - White - 66mm
- Blood Orange Drift 78a Longboard Wheels - White - 70mm
- Blood Orange Drift 78a Longboard Wheels - White - 66mm
- Blood Orange Bangers 78a Longboard Wheels - White - 65mm
- Seismic Hot Spots 92a Longboard Wheels - Black Ops - 63mm
- Hawgs Lil' EZ 78a Stone Ground Longboard Wheels - Purple/Pink Swirl - 60mm
- Seismic Urchin 78a Longboard Wheels - Mango - 75mm
- Seismic Tantrum 81a Longboard Wheels - Clear Blue - 68mm
- Seismic Tantrum 80a Longboard Wheels - Mint - 68mm
- Seismic Speed Vent 81.5a Longboard Wheels - Mint - 73mm
- Seismic Speed Vent 79a Longboard Wheels - Purple - 85mm
- Seismic Speed Vent 78.5a Longboard Wheels - Mango - 73mm
- Seismic Speed Vent 77a Longboard Wheels - Clear Purple - 85mm
- Seismic Hot Spot 85a Longboard Wheels - Mint - 63mm
- Seismic Hot Spot 83a Longboard Wheels - Mango - 63mm
- Seismic Hot Spot 81a Longboard Wheels - Plum - 63mm
- Seismic Encore 79a Longboard Wheels - Mint - 64.5mm
- Seismic Encore 77a Longboard Wheels - Mango - 64.5mm
- Seismic Encore 75a Longboard Wheels - Bubblegum - 64.5mm
- Seismic Booster 99a Longboard Wheels - White/Blue - 58mm
- Seismic Booster 102a Longboard Wheels - White/Red - 58mm
- Seismic Blast Wave 80a Longboard Wheels - Mint - 78mm
- Seismic Blast Wave 78.5a Longboard Wheels - Mango - 78mm
- Seismic Trucks Hot Spots 78.5a Longboard Wheels - Mango - 69mm
- Venom Mach 1 Cannibal 74a Longboard Wheels - 76mm
- Hawgs Doozies 78a Stone Ground Longboard Wheels - Grey/White Swirl - 63mm
- Hawgs Doozies 78a Stone Ground Longboard Wheels - Black - 63mm
- Hawgs Lil' Ez 78a Stone Ground Longboard Wheels - Orange/Yellow - 60mm
- Hawgs Fatties 78a Stone Ground Longboard Wheels - Sky Blue Swirl - 63mm
- Hawgs Fatties 78a Stone Ground Longboard Wheels - Pink/White - 63mm
- Hawgs Fatties 78a Stone Ground Longboard Wheels - Clear Red - 63mm
- Hawgs EZ 78a Stone Ground Longboard Wheels - Orange/Yellow - 63mm
- Hawgs EZ 78a Stone Ground Longboard Wheels - White - 63mm
{% for product in loader.activeProducts %}
{% for banner in collectionBanners %}
{% if Filters.native.size > 0 and banner.sub == false %}{% continue %}{% endif %}
{% if banner.position == product.position %}
{% endif %}
{% endfor %}
{% endfor %}
{% assign display_wishlist = true %}
{% for tag in Wishlist.data.exclusions %}
{% if product.tags contains tag %}
{% assign display_wishlist = false %}
{% endif %}
{% endfor %}
{% if product == blank %}
{% assign product = Product %}
{% endif %}
{% if display_wishlist %}
{%- if wishlist == blank -%}
{% assign wishlist = Wishlist.data.items | map: 'handle' %}
{% if wishlist[0] == null %}
{% assign wishlist = data.items | map: 'handle' %}
{% endif %}
{%- endif -%}
{%- assign p_title = product.title | replace: '"', '”' -%}
{%- capture wishlist_add -%}
event.preventDefault();
Wishlist.add({
handle: '{{ product.handle }}',
type: '{{ product.type | escpae }}',
image: '{{ product.featured_image }}',
{%- if variant -%}variant: {{ variant.id | json }},{%- endif -%}
title: `{{ p_title }}`
});
[this, _n.sibling(this, '.wishlist__button')].forEach(function(button) { button.classList.toggle('dn')});
{%- endcapture -%}
{% endif %}
{% assign productImage = product.featured_image %}
{% assign hoverImage = product.hover_image %}
{% capture productImageRepsonsive %}
{%- if productImage != blank -%}
{%- if product.featured_image_width > 180 -%}{{ productImage | img_url: '180x' }} 180w {{ 180 | divided_by: product.featured_image_aspect_ratio | round }}h,{%- endif -%}
{%- assign image_size = product.featured_image_width | append: 'x' -%}
{{ productImage | img_url: image_size }} {{ product.featured_image_width }}w {{ product.featured_image_height }}h
{%- endif -%}
{% endcapture %}
{% capture hoverImageRepsonsive %}
{%- if hoverImage != blank -%}
{%- if product.featured_image_width > 180 -%}{{ hoverImage | img_url: '180x' }} 180w {{ 180 | divided_by: product.featured_image_aspect_ratio | round }}h,{%- endif -%}
{%- assign image_size = product.featured_image_width | append: 'x' -%}
{{ hoverImage | img_url: image_size }} {{ product.featured_image_width }}w {{ product.featured_image_height }}h
{%- endif -%}
{% endcapture %}
{% if hoverImage != blank %}{% unless product.tags contains 'Graphic Overlay' %}
{% endunless %}{% endif %}
{% if product.reviews %}
{% assign to_half = product.reviews.rating | round:1 | divided_by: 0.5 | round | times: 0.50 %}
{% for badge in badges %}
{% if product.tags contains badge.tag and badge.tag != 'more-colors' %}
{{ badge.collection_badge }}
{% endif %}
{% endfor %}
{% if product.siblings.size > 0 %}
{% for sib in product.siblings %}
{% if forloop.index < 4 %}
{% unless sib.image_url == blank %}
{% endunless %}
{% elsif forloop.index == 4 %}
{% for tag in product.tags %}
{% if tag contains 'Vendor' %}
{% assign vendor_tag = tag | remove: 'Vendor:' %}
{% assign vendor_collab = vendor_tag | append: ' x' %}
{% break %}
{% endif %}
{% endfor %}
{% if product.siblings.size > 0 %}
{% assign productTitle = product.title | split: ' - ' | first %}
{% else %}
{% assign productTitle = product.title | remove: product.type | split: '-' %}
{% endif %}
{% assign productTitle = product.title | split: ' - ' | first %}
{% unless product.title contains vendor_collab %}
{% assign productTitle = productTitle | remove: vendor_tag %}
{% endunless %}
{% if vendor_tag != blank %}
+ {{ product.siblings | size | minus: 3 }}
{% break %}
{% endif %}
{% endfor %}
{% endif %}
{{ vendor_tag }}
{% endif %}{{ productTitle }}
{% for badge in badges %} {% if product.tags contains badge.tag and badge.tag == 'more-colors' %} {{ badge.collection_badge }} {% endif %} {% endfor %} {% if product.siblings.size > 0 %}{{ product.siblings.size | plus: 1}} Color{% if product.siblings.size >= 1 %}s{% endif %}
{% endif %}
{% assign discount_amount = product.price | divided_by: product.compare_price | times: -100 | plus: 100 | round %}
{%- assign range = false -%}
{%- assign min = product.price_min -%}
{%- assign compare_min = product.compare_min -%}
{%- assign max = product.price_max -%}
{%- assign compare_max = product.compare_max -%}
{%- assign before_text = '' -%}
{%- assign min_class = '' -%}
{%- assign max_class = '' -%}
{%- if product.siblings.size > 0 -%}
{%- for sibling in product.siblings -%}
{%- assign sibling_price = sibling.price | times: 100 -%}
{%- assign sibling_compare = sibling.compare_at_price | times: 100 | round -%}
{%- if sibling_price < min -%}
{%- assign min = sibling_price -%}
{%- assign compare_min = sibling_compare -%}
{%- endif -%}
{%- if sibling_price > max -%}
{%- assign max = sibling_price -%}
{%- assign compare_max = sibling_compare -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{% assign discount_amount = max | divided_by: compare_max | times: -100 | plus: 100 | round %}
{%- if max < compare_max and discount_amount > 10 -%}
{%- assign max_class = 'dark-red' -%}
{%- endif -%}
{% assign discount_amount = min | divided_by: compare_min | times: -100 | plus: 100 | round %}
{%- if min < compare_min and discount_amount > 10 -%}
{%- assign min_class = 'dark-red' -%}
{%- endif -%}
{%- if compare_min < compare_max -%}
{%- assign before_text = 'From ' -%}
{%- endif -%}
{% assign min = min | round %}
{% assign max = max | round %}
{%- if min < max -%}
{%- assign range = true -%}
{%- endif -%}
{%- if range == true -%}
{{ before_text }} {{ min | money }} - {{ max | money }}
{%- else -%}
{% assign discount_amount = product.price | divided_by: product.compare_price | times: -100 | plus: 100 | round %}
{%- if product.compare_price > product.price and discount_amount > 10 -%}
{{ before_text }}
{{ product.price | money }}
{{ product.compare_price | money }}
{%- else -%}
{{ product.price | money }}
{%- endif -%}
{%- endif -%}
{% for i in (1..5) %}
{% endfor %}
({{ product.reviews.count }})
{% endif %}
{% unless total_pages == 1 or total_pages == 0 %}
{% endunless %}
{% assign active = 'dim' %}
{% if current_page == 1 %}
{% assign active = 'o-50 pointer-none' %}
{% endif %}
{% for i in pages %}
{% assign pageoffset = current_page | minus: i | abs %}
{% if pageoffset != 0 and pageoffset != 1 and pageoffset != 2 pageoffset != 3 %}{% continue %}{% endif %}
{% assign active = '' %}
{% if current_page == i %}
{% assign active = 'brand' %}
{% endif %}
{% assign last_page_shown = i %}
{% endfor %}
{% assign active = 'dim' %}
{% if current_page == total_pages %}
{% assign active = 'o-50 pointer-none' %}
{% endif %}
{% if last_page_shown != total_pages %}
...
{% endif %}
Loading Products
Urethane Wheels for Longboarding
We love the smell of urethane in the morning — it smells like a great ride. CCS has a huge selection of urethane longboard wheels to get superior riding performance out of your board. Wheels are one of the most important parts of a longboard setup, as they can drastically affect how the board rides and handles. Whether you prefer to fly down a hill at warp speed or cruise through city streets, we have a set of urethane wheels that are right for the task. Our wheels come from top longboarding brands such as Sector 9, Blood Orange, Orangatang, and Hawgs that will have riders drooling with anticipation (just don’t drool on the wheels, please).
Important Factors for Longboard Wheel Selection
Different longboard designs, riding styles and terrains require different types of longboard wheels, and you can find exactly what you need at CCS. The main factors are wheel size, shape, hub set and durometer. Most riders choose wheel sizes in the 65mm to 75mm range as they provide the best all-around combination of speed, acceleration and grip. But if you’re a specialist, we have versatile wheels as small as if you want something you can roll around town and the park with as well as large 80mm longboarding wheels for straight downhill riders.
Selecting the shape of your wheel depends on whether you want grip or slide-ability. Hug the turns with a square edge longboard wheel, or initiate slides easily with rounded wheels or choose tapered wheels for a satisfying middle ground. Add additional turning power using offset and side set wheel cores, or go with center set wheels for better weight distribution and longevity. When it comes to wheel durometer, we have 75a and softer wheels for rough hills up to 101a wheels for street riding.
Quality Longboard Wheels with Cool Designs
With so many wheels for longboarding in stock that use the latest technology, beginners and pros are sure to find something that will perform and last just like them. Have we mentioned that these are incredibility stylish wheels as well? We stock all sorts of wheel colors and sweet graphics to complement your board. Order by 3 p.m. EST and get fast same-day shipping anywhere in the U.S.!