This 2026 burgundy red luxury traditional rug features a deep, rich red background paired with an elegant Persian-style central medallion. Delicate ivory and navy floral details create a timeless, regal appearance that brings warmth and sophistication to any space.
این فرش سنتی لوکس با طراحی 2026 دارای زمینه قرمز تیره (زرشکی / بورگاندی) است که با ترنج مرکزی الهامگرفته از فرشهای اصیل ایرانی تزئین شده. جزئیات گلدار با رنگهای کرم و سرمهای جلوهای مجلل، گرم و باشکوه ایجاد میکند و انتخابی ایدهآل برای فضاهای رسمی و کلاسیک به شمار میرود.
مشاهده متن فارسی
Features
·Reeds (Shaneh): 1200 Reeds (1200 شانه)
·Density: Over 3,000,000 points per 100×100 cm
·Pile Composition: 66% Polypropylene + 34% Polyester
·Warp: Premium cotton warp
·Design Style: Luxury traditional Persian-inspired design
·Color Palette: Burgundy red with ivory and navy accents
·Origin: Made in Turkey
·Care: Durable, colorfast, and suitable for regular vacuum cleaning
Shipping: Available across the United States and Canada.
Local Support: Sacramento, California showroom service available.
const btn = document.getElementById('toggleButton');
const enText = document.getElementById('descriptionEn');
const faWrap = document.getElementById('persianDetails');
btn.addEventListener('click', () => {
if (faWrap.style.display === 'none') {
faWrap.style.display = 'block';
enText.style.display = 'none';
btn.textContent = 'View English';
} else {
faWrap.style.display = 'none';
enText.style.display = 'block';
btn.textContent = 'مشاهده متن فارسی';
}
});