Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie
Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie

Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie

Price
$0.00
$34.49
Color
Please select a color
Size (US)
Please select a size (us)
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);

Pink Floral Patch Half Zip Kangaroo Pocket Hoodie - Women's Casual Country Style Hoodie

Imagine stepping into a formal setting, exuding charm and warmth, while wearing the Pink Floral Patch Half Zip Kangaroo Pocket Hoodie. Here are three compelling scenarios where this hoodie can be the perfect choice:

1. Evening Garden Party

Picture yourself at a sophisticated garden party as the sun sets, illuminating the sky with hues of pink and gold. You arrive wearing the Pink Floral Patch Half Zip Kangaroo Pocket Hoodie, which features its chic floral patchwork design. The light and breathable fabric makes it comfortable as you mingle with guests, while the half-zip allows you to adjust your look for the evening breeze. Paired with tailored skinny pants and chic ankle boots, you effortlessly blend casual comfort with elegance.

2. Charity Gala Event

At a charity gala set in a beautifully decorated hall, the atmosphere is filled with soft music and the clinking of glasses. You choose to wear the Pink Floral Patch Half Zip Kangaroo Pocket Hoodie, giving it a polished twist by pairing it with a flowing midi skirt. The hoodie’s long sleeves provide extra coverage, making it a stylish yet cozy option for the slightly cool indoor air. As you engage in conversations about the cause, the hoodie’s floral details add just the right amount of charm to your attire, making you feel confident and comfortable.

3. Formal Family Gathering

During a formal family gathering at a restaurant, the ambiance is warm and inviting. Opting for the Pink Floral Patch Half Zip Kangaroo Pocket Hoodie, you combine it with dark denim jeans and elegant flats. The kangaroo pocket adds a practical touch for keeping your essentials close while you socialize. The hoodie’s chic floral patches contribute to a relaxed yet put-together look, allowing you to enjoy family conversations and laughter throughout the evening while feeling stylish and at ease.

These scenarios highlight the versatility of the Pink Floral Patch Half Zip Kangaroo Pocket Hoodie, proving that comfort and style can harmoniously coexist in any formal setting.

Pink Floral Patch Half Zip Kangaroo Pocket Hoodie

Specifications:

  • Material: 60% Polyester, 35% Cotton, 5% Elastane
  • Weight: 0.56 Kg
  • Tag: DL Out West, DL Exclusive, Print Floral
  • Occasion: Daily
  • Style: Southern Belle
  • Season: Fall & Autumn
  • Creation Time: 2023-08-04

Key Features:

  • Chic floral patchwork design on collar, cuffs, and back
  • Convenient half-zip for easy wear
  • Kangaroo pocket for added functionality
  • Long sleeves for extra coverage

Details:

  • This cute hoodie is a versatile addition to your wardrobe
  • Perfect for daily wear and various occasions
  • Pair with skinny pants or jeans for a stylish look

Style Tip:

Style this hoodie with your favorite bottoms for a complete outfit that exudes charm and comfort.

About Shipping

Receiving Time

Receiving time = Processing time +Shipping time.

  • Processing time: Normally 1-3 Business Days

The time we are talking about is a business day and may be delayed if we encounter holidays.

  • Shipping Time & Shipping Fees

 United States, Australia, Canada, New Zealand:

United States Standard Shipping (8-15 business days) - US$6.99(Orders Below USD$59)

Standard Shipping (8-15 business days) - Free(Orders Over USD$59)

Standard Shipping (8-15 business days) - US$9.9(Orders Below USD$59)

Rest of world (238 countries and regions):

Standard Shipping( 8-18 business days)- US$20

 

Delivery

You tracking number and the express company website link will be sent in e-mail immediately after we ship the order out.

Please contact us within 5 months since shipment if no receipt or delivery, our representative will resolve this problem within 24 hours. Note that overdue requests may not be accepted.

 

Important Notice:

1. Due to the virus problem, we disinfection all item and packages for your safety concern, and we suggest you disinfection the package when get it. And packages might be delayed. Please understand.

2. Processing time: In order to guarantee the quality of our products, Bunnycute.com has to prepare your goods carefully before they are shipped out. Our professionally trained technicians perform strict in-house quality control checks on all products and carefully package your items to ensure they arrive in excellent condition.

3. Under the virus situation, we use DHL or FedEx for the first part of shipping and transfer to local post service(USPS, AU Post~) to get it delivered for fastest shipping. You might be not able to track it at website for few days early, but we promise it should be delivered in time and it is legit number.

4. In Covid-19 outbreak, international logistics may encounter a 5-8 days delay.

 

Custom Tax or Duty

Normally customers will not be charged of any additional fees via regular mail. However, due to increasingly strict customs inspection, sometimes customers may have to pay tariff. 


Tips for shipping:

1) For delivering successfully, we suggest you leave correct email address, shipping address and mobile number during checkout process.

2) Unsuccessful delivery caused by blank mobile column cannot be compensated. 

3) PO Box  is not accepted if you choose express shipping. Your address should be detailed enough, even include apartment or unit number. Nondelivery or extra shipping fee due to personal reasons will not be taken by Bunnycute.com.

4) We apologize that military addresses (APO, FPO, DPO) cannot be delivered.

30 Days Return Guarantee

Thank you for shopping at Bunnycute.com.
We gladly accept the return/exchange within 30 days of receipt if you are not quite pleased with the items you received. However, please make sure items in new condition. And inimate products like swimwear is not returnable.
Simply drop us an email or note before return/exchange, we will try our best to meet your request.
Please note overdue requests may not be accepted.

 

What’s Bunnycute’s Return/Exchange Policy?

  1. Returns must be received in new condition, unused, unworn, unwashed. Otherwise, returns will be subject to refusal. Swimwear, underwear and other private products are not retunrnable.
  2. Bunnycute is not liable for problems under the following: Wrong size or color picked; Customer‘s subjective factors and just dislikes the item. Return shipping fees and the shipping fees from Bunnycute to customer are at customer's own expense.
  3. We do not accept returned package without notifying us upfront.
  4. We do not accept packages returned using COD service.
  5. Don't return the package to the shipping address on shipping label,  we cannot receive the package. If so, we cann't make any refund. 

 

How should I make a return?

1.Email return request2.Request approved3.Receive return address4.Customer send shipping info after return5.Returned package received6.Release refund

  1. Submitting return request by dropping an email.
  2. Our customer service will communicate with you in the email, please pay attention to the reply. (Usually will reply within one working day)
  3. Please return through your local post office to avoid tax when it arrives in our country.
  4. Please send us tracking info after you return, which is quite important. Without return info, there will be no refund.
  5. Refund will be released within 5 working days after we received the package.

 

 How should I make an exchange?

  1. Return package first, as steps above.
  2. Resend will be arranged once we get return info.

 

     

    Contact us

    Email us at: service@Bunnycute.com