This site has limited support for your browser. We recommend switching to Edge, Chrome, Safari, or Firefox.

FREE SHIPPING OVER 350 DKK 🇩🇰

Use coupon code WELCOME10 for 10% off your first order.

Cart 0

Congratulations! Your order qualifies for free shipping You are 500,00 DKK away from free shipping.
Sorry, looks like we don't have enough of this product.

Pair with
Is this a gift?
Subtotal Free
Shipping, taxes, and discount codes are calculated at checkout
Asana Jogger - Ninepine

Asana Jogger

699 kr
Shop now. Pay later with Klarna
4.8
Rated 4.8 out of 5 stars
5,754 Reviews
LengthShort
SizeXXS
Size chart
Item is in stock Hurry, Only 0 Left! Item is out of stock Item is unavailable

1 item added to cart

function getShippingAndDeliveryDates() { const daysOfWeek = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; const monthsOfYear = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; // 2026 Swedish public holidays const holidays = (year) => [ luxon.DateTime.fromObject({ year, month: 1, day: 1 }), // New Year's Day luxon.DateTime.fromObject({ year, month: 1, day: 6 }), // Epiphany luxon.DateTime.fromObject({ year, month: 4, day: 2 }), // Thu before Good Friday luxon.DateTime.fromObject({ year, month: 4, day: 3 }), // Good Friday luxon.DateTime.fromObject({ year, month: 4, day: 4 }), // Sat before Easter luxon.DateTime.fromObject({ year, month: 4, day: 5 }), // Easter Sunday luxon.DateTime.fromObject({ year, month: 4, day: 6 }), // Easter Monday luxon.DateTime.fromObject({ year, month: 5, day: 1 }), // May Day luxon.DateTime.fromObject({ year, month: 5, day: 14 }), // Ascension Day luxon.DateTime.fromObject({ year, month: 5, day: 24 }), // Whit Sunday luxon.DateTime.fromObject({ year, month: 6, day: 6 }), // National Day luxon.DateTime.fromObject({ year, month: 6, day: 19 }), // Midsummer Eve luxon.DateTime.fromObject({ year, month: 6, day: 20 }), // Midsummer Day luxon.DateTime.fromObject({ year, month: 10, day: 31 }), // All Saints' Day luxon.DateTime.fromObject({ year, month: 12, day: 24 }), // Christmas Eve luxon.DateTime.fromObject({ year, month: 12, day: 25 }), // Christmas Day luxon.DateTime.fromObject({ year, month: 12, day: 26 }), // 2nd Day of Christmas luxon.DateTime.fromObject({ year, month: 12, day: 31 }) // New Year's Eve ]; const blackoutDates = (year) => [ luxon.DateTime.fromObject({ year, month: 4, day: 2 }), luxon.DateTime.fromObject({ year, month: 4, day: 3 }), luxon.DateTime.fromObject({ year, month: 4, day: 4 }), luxon.DateTime.fromObject({ year, month: 4, day: 5 }), luxon.DateTime.fromObject({ year, month: 4, day: 6 }), luxon.DateTime.fromObject({ year, month: 5, day: 14 }), luxon.DateTime.fromObject({ year, month: 6, day: 19 }) ]; const isBlackoutDate = (date) => { const blackoutList = blackoutDates(date.year); return blackoutList.some(blackout => blackout.hasSame(date, 'day')); }; let now = luxon.DateTime.now().setZone('Europe/Stockholm', { keepLocalTime: false }); console.log("Testing date: " + now.toFormat('dd-MM-yyyy -- HH:mm') + " -- " + now.weekdayLong); const currentHour = now.hour; const currentDay = now.weekday; const pdpWidget = document.querySelector('.delivery__container'); if(pdpWidget) { if (currentDay === 5) { document.querySelector('.delivery__container').style.display = 'none'; } else { document.querySelector('.delivery__container').style.display = 'block'; } if(isBlackoutDate(now)) { document.querySelector('.delivery__container').style.display = 'none'; } } const isHoliday = (date) => { const holidayDates = holidays(date.year); return holidayDates.some(holiday => holiday.hasSame(date, 'day')); }; const getNextBusinessDay = (date) => { do { date = date.plus({ days: 1 }); } while (date.weekday > 5 || isHoliday(date)); return date; }; let shippingDate; let deliveryDate; if (currentDay >= 1 && currentDay <= 4) { if (currentHour < 17 && !isHoliday(now)) { shippingDate = now; deliveryDate = getNextBusinessDay(now); } else { shippingDate = getNextBusinessDay(now); deliveryDate = getNextBusinessDay(shippingDate); } } else if (currentDay === 5) { if (currentHour < 17 && !isHoliday(now)) { shippingDate = now; deliveryDate = getNextBusinessDay(now.plus({ days: 1 })); } else { shippingDate = getNextBusinessDay(now); deliveryDate = getNextBusinessDay(shippingDate); } } else { shippingDate = getNextBusinessDay(now); deliveryDate = getNextBusinessDay(shippingDate); } if (isHoliday(shippingDate)) { shippingDate = getNextBusinessDay(shippingDate); } if (isHoliday(deliveryDate)) { deliveryDate = getNextBusinessDay(deliveryDate); } const formatShippingDate = () => { if (now.hasSame(shippingDate, 'day')) { return "Today"; } else if (shippingDate.hasSame(now.plus({ days: 1 }), 'day')) { return "Tomorrow"; } else { return `${monthsOfYear[shippingDate.month - 1]} ${shippingDate.day}`; } }; const formatDeliveryDate = () => { if (deliveryDate.hasSame(now, 'day')) { return "Today"; } else if (deliveryDate.hasSame(now.plus({ days: 1 }), 'day')) { return "Tomorrow"; } else { return `${monthsOfYear[deliveryDate.month - 1]} ${deliveryDate.day}`; } }; return { shippingMessage: formatShippingDate(), deliveryMessage: formatDeliveryDate() }; } document.addEventListener('DOMContentLoaded', function () { const shippingElement = document.querySelector('.date__estimated'); const deliveryElement = document.querySelector('.date__delivery'); if (shippingElement) { const { shippingMessage } = getShippingAndDeliveryDates(); shippingElement.textContent = shippingMessage; } if (deliveryElement) { const { deliveryMessage } = getShippingAndDeliveryDates(); deliveryElement.textContent = deliveryMessage; } }); document.addEventListener('DOMContentLoaded', function () { const countdownElement = document.querySelector('.countdown__timer'); if(countdownElement) { const now = luxon.DateTime.now().setZone('Europe/Stockholm', { keepLocalTime: false }); console.log("Testing date: " + now.toFormat('dd-MM-yyyy -- HH:mm')); let targetTime; if ((now.weekday === 5 && now.hour >= 17) || now.weekday === 6) { console.log("The countdown will not be displayed because it is Friday after 17:00 or Saturday."); countdownElement.style.display = 'none'; return; } if (now.hour >= 17) { targetTime = now.plus({ days: 1 }).set({ hour: 17, minute: 0, second: 0 }).setZone('Europe/Stockholm'); } else { targetTime = luxon.DateTime.fromObject({ year: now.year, month: now.month, day: now.day, hour: 17, minute: 0, second: 0 }, { zone: 'Europe/Stockholm' }); } const updateCountdown = () => { const now = luxon.DateTime.now().setZone('Europe/Stockholm', { keepLocalTime: false }); const timeRemaining = targetTime.diff(now, ['hours', 'minutes', 'seconds']); const formatTime = (time) => { const hours = String(Math.max(0, Math.floor(time.hours))).padStart(2, '0'); const minutes = String(Math.max(0, Math.floor(time.minutes))).padStart(2, '0'); const seconds = String(Math.max(0, Math.floor(time.seconds))).padStart(2, '0'); return `${hours}:${minutes}:${seconds}`; }; const timeEl = countdownElement.querySelector('.countdown__time'); if (timeEl) { timeEl.textContent = formatTime(timeRemaining); } if (timeRemaining.hours <= 0 && timeRemaining.minutes <= 0 && timeRemaining.seconds <= 0) { clearInterval(interval); } }; updateCountdown(); let interval = setInterval(updateCountdown, 1000); } });
DESCRIPTION

The ultimate athletically inspired everyday bottom. Our high-waisted and fitted slim joggers are designed for workouts, yoga, and everyday life.

  • Comfortable seamless high waistband with a drawstring inside. The drawstring can easily be removed and added back based on your preference.
  • Two large side pockets with YKK zips.
  • Four-way stretch with an ultra-high stretch factor (200%).
  • Squat-proof and perfect work workouts as well as everyday life.
  • Brushed and buttery soft RESOFTLUX™ fabric made fro post-consumer waste
  • Slim fit with soft ankle cuffs.
      MATERIAL
      Asana™ Fabric
      Asana™ Fabric

      ReSoftLux™ Fabric
      Composition: Recycled post-consumer polyester/spandex (Global Recycle Standard)

      Stay comfortable, confident, and effortlessly put-together, whether you're stretching, working, or resting, our fabric’s high stretch factor (230%) lets you move naturally and comfortably so you can focus on your day and not on your clothes.

      PRODUCT CARE
      • Machine wash in cold/cool/30° water 
      • Turn inside out
      • Wash with similar fabrics and colours
      • Line dry
      • Never tumble dry
      • Avoid heat
      • Do not bleach
      • Do not iron
      • Do not dry clean
      [{"variant_id":"54918457459075" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457491843" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457524611" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457557379" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457590147" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457622915" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457655683" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457688451" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457721219" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457753987" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457786755" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457819523" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457852291" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457885059" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457917827" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457950595" , "preorder":"false" , "final_sale":""},{"variant_id":"54918457983363" , "preorder":"false" , "final_sale":""},{"variant_id":"54918458016131" , "preorder":"false" , "final_sale":""},{"variant_id":"54918458048899" , "preorder":"false" , "final_sale":""},{"variant_id":"54918458081667" , "preorder":"false" , "final_sale":""},{"variant_id":"54918458114435" , "preorder":"false" , "final_sale":""}]

      Asana Jogger

      699,00 DKK

      Ways to style

      4.8
      Rated 4.8 out of 5 stars
      Based on 5,754 reviews
      Total 5 star reviews: 4.9k Total 4 star reviews: 672 Total 3 star reviews: 95 Total 2 star reviews: 27 Total 1 star reviews: 21
      98%would recommend these products
      How did the item fit?Rated 0.0 on a scale of minus 2 to 2
      5,754 reviews
      • Louise J.
        Verified Buyer
        Reviewing
        Asana Jogger
        I recommend this product
        Size purchased M
        Usual size M
        Height in cm 168
        Rated 5 out of 5 stars
        3 minutes ago
        Best trousers ever

        I bought a pair about 3 years ago and have literally worn them every day since I bought them.

        I now bought my second parit and love them as nu ch!

        How did the item fit?Rated 0.0 on a scale of minus 2 to 2
      • Marjo K.
        Verified Buyer
        Reviewing
        Asana Jogger
        I recommend this product
        Size purchased S
        Usual size S
        Height in cm 163
        Used for Yoga / Workout / Running
        Rated 4 out of 5 stars
        Yesterday
        Asana jogger

        The best joggers ever

        How did the item fit?Rated 0.0 on a scale of minus 2 to 2
      • Anna C.
        Verified Buyer
        Reviewing
        Asana Jogger
        I recommend this product
        Size purchased M
        Usual size M
        Height in cm 174
        Rated 5 out of 5 stars
        4 days ago
        M tall

        Älskar de här byxorna! Underbar stretch.

        How did the item fit?Rated 0.0 on a scale of minus 2 to 2
      • Margo F.
        Verified Buyer
        Reviewing
        Asana Jogger
        I recommend this product
        Size purchased L
        Usual size L
        Height in cm 164
        Used for Outdoors, Walking, Yoga / Workout / Running
        Rated 4 out of 5 stars
        4 days ago
        GREAT fabric and cut

        Smooth fabric with multidirectional stretch. Love the new mid blue. This is my second pair. Would really love a back pocket for mobile phone.

        How did the item fit?Rated 0.0 on a scale of minus 2 to 2
      • Stien M.
        Verified Buyer
        Reviewing
        Asana Jogger
        I recommend this product
        Size purchased S
        Usual size S
        Height in cm 159
        Used for Daily
        Rated 4 out of 5 stars
        1 week ago
        Very comfy jogger.

        I specifically like the high waist. They are neat looking jogging pants. And so comfy.

        How did the item fit?Rated 0.0 on a scale of minus 2 to 2