yandex49

#PaithaniWeaving

Discover the artistry of #PaithaniWeaving (Paithani Weaving), a centuries-old tradition known for its intricate craftsmanship and vibrant designs. Each piece showcases delicate handwoven patterns and luxurious silk threads, creating stunning sarees, dupattas, and garments. Perfect for adding a touch of heritage and elegance to any special occasion.

Showing the single result

  • Sale! Banarasi Soft Silk Paithani Saree

    Banarasi Soft Silk Paithani Saree

    Rated 0 out of 5
    Original price was: ₹4,250.00.Current price is: ₹2,750.00. Select options This product has multiple variants. The options may be chosen on the product page
Shopping Cart
Scroll to Top
Hide picture document.addEventListener('DOMContentLoaded', () => { const searchInput = document.querySelector('.search-field'); // Default Astra search input const voiceSearchBtn = document.getElementById('voiceSearchBtn');// Check for Web Speech API support const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;if (SpeechRecognition) { const recognition = new SpeechRecognition(); recognition.lang = 'en-US'; // Set language (modify as needed, e.g., 'hi-IN' for Hindi) recognition.interimResults = false;recognition.onresult = (event) => { const transcript = event.results[0][0].transcript; // Recognized text searchInput.value = transcript; // Populate the search field// Trigger the WordPress search functionality const searchEvent = new Event('input'); searchInput.dispatchEvent(searchEvent); };recognition.onerror = (event) => { alert('Error with voice search. Please try again.'); console.error('Speech recognition error:', event.error); };// Start recognition when the button is clicked voiceSearchBtn.addEventListener('click', () => { recognition.start(); }); } else { alert('Your browser does not support voice search. Please use Google Chrome.'); } });