This antique pichwai depicts a holy man, possibly a rishi or a sage. The holy man has a long white beard and is wearing a simple dhoti. He is seated on a tiger skin, which is a symbol of his renunciation of worldly possessions. The painting is made with natural pigments on cloth, and it has a unique aged appearance.
jQuery(document).ready(function($){
// Intercept clicks on category banners
$('.elementor-section .promo-banner a').on('click', function(e){
e.preventDefault();
// Get the URL of the clicked category (set in Link field)
let targetURL = $(this).attr('href');
// Show loading message
$('#ajax-product-area').html('
Loading products...
');
// Load only the product grid (.products) from that URL
$('#ajax-product-area').load(targetURL + ' .products', function(){
// Smooth scroll to the product area
$('html, body').animate({
scrollTop: $("#ajax-product-area").offset().top - 100
}, 600);
});
});
});