Classic Vented | Original Panama Hat | Brisa Weave | Natural Straw | Black Band | Handwoven in Ecuador | GPH | 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 = "819b8e3c-fbdc-4d84-bca7-19f27956a82d"; // 促销活动数据 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 == '6a22c271-83ec-4353-98e3-7735d8e8b658' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "6a22c271-83ec-4353-98e3-7735d8e8b658", 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~

THE VERSATILITY OF A PANAMA HAT:
This fine accessory can be a great companion when traveling, vacationing, beach walking, dining under the sun or the moon; or any other special activity you enjoy with an elegant handmade hat on. Its versatility makes it a great choice for men and women alike. Regardless of the occasion, our Panama Hats will certainly take your outfit to the next level.

This Panama Hat provides the ultimate comfort with an outstanding upscale look. It has a finely finished Brisa weave complemented on its side by small openings and a black nylon band.

HAT MATERIAL: 100% Toquilla Straw - Carludovica Palmata
HATBAND MATERIAL: Nylon
INNERBAND MATERIAL: 100% Cotton - 3 cm.
PROCESS: 100% Hand-made in Ecuador
WEAVE COUNT & STYLE: 90 points per square inch - Brisa Weave
BRIM LENGTH: 6.5 cm. (2.55 inches)
CROWN HEIGHT: 11 – 11.5 cm. (4.3 – 4.5 inches)

ADJUSTABLE, LIGHTWEIGHT, & FLEXIBLE:
With approximately 80 grams of weight, this straw Panama Hat provides the ultimate comfort with a generous amount of shade for your face. Its inner cotton sweatband plays an important role in keeping light sweat off the straw and was designed to adjust the hat size for a perfect fit.

OUR PROMISE:
Our Panama Hats are hand-made from start to finish using only the best quality fibers from the toquilla palm (Carludovica Palmata). We stand behind the quality of our product. If you are not satisfied with your purchase or the hat does not fit correctly, we will be happy to accept the return of your unused purchase for an exchange or a full refund.

HOW TO BUY THE RIGHT SIZE:
1) Using a measuring tape or a piece of string, record the circumference of your head starting in the middle of your forehead and going around your head approximately 1 cm above your ears.

2) Use this measurement and compare it to the sizes available.

Once you have your head diameter, compare it to the sizes available and you are good to go.

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