The page navigation is complete. You may now navigate the page content as you wish.
Skip to main content

Super Soft Shorts

Filter + Sort

Super soft shorts are the ultimate blend of comfort and style, perfect for lounging at home or stepping out with friends. Crafted to provide a cozy feel while keeping you looking effortlessly cool, these shorts are your go-to for any casual outing. Whether you're pairing them with your favorite tee or layering up with a hoodie, super soft shorts offer versatility that fits seamlessly into your everyday life. Embrace the laid-back vibes and elevate your casual wear game with these must-have essentials.
`; const targetElement = document.querySelector('#main-content-focus'); if (targetElement) { targetElement.appendChild(newElement); } } function observeElementAvailability() { let count = 0; // Initialize a count variable to track the number of times the target is found const observer = new MutationObserver((mutationsList, observerInstance) => { const targetElement = document.querySelector('.bag-indicator-content'); if (targetElement && targetElement.textContent.trim() !== "" && count === 0) { fetchWishlistIds(); count++; // Increment count to ensure this block only runs once observerInstance.disconnect(); appendToBodyAfterScripts(); filtersEventListeners(); updatePagination(); updateFacets(); handleProductInjection(); //force rerender title forceRerenderMetaTags(); hideAddtoFavouriteBtn(); addRelatedLinksListeners() addCarouselEventListeners() } }); // Start observing the document for child additions observer.observe(document.body, { childList: true, subtree: true }); } /** * This script is used to inject the best seller products into the page */ async function handleProductInjection() { const pageCategoryId = ''; if (pageCategoryId) { await HSS.initCollections({ o: 'b76833e68ac7850b4e1', filterBy: `cat:${pageCategoryId}`, max: 5, optUrl: '', }); const bestSellerProducts = await HSS.searchCollections().then((results) => { if (results?.success) return results.results; console.error('Error occurred searching collections'); return []; }); if (bestSellerProducts.length > 0) { updateProducts(bestSellerProducts, 1, 5, 'Popular Product Click', '#best-seller-products'); } } } // Attach event listener for DOM content load document.addEventListener('DOMContentLoaded', handleProductInjection);