Shipping

Important information for US Customers on the suspension of the ‘de minimis’ tax exemption

4 Aug, 2025

Important information for US Customers on the suspension of the ‘de minimis’ tax exemption

Important Notice for Our Valued U.S. Customers
We regret to inform you that, as of July 30, 2025, the Trump administration has signed an executive order suspending the de minimis exemption for international packages valued under $800 entering the United States. This change applies to shipments from Japan and other global locations.

What This Means for You
Beginning August 27, 2025, packages of any value arriving in the U.S. from Japan may be subject to new import duties that will be charged to the importer of record (recipient), but the exact form these duties will take is still unclear.

According to recent announcements under the International Emergency Economic Powers Act (IEEPA), a 15% ad valorem tariff has been proposed, calculated based on the declared value of incoming goods; however, this has yet to be codified into law and does not supersede the US Harmonised Tariff Schedule (HTS). However, there is also a transitional policy introducing a flat de minimis fee (estimated at $80 per item for goods from Japan) on low-value shipments, which may apply during the first six months.

It remains uncertain which of these (percentage-based tariffs, fixed per-item charges, or existing HTS) will be enforced during this period, or whether they will somehow coexist, or even if the US Customs and Border Protection (CBP) will have the resources to fully and expeditiously process and collect these Trump-imposed tariffs, or if this Executive Order will be rescinded or modified.

As of now, official harmonized tariff schedules do not yet reflect this policy, and implementation details have not been fully codified. For the latest developments, please refer to the official White House Executive Order.

What We’re Doing to Help
We are committed to serving our customers and minimising the impact on you by:

  • Keeping our prices as competitive as possible to help offset these new tariffs,
  • Ensuring full documentation and legal compliance to keep US customs processing delays to a minimum,
  • We will continue to provide you with more information as it becomes available.

What You Can Do
To avoid these new tariffs and possible customs delays, we strongly recommend placing your order as soon as possible and selecting the fastest available shipping option to help ensure your package arrives before the changes take effect.

We deeply regret the impact this change in tariff laws will cause, and understand the real financial impact this will have on you, please know we share in this frustration with you and hope for a change for the better soon. We thank you for your kind understanding and continued support.

// Handles basket preview popup interactions and trusted seal popup link document.addEventListener("DOMContentLoaded", function () { const button = document.querySelector(".toggle-basket-preview.nav-link"); const popup = document.getElementById("customPopup"); const closeBtn = document.getElementById("closePopupBtn"); if (button && popup) { button.addEventListener("click", function (e) { e.preventDefault(); // Prevent default button behavior popup.style.display = "flex"; // Show the popup when button is clicked }); } if (closeBtn && popup) { closeBtn.addEventListener("click", function () { popup.style.display = "none"; // Hide the popup when "Got it" button is clicked }); } document.addEventListener("keydown", function (e) { if (e.key === "Escape" && popup) { popup.style.display = "none"; // Close the popup if Escape key is pressed } }); }); // Ensure the element with id "trusted_seal_link" exists before adding the event listener const yourLink = document.getElementById("trusted_seal_link"); if (yourLink) { yourLink.addEventListener('click', function (event) { event.preventDefault(); // Open the URL in a new window, ensuring security best practices with 'noopener noreferrer' window.open('https://www.etrust.pro/info/844.html', 'view', 'height=610,width=430,resizable=no,toolbar=no,location=no,scrollbars=yes,status=no'); }); } // Handles the dismissible header banner and initializes the multi-item carousel $(document).ready(function () { // Check if the 'alerted_check' exists in localStorage const isAlerted = localStorage.getItem('alerted_check'); if (!isAlerted) { // Fade in the headerstrip-wrapper with a defined duration const fadeInDuration = 7000; $("div.headerstrip-wrapper").fadeIn(fadeInDuration); } // Handle dismissing banners using event delegation for better performance $(document).on('click', '.js-banner__dismiss', function () { $(this).parent().hide(); localStorage.setItem('alerted_check', 'yes'); }); // Carousel multi-item logic $('.carousel.carousel-multi-item.v-2 .carousel-item').each(function () { let next = $(this).next(); if (!next.length) { next = $(this).siblings(':first'); } next.children(':first-child').clone().appendTo($(this)); // Clone the next 3 items to ensure the carousel displays multiple items for (let i = 0; i < 3; i++) { next = next.next(); if (!next.length) { next = $(this).siblings(':first'); } next.children(':first-child').clone().appendTo($(this)); } }); // Brands slider logic const brandsSlider = $('.brands_slider'); if (brandsSlider.length) { brandsSlider.owlCarousel({ loop: true, autoplay: true, autoplayTimeout: 5000, nav: false, dots: false, autoWidth: true, items: 8, margin: 42 }); // Initialize previous and next buttons for brands slider, ensuring the elements exist const prevButton = $('.brands_prev'); const nextButton = $('.brands_next'); if (prevButton.length) { prevButton.on('click', function () { brandsSlider.trigger('prev.owl.carousel'); }); } if (nextButton.length) { nextButton.on('click', function () { brandsSlider.trigger('next.owl.carousel'); }); } } }); // hide announcement const banner = document.querySelector('.banner-announcement'); window.addEventListener('scroll', () => { if (window.scrollY > 0) { banner.style.display = 'none'; // hide when scrolling down } else { banner.style.display = 'block'; // show when at top } });