Original Panama Hat - Wide Brim Fedora - Natural Straw - Brown Leather Band - Handmade in Ecuador by Ecua-Andino - EA - HatBox Included-FREE SHIPPING

people are viewing this right now
$69.99
$104.29
-33%
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 = "d1530b29-b600-4dd0-8894-6606ee8fa31b"; // 促销活动数据 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 == 'f5d517ec-1db0-4288-96ca-4b58cfb59c7d' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "f5d517ec-1db0-4288-96ca-4b58cfb59c7d", 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);
Size:  Small | 54cm-55cm
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~

Country/Region of Manufacture: Ecuador
Brand: Ecua-Andino
Crown Height: Approx. 11 – 11.75 cm. (4.3″ – 4.6″)
Material: 100% Toquilla Straw - Carludovica Palmata
Brim Size: Approx. 8.5cm – 10cm (3.30" - 3.90")
Features: 100% Handmade
Weaves Count: 90 points per sq. inch
Outer Band: Brown - Leather

LIGHTWEIGHT & FLEXIBLE: With approximately 80 grams of weight and carefully selected toquilla palm fronds, this straw hat provides the ultimate comfort with a generous amount of shade for your face.

OUR QUALITY: Our Panama Hats have been in the market for over 30 years, with thousands of satisfied customers wearing them. We are confident that we can deliver you the best quality of these panama hats for men and women made by our amazingly talented artisans from our hometown in Ecuador. Since all of our products are hand-made using natural fibers and materials, slight differences in shape and color will exist. These are not defects, but underline the originality of your hat.

FAIR TRADE
Our products guarantee fair prices for its weavers including transparent and effective channels of commerce.

HOW TO BUY THE RIGHT FIT
1) Use a measuring tape to get the circumference of your head starting in the middle of your forehead and going around approximately 1 cm above your ears.

2) Use your result and compare it to our available sizes.

NOTE
If you are not sure which size is appropriate or if you have any questions, please write to us and we will be happy to help you.

THE ORIGIN OF THE PANAMA HAT

The “Panama Hat” has deep ancestral roots. The aborigines of the coast of what is now Ecuador used “tocas” made of toquilla straw to protect themselves from the sun. The lightness and flexibility of this fiber favored its use to make hats that over time have become a symbol for Ecuador, being a fusion of nature, manual dexterity of Ecuadorians, and their culture.

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.

  • 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