💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
10/27
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit
10/27

💕Cyber Monday Sale 49% OFF🔥Knit Low-Rise Pant suit

$52.99
$129.99
Save 59%
1 sold
Color
Please select a color
Size
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 Worldwide.  

💯Secure payments Via PayPal® and Credit Card.

⭐Fast refund Guarantee.

Limited Stock At This Price.🔥 


A new silhouette for a new day. The set is sweet from every angle, with a low rise fit, a ribbed rollover waist, and a buckle accent. It also features our coziest knit fabric, and flared legs. The pant is designed to flatter in every size and to be worn for seasons to come!

This sets is crafted in ultrasoft knit fabric that is extremely stretchy, not only holds its shape but also giving you a super comfortable feeling.

This lounge-worthy layer is a must for slipping on in the chilly seasons. The hoodie is crafted in ultrasoft knit fabric, and is ribbed on the cuffs and waist. It also features a zip up front and our new Black shade.  For peak coziness, pair the hoodie with the matching pant.

Fabric

  • 50% Viscose + 27% Polyamide + 23% Polyester

  • Cloud Knit Fabric

Model Size & Fit

  • NOTE: Our knit fabric will slightly stretch overtime with wear. If in between sizes, we recommended sizing down

  • Inseam: 33 1/2"

  • Dakota is wearing a size Small

  • Height 5’6” (168cm)

  • Bust 33” (84cm), Waist 26.5" (66cm), Hips 36.5" (92cm)

Size Guide

US | IN

Size(CM) Length  Pants Bust Waist Hip Sleeve
S 41 116 68-90 62-92 66-106 59
M 42 117 72-94 66-96 70-110 60
L 43 118 76-98 70-100 74-114 61
Size(IN) Length  Pants Bust Waist Hip Sleeve
S 16.14 45.66 26.77-35.43 24.41-36.22 25.98-41.73 23.22
M 16.53 46.06 28.34-37 25.98-37.79 27.55-43.3 23.62
L 16.92 46.45 29.92-38.58 27.55-39.37 29.13-44.88 24.01

How to Measure

  • Natural Waist – Place measurement tape relaxed at the narrowest area between rib cage and hip.

  • Bust – Place measurement tape relaxed at center of apex

  • Hip – Place measurement tape relaxed at your hips (where the top of your hip bones are located)

  • Length – Measure vertically starting at the highest point on your shoudler to the desired length of garment (mini or maxi)

NOTE

Due to manual measurements, please allow slight measurement deviations.

Due to the different display and lighting effects, the actual color of the item may be slightly different from the color displayed on the picture.