Skip to product information

Women's Wide Leg Plaid Pants With Pockets

Women's Wide Leg Plaid Pants With Pockets

Regular price $39.99
Regular price $39.99 Sale price $79.99
SAVE 50% Sold out
 
 

BUNDLE & SAVE

 
add_shopping_cart

-

Ordered

local_shipping

- - -

Order Ready

redeem

- - -

Delivered

Women's Wide Leg Plaid Pants With Pockets

Women's Wide Leg Plaid Pants With Pockets

Regular price $39.99
Regular price $39.99 Sale price $79.99
SAVE 50% Sold out

Wide-Leg Plaid Pants

Your New Favorite Everyday Pants

Effortless Comfort, Timeless Style

Upgrade your everyday wardrobe with effortless comfort and timeless style. These wide-leg plaid pants feature a relaxed fit, adjustable drawstring waist, and breathable fabric blend, making them perfect for casual days, vacations, and warm-weather adventures.


Wide-leg plaid pants main photo

Size Guide

Wide-leg plaid pants size chart

Why You'll Love It

Four reasons it's the smarter way to get dressed.


Suitable For

Perfect For Every Casual Moment
From relaxing weekends to beach vacations and city adventures, these versatile wide-leg pants make dressing stylish and comfortable effortless.

Ideal For

  • ☀️Summer Vacations
  • 🏖️Beach Trips
  • Casual Brunch
  • 🛍️Shopping Days
  • 🏡Home Relaxation
  • 🚶Everyday Outdoor Activities
Wide-leg plaid pants styled for a casual outing

How To Style

1

Casual Everyday

Pair with a simple T-shirt and sneakers for an effortless daily outfit.

2

Vacation Style

Match with a tank top and sandals for a relaxed beach-ready look.

3

Chic Weekend Outfit

Combine with a blouse and accessories for a stylish brunch or city look.

Animated demo of the three styling looks
See all three looks come together

Product Specifications

Product Type Women's Wide Leg Casual Pants
Material Linen Blend Fabric
Style Plaid / Striped Casual Pants
Fit Relaxed Wide-Leg Fit
Waist Adjustable Drawstring Waist
Features Side Pockets
Season Spring & Summer
Occasions Casual Wear, Vacation, Beach, Outdoor, Daily Wear
Care Machine Washable
Package Includes 1 × Women's Wide Leg Pants

Customer Reviews

⭐⭐⭐⭐⭐

"These pants are exactly what I wanted for summer. They are lightweight, comfortable, and look amazing with almost everything."

Emily R.

⭐⭐⭐⭐⭐

"The wide-leg style is so flattering and the drawstring waist makes them incredibly comfortable all day."

Sophia M.

⭐⭐⭐⭐⭐

"I wore these on vacation and received so many compliments. The fabric feels soft and breathable."

Olivia T.

⭐⭐⭐⭐⭐

"Perfect casual pants! The pockets are a great bonus and the plaid pattern makes them look stylish without trying too hard."

Megan L.



Your New Favorite Everyday Pants Are Here

Experience the perfect balance of comfort and style with lightweight wide-leg pants designed for effortless everyday outfits. Whether you're traveling, relaxing, or heading out, enjoy confidence and comfort with every step.

