Sunset Vacation Print Men's Oversized Hawaiian Shirt

$40.00
$40.00
-$0.00
Color-orange
Please select a color
Size-L
Please select a size
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);
Shipping
Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.

    • The Retro 90s Rock Floral Element Short-Sleeved Shirt Is A Shirt That Combines Rock Style And Floral Patterns, Inspired By The Fashion Trends Of The 1990s. Here Are Its Features And Design Elements:
      Graphic Design:

      This Short-Sleeved Shirt Usually Features A Retro Floral Pattern As Its Theme. The Floral Pattern Can Be Bright Roses, Sunflowers, Roses Or Other Flowers With A Strong Vintage Style. Sometimes These Floral Patterns Are
      Combined With Rock Elements, Such As Skulls, Music Symbols Or Band Logos, To Highlight The Style And Attitude Of Rock.

      Selection Of Color:

      The Color Of This Shirt Is Often Bright Or Strong Colors Such As Red, Yellow, Purple Or Dark Blue. These Bright Colors Were Very Common In 90s Rock Culture, Bringing Energy And Tension.
      Cut And Style:

      Short-Sleeved Shirts Are Usually Cut Loose To Reflect The Casual Style Of The '90s. Its Neckline May Be A Classic Crew Neck Or A V-Neck, Depending On Personal Taste. The Length Of The Shirt Is Usually A Regular

      Short-Sleeved Style, Suitable For Wearing In Summer Or Warm Weather.
      Fabric Selection:

      This Shirt Is Usually Made From A Soft, Breathable Fabric Such As Cotton Or A Cotton-Polyester Blend. This Fabric Provides A Comfortable Fit While Also Being Great For Keeping You Cool In The Summer.
      With Suggestions:

      You Can Pair This Shirt With Jeans, Slacks, Or Shorts For A Retro-Rocker Look. For Shoes, You Can Choose Canvas Shoes, Doc Martens Or Leather Sandals To Add A Stylish Touch To Your Overall Look. Additionally, You
      Can Accessorize With Some 90s Elements, Such As Wide-Brimmed Sunglasses, A Hat, Or A Bracelet To Add To The Retro Feel Of The Overall Look.
      The Retro 90s Rock Floral Element Short-Sleeved Shirt Can Take You Back To The Fashion Of The 90s, Showing The Rock Attitude And The Softness Of Flowers. It Is A Unique Clothing Choice Suitable For People Who Like
      Rock Culture And Pursue Individual Style. With This Shirt, You Can Exp

    Our delivery time for stocking is 2-4 business days.

    Please be noted that the usual shipping days of Biggmans are Monday / Wednesday / Friday with the exception of holidays (GMT+8).

    Orders over $89 for free shipping. We offer worldwide shipping to all the countries.

    Standard Shipping: Delivery in 7-14 business days ($6.99 USD)

    Customs and import duties and fees may be applied to international orders when the shipment reaches its destination country, such extra fees will be charged to the recipient by DHL / FedEx / EMS / SF-Express or your local customs office directly. Biggmans has no control over such extra charges. Please note that such fees and charges are the responsibility of the recipient and vary from country to country.  Track Order

    If you are not satisfied with your purchase, you may request a return within 30 days after receiving your package. For more information, please check our return policy.

    Customers need to pay the return shipping charge.

    We will offer full refund on all items that are returned back to us. (Excluding discounts and biggmans points which are non-refundable.)

    Please contact our customer service click service@biggmans.com and be sure to check with us before returning anything. Easy Return

    From our customers

    I received my parcel and I love them.

    Domonic J.

    I really like these 2 piece sets.. fit good and are comfy

    Mark MCee P

    So happy guys, thank you very much. These are exactly what I've wanted, nice fitting and awesome design, not just black, white or navy lol. Will 100% be buying more. Cheers

    Darren Bowes

    Really enjoyed my hoodie, definitely ordering more!

    Eshaan Bosh

    I am so happy with my purchases so far.

    Rufus Sanders

    Thank' I dreceived my order this morning. I am happy my order arrived this morning in France, the sets are magnificent. I will show when the children are going to give it for their father's day

    Lily

    I received my parcel and I love them.

    Domonic J.

    I really like these 2 piece sets.. fit good and are comfy

    Mark MCee P

    So happy guys, thank you very much. These are exactly what I've wanted, nice fitting and awesome design, not just black, white or navy lol. Will 100% be buying more. Cheers

    Darren Bowes

    Really enjoyed my hoodie, definitely ordering more!

    Eshaan Bosh

    I am so happy with my purchases so far.

    Rufus Sanders

    Thank' I dreceived my order this morning. I am happy my order arrived this morning in France, the sets are magnificent. I will show when the children are going to give it for their father's day

    Lily
    • FREE SHIPPING OVER $89

    • SUPPORT 24/7

    • 100% PAYMENT SECURE

    • EASY RETURN