Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
20/22
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
Dean the Butcher [Fast shipping and box packing]
20/22

Dean the Butcher [Fast shipping and box packing]

$43.99
$0.00
Save $-43.99
687 sold
Factory Outlet-Limited Time Sale
Buy 3 Get 1 Free Gifts
ColorBrown
Please select a color
Size
Please select a size
Quantity
Weight: 0kg
Barcode:
Buy 2 Hats Get Free Shipping
7-15 Days Delivery
30 Days Refund Guarantee
Hat By Handmade
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

👉Place Your Order Now And We'll Give You One Or More Additional Free Gifts, Buy More Get More.

🎁Including: Cap, Fedora,Cowboy Hat,Hat Band, Ring, Necklace, Jewelry, Hat Care Tool Set, Beauty Supplies, Etc. (sent Randomly)

👉 90% of Customers Choose To buy 3 Or More for Greater Savings & Free Worldwide Shipping.

👉 Free shipping on orders over $49, plus free shipping on purchases of 2 or more.

👉 Buy 3 or More to Get a Mysterious Surprise Package, Waiting for the Surprise to Come.

TIPS: Our goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!

  • Fast refund>>100% Money Back Guarantee
  • Secure Payments Via PayPal®
  • Buy 2 or more items Free Shipping
Description
Dean The Butcher, an American made wide brim fedora built on trusty ol' [BLOCK No.26]. It features a 4" center dent crown, grosgrain hatband with a pinched bow, and a german wicking sweatband. This all season hat features a 4” center dent crown, 2 1/2” snap brim, a grosgrain hatband with a pinched bow, and a German wicking sweatband. Materials + Specifications
  • Brim : 2 1/2" Snap
  • Hat Band: Grosgrain Pinch Bow
  • Sweatband: German wicking
  • Fabric: 35%polyester 65%cotton

HAT SIZING CHART

GENERAL SIZE

US HAT SIZE

HEAD MEASUREMENT
(IN INCHES)

M

7.12

22.4

L

7.37

23.2

XL

7.62

24.0

Image 16

carefully CURATED DETAILS
There is deep intention behind every design. We cut fabric and textiles, but never corners. Always an art; never just a hat.

Image 17

sourcing THE BEST MATERIALS
The best hats come from the best materials and only the finest will do. From 100% merino wool, hand woven toquilla straw, premium furs, and more. Start at the top.

Image 18

About transport:

  • Many businesses choose to use plastic bags in order to save costs. This will make the hat produce creases. Our packages are packed in cardboard boxes to protect them from distortion

MONEY BACK GUARANTEE
We want you to be 100% satisfied with the products you buy from us. If for ANY reason you are not satisfied with your purchase, we offer iron-clad money back guarantee.

"

DELIVERY WORLDWIDE

7-14 Working Days Fast Shipping & Over $49 Get Free Shipping

100% PAYMENT SECURE

We ensure secure payment with PEV

CREDIT PAYMENT

Multiple credit card payment methods

30 DAYS RETURN

Simply return it within 30 days for an exchange

  • Cowboy Hat

  • Fedora Hat