Promo !

Ensemble NAVY

Le prix initial était : 169,00€.Le prix actuel est : 89,90€.

Fabrication

  • 100% POLYESTER
  • Haut grammage

Détails

  • Logos brodés avant et sur le bas
  • Inserts blanc et jaune
  • Liserets réfléchissants
  • Coupe Standard – Prenez votre taille habituelle
UGS : PRT-SRVT-NAV Catégories : , , Product ID: 8374

Informations complémentaires

Poids 1,9 kg
Taille

S, M, L, XL, XXL

// Fonction pour vérifier et masquer les produits indisponibles function checkAndHideProducts() { document.querySelectorAll('.owl-item:not(.cloned)').forEach(item => { const button = item.querySelector('.fgf-add-to-cart-button'); const isDisabled = button && ( button.disabled || button.classList.contains('disabled') || button.getAttribute('aria-disabled') === 'true' || button.style.pointerEvents === 'none' ); if (isDisabled) { // Masquer l'élément original item.style.display = 'none'; // Masquer aussi les clones (s'ils existent) const productId = item.dataset.productId || item.id; if (productId) { document.querySelectorAll(`.owl-item.cloned[data-product-id="${productId}"]`).forEach(clone => { clone.style.display = 'none'; }); } } }); } // Exécuter au chargement initial document.addEventListener('DOMContentLoaded', checkAndHideProducts); // Observer les changements dans le carousel const carousel = document.querySelector('.owl-carousel'); if (carousel) { const observer = new MutationObserver(checkAndHideProducts); observer.observe(carousel, { childList: true, subtree: true, attributes: true }); } // Si vous utilisez Owl Carousel 2 if (typeof $ !== 'undefined' && $.fn.owlCarousel) { $(document).ready(function() { $('.owl-carousel').on('initialized.owl.carousel translated.owl.carousel', function() { checkAndHideProducts(); }); }); }