Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
1/9
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]
1/9

Miller Ranch Fedora -4 COLORS- Casablanca - Long Hair Fur Felt Fedora [Fast shipping and box packing]

$53.68
$0.00
Save $-53.68
721 sold
Factory Outlet-Limited Time Sale
Buy 3 Get 1 Free Gifts
Size
Please select a size
ColorGray
Please select a color
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.

Casablanca - Long Hair Fur Felt Fedora

Colors: Grey, Camel, Slate.

Material: 100% European fur-felt long hair finish.

Crown: 4½" telescope.

Brim width: 2 1/2" under, welt.

Ribbon: 1 1/2" + feather.

Sweatband: Premium roan leather.

Lining: Satin.


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 distortionAbout transport:

EXCEPTIONAL CRAFTSMANSHING
Making hats never gets old, only the folks making them. With this comes generations of experience at our craft. We combine old world methods with a modern mindset because quality people deserve quality hats.
Image 16

CAREFLLY 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

CLICK ADD TO CART TO ORDER YOURS NOW! 

The Checkout Process is Guaranteed to be 100% Safe and Secure with Visa, Mastercard, AMex, Discover, Apple Pay or PayPal.

100% Satisfaction Guaranteed With Every Order.

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