⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
1/13
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)
1/13

⏰LAST DAY - HALF PRICE💥High Rise Vintage Wash Tummy Control Top Straight Leg Jeans(Buy 2 Free Shipping)

sell 49.0K Sold like_number It's been recommended by 4.1K people on Facebook, Twitter and Instagram

$39.99
$79.98
Save $39.99
Color
Please select a color
Length (please refer to the size chart to choose)
Please select a length (please refer to the size chart to choose)
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);

Buy today for only $39.99, regain original price of $69.98 tomorrow!

⭐TIP: We are the only original shop and offer direct shipping without intermediaries to guarantee you the best prices!!!

(Be wary of low price traps, buying from other pirate stores will not give you safe shopping protection)

⏰If you miss today, you'll have to wait another year. The sale is limited, so order the quantity you need before we bring it back to its original price.🔥

NOTE
  • Measurements are taken with the garment laying flat. All measurements are approximate—please allow for a tolerance of up to 1/2 inch for each measurement.
  • Size doesn't fit all. Please carefully check the size chart and select the size based on your actual measurements.
  • Fabric: 91% cotton, 7% polyester, 2% spandex

These jeans are a blast from the past with a vintage wash and straight leg fit for comfortable wearing that doesn't compromise style!

They have no distressing - just gorgeous color that brings a vintage aesthetic to any outfit. Pair them with a comfy pullover or graphic tee for day to day, or jazz them up with a funky printed top and a pair of chunky platform sandals. 

These jeans blend STRETCH!! with a tummy control panel that will make you look and feel free!

The waist has a subtle high rise and the fit is ABSOLUTE PERFECTION!!

FIT ADVICE! we're known for the BEST fit advice! We have less than a 1% return rate on jeans as we take getting fit right seriously here! Please listen to the below fit advice for the perfect fitting jeans! 

Next is fit for this pair: These beauts are SUPER SOFT and stretchy with stretch, a subtle high rise and a tummy control panel!

Click On "ADD TO CART" To Get Yours Now!


💐Why Us
We work directly with manufacturers all over the world to ensure the best quality of our products. We have a Quality Control department which helps us to keep our promise!
  • 🔥Price is always competitive.
  • 😊Awesome Customer Service.
  • 🏆Amazing products along with High Quality.
  • 🍭Read reviews from our lovely customers.

🌎 Worldwide Shipping ✈
You may receive your items earlier. Tracking numbers will ALWAYS be sent so you can track it every step of the way! Cool things are worth waiting for! 😉
🔒 100% Risk-Free Purchase 🔥
If you bought it and felt that it was not for you, don't worry. Just shoot us a message at contact  support@kilometeru.com, and we will make it right by offering you a replacement or refund. 100% Simple & Risk-Free process.