Ecuador Imported Senior Panama Straw Hat

people are viewing this right now
$289.69
$350.00
-17%
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "9cbe9bd3-0394-4aae-b698-0704adc97fcb"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); const setting = this.flashsaleData.product_setting; const landingUrl = `/promotions/discount-default/${this.flashsaleData.discount_info.id}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(finalUrl, '_blank', 'noopener'); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '6e3050ce-b19f-464d-bbf7-7cae7fe309b7' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "6e3050ce-b19f-464d-bbf7-7cae7fe309b7", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);
Color:  Natural
Choose Your Hat Size - Cm:  55
Quantity
/** @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);
BUY 2 GET 1 FREE SHIPPING
7-15 Days Delivery with Tracking
Easy 30-Days Returns
Secure Checkout & 30-Day Money Back
Shipping

Description

👉 Place your order now to unlock more free gifts! 🎉

💥 The more you buy, the more you get, surprise after surprise - guaranteed!!! 💥

🎁 Choose from an exciting range of items like caps, fedoras, cowboy hats, hat bands, rings, necklaces, jewelry, hat care tool sets, beauty supplies, and more. Gifts are chosen randomly for a fun surprise!

🚀 90% of our customers choose to buy 3 or more pieces at once for a great deal with superb discounts and free worldwide shipping!

📦 Get FREE shipping on all orders over $59.BUY 2 GET FREE SHIPPING

👉 Buy 3 or more and receive an exclusive mystery gift package—a surprise you won't want to miss!

🔥 The more you buy, the more you earn, save money and worry, and there are unlimited surprises waiting for you to unlock~

ABOUT

The HatsFashion Classic Fedora in fine llano weave is a top of the range Panama hat. This handmade hat has been our most popular selling men’s hat for over 25 years. This perennial favourite is the true “Panama hat” and will bring both elegance and comfort to your summer wardrobe. The fineness of the fibres make it more flexible than our select weaves therefore it can be rolled for travel when used with our hat tubes.

Not only will you look fantastic in your HatsFashion Panama, you will also feel great in knowing that through you helping to preserve the tradition of hat weaving for the next generation.

Unlike the journey taken by most Panama Hats in the world, which pass through hands of middlemen before being shipped out of Ecuador. HatsFashion works directly with our artisans. One of the many benefits of our shorter supply chain is that we can bring you a luxury, long lasting product at an affordable price from the hand of the weaver to you.

DETAILS

• Rollable Panama hat trimmed with Petersham ribbon

• The brim of this hat is approximately 7 cm. Please note, brim widths may vary slightly as they are all handmade and hand finished

• Made from sustainably grown toquilla straw

• Our handwoven Panama hats are made in Ecuador following Fair Trade and sustainable business practices.

Materials: Toquilla Straw, Carludovica Palmata, Paja Toquilla, Straw

Country/Region of Manufacture: Ecuador

Crown Height: Approx. 11 – 11.75 cm. (4.3″ – 4.6″)

Material: 100% Toquilla Straw - Carludovica Palmata

Brim Size: Approx. 6 – 7.5 cm. (2.35″- 3″)

Features: 100% Handmade

Weaves Count: 90 points per sq. inch



ABOUT US
We are here to provide you with top-quality Panama Hats guaranteed at great prices.  With thousands of satisfied customers wearing our hats. We are confident that we can deliver you the best quality of the classic styles of genuine handwoven straw hats made by our amazingly talented artisans from our hometown in Ecuador.

WHY IS IT CALLED PANAMA HAT IF IT IS MADE IN ECUADOR?

The construction of the Panama Canal caused a great demand for toquilla straw hats from Ecuador, because of their qualities to protect from the sun. From Panama the hat was internationally known and people began to call it “Panama Hat” even though the place of origin is Ecuador.

THE MATERIAL OF WHICH THE PANAMA HAT IS MADE

The “Carludovica Palmata” is an original plant from Ecuador belonging to the family of cyclantáceas and has some unique qualities. It has fan-shaped leaves growing at the end of their long stems, which are evenly cut into fine shoots and dried to create straw. The most important plantations are in Manabi (Guayas) and in the Amazon region. Its name was chosen to honor Carlos IV and his wife Maria Luisa, who promoted the botanical cataloging of South America.

THE WAEVING OF THE PANAMA HAT

The weaving of the Panama Hat is entirely manual. It starts with the characteristic initial button on the top of the hat, called “plantilla”, using only a few pieces of straw and subsequently adding more until reaching a size of 2 to 4 inches in diameter (5 to 10cm). The next step is to weave the top part of the hat, called “copa”, using a rounded wooden block to guide the weave process until it reaches the lowest part of the hat, called “falda” – or skirt in English. The next process is called “remate” – finishing-off. It uses a special interweave, that leaves long strands of straw poke out at the edges of the hat.

The weaving is made by artisans on the countryside, the usual place of work being their homes. This activity is introduced in the everyday life of the artisans, and is incorporated into the life of its creators. It is not only a means to earn an income, in most cases it is a long family heritage, popular tradition, part of them and their lives.

THE PANAMA HAT PROCESS

The Panama Hat starts with the weave but undergoes several stages afterwards. The process starts with lashing the edges to prevent it from undoing and excess fibers are trimmed, followed by the washing and dyeing of the hat. Afterwards, the process continues with the “compostura”: giving the hat its original shape back after washing. Finally the molding and decorating phase in which creativity and design are complemented by the manual dexterity to design exclusive hats that have become the pride of Ecuador.

Insured Worldwide Shipping: Each order includes real-time tracking details and insurance coverage in the unlikely event that a package gets lost or stolen in transit.

Money-Back Guarantee: If your items arrive damaged or become defective within 30 days of usage, we will gladly issue out a replacement or refund.

24/7 Customer Support: We have a team of live reps ready to help and answer any questions you have within a 24-hour time frame, 7 days a week.

Safe & Secure Checkouts: We use state-of-the-art SSL Secure encryption to keep your personal and financial information 100% protected.

SHIPPING

We ship to 127 countries, including the US, CA, AU and all countries in Europe.


AFTER-SALE SERVICE

Dear Customer, purchase any product here and try it in the comfort of your own home for 14 days.
If for whatever reason you’re not completely satisfied, then return the product within 14 days!

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.

Insured Worldwide Shipping: Each order includes real-time tracking details and insurance coverage in the unlikely event that a package gets lost or stolen in transit.

Money-Back Guarantee: If your items arrive damaged or become defective within 30 days of normal usage, we will gladly issue out a replacement or refund.

✉️ 24/7 Customer Support: We have a team of live reps ready to help and answer any questions you have within a 24-hour time frame, 7 days a week.

Safe & Secure Checkouts: We use state-of-the-art SSL Secure encryption to keep your personal and financial information 100% protected.

 

 

 

 

 

  • DELIVERY WORLDWIDE

    7-15 Days Delivery & Over $59 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