(function(){ var carousel = document.querySelector('[data-carousel]'); if(!carousel) return; var track = carousel.querySelector('[data-track]'); var slides = track.querySelectorAll('.bwc-carousel-slide'); var dotsWrap = carousel.querySelector('[data-dots]'); var prevBtn = carousel.querySelector('[data-prev]'); var nextBtn = carousel.querySelector('[data-next]'); var activeIndex = 0; var AUTOPLAY_DELAY = 3000; var autoplayTimer = null; var carouselInView = false; // becomes true only once the carousel scrolls into view slides.forEach(function(slide, i){ var dot = document.createElement('button'); dot.type = 'button'; dot.className = 'bwc-carousel-dot' + (i === 0 ? ' active' : ''); dot.setAttribute('aria-label', 'Go to slide ' + (i + 1)); dot.addEventListener('click', function(){ goToSlide(i); restartAutoplay(); }); dotsWrap.appendChild(dot); }); var dots = dotsWrap.querySelectorAll('.bwc-carousel-dot'); // Scroll the track itself (horizontal only). Never use scrollIntoView here — // it can also scroll the whole page vertically to "reveal" the slide, which // yanks the page back up to this section if the user has scrolled past it. function goToSlide(i){ var slide = slides[i]; track.scrollTo({ left: slide.offsetLeft, behavior: 'smooth' }); } function updateActive(){ var trackRect = track.getBoundingClientRect(); var closest = 0, closestDist = Infinity; slides.forEach(function(slide, i){ var dist = Math.abs(slide.getBoundingClientRect().left - trackRect.left); if (dist < closestDist) { closestDist = dist; closest = i; } }); activeIndex = closest; dots.forEach(function(d, i){ d.classList.toggle('active', i === closest); }); } var scrollTimer; track.addEventListener('scroll', function(){ clearTimeout(scrollTimer); scrollTimer = setTimeout(updateActive, 80); }); function stepWidth(){ if (slides.length > 1) { return slides[1].offsetLeft - slides[0].offsetLeft; } return slides[0].getBoundingClientRect().width; } prevBtn.addEventListener('click', function(){ track.scrollBy({left: -stepWidth(), behavior:'smooth'}); restartAutoplay(); }); nextBtn.addEventListener('click', function(){ track.scrollBy({left: stepWidth(), behavior:'smooth'}); restartAutoplay(); }); function nextSlide(){ var next = (activeIndex + 1) % slides.length; goToSlide(next); } function startAutoplay(){ stopAutoplay(); // Don't run autoplay (and thus don't touch scroll position at all) // while the carousel isn't visible on screen. if (!carouselInView) return; autoplayTimer = setInterval(nextSlide, AUTOPLAY_DELAY); } function stopAutoplay(){ if (autoplayTimer) { clearInterval(autoplayTimer); autoplayTimer = null; } } function restartAutoplay(){ stopAutoplay(); startAutoplay(); } // pause while the user is actively swiping/dragging/hovering, resume after track.addEventListener('pointerdown', stopAutoplay); track.addEventListener('touchstart', stopAutoplay, {passive:true}); track.addEventListener('pointerup', restartAutoplay); track.addEventListener('touchend', restartAutoplay, {passive:true}); carousel.addEventListener('mouseenter', stopAutoplay); carousel.addEventListener('mouseleave', restartAutoplay); // Only autoplay while the carousel is actually on screen — and the // 3-second countdown only starts once the user has scrolled to this // section, not immediately on page load. if ('IntersectionObserver' in window) { var io = new IntersectionObserver(function(entries){ entries.forEach(function(entry){ carouselInView = entry.isIntersecting; if (carouselInView) { restartAutoplay(); } else { stopAutoplay(); } }); }, { threshold: 0.4 }); io.observe(carousel); } updateActive();})(); (function(){ function findRealAddToCartButton(){ var shrineBtn = document.querySelector('button.main-product-atc[name="add"]'); if (shrineBtn) return shrineBtn; var form = document.querySelector('form[action*="/cart/add"]'); if (form) { var btn = form.querySelector('button[name="add"], button[type="submit"], input[type="submit"]'); if (btn) return btn; } var all = document.querySelectorAll('button, input[type="submit"]'); for (var i = 0; i < all.length; i++) { var txt = (all[i].textContent || all[i].value || '').trim().toLowerCase(); if (txt === 'add to cart' && !all[i].classList.contains('bwc-add-to-cart')) return all[i]; } return null; } function bwcAddToCart(btn){ var realBtn = findRealAddToCartButton(); if (realBtn) { realBtn.click(); return; } var fallbackId = btn.getAttribute('data-fallback-variant'); if (!fallbackId || fallbackId === 'VARIANT_ID') { alert('Could not find the add-to-cart form on this page.'); return; } fetch('/cart/add.js', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ id: fallbackId, quantity: 1 }) }).then(function(){ window.location.href = '/cart'; }); } document.addEventListener('click', function(e){ var btn = e.target.closest('.bwc-add-to-cart'); if (!btn) return; e.preventDefault(); bwcAddToCart(btn); });})();
  • Share positive thoughts and feedback from your customer.

    Author
  • Share positive thoughts and feedback from your customer.

    Author
  • Share positive thoughts and feedback from your customer.

    Author
    check_box

    Collapsible row

    View full details