jQuery(function($) { 'use strict'; function cleanupCartForm() { var $area = $('.pbu-cart-area'); if (!$area.length) return; $area.find('label, h1, h2, h3, h4, h5, h6').each(function() { var $el = $(this); if ($el.hasClass('single_variation_wrap') || $el.hasClass('woocommerce-variation-add-to-cart') || $el.hasClass('variations') || $el.closest('.variations').length || $el.closest('button').length || $el.find('select, button, input').length) return; var txt = $el.clone().children().remove().end().text().trim().toLowerCase(); if (txt === 'add to cart' || txt === 'quantity' || txt === 'quantity:') $el.remove(); }); $area.find('.quantity').remove(); } cleanupCartForm(); $(document.body).on('woocommerce_variation_has_changed found_variation updated_wc_div', cleanupCartForm); var $track = $('#pbuCarouselTrack'); var $slides = $track.find('.pbu-slide'); var totalSlides = $slides.length; var currentSlide = 0; function goToSlide(index) { if (index < 0) index = totalSlides - 1; if (index >= totalSlides) index = 0; currentSlide = index; $track.css('transform', 'translateX(-' + (index * 100) + '%)'); $('.pbu-thumb').removeClass('active'); $('.pbu-thumb[data-index="' + index + '"]').addClass('active'); ensureThumbVisible(index); } $(document).on('click', '#pbuPrevImg', function(e) { e.preventDefault(); e.stopPropagation(); goToSlide(currentSlide - 1); }); $(document).on('click', '#pbuNextImg', function(e) { e.preventDefault(); e.stopPropagation(); goToSlide(currentSlide + 1); }); $(document).on('click', '.pbu-thumb', function(e) { e.preventDefault(); goToSlide(parseInt($(this).data('index'))); }); var touchStartX = 0, touchEndX = 0, isDragging = false, moveX = 0; var carousel = document.getElementById('pbuCarousel'); if (carousel) { carousel.addEventListener('touchstart', function(e) { touchStartX = e.changedTouches[0].screenX; isDragging = true; moveX = 0; }, { passive: true }); carousel.addEventListener('touchmove', function(e) { if (!isDragging) return; moveX = e.changedTouches[0].screenX - touchStartX; }, { passive: true }); carousel.addEventListener('touchend', function(e) { if (!isDragging) return; touchEndX = e.changedTouches[0].screenX; var diff = touchStartX - touchEndX; if (Math.abs(diff) > 50) { if (diff > 0) goToSlide(currentSlide + 1); else goToSlide(currentSlide - 1); } isDragging = false; setTimeout(function() { moveX = 0; }, 100); }, { passive: true }); carousel.addEventListener('mousedown', function() { moveX = 0; }); } $(document).on('click', '#pbuExpandIcon', function(e) { e.preventDefault(); e.stopPropagation(); openLightbox(currentSlide); }); $('#pbuCarousel').on('click', function(e) { if ($(e.target).closest('.pbu-nav-arrow, .pbu-expand-icon').length) return; if (Math.abs(moveX) > 5) return; openLightbox(currentSlide); }); var $thumbsTrack = $('#pbuThumbsTrack'); var $thumbs = $thumbsTrack.find('.pbu-thumb'); var thumbsOffset = 0; var THUMBS_PER_VIEW = 4; function getThumbWidth() { var $viewport = $thumbsTrack.parent(); var gap = 10; return ($viewport.width() - (gap * (THUMBS_PER_VIEW - 1))) / THUMBS_PER_VIEW + gap; } function moveThumbs(direction) { var maxOffset = Math.max(0, $thumbs.length - THUMBS_PER_VIEW); thumbsOffset += direction; if (thumbsOffset < 0) thumbsOffset = 0; if (thumbsOffset > maxOffset) thumbsOffset = maxOffset; var w = getThumbWidth(); $thumbsTrack.css('transform', 'translateX(-' + (thumbsOffset * w) + 'px)'); updateThumbNavState(); } function updateThumbNavState() { var maxOffset = Math.max(0, $thumbs.length - THUMBS_PER_VIEW); $('#pbuThumbsPrev').prop('disabled', thumbsOffset <= 0); $('#pbuThumbsNext').prop('disabled', thumbsOffset >= maxOffset); } function ensureThumbVisible(index) { var w = getThumbWidth(); if (index < thumbsOffset) { thumbsOffset = index; $thumbsTrack.css('transform', 'translateX(-' + (thumbsOffset * w) + 'px)'); updateThumbNavState(); } else if (index >= thumbsOffset + THUMBS_PER_VIEW) { thumbsOffset = index - THUMBS_PER_VIEW + 1; $thumbsTrack.css('transform', 'translateX(-' + (thumbsOffset * w) + 'px)'); updateThumbNavState(); } } $(document).on('click', '#pbuThumbsPrev', function(e) { e.preventDefault(); e.stopPropagation(); moveThumbs(-1); }); $(document).on('click', '#pbuThumbsNext', function(e) { e.preventDefault(); e.stopPropagation(); moveThumbs(1); }); updateThumbNavState(); var thumbTouchStart = 0, thumbTouchEnd = 0; var thumbsTrackEl = document.getElementById('pbuThumbsTrack'); if (thumbsTrackEl) { thumbsTrackEl.addEventListener('touchstart', function(e) { thumbTouchStart = e.changedTouches[0].screenX; }, { passive: true }); thumbsTrackEl.addEventListener('touchend', function(e) { thumbTouchEnd = e.changedTouches[0].screenX; var diff = thumbTouchStart - thumbTouchEnd; if (Math.abs(diff) > 50) { if (diff > 0) moveThumbs(1); else moveThumbs(-1); } }, { passive: true }); } var resizeTimer; $(window).on('resize', function() { clearTimeout(resizeTimer); resizeTimer = setTimeout(function() { thumbsOffset = 0; $thumbsTrack.css('transform', 'translateX(0)'); updateThumbNavState(); }, 150); }); var lightboxIndex = 0; function openLightbox(index) { lightboxIndex = index; updateLightboxImage(); $('#pbuLightbox').addClass('active'); $('body').css('overflow', 'hidden'); } function closeLightbox() { $('#pbuLightbox').removeClass('active'); $('body').css('overflow', ''); } function updateLightboxImage() { var $slide = $('.pbu-slide[data-index="' + lightboxIndex + '"]'); var fullSrc = $slide.data('full') || $slide.find('img').attr('src'); $('#pbuLightboxImg').attr('src', fullSrc); $('#pbuLightboxCounter').text((lightboxIndex + 1) + ' / ' + totalSlides); } function lightboxNav(direction) { lightboxIndex += direction; if (lightboxIndex < 0) lightboxIndex = totalSlides - 1; if (lightboxIndex >= totalSlides) lightboxIndex = 0; updateLightboxImage(); } $(document).on('click', '#pbuLightboxClose', closeLightbox); $(document).on('click', '#pbuLightboxPrev', function(e) { e.stopPropagation(); lightboxNav(-1); }); $(document).on('click', '#pbuLightboxNext', function(e) { e.stopPropagation(); lightboxNav(1); }); $('#pbuLightbox').on('click', function(e) { if (e.target.id === 'pbuLightbox' || $(e.target).hasClass('pbu-lightbox-container') || $(e.target).hasClass('pbu-lightbox-image-wrap')) closeLightbox(); }); var lbTouchStart = 0, lbTouchEnd = 0; var lightboxEl = document.getElementById('pbuLightbox'); if (lightboxEl) { lightboxEl.addEventListener('touchstart', function(e) { lbTouchStart = e.changedTouches[0].screenX; }, { passive: true }); lightboxEl.addEventListener('touchend', function(e) { lbTouchEnd = e.changedTouches[0].screenX; var diff = lbTouchStart - lbTouchEnd; if (Math.abs(diff) > 50) { if (diff > 0) lightboxNav(1); else lightboxNav(-1); } }, { passive: true }); } $(document).on('keydown', function(e) { if ($('#pbuLightbox').hasClass('active')) { if (e.key === 'Escape') closeLightbox(); if (e.key === 'ArrowLeft') lightboxNav(-1); if (e.key === 'ArrowRight') lightboxNav(1); return; } if ($('.pbu-modal.active').length) { if (e.key === 'Escape') { $('.pbu-modal').removeClass('active'); $('body').css('overflow', ''); } return; } if (e.target.tagName === 'INPUT' || e.target.tagName === 'TEXTAREA' || e.target.tagName === 'SELECT') return; if (e.key === 'ArrowLeft') goToSlide(currentSlide - 1); if (e.key === 'ArrowRight') goToSlide(currentSlide + 1); }); // ═══════════════════════════════════════════════════════════════ // ACCORDION - Close all by default, only open on click // ═══════════════════════════════════════════════════════════════ $('.pbu-acc-item').removeClass('open'); var reviewsLoaded = false; $('.pbu-acc-header').on('click', function() { var $item = $(this).closest('.pbu-acc-item'); var $body = $item.find('.pbu-acc-body'); $item.toggleClass('open'); if ($body.data('lazy-reviews') && !reviewsLoaded && $item.hasClass('open')) { reviewsLoaded = true; if (typeof window.pbuReviewsData === 'undefined') return; $body.html('

Loading reviews...

'); $.ajax({ url: window.pbuReviewsData.ajaxUrl, type: 'POST', data: { action: 'pbu_get_reviews', nonce: window.pbuReviewsData.nonce, product_id: window.pbuReviewsData.productId }, success: function(response) { if (response.success) $body.html(response.data); else $body.html('

Could not load reviews.

'); }, error: function() { $body.html('

Could not load reviews.

'); } }); } }); $('#pbuSizeGuideBtn').on('click', function() { $('#pbuSizeModal').addClass('active'); $('body').css('overflow', 'hidden'); }); $('#pbuModalCloseBtn').on('click', function() { $('#pbuSizeModal').removeClass('active'); $('body').css('overflow', ''); }); $('#pbuSizeModal').on('click', function(e) { if (e.target.id === 'pbuSizeModal') { $(this).removeClass('active'); $('body').css('overflow', ''); } }); $('#pbuClearBtn').on('click', function() { var $form = $('.pbu-cart-area form.cart'); if (!$form.length) return; try { $form.find('.variations select').val(''); $form.find('input[name="variation_id"]').val('0'); } catch(e) {} }); $('#pbuQtyMinus').on('click', function() { var val = parseInt($('#pbuQtyInput').val()) || 1; if (val > 1) $('#pbuQtyInput').val(val - 1); }); $('#pbuQtyPlus').on('click', function() { var val = parseInt($('#pbuQtyInput').val()) || 1; if (val < 99) $('#pbuQtyInput').val(val + 1); }); $('#pbuQtyInput').on('change', function() { var val = parseInt($(this).val()) || 1; if (val < 1) val = 1; if (val > 99) val = 99; $(this).val(val); }); // ═══════════════════════════════════════════════════════════════ // ★★★ ADD TO CART - NUCLEAR FIX: Direct URL redirect ★★★ // ═══════════════════════════════════════════════════════════════ $('#pbuCustomAddToCart').on('click', function(e) { e.preventDefault(); e.stopPropagation(); var $btn = $(this); var $form = $('.pbu-cart-area form.cart').first(); var qty = parseInt($('#pbuQtyInput').val()) || 1; if (!$form.length) { alert('Cart form not found. Please refresh.'); return; } var isVariable = $form.hasClass('variations_form') || $form.find('input[name="variation_id"]').length > 0; // Collect selected attributes var selectedAttributes = {}; var allSelected = true; $form.find('.variations select').each(function() { var name = $(this).attr('name'); var val = $(this).val(); if (!val) { allSelected = false; return false; } selectedAttributes[name] = val; }); if (isVariable && !allSelected) { alert('Please select all product options first.'); return; } $btn.text('Adding...').prop('disabled', true); // Get product ID var productId = parseInt($form.find('input[name="product_id"]').val(), 10) || parseInt($form.find('button[name="add-to-cart"]').val(), 10) || parseInt($form.find('.single_add_to_cart_button').val(), 10) || parseInt($form.find('.single_add_to_cart_button').attr('data-product_id'), 10) || 0; // Get variation ID var variationId = parseInt($form.find('input[name="variation_id"]').val(), 10) || 0; // If variable but no variation_id, find it from product_variations data if (isVariable && !variationId) { var productVariations = $form.data('product_variations'); if (productVariations && productVariations.length) { for (var i = 0; i < productVariations.length; i++) { var variation = productVariations[i]; var match = true; for (var attrName in selectedAttributes) { var varAttr = variation.attributes[attrName]; if (varAttr && varAttr !== '' && varAttr !== selectedAttributes[attrName]) { match = false; break; } } if (match) { variationId = variation.variation_id; break; } } } } if (!productId) { alert('Product ID not found. Please refresh.'); $btn.text('Add To Cart').prop('disabled', false); return; } // ═══════════════════════════════════════════════ // BUILD URL - This is the KEY fix // ═══════════════════════════════════════════════ var currentUrl = window.location.href.split('?')[0]; var params = []; if (isVariable && variationId) { // Variable product: add-to-cart is the variation_id params.push('add-to-cart=' + variationId); params.push('variation_id=' + variationId); params.push('product_id=' + productId); params.push('quantity=' + qty); $.each(selectedAttributes, function(name, value) { params.push(encodeURIComponent(name) + '=' + encodeURIComponent(value)); }); } else { // Simple product params.push('add-to-cart=' + productId); params.push('quantity=' + qty); } var finalUrl = currentUrl + '?' + params.join('&'); // Redirect - WooCommerce will handle everything server-side window.location.href = finalUrl; }); $(document.body).on('added_to_cart', function() { $('.pbu-toast-msg').remove(); var $t = $('
Added to cart!
'); $('body').append($t); setTimeout(function() { $t.fadeOut(300, function() { $(this).remove(); }); }, 3000); }); });Shop - Page 23 of 191 - Plush Buy Us
Plush Buy Us

Plush Buy Us

  • Home
  • Shop
    • Accessories
    • Luxury
  • Men’s Leather
  • Women’s Leather
  • About
Search Login 0 Cart
Plush Buy Us
Search 0 Cart

Shop

View wishlist“Clown in a Cornfield Quinn Maybrook Leather Jacket” has been added to your wishlist
3056Products Found
  • Commissioner Cup 2025 Caitlin Clark Hoodie
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Caitlin Clark WNBA Commissioner’s Cup Hoodie

    $106.00 Original price was: $106.00.$76.00Current price is: $76.00.
    Quick Shop
  • Call Her Alex S01 Alex Cooper Black Unwell Sweatshirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (2)

    Call Her Alex S01 Alex Cooper Black Sweatshirt

    $105.00 Original price was: $105.00.$79.00Current price is: $79.00.
    Quick Shop
  • Call Her Alex S01 Alex Cooper Gray Sweatshirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 4.75 out of 5
    (4)

    Call Her Alex S01 Alex Cooper Gray Sweatshirt

    $122.00 Original price was: $122.00.$87.00Current price is: $87.00.
    Quick Shop
  • Call Her Alex S01 Alex Cooper Pink Sweatshirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 4.67 out of 5
    (6)

    Call Her Alex S01 Alex Cooper Pink Sweatshirt

    $102.00 Original price was: $102.00.$79.00Current price is: $79.00.
    Quick Shop
  • Camp Half Blood Shirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Camp Half Blood Shirt

    $54.00
    Quick Shop
  • Can This Love Be Translated Beige Coat
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Can This Love Be Translated Ju Ho-Jin Coat

    $139.00 Original price was: $139.00.$99.00Current price is: $99.00.
    Quick Shop
  • Can You Keep a Secret S01 Mark Heap Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Can You Keep a Secret S01 William Fendon Jacket

    $120.00 Original price was: $120.00.$80.00Current price is: $80.00.
    Quick Shop
  • Canary Black 2024 Kate Beckinsale Maroon Coat
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (20)

    Canary Black 2024 Kate Beckinsale Maroon Coat

    $159.00 Original price was: $159.00.$94.00Current price is: $94.00.
    Quick Shop
  • Candy Cane Lane 2023 Eddie Murphy Merry Christmas Shirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (20)

    Candy Cane Lane 2023 Eddie Murphy Merry Christmas Shirt

    $99.00 Original price was: $99.00.$69.00Current price is: $69.00.
    Quick Shop
  • Captain_Pikes_Green_Tunic
    XSSML
    Quick Shop Add to wishlist Compare
    (0)

    Captain Pikes Green Tunic

    $159.00
    Quick Shop
  • Cara-Delevingne-Plaid-Suit
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Cara Delevingne Plaid Suit

    $119.00
    Quick Shop
  • Carlos Alcaraz 2025 Italian Open Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 4.80 out of 5
    (5)

    Carlos Alcaraz 2025 Italian Open Jacket

    $112.00 Original price was: $112.00.$89.00Current price is: $89.00.
    Quick Shop
  • Carlos Correa Astros 2025 Hoodie
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Carlos Correa Astros 2025 Hoodie

    $99.00 Original price was: $99.00.$79.00Current price is: $79.00.
    Quick Shop
  • Caroline Wozniacki MSG NYC Knicks Sweatshirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Caroline Wozniacki MSG NYC Knicks Sweatshirt

    $109.00 Original price was: $109.00.$77.99Current price is: $77.99.
    Quick Shop
  • Carrie-Bradshaw-And-Just-Like-That-S02-Plaid-Coat
    XSSML
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (5)

    Carrie Bradshaw And Just Like That Season 2 Coat

    $199.00 Original price was: $199.00.$89.00Current price is: $89.00.
    Quick Shop
  • Casey-Desantis-Blue-Jacket
    XSSML
    Quick Shop Add to wishlist Compare
    (0)

    Casey Desantis Blue Jacket

    $84.00
    Quick Shop
  • 1
  • 2
  • 3
  • …
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • …
  • 189
  • 190
  • 191

Plush Buy Us is a global fashion brand operated by Inspire Ventures FZE LLC, serving customers across the USA, UK, and many other regions worldwide with premium-quality apparel and a trusted shopping experience.

Help
  • Customer Service Commitment
  • Shipping & Delivery Policy
  • Return & Refund Policy
  • Terms & Conditions
  • Privacy Policy
  • Payment policy
  • About Us
  • FAQs
Buy Now
  • Men’s Jackets
  • Women’s jackets
Account
  • My Account
  • Track Order
Contact Us
923 Elm St Manchester, NH 03101, New Hampshire USA
+1 214 204 1338
sales@plushbuyus.com

© 2026 Plush Buy Us. All Rights Reserved

Shop
Search
Account
0 Wishlist
0 Cart
Search our site
View all

Login

Lost your password?

New customer? Create your account

Register

Sign up for early Sale access plus tailored new arrivals, trends and promotions. To opt out, click unsubscribe in our emails.

A link to set a new password will be sent to your email address.

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our Privacy Policy.

Already have an account? Log in here

Shopping Cart

Your cart is empty

You may check out all the available products and buy some in the shop

Return to shop
  • Home
  • Shop
    • Accessories
    • Luxury
  • Men’s Leather
  • Women’s Leather
  • About
Filter

Recent Posts

  • Jeux De Machines à Sous En Ligne Avec Bonus July 20, 2026
  • Blackjack Kombinace July 20, 2026
  • Trucar Tragamonedas En Es 2026 July 18, 2026

Meta

  • Register
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Product categories

  • Accessories (3056)
  • Luxury (3)
  • Men's Leather (4)
  • Women's Leather (5)

Cart

  • Default sorting
  • Sort by popularity
  • Sort by average rating
  • Sort by latest
  • Sort by price: low to high
  • Sort by price: high to low
Compare products
Close