ADVERTISEMENT
970x220

BIR cuts floor price for cigarettes, vape products

Published Sep 18, 2024 04:30 am

The Bureau of Internal Revenue (BIR) has lowered the government-mandated floor prices for tobacco and vape products. 

Based on the updated BIR floor prices, the minimum retail costs for cigarettes, heated tobacco products, and vaporized nicotine have decreased, while non-nicotine products will see a slight increase.

The floor price represents the minimum retail price set by the BIR, calculated based on the sum of excise tax, value-added tax (VAT), and production costs. 

For cigarettes, the new floor price has dropped to P78.58 per pack, from P114.60. 

The substantial decrease is largely attributed to lower production costs, which have fallen from P42.32 to P7.16 over the past year. 

Consequently, the final VAT has also been reduced to P8.42 from P12.28. In contrast, the excise tax on cigarettes has increased to P63 from P60. 

As a result, the total tax burden for a pack of cigarettes has declined to P71.42 from P72.28 in 2023.

Similarly, the floor price for heated tobacco products has been reduced to P60.11 per pack, from P120.40. This adjustment is also primarily driven by decreased production costs, which have dropped to P19.54 from P75. 

The VAT has been lowered to P6.44 from P12.90, though the excise tax has seen a slight increase to P34.13 from P32.50. 

Overall, the total tax burden for heated tobacco products has decreased to P40.57 from P45.40.

For a two-milliliter nicotine vape product, the floor price has been revised to P180.67, a slight decrease from P179.20 due to reduction in production costs, which have fallen to P52.11 from P74.57. 

Consequently, the VAT has been lowered to P19.36 from P21.43, while the excise tax has increased from P104 to P109.20.

 As a result, the total tax burden for a two-milliliter nicotine vape now amounts to P128.56, up from P125.43.

For conventional 10-milliliter freebase or classic nicotine products, the floor price has been set at P181.72, slightly higher than the previous P179.20. Production costs are now P99 from P100.

The excise tax has risen to P63 from P60, while the VAT has increased marginally to P19.47 from P19.20. 

Overall, the total tax burden for these products has increased to P82.47, up from P79.20.

Meanwhile, BIR Commissioner Romeo D. Lumagui Jr. warned that sellers of vapor products, cigarettes, and heated tobacco products who violate the updated floor price regulations will face criminal penalties.

"We are warning all E-marketplaces, Online Sellers, Retail Sellers, Suppliers and Distributors that are selling vape, cigarettes, and heated tobacco products below the floor price. This is a criminal violation penalized by imprisonment of the seller,” Lumagui said. 

“We are monitoring both online platforms and brick-and-mortar stores. Do not sell below the floor price. Take down all posts and offerings that are below the floor price," he added. (Jun Ramirez)

Related Tags

Bureau of Internal Revenue (BIR) BIR Commissioner Romeo D. Lumagui Jr. BIR cigarette vape floor price
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.