{"id":48,"date":"2026-04-19T16:18:30","date_gmt":"2026-04-19T16:18:30","guid":{"rendered":"https:\/\/practice.prosmarthub.com\/?page_id=48"},"modified":"2026-04-19T17:36:41","modified_gmt":"2026-04-19T17:36:41","slug":"home","status":"publish","type":"page","link":"https:\/\/practice.prosmarthub.com\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"48\" class=\"elementor elementor-48\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-698b1cd e-flex e-con-boxed e-con e-parent\" data-id=\"698b1cd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-724bdc7 e-con-full e-flex e-con e-child\" data-id=\"724bdc7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-39e4810 elementor-widget elementor-widget-html\" data-id=\"39e4810\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <style>\r\n        .custom-image-carousel {\r\n            width: 100%;\r\n            max-width: 100%;\r\n            margin: 0 auto;\r\n            position: relative;\r\n            overflow: hidden;\r\n            opacity: 0;\r\n            transition: opacity 0.3s ease;\r\n        }\r\n        .custom-image-carousel.initialized {\r\n            opacity: 1;\r\n        }\r\n        .carousel-slides {\r\n            display: flex;\r\n            width: 100%;\r\n            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);\r\n        }\r\n        .carousel-slide {\r\n            flex: 0 0 100%;\r\n            width: 100%;\r\n            visibility: hidden;\r\n            opacity: 0;\r\n            transition: opacity 0.6s ease, visibility 0.6s ease;\r\n        }\r\n        .carousel-slide.active {\r\n            visibility: visible;\r\n            opacity: 1;\r\n        }\r\n        .carousel-slide img {\r\n            width: 100%;\r\n            height: 500px;\r\n            object-fit: cover;\r\n            border-radius: 10px;\r\n            display: block;\r\n            loading: eager;\r\n        }\r\n        .carousel-dots {\r\n            position: absolute;\r\n            bottom: 10px;\r\n            width: 100%;\r\n            text-align: center;\r\n            padding: 0;\r\n            margin: 0;\r\n            list-style: none;\r\n        }\r\n        .carousel-dots li {\r\n            display: inline-block;\r\n            margin: 0 5px;\r\n            width: 7px;\r\n            height: 7px;\r\n            background: #333;\r\n            opacity: 0.7;\r\n            border-radius: 50%;\r\n            cursor: pointer;\r\n            transition: background 0.3s ease, opacity 0.3s ease;\r\n        }\r\n        .carousel-dots li.active {\r\n            background: #007aff;\r\n            opacity: 1;\r\n        }\r\n        @media (max-width: 1024px) {\r\n            .carousel-slide img { height: 320px; }\r\n        }\r\n        @media (max-width: 767px) {\r\n            .carousel-slide img { height: 180px; }\r\n        }\r\n    <\/style>\r\n<\/head>\r\n<body>\r\n    <div class=\"custom-image-carousel\">\r\n        <div class=\"carousel-slides\"><\/div>\r\n        <ul class=\"carousel-dots\"><\/ul>\r\n    <\/div>\r\n\r\n    <script>\r\n        document.addEventListener('DOMContentLoaded', function() {\r\n            const carousel = document.querySelector('.custom-image-carousel');\r\n            const slidesContainer = carousel.querySelector('.carousel-slides');\r\n            const dotsContainer = carousel.querySelector('.carousel-dots');\r\n            let currentIndex = 0;\r\n\r\n            const imageUrls = [\r\n                {\r\n                    src: 'https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/Untitled-2560-x-1250-px-scaled.avif',\r\n                    link: 'https:\/\/ishtarishop.com\/shop'\r\n                },\r\n                {\r\n                    src: 'https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/Untitled-2560-x-1198-px-2560-x-1250-px-scaled.avif',\r\n                    link: 'https:\/\/ishtarishop.com\/shop'\r\n                },\r\n                {\r\n                    src: 'https:\/\/openmindbd.com\/wp-content\/uploads\/2025\/08\/gb_banner.webp',\r\n                    link: 'https:\/\/openmindbd.com\/product-category\/bag\/'\r\n                },\r\n                {\r\n                    src: 'https:\/\/openmindbd.com\/wp-content\/uploads\/2025\/08\/gb_banner.webp',\r\n                    link: 'https:\/\/openmindbd.com\/shop'\r\n                }\r\n            ];\r\n\r\n            imageUrls.forEach(item => {\r\n                const slide = document.createElement('div');\r\n                slide.className = 'carousel-slide';\r\n                slide.innerHTML = `\r\n                    <a href=\"${item.link}\" target=\"_blank\" rel=\"noopener\">\r\n                        <img decoding=\"async\" src=\"${item.src}\" alt=\"carousel image\">\r\n                    <\/a>`;\r\n                slidesContainer.appendChild(slide);\r\n            });\r\n\r\n            const slides = carousel.querySelectorAll('.carousel-slide');\r\n            const totalSlides = slides.length;\r\n\r\n            let imagesLoaded = 0;\r\n            function preloadImages(callback) {\r\n                imageUrls.forEach(item => {\r\n                    const img = new Image();\r\n                    img.src = item.src;\r\n                    img.onload = img.onerror = () => {\r\n                        imagesLoaded++;\r\n                        if (imagesLoaded === totalSlides) callback();\r\n                    };\r\n                });\r\n            }\r\n\r\n            for (let i = 0; i < totalSlides; i++) {\r\n                const dot = document.createElement('li');\r\n                dot.addEventListener('click', () => goToSlide(i));\r\n                dotsContainer.appendChild(dot);\r\n            }\r\n            const dots = dotsContainer.querySelectorAll('li');\r\n\r\n            function updateCarousel() {\r\n                slides.forEach((slide, index) => {\r\n                    slide.classList.toggle('active', index === currentIndex);\r\n                });\r\n                dots.forEach((dot, index) => {\r\n                    dot.classList.toggle('active', index === currentIndex);\r\n                });\r\n                slidesContainer.style.transform = `translateX(-${currentIndex * 100}%)`;\r\n            }\r\n\r\n            function goToSlide(index) {\r\n                currentIndex = (index + totalSlides) % totalSlides;\r\n                updateCarousel();\r\n            }\r\n\r\n            function startAutoplay() {\r\n                return setInterval(() => {\r\n                    currentIndex = (currentIndex + 1) % totalSlides;\r\n                    updateCarousel();\r\n                }, 3000);\r\n            }\r\n\r\n            preloadImages(() => {\r\n                carousel.classList.add('initialized');\r\n                updateCarousel();\r\n                let autoplayInterval = startAutoplay();\r\n\r\n                carousel.addEventListener('mouseenter', () => clearInterval(autoplayInterval));\r\n                carousel.addEventListener('mouseleave', () => autoplayInterval = startAutoplay());\r\n            });\r\n        });\r\n    <\/script>\r\n<\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b98f38a e-con-full e-flex e-con e-child\" data-id=\"b98f38a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a8ff285 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"a8ff285\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-661abb1 elementor-widget elementor-widget-image\" data-id=\"661abb1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"2560\" height=\"2560\" src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/xstore\/xstore-placeholder-1x1.png\" class=\"attachment-full size-full wp-image-77 lazyload lazyload-simple et-lazyload-fadeIn\" alt=\"\" sizes=\"(max-width: 2560px) 100vw, 2560px\" data-src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-scaled.avif\" data-srcset=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-scaled.avif 2560w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-300x300.avif 300w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-1024x1024.avif 1024w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-150x150.avif 150w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-768x768.avif 768w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-1536x1536.avif 1536w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-2048x2048.avif 2048w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-600x600.avif 600w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-100x100.avif 100w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-1x1.avif 1w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/combo-10x10.avif 10w\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3c5ffef e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"3c5ffef\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1732617 elementor-widget elementor-widget-image\" data-id=\"1732617\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1485\" height=\"560\" src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/elementor\/thumbs\/xstore-placeholder-rm8ue4kt1jrprbzkez6ar4zhr9oxzjo8e5nvbnne5k.png\" class=\"attachment-full size-full wp-image-25 lazyload lazyload-simple et-lazyload-fadeIn\" alt=\"\" sizes=\"(max-width: 1485px) 100vw, 1485px\" data-src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902.png\" data-srcset=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902.png 1485w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902-300x113.png 300w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902-1024x386.png 1024w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902-768x290.png 768w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902-600x226.png 600w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902-1x1.png 1w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtari-final-logo-scaled-e1776613872902-10x4.png 10w\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2b6aae7 e-flex e-con-boxed e-con e-parent\" data-id=\"2b6aae7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fa8799f elementor-widget elementor-widget-heading\" data-id=\"fa8799f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u09aa\u09cd\u09b0\u09cb\u09a1\u09be\u0995\u09cd\u099f \u0995\u09c7\u099f\u09be\u0997\u09b0\u09bf\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a3c3a08 elementor-widget elementor-widget-shortcode\" data-id=\"a3c3a08\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">         <div class=\"category-carousel-container\">\n            <div class=\"category-carousel swiper\">\n                <div class=\"swiper-wrapper\">\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%86%e0%a6%9a%e0%a6%be%e0%a6%b0-pickle\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u0986\u099a\u09be\u09b0-Pickle<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%95%e0%a6%ae%e0%a7%8d%e0%a6%ac%e0%a7%8b-combo\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u0995\u09ae\u09cd\u09ac\u09cb-combo<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%95%e0%a6%bf%e0%a6%b8%e0%a6%ae%e0%a6%bf%e0%a6%b8-raisin\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u0995\u09bf\u09b8\u09ae\u09bf\u09b8-Raisin<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%96%e0%a7%87%e0%a6%9c%e0%a7%81%e0%a6%b0-dates\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u0996\u09c7\u099c\u09c1\u09b0-Dates<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%97%e0%a7%81%e0%a6%a1%e0%a6%bc-molasses\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u0997\u09c1\u09dc-Molasses<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%a4%e0%a7%87%e0%a6%b2-oils\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u09a4\u09c7\u09b2-oils<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%ac%e0%a6%be%e0%a6%a6%e0%a6%be%e0%a6%ae-nuts\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u09ac\u09be\u09a6\u09be\u09ae-Nuts<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%ae%e0%a6%a7%e0%a7%81-honey\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u09ae\u09a7\u09c1-Honey<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%ae%e0%a6%b8%e0%a6%b2%e0%a6%be-spice\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u09ae\u09b8\u09b2\u09be-Spice<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%b8%e0%a7%80%e0%a6%a1%e0%a6%b8-seeds\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u09b8\u09c0\u09a1\u09b8-Seeds<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%b9%e0%a6%be%e0%a6%b0%e0%a7%8d%e0%a6%ac%e0%a6%b8-herbs\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u09b9\u09be\u09b0\u09cd\u09ac\u09b8-Herbs<\/h3>\n                            <\/a>\n                        <\/div>\n                                            <div class=\"swiper-slide category-item\">\n                            <a href=\"https:\/\/practice.prosmarthub.com\/?product_cat=%e0%a6%b9%e0%a7%8b%e0%a6%ae%e0%a6%ae%e0%a7%87%e0%a6%a1-homemade\">\n                                <div class=\"category-circle\" style=\"background-image:url('https:\/\/practice.prosmarthub.com\/wp-content\/plugins\/woocommerce\/assets\/images\/placeholder.webp')\"><\/div>\n                                <h3 class=\"category-title\">\u09b9\u09cb\u09ae\u09ae\u09c7\u09a1-Homemade<\/h3>\n                            <\/a>\n                        <\/div>\n                                    <\/div>\n                <div class=\"swiper-pagination\"><\/div>\n            <\/div>\n        <\/div>\n    \n<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7c8ab9b e-flex e-con-boxed e-con e-parent\" data-id=\"7c8ab9b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ed8b9f8 elementor-widget elementor-widget-heading\" data-id=\"ed8b9f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u09ac\u09c7\u09b8\u09cd\u099f \u09b8\u09c7\u09b2\u09be\u09b0 \u09aa\u09cd\u09b0\u09cb\u09a1\u09be\u0995\u09cd\u099f\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6c7ba2d etheme-elementor-product-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-etheme_product_carousel\" data-id=\"6c7ba2d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_per_view&quot;:&quot;5&quot;,&quot;slides_per_view_tablet&quot;:&quot;3&quot;,&quot;slides_per_view_mobile&quot;:&quot;2&quot;,&quot;slides_per_group&quot;:&quot;2&quot;,&quot;slides_per_group_mobile&quot;:&quot;2&quot;,&quot;space_between&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:6,&quot;sizes&quot;:[]},&quot;space_between_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:5,&quot;sizes&quot;:[]},&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:3000,&quot;autoheight&quot;:&quot;yes&quot;,&quot;space_between_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;navigation&quot;:&quot;arrows&quot;}\" data-widget_type=\"etheme_product_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t                <div class=\"etheme-elementor-swiper-entry swiper-entry middle-inbox arrows-hover\">\n                    <div class=\"swiper etheme-elementor-slider\" dir=\"ltr\">\n                        <div class=\"swiper-wrapper\">\n                            <div class=\"swiper-slide\">        \n        <div class=\"etheme-product-grid-item etheme-product-hover-mask3 etheme-product-hover-mode-white etheme-product-image-hover-zoom-in product type-product post-97 status-publish first instock product_cat--seeds has-post-thumbnail featured shipping-taxable purchasable product-type-variable has-default-attributes\">\n        \n        <div class=\"etheme-product-grid-image\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b8%e0%a7%80%e0%a6%a1%e0%a6%ae%e0%a6%bf%e0%a6%95%e0%a7%8d%e0%a6%b8-seedmix\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/xstore\/xstore-placeholder-1x1.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail lazyload lazyload-simple et-lazyload-fadeIn\" alt=\"\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-Seedmix\" sizes=\"(max-width: 300px) 100vw, 300px\" data-src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-300x300.webp\" data-srcset=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-300x300.webp 300w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-150x150.webp 150w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-768x768.webp 768w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-600x600.webp 600w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-100x100.webp 100w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-1x1.webp 1w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1-10x10.webp 10w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-\u09a8\u09bf\u0989-1.webp 1024w\" \/><\/a>                         <footer>\n                             <div class=\"footer-inner\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b8%e0%a7%80%e0%a6%a1%e0%a6%ae%e0%a6%bf%e0%a6%95%e0%a7%8d%e0%a6%b8-seedmix\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_97\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button\" data-product_id=\"97\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-Seedmix&rdquo;\" rel=\"nofollow\" data-product_name=\"\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-Seedmix\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_97\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n<\/div>                         <\/footer>\n                 <\/div><div class=\"etheme-product-grid-content\"><h2 class=\"woocommerce-loop-product__title etheme-product-grid-title\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b8%e0%a7%80%e0%a6%a1%e0%a6%ae%e0%a6%bf%e0%a6%95%e0%a7%8d%e0%a6%b8-seedmix\">\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-Seedmix<\/a><\/h2><div class=\"star-rating-wrapper\"><\/div>\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi>280.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span> <span aria-hidden=\"true\">&ndash;<\/span> <span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi>1,000.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span><span class=\"screen-reader-text\">Price range: 280.00&#2547;&nbsp; through 1,000.00&#2547;&nbsp;<\/span><\/span>\n<a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b8%e0%a7%80%e0%a6%a1%e0%a6%ae%e0%a6%bf%e0%a6%95%e0%a7%8d%e0%a6%b8-seedmix\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_97\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button etheme-product-grid-button\" data-product_id=\"97\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-Seedmix&rdquo;\" rel=\"nofollow\" data-product_name=\"\u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-Seedmix\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><span class=\"button-text\">Select options<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_97\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n<\/div>        <\/div>\n        <\/div><div class=\"swiper-slide\">        \n        <div class=\"etheme-product-grid-item etheme-product-hover-mask3 etheme-product-hover-mode-white etheme-product-image-hover-zoom-in product type-product post-98 status-publish instock product_cat--nuts product_cat--honey has-post-thumbnail sale featured shipping-taxable purchasable product-type-simple\">\n        \n        <div class=\"etheme-product-grid-image\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b9%e0%a6%be%e0%a6%a8%e0%a6%bf-%e0%a6%a8%e0%a6%be%e0%a6%9f%e0%a6%b8-honey-nuts-%e0%a7%ab%e0%a7%a6%e0%a7%a6-%e0%a6%97%e0%a7%8d%e0%a6%b0%e0%a6%be%e0%a6%ae\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/xstore\/xstore-placeholder-1x1.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail lazyload lazyload-simple et-lazyload-fadeIn\" alt=\"\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae\" sizes=\"(max-width: 300px) 100vw, 300px\" data-src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-300x300.webp\" data-srcset=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-300x300.webp 300w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-150x150.webp 150w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-768x768.webp 768w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-600x600.webp 600w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-100x100.webp 100w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-1x1.webp 1w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1-10x10.webp 10w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u09b9\u09be\u09a8\u09bf-\u09a8\u09be\u099f\u09b8-\u09ae\u09c7\u0987\u09a8-1.webp 1024w\" \/><\/a>                         <footer>\n                             <div class=\"footer-inner\"><a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F48&#038;add-to-cart=98\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_98\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"98\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae&rdquo; has been added to your cart\" data-product_name=\"\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae\" role=\"button\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_98\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n<\/div>                         <\/footer>\n                 <\/div><div class=\"etheme-product-grid-content\"><h2 class=\"woocommerce-loop-product__title etheme-product-grid-title\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b9%e0%a6%be%e0%a6%a8%e0%a6%bf-%e0%a6%a8%e0%a6%be%e0%a6%9f%e0%a6%b8-honey-nuts-%e0%a7%ab%e0%a7%a6%e0%a7%a6-%e0%a6%97%e0%a7%8d%e0%a6%b0%e0%a6%be%e0%a6%ae\">\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae<\/a><\/h2><div class=\"star-rating-wrapper\"><\/div>\n\t<span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>850.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span><\/del> <span class=\"screen-reader-text\">Original price was: 850.00&#2547;&nbsp;.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi>750.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span><\/ins><span class=\"screen-reader-text\">Current price is: 750.00&#2547;&nbsp;.<\/span><\/span>\n<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F48&#038;add-to-cart=98\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_98\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart etheme-product-grid-button\" data-product_id=\"98\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae&rdquo; has been added to your cart\" data-product_name=\"\u09b9\u09be\u09a8\u09bf \u09a8\u09be\u099f\u09b8-Honey Nuts-\u09eb\u09e6\u09e6 \u0997\u09cd\u09b0\u09be\u09ae\" role=\"button\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><span class=\"button-text\">Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_98\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n<\/div>        <\/div>\n        <\/div><div class=\"swiper-slide\">        \n        <div class=\"etheme-product-grid-item etheme-product-hover-mask3 etheme-product-hover-mode-white etheme-product-image-hover-zoom-in product type-product post-99 status-publish instock product_cat--homemade has-post-thumbnail featured shipping-taxable purchasable product-type-variable has-default-attributes\">\n        \n        <div class=\"etheme-product-grid-image\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b9%e0%a7%8b%e0%a6%ae%e0%a6%ae%e0%a7%87%e0%a6%a1-%e0%a6%9a%e0%a6%be%e0%a6%a8%e0%a6%be%e0%a6%9a%e0%a7%81%e0%a6%b0-homemade-chanachur\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/xstore\/xstore-placeholder-1x1.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail lazyload lazyload-simple et-lazyload-fadeIn\" alt=\"\u09b9\u09cb\u09ae\u09ae\u09c7\u09a1 \u099a\u09be\u09a8\u09be\u099a\u09c1\u09b0-Homemade Chanachur\" sizes=\"(max-width: 300px) 100vw, 300px\" data-src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-300x300.webp\" data-srcset=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-300x300.webp 300w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-150x150.webp 150w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-768x768.webp 768w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-600x600.webp 600w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-100x100.webp 100w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-1x1.webp 1w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1-10x10.webp 10w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/ishtarishop-chanachur-1-1.webp 1024w\" \/><\/a>                         <footer>\n                             <div class=\"footer-inner\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b9%e0%a7%8b%e0%a6%ae%e0%a6%ae%e0%a7%87%e0%a6%a1-%e0%a6%9a%e0%a6%be%e0%a6%a8%e0%a6%be%e0%a6%9a%e0%a7%81%e0%a6%b0-homemade-chanachur\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_99\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button\" data-product_id=\"99\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;\u09b9\u09cb\u09ae\u09ae\u09c7\u09a1 \u099a\u09be\u09a8\u09be\u099a\u09c1\u09b0-Homemade Chanachur&rdquo;\" rel=\"nofollow\" data-product_name=\"\u09b9\u09cb\u09ae\u09ae\u09c7\u09a1 \u099a\u09be\u09a8\u09be\u099a\u09c1\u09b0-Homemade Chanachur\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_99\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n<\/div>                         <\/footer>\n                 <\/div><div class=\"etheme-product-grid-content\"><h2 class=\"woocommerce-loop-product__title etheme-product-grid-title\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b9%e0%a7%8b%e0%a6%ae%e0%a6%ae%e0%a7%87%e0%a6%a1-%e0%a6%9a%e0%a6%be%e0%a6%a8%e0%a6%be%e0%a6%9a%e0%a7%81%e0%a6%b0-homemade-chanachur\">\u09b9\u09cb\u09ae\u09ae\u09c7\u09a1 \u099a\u09be\u09a8\u09be\u099a\u09c1\u09b0-Homemade Chanachur<\/a><\/h2><div class=\"star-rating-wrapper\"><\/div>\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi>220.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span> <span aria-hidden=\"true\">&ndash;<\/span> <span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi>750.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span><span class=\"screen-reader-text\">Price range: 220.00&#2547;&nbsp; through 750.00&#2547;&nbsp;<\/span><\/span>\n<a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%b9%e0%a7%8b%e0%a6%ae%e0%a6%ae%e0%a7%87%e0%a6%a1-%e0%a6%9a%e0%a6%be%e0%a6%a8%e0%a6%be%e0%a6%9a%e0%a7%81%e0%a6%b0-homemade-chanachur\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_99\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button etheme-product-grid-button\" data-product_id=\"99\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;\u09b9\u09cb\u09ae\u09ae\u09c7\u09a1 \u099a\u09be\u09a8\u09be\u099a\u09c1\u09b0-Homemade Chanachur&rdquo;\" rel=\"nofollow\" data-product_name=\"\u09b9\u09cb\u09ae\u09ae\u09c7\u09a1 \u099a\u09be\u09a8\u09be\u099a\u09c1\u09b0-Homemade Chanachur\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><span class=\"button-text\">Select options<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_99\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n<\/div>        <\/div>\n        <\/div><div class=\"swiper-slide\">        \n        <div class=\"etheme-product-grid-item etheme-product-hover-mask3 etheme-product-hover-mode-white etheme-product-image-hover-zoom-in product type-product post-244 status-publish last instock product_cat--oils has-post-thumbnail featured shipping-taxable purchasable product-type-variable has-default-attributes\">\n        \n        <div class=\"etheme-product-grid-image\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%97%e0%a6%be%e0%a6%93%e0%a6%af%e0%a6%bc%e0%a6%be-%e0%a6%98%e0%a6%bf-gawa-ghee\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/xstore\/xstore-placeholder-1x1.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail lazyload lazyload-simple et-lazyload-fadeIn\" alt=\"\u0997\u09be\u0993\u09df\u09be \u0998\u09bf-Gawa Ghee\" sizes=\"(max-width: 300px) 100vw, 300px\" data-src=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-300x300.webp\" data-srcset=\"https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-300x300.webp 300w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-1024x1024.webp 1024w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-150x150.webp 150w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-768x768.webp 768w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-1536x1536.webp 1536w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-2048x2048.webp 2048w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-600x600.webp 600w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-100x100.webp 100w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-1x1.webp 1w, https:\/\/practice.prosmarthub.com\/wp-content\/uploads\/2026\/04\/\u0997\u09be\u0993\u09af\u09bc\u09be-\u0998\u09bf-scaled-2-10x10.webp 10w\" \/><\/a>                         <footer>\n                             <div class=\"footer-inner\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%97%e0%a6%be%e0%a6%93%e0%a6%af%e0%a6%bc%e0%a6%be-%e0%a6%98%e0%a6%bf-gawa-ghee\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_244\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button\" data-product_id=\"244\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;\u0997\u09be\u0993\u09df\u09be \u0998\u09bf-Gawa Ghee&rdquo;\" rel=\"nofollow\" data-product_name=\"\u0997\u09be\u0993\u09df\u09be \u0998\u09bf-Gawa Ghee\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_244\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n<\/div>                         <\/footer>\n                 <\/div><div class=\"etheme-product-grid-content\"><h2 class=\"woocommerce-loop-product__title etheme-product-grid-title\"><a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%97%e0%a6%be%e0%a6%93%e0%a6%af%e0%a6%bc%e0%a6%be-%e0%a6%98%e0%a6%bf-gawa-ghee\">\u0997\u09be\u0993\u09df\u09be \u0998\u09bf-Gawa Ghee<\/a><\/h2><div class=\"star-rating-wrapper\"><\/div>\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi>380.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span> <span aria-hidden=\"true\">&ndash;<\/span> <span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi>1,500.00<span class=\"woocommerce-Price-currencySymbol\">&#2547;&nbsp;<\/span><\/bdi><\/span><span class=\"screen-reader-text\">Price range: 380.00&#2547;&nbsp; through 1,500.00&#2547;&nbsp;<\/span><\/span>\n<a href=\"https:\/\/practice.prosmarthub.com\/?product=%e0%a6%97%e0%a6%be%e0%a6%93%e0%a6%af%e0%a6%bc%e0%a6%be-%e0%a6%98%e0%a6%bf-gawa-ghee\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_244\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button etheme-product-grid-button\" data-product_id=\"244\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;\u0997\u09be\u0993\u09df\u09be \u0998\u09bf-Gawa Ghee&rdquo;\" rel=\"nofollow\" data-product_name=\"\u0997\u09be\u0993\u09df\u09be \u0998\u09bf-Gawa Ghee\"><svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\n<path d=\"M23.76 4.248c-0.096-0.096-0.24-0.24-0.504-0.24h-18.48l-0.48-2.4c-0.024-0.288-0.384-0.528-0.624-0.528h-2.952c-0.384 0-0.624 0.264-0.624 0.624s0.264 0.648 0.624 0.648h2.424l2.328 11.832c0.312 1.608 1.848 2.856 3.48 2.856h11.28c0.384 0 0.624-0.264 0.624-0.624s-0.264-0.624-0.624-0.624h-11.16c-0.696 0-1.344-0.312-1.704-0.816l14.064-1.92c0.264 0 0.528-0.24 0.528-0.528l1.968-7.824v-0.024c-0.024-0.048-0.024-0.288-0.168-0.432zM22.392 5.184l-1.608 6.696-14.064 1.824-1.704-8.52h17.376zM8.568 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM9.888 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.32-0.624-1.32-1.32 0.624-1.32 1.32-1.32 1.32 0.624 1.32 1.32zM18.36 17.736c-1.464 0-2.592 1.128-2.592 2.592s1.128 2.592 2.592 2.592c1.464 0 2.592-1.128 2.592-2.592s-1.128-2.592-2.592-2.592zM19.704 20.328c0 0.696-0.624 1.32-1.32 1.32s-1.344-0.6-1.344-1.32 0.624-1.32 1.32-1.32 1.344 0.624 1.344 1.32z\"><\/path>\n<\/svg><span class=\"button-text\">Select options<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_244\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n<\/div>        <\/div>\n        <\/div>                        <\/div>\n                        \n                        \t\t<div class=\"swiper-button-prev swiper-custom-left et-swiper-elementor-nav type-arrow style-4\"><\/div>\n\t\t<div class=\"swiper-button-next swiper-custom-right et-swiper-elementor-nav type-arrow style-4\"><\/div>\n\t\t                    <\/div>\n                                    <\/div>\n                    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"woocommerce elementor-element elementor-element-8b91fb2 elementor-grid-5 elementor-grid-tablet-3 elementor-grid-mobile-2 elementor-widget elementor-widget-loop-grid\" data-id=\"8b91fb2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_skin&quot;:&quot;product&quot;,&quot;template_id&quot;:&quot;532&quot;,&quot;columns&quot;:5,&quot;columns_tablet&quot;:3,&quot;columns_mobile&quot;:2,&quot;row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:7,&quot;sizes&quot;:[]},&quot;edit_handle_selector&quot;:&quot;[data-elementor-type=\\&quot;loop-item\\&quot;]&quot;,&quot;row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-grid.product\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-loop-container elementor-grid\" role=\"list\">\n\t\t<style id=\"loop-532\"><\/style>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u09aa\u09cd\u09b0\u09cb\u09a1\u09be\u0995\u09cd\u099f \u0995\u09c7\u099f\u09be\u0997\u09b0\u09bf \u09ac\u09c7\u09b8\u09cd\u099f \u09b8\u09c7\u09b2\u09be\u09b0 \u09aa\u09cd\u09b0\u09cb\u09a1\u09be\u0995\u09cd\u099f This product has multiple variants. The options may be chosen on the product page \u09b8\u09c0\u09a1\u09ae\u09bf\u0995\u09cd\u09b8-Seedmix 280.00&#2547;&nbsp; &ndash; 1,000.00&#2547;&nbsp;Price range: 280.00&#2547;&nbsp;&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-48","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=\/wp\/v2\/pages\/48","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=48"}],"version-history":[{"count":52,"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=\/wp\/v2\/pages\/48\/revisions"}],"predecessor-version":[{"id":560,"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=\/wp\/v2\/pages\/48\/revisions\/560"}],"wp:attachment":[{"href":"https:\/\/practice.prosmarthub.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=48"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}