←
×
→
Zayra Luxe Zimmy Chu Saree
MRP
Rs. 4,999.00
Rs. 1,650.00
inclusive of all taxes
Product Details
Size & Fit
Material & Care
Product Code
Note: Product color may slightly vary due to photographic lighting sources or your monitor settings.
PRODUCT SPECIFICATIONS
▼
Indulge in the elegance of the Zayra Luxe Saree, crafted from premium Heavy Zimmy Chu fabric with exquisite thread and sequins embroidery that adds a touch of opulence. Designed for those who appreciate timeless beauty, this saree is the perfect choice for grand celebrations, weddings, and evening soirées.
Saree Details
🔹 Fabric: Heavy Zimmy Chu 🔹 Work: Intricate Thread & Sequins Embroidery 🔹 Weight: 0.850 Grm
Blouse Details
🔸 Fabric: Matching Heavy Zimmy Chu 🔸 Work: Thread & Sequins Embroidery 🔸 Cut: 0.80 M (Unstitched)
💰 Price: ₹1899/- (Luxury at its finest)
✨ A statement of sophistication, grace, and sheer elegance. Elevate your wardrobe with Zayra Luxe by Sareewala. ✨
SHIPPING INFORMATION
▼
Dispatch: Within 48 Hours*
Delivery time (Metro Cities): 1-3* business days
Delivery time (Non-Metro Cities): 3-5* business days
MORE INFORMATION
▼
Packed and Marketed By:
Sareewala
Awadh textile Market
Surat-395010
Country of Origin: India
NEED HELP
▼
Call: +91 8252892297
Email: sareewalabuisness@gmail.com
WhatsApp: 8252892297
ADD TO CART
// 2. SHARE FUNCTIONALITY
const shareBtn = document.getElementById('share-btn');
if (shareBtn) {
shareBtn.addEventListener('click', function(e) {
e.preventDefault();
const productTitle = 'Zayra Luxe Zimmy Chu Saree';
const productUrl = window.location.href;
if (navigator.share) {
navigator.share({
title: productTitle,
url: productUrl
}).catch(err => {
console.log('Share canceled:', err);
});
} else {
const shareText = `Check out ${productTitle}: ${productUrl}`;
if (navigator.clipboard) {
navigator.clipboard.writeText(shareText).then(() => {
alert('Product link copied to clipboard!');
}).catch(() => {
fallbackCopy(shareText);
});
} else {
fallbackCopy(shareText);
}
}
function fallbackCopy(text) {
const textarea = document.createElement('textarea');
textarea.value = text;
textarea.style.position = 'fixed';
document.body.appendChild(textarea);
textarea.select();
try {
document.execCommand('copy');
alert('Product link copied to clipboard!');
} catch (err) {
prompt('Copy this link:', productUrl);
}
document.body.removeChild(textarea);
}
});
}
});