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 26 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“Cobra Kai S06 Johnny Lawrence Hoodie” has been added to your wishlist
3056Products Found
  • CinemaCon 2025 Ryan Gosling Black Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 4.80 out of 5
    (5)

    CinemaCon 2025 Ryan Gosling Black Jacket

    $125.00 Original price was: $125.00.$87.00Current price is: $87.00.
    Quick Shop
  • Clerks III Silent Bob Trench Coat
    XSSML
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (21)

    Clerks III Silent Bob Trench Coat

    $199.00 Original price was: $199.00.$109.00Current price is: $109.00.
    Quick Shop
  • Cleveland Guardians Dugout Bomber Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Cleveland Guardians Dugout Bomber Jacket

    $110.00 Original price was: $110.00.$76.99Current price is: $76.99.
    Quick Shop
  • Clown in a Cornfield Leather Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Clown in a Cornfield Quinn Maybrook Leather Jacket

    $109.00 – $124.00Price range: $109.00 through $124.00
    Quick Shop
  • Clown in a Cornfield Suit
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 4.88 out of 5
    (43)

    Clown in a Cornfield Suit

    $120.00 Original price was: $120.00.$89.00Current price is: $89.00.
    Quick Shop
  • CM Punk Green Hoodie
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (20)

    CM Punk Green Hoodie

    $169.00 Original price was: $169.00.$78.00Current price is: $78.00.
    Quick Shop
  • CM Punk Monday Night RAW Sweatshirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 4.94 out of 5
    (53)

    CM Punk Monday Night RAW Sweatshirt

    $105.00 Original price was: $105.00.$77.99Current price is: $77.99.
    Quick Shop
  • CM Punk ROH Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (9)

    CM Punk ROH Jacket

    $159.00 Original price was: $159.00.$78.00Current price is: $78.00.
    Quick Shop
  • CM Punk Champions Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 4.80 out of 5
    (5)

    CM Punk WWE Night Of Champions Bomber Jacket

    $125.00 Original price was: $125.00.$99.00Current price is: $99.00.
    Quick Shop
  • Danny Rohl Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Coach Danny Rohl 2026 Blue Jacket

    $129.00 Original price was: $129.00.$89.00Current price is: $89.00.
    Quick Shop
  • Coach Danny Rohl Black Puffer Vest
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Coach Danny Rohl Puffer Vest

    $128.00 Original price was: $128.00.$88.00Current price is: $88.00.
    Quick Shop
  • Coach Hansi Flick Purple Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Coach Hansi Flick Purple Jacket

    $119.00 Original price was: $119.00.$87.00Current price is: $87.00.
    Quick Shop
  • Coach-Pep-Guardiola-Blue-Coat
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Coach Pep Guardiola Blue Coat

    $115.00 Original price was: $115.00.$89.00Current price is: $89.00.
    Quick Shop
  • Coachella Amaarae Jacket
    XXSXSSM
    Quick Shop Add to wishlist Compare
    (0)

    Coachella Amaarae Jacket

    $91.99 – $122.00Price range: $91.99 through $122.00
    Quick Shop
  • Cobra Kai S06 Johnny Lawrence Hoodie
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (9)

    Cobra Kai S06 Johnny Lawrence Hoodie

    $74.00
    Quick Shop
  • Cobra Kai S06 Mary Mouser Peach Grey Cropped Sweatshirt
    XXSXSSM
    Quick Shop Add to wishlist Compare
    Rated 5.00 out of 5
    (30)

    Cobra Kai S06 Mary Mouser Peach Grey Cropped Sweatshirt

    $99.00 Original price was: $99.00.$74.00Current price is: $74.00.
    Quick Shop
  • 1
  • 2
  • 3
  • …
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • …
  • 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