{"id":29554,"date":"2025-11-05T09:12:39","date_gmt":"2025-11-05T09:12:39","guid":{"rendered":"https:\/\/viswaveda.in\/?page_id=29554"},"modified":"2025-11-11T11:52:03","modified_gmt":"2025-11-11T11:52:03","slug":"home-fashion-flat-2","status":"publish","type":"page","link":"https:\/\/viswaveda.in\/?page_id=29554","title":{"rendered":"Home Fashion-flat"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"29554\" class=\"elementor elementor-29554\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e96b2b6 e-con-full wd-section-stretch e-flex e-con e-parent\" data-id=\"e96b2b6\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aaade3d elementor-widget elementor-widget-html\" data-id=\"aaade3d\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"custom-slider\">\r\n   <!-- Slide 2: Video -->\r\n    <div class=\"slide\" data-type=\"video\">\r\n        <video autoplay muted loop playsinline preload=\"auto\" id=\"sliderVideo\"\r\n               poster=\"\">\r\n            <source src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/11\/viswaveda-ad-online-video-cutter.com-1.webm\" type=\"video\/webm\">\r\n        <\/video>\r\n    <\/div>\r\n    <!-- \u2705 New Slide 1: Banner Image -->\r\n    <div class=\"slide active\" data-type=\"image\"\r\n         style=\"background-image: url('https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/11\/wmremove-transformed-2.png');\">\r\n    <\/div>\r\n\r\n    \r\n\r\n    <!-- Slide 3: Image -->\r\n    <div class=\"slide\" data-type=\"image\"\r\n         style=\"background-image: url('https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/11\/slider333.webp');\">\r\n    <\/div>\r\n\r\n    <!-- Slider dots -->\r\n    <div class=\"slider-dots\"><\/div>\r\n<\/div>\r\n\r\n<style>\r\n    @import url('https:\/\/fonts.googleapis.com\/css2?family=Urbanist:wght@400;600;700&display=swap');\r\n\r\n    .custom-slider {\r\n        position: relative;\r\n        width: 100%;\r\n        height: 650px;\r\n        overflow: hidden;\r\n        font-family: 'Urbanist', sans-serif;\r\n    }\r\n\r\n    .custom-slider .slide {\r\n        position: absolute;\r\n        width: 100%;\r\n        height: 100%;\r\n        top: 0;\r\n        left: 0;\r\n        opacity: 0;\r\n        transition: opacity 1s ease, transform 1s ease;\r\n        background-position: center;\r\n        background-size: cover;\r\n        background-repeat: no-repeat;\r\n        transform: scale(1.05);\r\n    }\r\n\r\n    .custom-slider .slide.active {\r\n        opacity: 1;\r\n        z-index: 2;\r\n        transform: scale(1);\r\n    }\r\n\r\n    .custom-slider .slide[data-type=\"video\"] video {\r\n        width: 100%;\r\n        height: 100%;\r\n        object-fit: cover;\r\n    }\r\n\r\n    \/* Pagination Dots *\/\r\n    .slider-dots {\r\n        position: absolute;\r\n        bottom: 20px;\r\n        left: 50%;\r\n        transform: translateX(-50%);\r\n        display: flex;\r\n        gap: 10px;\r\n        z-index: 10;\r\n    }\r\n\r\n    .slider-dots span {\r\n        width: 12px;\r\n        height: 12px;\r\n        border-radius: 50%;\r\n        background: rgba(255, 255, 255, 0.6);\r\n        transition: all 0.3s;\r\n        cursor: pointer;\r\n    }\r\n\r\n    .slider-dots span.active {\r\n        background: #BD0606;\r\n        transform: scale(1.4);\r\n    }\r\n\r\n    \/* Responsive *\/\r\n    @media (max-width: 1024px) {\r\n        .custom-slider { height: 480px; }\r\n    }\r\n\r\n    @media (max-width: 768px) {\r\n        .custom-slider { height: 400px; }\r\n        .slider-dots { bottom: 15px; }\r\n    }\r\n\r\n    @media (max-width: 480px) {\r\n        .custom-slider { height: 250px; }\r\n        .slider-dots span { width: 8px; height: 8px; }\r\n    }\r\n<\/style>\r\n\r\n<script>\r\n    document.addEventListener(\"DOMContentLoaded\", function () {\r\n        const slides = document.querySelectorAll(\".custom-slider .slide\");\r\n        const dotsContainer = document.querySelector(\".slider-dots\");\r\n        let current = 0;\r\n        let interval = setInterval(nextSlide, 7000);\r\n\r\n        \/\/ Create dots\r\n        slides.forEach((_, i) => {\r\n            const dot = document.createElement(\"span\");\r\n            dot.addEventListener(\"click\", () => {\r\n                current = i;\r\n                showSlide(current);\r\n                resetInterval();\r\n            });\r\n            dotsContainer.appendChild(dot);\r\n        });\r\n\r\n        const dots = dotsContainer.querySelectorAll(\"span\");\r\n\r\n        function showSlide(index) {\r\n            slides.forEach((slide, i) => {\r\n                slide.classList.remove(\"active\");\r\n                dots[i].classList.remove(\"active\");\r\n            });\r\n            slides[index].classList.add(\"active\");\r\n            dots[index].classList.add(\"active\");\r\n\r\n            if (slides[index].dataset.type === \"video\") {\r\n                const video = slides[index].querySelector(\"video\");\r\n                video.play().catch(() => {});\r\n            } else {\r\n                slides.forEach(s => {\r\n                    const v = s.querySelector(\"video\");\r\n                    if (v) v.pause();\r\n                });\r\n            }\r\n        }\r\n\r\n        function nextSlide() {\r\n            current = (current + 1) % slides.length;\r\n            showSlide(current);\r\n        }\r\n\r\n        function resetInterval() {\r\n            clearInterval(interval);\r\n            interval = setInterval(nextSlide, 7000);\r\n        }\r\n\r\n        showSlide(current);\r\n    });\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7d8241b elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-shortcode\" data-id=\"7d8241b\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\n\t\t\t\t<p class=\"rs-p-wp-fix\"><\/p>\n\t\t\t\t<sr7-module data-alias=\"slider-1\" data-id=\"1\" id=\"SR7_1_1\" class=\"rs-ov-hidden\" data-version=\"6.7.38\">\n\t\t\t\t\t<sr7-adjuster><\/sr7-adjuster>\n\t\t\t\t\t<sr7-content>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_1_1-3\" data-key=\"3\">\n\t\t\t\t\t\t\t<sr7-bg id=\"SR7_1_1-3-1\" class=\"sr7-layer\"><noscript><img decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/bella-pon-fruitsia-qDP8TRQM_xI-unsplash-1-scaled.webp\" alt=\"\" title=\"bella-pon-fruitsia-qDP8TRQM_xI-unsplash (1)\"><\/noscript><\/sr7-bg>\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_1_1-4\" data-key=\"4\">\n\t\t\t\t\t\t\t<sr7-bg id=\"SR7_1_1-4-4\" class=\"sr7-layer\"><noscript><img decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/young-indian-woman-wearing-sari-scaled.jpg\" alt=\"\" title=\"young-indian-woman-wearing-sari\"><\/noscript><\/sr7-bg>\n\t\t\t\t\t\t\t<sr7-txt id=\"SR7_1_1-4-1\" class=\"sr7-layer\">Timeless Elegance in \nGadwal Silk<\/sr7-txt>\n\t\t\t\t\t\t\t<sr7-txt id=\"SR7_1_1-4-2\" class=\"sr7-layer\">Experience the rich heritage and intricate craftsmanship of \nauthentic Gadwal sarees.<\/sr7-txt>\n\t\t\t\t\t\t\t<a id=\"SR7_1_1-4-3\" class=\"sr7-layer\" href=\"https:\/\/viswaveda.in\/product-category\/wedding\/\" target=\"_self\">Shop Now<\/a>\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_1_1-6\" data-key=\"6\">\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_1_1-2\" data-key=\"2\">\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t<\/sr7-content>\n\t\t\t\t\t<image_lists style=\"display:none\">\n\t\t\t\t\t\t<img data-src=\"\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/bella-pon-fruitsia-qDP8TRQM_xI-unsplash-1-scaled.webp\" data-libid=\"29097\" data-lib=\"medialibrary\" title=\"bella-pon-fruitsia-qDP8TRQM_xI-unsplash (1)\" width=\"0\" height=\"0\" data-dbsrc=\"Ly92aXN3YXZlZGEuaW4vd3AtY29udGVudC91cGxvYWRzLzIwMjUvMTAvYmVsbGEtcG9uLWZydWl0c2lhLXFEUDhUUlFNX3hJLXVuc3BsYXNoLTEtc2NhbGVkLndlYnA=\"\/>\n\t\t\t\t\t\t<img data-src=\"\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/young-indian-woman-wearing-sari-scaled.jpg\" data-libid=\"29354\" data-lib=\"medialibrary\" title=\"young-indian-woman-wearing-sari\" width=\"0\" height=\"0\" data-dbsrc=\"Ly92aXN3YXZlZGEuaW4vd3AtY29udGVudC91cGxvYWRzLzIwMjUvMTAveW91bmctaW5kaWFuLXdvbWFuLXdlYXJpbmctc2FyaS1zY2FsZWQuanBn\"\/>\n\t\t\t\t\t<\/image_lists>\n\t\t\t\t<\/sr7-module>\n\t\t\t\t<script>\n\t\t\t\t\tSR7.PMH ??={}; SR7.PMH[\"SR7_1_1\"] = {cn:100,state:false,fn: function() { if (_tpt!==undefined && _tpt.prepareModuleHeight !== undefined) {  _tpt.prepareModuleHeight({id:\"SR7_1_1\",el:[479.988,479.988,768,960,720],type:'standard',shdw:'0',gh:[480,480,417,317,196],gw:[1180,1180,1024,778,480],vpt:['-100px'],size:{fullWidth:true, fullHeight:false},mh:'0',onh:0,onw:0,bg:{color:'{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}'}});   SR7.PMH[\"SR7_1_1\"].state=true;} else if(SR7.PMH[\"SR7_1_1\"].cn-->0)\tsetTimeout( SR7.PMH[\"SR7_1_1\"].fn,19);}};SR7.PMH[\"SR7_1_1\" ].fn();\n\t\t\t\t<\/script>\n<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-239fda6 e-con-full wd-section-stretch e-flex e-con e-parent\" data-id=\"239fda6\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e964c8 wd-width-100 elementor-widget elementor-widget-wd_title\" data-id=\"2e964c8\" data-element_type=\"widget\" data-widget_type=\"wd_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"title-wrapper wd-set-mb reset-last-child wd-title-color-default wd-title-style-default wd-title-size-large text-center\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"title-subtitle subtitle-color-default subtitle-style-default wd-fontsize-xs\">\n\t\t\t\t\tWELCOME TO VISWAVEDA\t\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"liner-continer\">\n\t\t\t\t<h4 class=\"woodmart-title-container title wd-fontsize-xxl\">Explore Our Saree Collections<\/h4> \n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"title-after_title reset-last-child wd-fontsize-s\">\n\t\t\t\t\t<p>Beautiful Handloom and\u00a0Handcrafted sarees collection<\/p>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-dde2194 e-con-full wd-section-stretch e-flex e-con e-parent\" data-id=\"dde2194\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5cbdeb3 elementor-widget__width-initial elementor-widget elementor-widget-ucaddon_card_carousel\" data-id=\"5cbdeb3\" data-element_type=\"widget\" data-widget_type=\"ucaddon_card_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Card Carousel -->\n\t\t<link id='font-awesome-css' href='https:\/\/viswaveda.in\/wp-content\/plugins\/unlimited-elements-for-elementor\/assets_libraries\/font-awesome6\/fontawesome-all.min.css' type='text\/css' rel='stylesheet' >\n\t\t<link id='font-awesome-4-shim-css' href='https:\/\/viswaveda.in\/wp-content\/plugins\/unlimited-elements-for-elementor\/assets_libraries\/font-awesome6\/fontawesome-v4-shims.min.css' type='text\/css' rel='stylesheet' >\n\t\t<link id='owl-carousel-css' href='https:\/\/viswaveda.in\/wp-content\/plugins\/unlimited-elements-for-elementor\/assets_libraries\/owl-carousel-new\/assets\/owl.carousel.css' type='text\/css' rel='stylesheet' >\n\t\t<link id='uc_ac_assets_file_animate_css_77907-css' href='https:\/\/viswaveda.in\/wp-content\/uploads\/ac_assets\/uc_classic_carousel\/animate.css' type='text\/css' rel='stylesheet' >\n\n<style>\/* widget: Card Carousel *\/\n\n#uc_card_carousel_elementor_5cbdeb3-wrapper{\n  min-height:1px;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 *{\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .ue-carousel-item{\n  overflow:hidden;\n  transition:0.3s;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .uc_classic_carousel_container_holder{\n\tdisplay:block;\n\tposition:relative;\n\twidth:100%;\n    box-sizing: border-box;\n}\n#uc_card_carousel_elementor_5cbdeb3 .uc_classic_carousel_placeholder{\n   position:relative;\n}\n\n\n#uc_card_carousel_elementor_5cbdeb3 .uc_classic_carousel_placeholder img, #uc_card_carousel_elementor_5cbdeb3 .ue_card_carousel_image_overlay{\n  transition: all 300ms;\n}\n\n.card_carousel_title{\n\tfont-size:21px;\n}\n\n.uc_classic_carousel .uc_classic_carousel_border{\n\tdisplay:block;\n    margin:0 auto;\n}\n\n.uc_classic_carousel  .uc_classic_carousel_placeholder img{\n\twidth:100%;    \n    display:block;\n}\n\n.uc_classic_carousel .uc_classic_carousel_content{\n  display: flex;\n  flex-flow: column nowrap;\n}\n\n.uc_classic_carousel .ue_button{\n  margin-top:auto;\n}\n\n.uc_classic_carousel .uc_classic_carousel_content .uc_more_btn {\n\tdisplay:inline-block;\n\ttext-decoration:none;\n\ttransition: all 0.5s ease;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .owl-dots {\n  overflow:hidden;\n  text-align:center;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .owl-dot {\n  border-radius:50%;\n  display:inline-block;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .owl-nav .owl-prev,\n#uc_card_carousel_elementor_5cbdeb3 .owl-nav .owl-next{\n    position:absolute;\n    display:flex;\n  \tjustify-content: center;\n  \talign-items: center;\n    text-align:center;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .owl-nav .disabled{\n    display: none;  \n}\n\n\n#uc_card_carousel_elementor_5cbdeb3 .ue-item-icon{\n  line-height:1em;\n  display:inline-flex;\n  justify-content:center;\n  align-items:center;  \n}\n\n#uc_card_carousel_elementor_5cbdeb3 .ue-item-icon svg{\n  height:1em;\n  width:1em;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .ue-item-icon-wrapper{\n  display:flex;\n}\n\n#uc_card_carousel_elementor_5cbdeb3 .uc_classic_carousel_container_holder {\n\t max-width: ;\n}\n\n\n\n@media screen and (max-width: 1024px) {\n  #uc_card_carousel_elementor_5cbdeb3 .uc_classic_carousel_container_holder {\n\t max-width: ;\n  }\n}\n\n@media screen and (max-width: 767px) {\n  #uc_card_carousel_elementor_5cbdeb3 .uc_classic_carousel_container_holder {\n    max-width: ;\n  }\n}\n\n<\/style>\n\n<div class=\"uc_classic_carousel\" id=\"uc_card_carousel_elementor_5cbdeb3-wrapper\">\n  <div class=\"uc_carousel owl-carousel uc-items-wrapper  \" id=\"uc_card_carousel_elementor_5cbdeb3\"  >\n    \n\n\n<div id=\"uc_card_carousel_elementor_5cbdeb3_item1\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-c91c28e\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/venkatagiri-cotton-sarees\/\" title=\"\"  target='_blank'>          <img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Category.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Category.webp\" alt=\"Category\" width=\"500\" height=\"500\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:ltr;\">    \n\n      \n          <div  class=\"card_carousel_title\">Venkatagiri Cotton<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_5cbdeb3_item2\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-6e7da3e\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/baluchari-cotton-sarees\/\" title=\"\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Category-1.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Category-1.webp\" alt=\"Category (1)\" width=\"500\" height=\"500\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:ltr;\">    \n\n      \n          <div  class=\"card_carousel_title\">Baluchari Cotton<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_5cbdeb3_item3\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-d51ba04\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/shantipur-jamdhani-sarees\/\" title=\"\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Category-2.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Category-2.webp\" alt=\"Category (2)\" width=\"500\" height=\"500\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:ltr;\">    \n\n      \n          <div  class=\"card_carousel_title\">Shantipur Jamdhani<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_5cbdeb3_item4\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-85d6aff\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/maheshwari-si-co-sarees\/\" title=\"\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd.webp\" alt=\"Categorypsd\" width=\"500\" height=\"500\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:ltr;\">    \n\n      \n          <div  class=\"card_carousel_title\">Maheshwari Si-Co<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_5cbdeb3_item5\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-2d55e91\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/chikankari-embroidery-sarees\/\" title=\"\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd-1.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd-1.webp\" alt=\"Categorypsd (1)\" width=\"500\" height=\"500\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:ltr;\">    \n\n      \n          <div  class=\"card_carousel_title\">Chikankari Embroidery<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_5cbdeb3_item6\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-f623f30\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/narayanpet-cotton-sarees\/\" title=\"\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd-2.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd-2.webp\" alt=\"Categorypsd (2)\" width=\"500\" height=\"500\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:ltr;\">    \n\n      \n          <div  class=\"card_carousel_title\">Narayanpet Cotton<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_5cbdeb3_item7\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-bcd55fb\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/kasuti-embroidery-sarees\/\" title=\"\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd-3.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Categorypsd-3.webp\" alt=\"Categorypsd (3)\" width=\"500\" height=\"500\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:ltr;\">    \n\n      \n          <div  class=\"card_carousel_title\">Kasuti Embroidery<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n  <\/div>\n<\/div>\n<!-- end Card Carousel -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fb47051 e-con-full wd-section-stretch e-flex e-con e-parent\" data-id=\"fb47051\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4645d8d elementor-widget elementor-widget-image\" data-id=\"4645d8d\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1300\" height=\"593\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png\" class=\"attachment-large size-large wp-image-29253\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png 1300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-400x182.png 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-768x350.png 768w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1536x700.png 1536w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-2048x934.png 2048w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-430x196.png 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-700x319.png 700w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-150x68.png 150w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" \/>\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-facb6fd wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"facb6fd\" data-element_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<div class=\"elementor-element elementor-element-47a673d e-con-full e-flex e-con e-child\" data-id=\"47a673d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d6eaf3 wd-width-100 elementor-widget elementor-widget-wd_title\" data-id=\"5d6eaf3\" data-element_type=\"widget\" data-widget_type=\"wd_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"title-wrapper wd-set-mb reset-last-child wd-title-color-default wd-title-style-default wd-title-size-large text-center\">\n\n\t\t\t\n\t\t\t<div class=\"liner-continer\">\n\t\t\t\t<h4 class=\"woodmart-title-container title wd-fontsize-xxl\">Most Loved Saree Collections<\/h4> \n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"title-after_title reset-last-child wd-fontsize-s\">\n\t\t\t\t\t<p>Celebrate tradition with our top picks<\/p>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\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=\"wd-negative-gap elementor-element elementor-element-4d63f06 elementor-hidden-desktop elementor-hidden-tablet e-flex e-con-boxed e-con e-parent\" data-id=\"4d63f06\" data-element_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-9018215 elementor-widget wd-nested-carousel\" data-id=\"9018215\" data-element_type=\"widget\" data-widget_type=\"wd_nested_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"wd-nested-carousel wd-carousel-container \">\n\t\t\t<div class=\"wd-carousel-inner\">\n\t\t\t\t<div class=\"wd-carousel wd-grid\" data-scroll_per_page=\"yes\" style=\"--wd-col-lg:3;--wd-col-md:1;--wd-col-sm:2;--wd-gap-lg:30px;--wd-gap-sm:10px;\">\n\t\t\t\t\t<div class=\"wd-carousel-wrap\">\n\t\t\t\t\t\t<div class=\"wd-carousel-item elementor-element elementor-element-05357db e-con-full e-flex e-con e-child\" data-id=\"05357db\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7c1714f e-con-full e-flex e-con e-child\" data-id=\"7c1714f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/viswaveda.in\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/SSYouTube.online_Semi-Kanchipuram-Silk-Saree-Rs.-1390-10.11.22-shrus_1080p.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-90498af elementor-widget elementor-widget-heading\" data-id=\"90498af\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fc9a4a2 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"fc9a4a2\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c1d9bda elementor-widget elementor-widget-heading\" data-id=\"c1d9bda\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f1d667b elementor-widget elementor-widget-heading\" data-id=\"f1d667b\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">KANCHI SILK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1690c17 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"1690c17\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"wd-carousel-item elementor-element elementor-element-643bcb8 e-con-full e-flex e-con e-child\" data-id=\"643bcb8\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c810cdc e-con-full e-flex e-con e-child\" data-id=\"c810cdc\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/youtube.com\\\/shorts\\\/ctVUB1R90OA?si=CpgMmzE2rkazxKAa&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-video-embed\"><\/div>\n\t\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-a111601 elementor-widget elementor-widget-heading\" data-id=\"a111601\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9e95cde elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"9e95cde\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8e78eb6 elementor-widget elementor-widget-heading\" data-id=\"8e78eb6\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0019c82 elementor-widget elementor-widget-heading\" data-id=\"0019c82\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">POOCHAMPALLY IKAT SILK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a43fbe5 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"a43fbe5\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"wd-carousel-item elementor-element elementor-element-6b34908 e-con-full e-flex e-con e-child\" data-id=\"6b34908\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e97abfd e-con-full e-flex e-con e-child\" data-id=\"e97abfd\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/viswaveda.in\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Pure-Gadwal-silk-handloom-saree-_-shop-authentic-gadwal-saree-online-luxurionworld-reels.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-26a21d4 elementor-widget elementor-widget-heading\" data-id=\"26a21d4\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0407bb9 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"0407bb9\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f75ae7 elementor-widget elementor-widget-heading\" data-id=\"1f75ae7\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-03059e3 elementor-widget elementor-widget-heading\" data-id=\"03059e3\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GADWAL SILK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7e840ec elementor-align-center elementor-widget elementor-widget-button\" data-id=\"7e840ec\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"wd-carousel-item elementor-element elementor-element-0c10d1d e-con-full e-flex e-con e-child\" data-id=\"0c10d1d\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8d5569a e-con-full e-flex e-con e-child\" data-id=\"8d5569a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/viswaveda.in\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Order-on-WhatsApp_-9840306334-_-templedesigner.com_.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-5c07bdb elementor-widget elementor-widget-heading\" data-id=\"5c07bdb\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b4eda2c elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"b4eda2c\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fee20e2 elementor-widget elementor-widget-heading\" data-id=\"fee20e2\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-135284b elementor-hidden-mobile elementor-widget elementor-widget-heading\" data-id=\"135284b\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TUSSAR SILK\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f3b7543 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"f3b7543\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-nav-arrows wd-pos-sep wd-hover-1 wd-icon-1\">\n\t\t\t<div class=\"wd-btn-arrow wd-prev wd-disabled\">\n\t\t\t\t<div class=\"wd-arrow-inner\"><\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"wd-btn-arrow wd-next\">\n\t\t\t\t<div class=\"wd-arrow-inner\"><\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"wd-nav-pagin-wrap text-center wd-style-shape wd-hide-md-sm wd-hide-sm\">\n\t\t\t<ul class=\"wd-nav-pagin\"><\/ul>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\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<div class=\"elementor-element elementor-element-1f10a6c elementor-hidden-mobile wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"1f10a6c\" data-element_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<div class=\"elementor-element elementor-element-1c3b357 e-con-full e-flex e-con e-child\" data-id=\"1c3b357\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/viswaveda.in\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/SSYouTube.online_Semi-Kanchipuram-Silk-Saree-Rs.-1390-10.11.22-shrus_1080p.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-4667891 elementor-widget elementor-widget-heading\" data-id=\"4667891\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b1da1ce elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"b1da1ce\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bbbf311 elementor-widget elementor-widget-heading\" data-id=\"bbbf311\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-96b08b1 elementor-widget elementor-widget-heading\" data-id=\"96b08b1\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">KANCHI SILK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ce569c7 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"ce569c7\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d5b44fa e-con-full e-flex e-con e-child\" data-id=\"d5b44fa\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/youtube.com\\\/shorts\\\/ctVUB1R90OA?si=fO-fsoKq79vLzce6&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-video-embed\"><\/div>\n\t\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-5d09310 elementor-widget elementor-widget-heading\" data-id=\"5d09310\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ffd93a2 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"ffd93a2\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48c33a7 elementor-widget elementor-widget-heading\" data-id=\"48c33a7\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ee2a1ee elementor-widget elementor-widget-heading\" data-id=\"ee2a1ee\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">POOCHAMPALLY IKAT SILK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-10e988c elementor-align-center elementor-widget elementor-widget-button\" data-id=\"10e988c\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4daa130 e-con-full e-flex e-con e-child\" data-id=\"4daa130\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/viswaveda.in\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Pure-Gadwal-silk-handloom-saree-_-shop-authentic-gadwal-saree-online-luxurionworld-reels.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-c26cc21 elementor-widget elementor-widget-heading\" data-id=\"c26cc21\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3e1c70f elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"3e1c70f\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a3a1104 elementor-widget elementor-widget-heading\" data-id=\"a3a1104\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0614373 elementor-widget elementor-widget-heading\" data-id=\"0614373\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GADWAL SILK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b4a45f elementor-align-center elementor-widget elementor-widget-button\" data-id=\"6b4a45f\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-24e9201 e-con-full e-flex e-con e-child\" data-id=\"24e9201\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/viswaveda.in\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Order-on-WhatsApp_-9840306334-_-templedesigner.com_.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-634067c elementor-widget elementor-widget-heading\" data-id=\"634067c\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">GREATEST SALE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41b1351 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\" data-id=\"41b1351\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<span class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tUPTO\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-198bc0c elementor-widget elementor-widget-heading\" data-id=\"198bc0c\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">20% OFF<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3844319 elementor-widget elementor-widget-heading\" data-id=\"3844319\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TUSSAR SILK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e138ddd elementor-align-center elementor-widget elementor-widget-button\" data-id=\"e138ddd\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\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<div class=\"elementor-element elementor-element-a4f6533 e-con-full wd-section-stretch e-flex e-con e-parent\" data-id=\"a4f6533\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c21ca26 elementor-widget elementor-widget-image\" data-id=\"c21ca26\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1300\" height=\"593\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png\" class=\"attachment-large size-large wp-image-29253\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png 1300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-400x182.png 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-768x350.png 768w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1536x700.png 1536w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-2048x934.png 2048w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-430x196.png 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-700x319.png 700w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-150x68.png 150w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" \/>\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-e3ef4ec wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"e3ef4ec\" data-element_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-88c2030 wd-width-100 elementor-widget elementor-widget-wd_title\" data-id=\"88c2030\" data-element_type=\"widget\" data-widget_type=\"wd_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"title-wrapper wd-set-mb reset-last-child wd-title-color-default wd-title-style-default wd-title-size-large text-center\">\n\n\t\t\t\n\t\t\t<div class=\"liner-continer\">\n\t\t\t\t<h4 class=\"woodmart-title-container title wd-fontsize-xxl\">Featured Categories<\/h4> \n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"title-after_title reset-last-child wd-fontsize-s\">\n\t\t\t\t\t<p>Where Tradition Meets Modern Elegance<\/p>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e616a71 elementor-widget elementor-widget-ucaddon_card_carousel\" data-id=\"e616a71\" data-element_type=\"widget\" data-widget_type=\"ucaddon_card_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Card Carousel -->\n\n<style>\/* widget: Card Carousel *\/\n\n#uc_card_carousel_elementor_e616a71-wrapper{\n  min-height:1px;\n}\n\n#uc_card_carousel_elementor_e616a71 *{\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n#uc_card_carousel_elementor_e616a71 .ue-carousel-item{\n  overflow:hidden;\n  transition:0.3s;\n}\n\n#uc_card_carousel_elementor_e616a71 .uc_classic_carousel_container_holder{\n\tdisplay:block;\n\tposition:relative;\n\twidth:100%;\n    box-sizing: border-box;\n}\n#uc_card_carousel_elementor_e616a71 .uc_classic_carousel_placeholder{\n   position:relative;\n}\n\n\n#uc_card_carousel_elementor_e616a71 .uc_classic_carousel_placeholder img, #uc_card_carousel_elementor_e616a71 .ue_card_carousel_image_overlay{\n  transition: all 300ms;\n}\n\n.card_carousel_title{\n\tfont-size:21px;\n}\n\n.uc_classic_carousel .uc_classic_carousel_border{\n\tdisplay:block;\n    margin:0 auto;\n}\n\n.uc_classic_carousel  .uc_classic_carousel_placeholder img{\n\twidth:100%;    \n    display:block;\n}\n\n.uc_classic_carousel .uc_classic_carousel_content{\n  display: flex;\n  flex-flow: column nowrap;\n}\n\n.uc_classic_carousel .ue_button{\n  margin-top:auto;\n}\n\n.uc_classic_carousel .uc_classic_carousel_content .uc_more_btn {\n\tdisplay:inline-block;\n\ttext-decoration:none;\n\ttransition: all 0.5s ease;\n}\n\n#uc_card_carousel_elementor_e616a71 .owl-dots {\n  overflow:hidden;\n  text-align:center;\n}\n\n#uc_card_carousel_elementor_e616a71 .owl-dot {\n  border-radius:50%;\n  display:inline-block;\n}\n\n#uc_card_carousel_elementor_e616a71 .owl-nav .owl-prev,\n#uc_card_carousel_elementor_e616a71 .owl-nav .owl-next{\n    position:absolute;\n    display:flex;\n  \tjustify-content: center;\n  \talign-items: center;\n    text-align:center;\n}\n\n#uc_card_carousel_elementor_e616a71 .owl-nav .disabled{\n    display: none;  \n}\n\n\n#uc_card_carousel_elementor_e616a71 .ue-item-icon{\n  line-height:1em;\n  display:inline-flex;\n  justify-content:center;\n  align-items:center;  \n}\n\n#uc_card_carousel_elementor_e616a71 .ue-item-icon svg{\n  height:1em;\n  width:1em;\n}\n\n#uc_card_carousel_elementor_e616a71 .ue-item-icon-wrapper{\n  display:flex;\n}\n\n#uc_card_carousel_elementor_e616a71 .uc_classic_carousel_container_holder {\n\t max-width: ;\n}\n\n\n\n@media screen and (max-width: 1024px) {\n  #uc_card_carousel_elementor_e616a71 .uc_classic_carousel_container_holder {\n\t max-width: ;\n  }\n}\n\n@media screen and (max-width: 767px) {\n  #uc_card_carousel_elementor_e616a71 .uc_classic_carousel_container_holder {\n    max-width: ;\n  }\n}\n\n<\/style>\n\n<div class=\"uc_classic_carousel\" id=\"uc_card_carousel_elementor_e616a71-wrapper\">\n  <div class=\"uc_carousel owl-carousel uc-items-wrapper  \" id=\"uc_card_carousel_elementor_e616a71\"  >\n    \n\n\n<div id=\"uc_card_carousel_elementor_e616a71_item1\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-149892d\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/madhubani-hand-printed\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Madhubani Hand Printed<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_e616a71_item2\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-f4041e1\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/tussar-silk-sarees\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-1-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-1-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document (1)\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Tussar Silk<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_e616a71_item3\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-3280182\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/uppada-jamdhani-silk-sarees\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-2-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-2-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document (2)\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Uppada Jamdhani Silk<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_e616a71_item4\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-3369a3c\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/linen-handloom-saree\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-3-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-3-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document (3)\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Linen Handloom<\/div>\n              \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n  <\/div>\n<\/div>\n<!-- end Card Carousel -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-444fc4a elementor-widget elementor-widget-ucaddon_card_carousel\" data-id=\"444fc4a\" data-element_type=\"widget\" data-widget_type=\"ucaddon_card_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Card Carousel -->\n\n<style>\/* widget: Card Carousel *\/\n\n#uc_card_carousel_elementor_444fc4a-wrapper{\n  min-height:1px;\n}\n\n#uc_card_carousel_elementor_444fc4a *{\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n\n#uc_card_carousel_elementor_444fc4a .ue-carousel-item{\n  overflow:hidden;\n  transition:0.3s;\n}\n\n#uc_card_carousel_elementor_444fc4a .uc_classic_carousel_container_holder{\n\tdisplay:block;\n\tposition:relative;\n\twidth:100%;\n    box-sizing: border-box;\n}\n#uc_card_carousel_elementor_444fc4a .uc_classic_carousel_placeholder{\n   position:relative;\n}\n\n\n#uc_card_carousel_elementor_444fc4a .uc_classic_carousel_placeholder img, #uc_card_carousel_elementor_444fc4a .ue_card_carousel_image_overlay{\n  transition: all 300ms;\n}\n\n.card_carousel_title{\n\tfont-size:21px;\n}\n\n.uc_classic_carousel .uc_classic_carousel_border{\n\tdisplay:block;\n    margin:0 auto;\n}\n\n.uc_classic_carousel  .uc_classic_carousel_placeholder img{\n\twidth:100%;    \n    display:block;\n}\n\n.uc_classic_carousel .uc_classic_carousel_content{\n  display: flex;\n  flex-flow: column nowrap;\n}\n\n.uc_classic_carousel .ue_button{\n  margin-top:auto;\n}\n\n.uc_classic_carousel .uc_classic_carousel_content .uc_more_btn {\n\tdisplay:inline-block;\n\ttext-decoration:none;\n\ttransition: all 0.5s ease;\n}\n\n#uc_card_carousel_elementor_444fc4a .owl-dots {\n  overflow:hidden;\n  text-align:center;\n}\n\n#uc_card_carousel_elementor_444fc4a .owl-dot {\n  border-radius:50%;\n  display:inline-block;\n}\n\n#uc_card_carousel_elementor_444fc4a .owl-nav .owl-prev,\n#uc_card_carousel_elementor_444fc4a .owl-nav .owl-next{\n    position:absolute;\n    display:flex;\n  \tjustify-content: center;\n  \talign-items: center;\n    text-align:center;\n}\n\n#uc_card_carousel_elementor_444fc4a .owl-nav .disabled{\n    display: none;  \n}\n\n\n#uc_card_carousel_elementor_444fc4a .ue-item-icon{\n  line-height:1em;\n  display:inline-flex;\n  justify-content:center;\n  align-items:center;  \n}\n\n#uc_card_carousel_elementor_444fc4a .ue-item-icon svg{\n  height:1em;\n  width:1em;\n}\n\n#uc_card_carousel_elementor_444fc4a .ue-item-icon-wrapper{\n  display:flex;\n}\n\n#uc_card_carousel_elementor_444fc4a .uc_classic_carousel_container_holder {\n\t max-width: ;\n}\n\n\n\n@media screen and (max-width: 1024px) {\n  #uc_card_carousel_elementor_444fc4a .uc_classic_carousel_container_holder {\n\t max-width: ;\n  }\n}\n\n@media screen and (max-width: 767px) {\n  #uc_card_carousel_elementor_444fc4a .uc_classic_carousel_container_holder {\n    max-width: ;\n  }\n}\n\n<\/style>\n\n<div class=\"uc_classic_carousel\" id=\"uc_card_carousel_elementor_444fc4a-wrapper\">\n  <div class=\"uc_carousel owl-carousel uc-items-wrapper  \" id=\"uc_card_carousel_elementor_444fc4a\"  >\n    \n\n\n<div id=\"uc_card_carousel_elementor_444fc4a_item1\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-149892d\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/narayanpet-silk-sarees\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-4-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-4-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document (4)\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Narayanpet Silk<\/div>\n        <div class=\"card_carousel_text\"><\/div>      \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_444fc4a_item2\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-f4041e1\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/kanchipuram-silk-sarees\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-5-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-5-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document (5)\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Kanchipuram Silk<\/div>\n        <div class=\"card_carousel_text\"><\/div>      \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_444fc4a_item3\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-3280182\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/pochampally-ikat-silk-sarees\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-6-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-6-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document (6)\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Pochampally Ikat Silk<\/div>\n        <div class=\"card_carousel_text\"><\/div>      \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n\n\n<div id=\"uc_card_carousel_elementor_444fc4a_item4\" class=\"uc_classic_carousel_container_holder ue-item elementor-repeater-item-3369a3c\" data-hide-item=\"false\">  \n  <div class=\"ue-carousel-item\">\n    \n        \n    \n          <div class=\"uc_classic_carousel_placeholder\">\n        <a href=\"https:\/\/viswaveda.in\/product-category\/gadwal-silk-sarees\/\" title=\"Show More\"  target='_blank'>          <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-7-768x1086.webp\"  src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/Gren-and-Gold-Traditional-Islamic-Page-Border-A4-Document-7-768x1086.webp\" alt=\"Gren and Gold Traditional Islamic Page Border A4 Document (7)\" width=\"768\" height=\"1086\">\n        <\/a>              <\/div>\n    \n    <div class=\"uc_classic_carousel_content\" style=\"direction:rtl;\">    \n\n      \n          <div  class=\"card_carousel_title\">Gadwal Silk<\/div>\n        <div class=\"card_carousel_text\"><\/div>      \t\n\n      \t\n      \n    <\/div>\n    \n  <\/div>\n<\/div>\n\n  <\/div>\n<\/div>\n<!-- end Card Carousel -->\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-0c85c62 wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"0c85c62\" data-element_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-b1847ac wd-width-100 elementor-widget elementor-widget-wd_title\" data-id=\"b1847ac\" data-element_type=\"widget\" data-widget_type=\"wd_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"title-wrapper wd-set-mb reset-last-child wd-title-color-default wd-title-style-default wd-title-size-large text-center\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"title-subtitle subtitle-color-default subtitle-style-default wd-fontsize-xs\">\n\t\t\t\t\tSHOP BY OCCASION\t\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"liner-continer\">\n\t\t\t\t<h4 class=\"woodmart-title-container title wd-fontsize-xxl\">Elegance for Every Moment.<\/h4> \n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7ffe234 e-n-tabs-mobile elementor-widget elementor-widget-n-tabs\" data-id=\"7ffe234\" data-element_type=\"widget\" data-settings=\"{&quot;horizontal_scroll&quot;:&quot;disable&quot;}\" data-widget_type=\"nested-tabs.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-tabs\" data-widget-number=\"134210100\" aria-label=\"Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.\">\n\t\t\t<div class=\"e-n-tabs-heading\" role=\"tablist\">\n\t\t\t\t\t<button id=\"e-n-tab-title-1342101001\" data-tab-title-id=\"e-n-tab-title-1342101001\" class=\"e-n-tab-title\" aria-selected=\"true\" data-tab-index=\"1\" role=\"tab\" tabindex=\"0\" aria-controls=\"e-n-tab-content-1342101001\" style=\"--n-tabs-title-order: 1;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tWedding\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1342101002\" data-tab-title-id=\"e-n-tab-title-1342101002\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"2\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1342101002\" style=\"--n-tabs-title-order: 2;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tCasual\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1342101003\" data-tab-title-id=\"e-n-tab-title-1342101003\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"3\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1342101003\" style=\"--n-tabs-title-order: 3;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tFestive\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1342101004\" data-tab-title-id=\"e-n-tab-title-1342101004\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"4\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1342101004\" style=\"--n-tabs-title-order: 4;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tParty\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1342101005\" data-tab-title-id=\"e-n-tab-title-1342101005\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"5\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1342101005\" style=\"--n-tabs-title-order: 5;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tOffice\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"e-n-tabs-content\">\n\t\t\t\t<div id=\"e-n-tab-content-1342101001\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1342101001\" data-tab-index=\"1\" style=\"--n-tabs-title-order: 1;\" class=\"e-active elementor-element elementor-element-b28515f e-con-full e-flex e-con e-child\" data-id=\"b28515f\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-249d5d6 e-con-full e-flex e-con e-child\" data-id=\"249d5d6\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0924f33 elementor-widget elementor-widget-image\" data-id=\"0924f33\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/viswaveda.in\/product-category\/wedding\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"643\" height=\"428\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/weddingcollection.webp\" class=\"attachment-full size-full wp-image-29278\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/weddingcollection.webp 643w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/weddingcollection-400x266.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/weddingcollection-430x286.webp 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/weddingcollection-150x100.webp 150w\" sizes=\"(max-width: 643px) 100vw, 643px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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-5be5103 e-con-full e-flex e-con e-child\" data-id=\"5be5103\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb4628c elementor-widget elementor-widget-heading\" data-id=\"eb4628c\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Wedding Saree Collection<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-262dee3 elementor-widget elementor-widget-wd_text_block\" data-id=\"262dee3\" data-element_type=\"widget\" data-widget_type=\"wd_text_block.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"wd-text-block reset-last-child text-left\">\n\t\t\t\n\t\t\t<p style=\"text-align: justify; text-justify: inter-word; line-height: 1.6;\">Our <strong>Wedding Saree Collection<\/strong> brings together timeless elegance and rich craftsmanship to make every bride shine on her special day. Woven from luxurious silks and adorned with intricate zari work, embroidery, and traditional motifs, each saree tells a story of heritage and grace. From classic Kanchipuram and Banarasi weaves to modern, lightweight drapes, our collection offers a perfect blend of tradition and contemporary style designed to make your wedding day truly unforgettable.\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5db98a9 elementor-widget elementor-widget-button\" data-id=\"5db98a9\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/product-category\/wedding\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1342101002\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1342101002\" data-tab-index=\"2\" style=\"--n-tabs-title-order: 2;\" class=\" elementor-element elementor-element-9a522a3 e-con-full e-flex e-con e-child\" data-id=\"9a522a3\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7910b9f e-con-full e-flex e-con e-child\" data-id=\"7910b9f\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c4c301f elementor-widget elementor-widget-image\" data-id=\"c4c301f\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/viswaveda.in\/product-category\/casual\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"643\" height=\"428\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-1.webp\" class=\"attachment-large size-large wp-image-29281\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-1.webp 643w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-1-400x266.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-1-430x286.webp 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-1-150x100.webp 150w\" sizes=\"(max-width: 643px) 100vw, 643px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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-67d1fe2 e-con-full e-flex e-con e-child\" data-id=\"67d1fe2\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-060b604 elementor-widget elementor-widget-heading\" data-id=\"060b604\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Casual Saree Collection<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6f8d83e elementor-widget elementor-widget-wd_text_block\" data-id=\"6f8d83e\" data-element_type=\"widget\" data-widget_type=\"wd_text_block.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"wd-text-block reset-last-child text-left\">\n\t\t\t\n\t\t\t<p style=\"text-align: justify; text-justify: inter-word; line-height: 1.6;\">Experience comfort with elegance in our Casual Saree Collection. Featuring handloom cottons, linens, and light weaves, these sarees are perfect for everyday wear while keeping your style effortless. Whether it\u2019s office, outings, or daily occasions, our casual sarees bring grace to your everyday moments.\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e0e47a3 elementor-widget elementor-widget-button\" data-id=\"e0e47a3\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/product-category\/casual\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1342101003\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1342101003\" data-tab-index=\"3\" style=\"--n-tabs-title-order: 3;\" class=\" elementor-element elementor-element-3713733 e-con-full e-flex e-con e-child\" data-id=\"3713733\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-42a6f12 e-con-full e-flex e-con e-child\" data-id=\"42a6f12\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-98766cd elementor-widget elementor-widget-image\" data-id=\"98766cd\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/viswaveda.in\/product-category\/festive\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"643\" height=\"428\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1.webp\" class=\"attachment-large size-large wp-image-29280\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1.webp 643w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-400x266.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-430x286.webp 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-150x100.webp 150w\" sizes=\"(max-width: 643px) 100vw, 643px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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-0cc4994 e-con-full e-flex e-con e-child\" data-id=\"0cc4994\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b07cb09 elementor-widget elementor-widget-heading\" data-id=\"b07cb09\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Festive Saree Collection<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b462404 elementor-widget elementor-widget-wd_text_block\" data-id=\"b462404\" data-element_type=\"widget\" data-widget_type=\"wd_text_block.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"wd-text-block reset-last-child text-left\">\n\t\t\t\n\t\t\t<p style=\"text-align: justify; text-justify: inter-word; line-height: 1.6;\">Celebrate every festival in style with our Festive Saree Collection. From vibrant silks to elegant handlooms, each saree is designed to bring color, joy, and tradition to your special moments. Perfect for Diwali, Pongal, Navratri, and more, these drapes add splendor to every celebration.\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5ed5fee elementor-widget elementor-widget-button\" data-id=\"5ed5fee\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/product-category\/festive\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1342101004\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1342101004\" data-tab-index=\"4\" style=\"--n-tabs-title-order: 4;\" class=\" elementor-element elementor-element-9c2fb9b e-con-full e-flex e-con e-child\" data-id=\"9c2fb9b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a8cd609 e-con-full e-flex e-con e-child\" data-id=\"a8cd609\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e1280ba elementor-widget elementor-widget-image\" data-id=\"e1280ba\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/viswaveda.in\/product-category\/party\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"643\" height=\"428\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-2.webp\" class=\"attachment-large size-large wp-image-29282\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-2.webp 643w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-2-400x266.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-2-430x286.webp 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-2-150x100.webp 150w\" sizes=\"(max-width: 643px) 100vw, 643px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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-c5a8811 e-con-full e-flex e-con e-child\" data-id=\"c5a8811\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0d90be5 elementor-widget elementor-widget-heading\" data-id=\"0d90be5\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Party Saree Collection<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0763f19 elementor-widget elementor-widget-wd_text_block\" data-id=\"0763f19\" data-element_type=\"widget\" data-widget_type=\"wd_text_block.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"wd-text-block reset-last-child text-left\">\n\t\t\t\n\t\t\t<p style=\"text-align: justify; text-justify: inter-word; line-height: 1.6;\">Step into the spotlight with our stunning Party Sarees, designed with rich fabrics, intricate work, and contemporary flair. Perfect for cocktail nights, receptions, or festive gatherings, these sarees bring elegance and glamour together in every drape.\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cbf88c8 elementor-widget elementor-widget-button\" data-id=\"cbf88c8\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/product-category\/party\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1342101005\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1342101005\" data-tab-index=\"5\" style=\"--n-tabs-title-order: 5;\" class=\" elementor-element elementor-element-b3a1b3c e-con-full e-flex e-con e-child\" data-id=\"b3a1b3c\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d9c1684 e-con-full e-flex e-con e-child\" data-id=\"d9c1684\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8baf99c elementor-widget elementor-widget-image\" data-id=\"8baf99c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/viswaveda.in\/product-category\/office\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"643\" height=\"428\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-3.webp\" class=\"attachment-large size-large wp-image-29283\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-3.webp 643w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-3-400x266.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-3-430x286.webp 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/casual-1-3-150x100.webp 150w\" sizes=\"(max-width: 643px) 100vw, 643px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\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-cbe0733 e-con-full e-flex e-con e-child\" data-id=\"cbe0733\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c28d610 elementor-widget elementor-widget-heading\" data-id=\"c28d610\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Office Saree Collection<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7765d6f elementor-widget elementor-widget-wd_text_block\" data-id=\"7765d6f\" data-element_type=\"widget\" data-widget_type=\"wd_text_block.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"wd-text-block reset-last-child text-left\">\n\t\t\t\n\t\t\t<p style=\"text-align: justify; text-justify: inter-word; line-height: 1.6;\">Discover our Office Saree Collection, crafted in breathable fabrics and subtle designs that balance professionalism with style. Perfect for daily wear, meetings, or corporate events, these sarees keep you comfortable while making a confident impression.\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-830c386 elementor-widget elementor-widget-button\" data-id=\"830c386\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/viswaveda.in\/product-category\/office\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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<\/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-562c831 e-con-full wd-section-stretch e-flex e-con e-parent\" data-id=\"562c831\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-36b1866 elementor-widget elementor-widget-image\" data-id=\"36b1866\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1300\" height=\"593\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png\" class=\"attachment-large size-large wp-image-29253\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png 1300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-400x182.png 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-768x350.png 768w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1536x700.png 1536w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-2048x934.png 2048w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-430x196.png 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-700x319.png 700w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-150x68.png 150w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" \/>\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-08fac4f wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"08fac4f\" data-element_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-e779ea4 wd-width-100 elementor-widget elementor-widget-wd_title\" data-id=\"e779ea4\" data-element_type=\"widget\" data-widget_type=\"wd_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"title-wrapper wd-set-mb reset-last-child wd-title-color-default wd-title-style-default wd-title-size-large text-center\">\n\n\t\t\t\n\t\t\t<div class=\"liner-continer\">\n\t\t\t\t<h4 class=\"woodmart-title-container title wd-fontsize-xxl\">Latest Arrivals<\/h4> \n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"title-after_title reset-last-child wd-fontsize-s\">\n\t\t\t\t\t<p>Explore our newest collection, crafted to keep you ahead in style.<\/p>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\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<div class=\"elementor-element elementor-element-8d04e73 wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"8d04e73\" data-element_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-2cd1db5 wd-width-100 elementor-widget elementor-widget-wd_products\" data-id=\"2cd1db5\" data-element_type=\"widget\" data-widget_type=\"wd_products.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<div id=\"carousel-926\" class=\"wd-carousel-container  wd-products-element wd-products products\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"wd-carousel-inner\">\n\t\t\t\t\t<div class=\" wd-carousel wd-grid\" data-autoheight=\"yes\" data-scroll_per_page=\"yes\" style=\"--wd-col-lg:4;--wd-col-md:4;--wd-col-sm:2;--wd-gap-lg:30px;--wd-gap-sm:10px;\">\n\t\t\t\t\t\t<div class=\"wd-carousel-wrap\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-27988 status-publish instock product_cat-bhagalpur has-post-thumbnail sale shipping-taxable purchasable product-type-simple\" data-loop=\"1\" data-id=\"27988\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.1.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.1-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.4.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.4.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.4-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.4-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree\">Bhagalpur Red Tussar &#8211; Dupion Silk Handloom Saree<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=bhagalpur\" rel=\"tag\">Bhagalpur<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>5,878.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F29554&#038;add-to-cart=27988\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_27988\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart add-to-cart-loop\" data-product_id=\"27988\" data-product_sku=\"V03BG006\" aria-label=\"Add to cart: &ldquo;Bhagalpur Red Tussar - Dupion Silk Handloom Saree&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Bhagalpur Red Tussar - Dupion Silk Handloom Saree&rdquo; has been added to your cart\" role=\"button\"><span>Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_27988\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"27988\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-28025 status-publish instock product_cat-bhagalpur has-post-thumbnail sale shipping-taxable purchasable product-type-simple\" data-loop=\"2\" data-id=\"28025\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree-grey-pallu\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/1-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree-grey-pallu\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/4.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/4.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/4-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/4-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree-grey-pallu\">Bhagalpur Red Tussar &#8211; Dupion Silk Handloom Saree (Grey Pallu)<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=bhagalpur\" rel=\"tag\">Bhagalpur<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>5,278.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F29554&#038;add-to-cart=28025\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28025\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart add-to-cart-loop\" data-product_id=\"28025\" data-product_sku=\"V03BG005\" aria-label=\"Add to cart: &ldquo;Bhagalpur Red Tussar - Dupion Silk Handloom Saree (Grey Pallu)&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Bhagalpur Red Tussar - Dupion Silk Handloom Saree (Grey Pallu)&rdquo; has been added to your cart\" role=\"button\"><span>Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28025\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=bhagalpur-red-tussar-dupion-silk-handloom-saree-grey-pallu\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"28025\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-28059 status-publish instock product_cat-bhagalpur has-post-thumbnail sale shipping-taxable purchasable product-type-simple\" data-loop=\"3\" data-id=\"28059\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-royal-blue-tussar-dupion-silk-handloom-saree\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.1.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.1-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-royal-blue-tussar-dupion-silk-handloom-saree\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.4.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.4.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.4-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/2.4-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=bhagalpur-royal-blue-tussar-dupion-silk-handloom-saree\">Bhagalpur Royal Blue Tussar &#8211; Dupion Silk Handloom Saree<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=bhagalpur\" rel=\"tag\">Bhagalpur<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>5,878.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F29554&#038;add-to-cart=28059\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28059\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart add-to-cart-loop\" data-product_id=\"28059\" data-product_sku=\"V03BG003\" aria-label=\"Add to cart: &ldquo;Bhagalpur Royal Blue Tussar - Dupion Silk Handloom Saree&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Bhagalpur Royal Blue Tussar - Dupion Silk Handloom Saree&rdquo; has been added to your cart\" role=\"button\"><span>Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28059\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=bhagalpur-royal-blue-tussar-dupion-silk-handloom-saree\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"28059\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-28067 status-publish last instock product_cat-chanderi-silk-cotton-handloom-saree has-post-thumbnail sale shipping-taxable purchasable product-type-variable has-default-attributes\" data-loop=\"4\" data-id=\"28067\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=chanderi-silk-cotton-jacquard-handloom-saree\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/6.4.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/6.4.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/6.4-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/6.4-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=chanderi-silk-cotton-jacquard-handloom-saree\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/7.3.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/7.3.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/7.3-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/7.3-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=chanderi-silk-cotton-jacquard-handloom-saree\">Chanderi Silk-Cotton Jacquard Handloom Saree<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=chanderi-silk-cotton-handloom-saree\" rel=\"tag\">Chanderi Silk-Cotton Handloom Saree<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>5,638.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=chanderi-silk-cotton-jacquard-handloom-saree\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28067\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button add-to-cart-loop\" data-product_id=\"28067\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;Chanderi Silk-Cotton Jacquard Handloom Saree&rdquo;\" rel=\"nofollow\"><span>Select options<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28067\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=chanderi-silk-cotton-jacquard-handloom-saree\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"28067\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-28091 status-publish first instock product_cat-dharwad-kasuti-hand-embroidery-cotton-saree has-post-thumbnail sale shipping-taxable purchasable product-type-variable has-default-attributes\" data-loop=\"5\" data-id=\"28091\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=dharwad-kasuti-hand-embroidery-cotton-saree-2\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/11.1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/11.1.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/11.1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/11.1-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=dharwad-kasuti-hand-embroidery-cotton-saree-2\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/12.1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/12.1.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/12.1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/12.1-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=dharwad-kasuti-hand-embroidery-cotton-saree-2\">Dharwad Kasuti Hand Embroidery Cotton Saree<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=dharwad-kasuti-hand-embroidery-cotton-saree\" rel=\"tag\">Dharwad Kasuti Hand Embroidery Cotton Saree<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>8,998.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=dharwad-kasuti-hand-embroidery-cotton-saree-2\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28091\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button add-to-cart-loop\" data-product_id=\"28091\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;Dharwad Kasuti Hand Embroidery Cotton Saree&rdquo;\" rel=\"nofollow\"><span>Select options<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28091\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=dharwad-kasuti-hand-embroidery-cotton-saree-2\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"28091\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-30395 status-publish instock product_cat-viscose-cotton-silk-handloom-saree has-post-thumbnail sale shipping-taxable purchasable product-type-simple\" data-loop=\"6\" data-id=\"30395\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=dupatta-red\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-5%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/12\/duppata1.jpg\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/12\/duppata1.jpg 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/12\/duppata1-200x300.jpg 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/12\/duppata1-150x225.jpg 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=dupatta-red\">Dupatta Red<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=viscose-cotton-silk-handloom-saree\" rel=\"tag\">Viscose Cotton Silk Handloom Saree<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>9,500.00<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F29554&#038;add-to-cart=30395\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_30395\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart add-to-cart-loop\" data-product_id=\"30395\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Dupatta Red&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Dupatta Red&rdquo; has been added to your cart\" role=\"button\"><span>Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_30395\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=dupatta-red\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"30395\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-28109 status-publish instock product_cat-viscose-cotton-silk-handloom-saree has-post-thumbnail sale shipping-taxable purchasable product-type-simple\" data-loop=\"7\" data-id=\"28109\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=ilkal-blue-viscose-cotton-handloom-saree-with-red-checks-and-silk-pallu\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.1.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.1-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=ilkal-blue-viscose-cotton-handloom-saree-with-red-checks-and-silk-pallu\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.4.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.4.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.4-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/13.4-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=ilkal-blue-viscose-cotton-handloom-saree-with-red-checks-and-silk-pallu\">Ilkal Blue Viscose-Cotton Handloom Saree with Red Checks and Silk Pallu<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=viscose-cotton-silk-handloom-saree\" rel=\"tag\">Viscose Cotton Silk Handloom Saree<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>2,878.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F29554&#038;add-to-cart=28109\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28109\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart add-to-cart-loop\" data-product_id=\"28109\" data-product_sku=\"V06IK002\" aria-label=\"Add to cart: &ldquo;Ilkal Blue Viscose-Cotton Handloom Saree with Red Checks and Silk Pallu&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Ilkal Blue Viscose-Cotton Handloom Saree with Red Checks and Silk Pallu&rdquo; has been added to your cart\" role=\"button\"><span>Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28109\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=ilkal-blue-viscose-cotton-handloom-saree-with-red-checks-and-silk-pallu\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"28109\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-hover-info-alt product-grid-item product type-product post-30699 status-publish instock product_cat-kanchipuram-silk-sarees has-post-thumbnail shipping-taxable purchasable product-type-variable has-default-attributes\" data-loop=\"8\" data-id=\"30699\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=kanchipuram-saree\" class=\"product-image-link\">\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"500\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-09-29T170344.406-2.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-09-29T170344.406-2.png 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-09-29T170344.406-2-240x300.png 240w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-09-29T170344.406-2-150x188.png 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=kanchipuram-saree\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/vgreen3.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/vgreen3.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/vgreen3-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/vgreen3-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=kanchipuram-saree\">Kanchipuram Saree<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=kanchipuram-silk-sarees\" rel=\"tag\">Kanchipuram Silk Sarees<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>1,000.00<\/bdi><\/span> <span aria-hidden=\"true\">&ndash;<\/span> <span class=\"woocommerce-Price-amount amount\" aria-hidden=\"true\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>3,000.00<\/bdi><\/span><span class=\"screen-reader-text\">Price range: &#8377;1,000.00 through &#8377;3,000.00<\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=kanchipuram-saree\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_30699\" data-quantity=\"1\" class=\"button product_type_variable add_to_cart_button add-to-cart-loop\" data-product_id=\"30699\" data-product_sku=\"\" aria-label=\"Select options for &ldquo;Kanchipuram Saree&rdquo;\" rel=\"nofollow\"><span>Select options<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_30699\" class=\"screen-reader-text\">\n\t\tThis product has multiple variants. The options may be chosen on the product page\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=kanchipuram-saree\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"30699\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-28130 status-publish last instock product_cat-chikankari-embroidery-sarees has-post-thumbnail sale shipping-taxable purchasable product-type-simple\" data-loop=\"9\" data-id=\"28130\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=lucknow-chikankari-white-hand-embroidered-cotton-saree\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.1.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.1-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=lucknow-chikankari-white-hand-embroidered-cotton-saree\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.4.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.4.avif 367w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.4-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/14.4-150x225.avif 150w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=lucknow-chikankari-white-hand-embroidered-cotton-saree\">Lucknow Chikankari White Hand-Embroidered Cotton Saree<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=chikankari-embroidery-sarees\" rel=\"tag\">Chikankari Embroidery Sarees<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>5,278.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F29554&#038;add-to-cart=28130\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28130\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart add-to-cart-loop\" data-product_id=\"28130\" data-product_sku=\"V15LK006\" aria-label=\"Add to cart: &ldquo;Lucknow Chikankari White Hand-Embroidered Cotton Saree&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Lucknow Chikankari White Hand-Embroidered Cotton Saree&rdquo; has been added to your cart\" role=\"button\"><span>Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28130\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=lucknow-chikankari-white-hand-embroidered-cotton-saree\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"28130\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"wd-carousel-item\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-product wd-with-labels wd-hover-info-alt product-grid-item product type-product post-28158 status-publish first instock product_cat-maheshwari-si-co-sarees has-post-thumbnail sale shipping-taxable purchasable product-type-simple\" data-loop=\"10\" data-id=\"28158\">\n\t\n\t<div class=\"product-wrapper\">\n\t<div class=\"product-element\">\n\t\t<div class=\"product-element-top wd-quick-shop\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=maheshwari-dark-green-silk-cotton-handloom-saree\" class=\"product-image-link\">\n\t\t\t\t<div class=\"product-labels labels-rounded\"><span class=\"onsale product-label\">-20%<\/span><\/div><img loading=\"lazy\" decoding=\"async\" width=\"263\" height=\"395\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.1.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.1.avif 263w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.1-200x300.avif 200w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.1-150x225.avif 150w\" sizes=\"(max-width: 263px) 100vw, 263px\" \/>\t\t\t<\/a>\n\n\t\t\t\t\t\t<div class=\"hover-img\">\n\t\t\t\t<a href=\"https:\/\/viswaveda.in\/?product=maheshwari-dark-green-silk-cotton-handloom-saree\" aria-label=\"Product image\">\n\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"549\" height=\"551\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.2.avif\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.2.avif 549w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.2-299x300.avif 299w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.2-150x151.avif 150w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/15.2-430x432.avif 430w\" sizes=\"(max-width: 549px) 100vw, 549px\" \/>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"top-information wd-fill\">\n\n\t\t\t<h3 class=\"wd-entities-title\"><a href=\"https:\/\/viswaveda.in\/?product=maheshwari-dark-green-silk-cotton-handloom-saree\">Maheshwari Dark Green Silk-Cotton Handloom Saree<\/a><\/h3>\t\t\t\t\t<div class=\"wd-product-cats\">\n\t\t\t<a href=\"https:\/\/viswaveda.in\/?product_cat=maheshwari-si-co-sarees\" rel=\"tag\">Maheshwari Si-Co Sarees<\/a>\t\t<\/div>\n\t\t\n\t\t\t\t\t\t\t\t\t\n\t<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;<\/span>6,478.80<\/bdi><\/span><\/span>\n\n\t\t\t<div class=\"wd-add-btn wd-add-btn-replace\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F29554&#038;add-to-cart=28158\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28158\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart add-to-cart-loop\" data-product_id=\"28158\" data-product_sku=\"V08MH006\" aria-label=\"Add to cart: &ldquo;Maheshwari Dark Green Silk-Cotton Handloom Saree&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Maheshwari Dark Green Silk-Cotton Handloom Saree&rdquo; has been added to your cart\" role=\"button\"><span>Add to cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28158\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wd-buttons wd-pos-r-t\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quick-view wd-action-btn wd-style-icon wd-quick-view-icon\">\n\t\t\t<a\n\t\t\t\thref=\"https:\/\/viswaveda.in\/?product=maheshwari-dark-green-silk-cotton-handloom-saree\"\n\t\t\t\tclass=\"open-quick-view quick-view-button\"\n\t\t\t\trel=\"nofollow\"\n\t\t\t\tdata-id=\"28158\"\n\t\t\t\t>Quick view<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n\t\n\t<\/div>\n\n<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"wd-nav-arrows wd-pos-sep wd-hover-1 wd-icon-1\">\n\t\t\t<div class=\"wd-btn-arrow wd-prev wd-disabled\">\n\t\t\t\t<div class=\"wd-arrow-inner\"><\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"wd-btn-arrow wd-next\">\n\t\t\t\t<div class=\"wd-arrow-inner\"><\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<div class=\"wd-nav-pagin-wrap text-center wd-style-shape wd-hide-md-sm wd-hide-sm\">\n\t\t\t<ul class=\"wd-nav-pagin\"><\/ul>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\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<div class=\"elementor-element elementor-element-7a2b1fd wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"7a2b1fd\" data-element_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-1fe564a wd-width-100 elementor-widget elementor-widget-wd_title\" data-id=\"1fe564a\" data-element_type=\"widget\" data-widget_type=\"wd_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"title-wrapper wd-set-mb reset-last-child wd-title-color-default wd-title-style-default wd-title-size-large text-center\">\n\n\t\t\t\n\t\t\t<div class=\"liner-continer\">\n\t\t\t\t<h4 class=\"woodmart-title-container title wd-fontsize-xxl\">Why Shop With Us<\/h4> \n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\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<div class=\"elementor-element elementor-element-03111f7 wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"03111f7\" data-element_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<div class=\"elementor-element elementor-element-60bf3e0 e-con-full e-flex e-con e-child\" data-id=\"60bf3e0\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-32c625f elementor-widget elementor-widget-image\" data-id=\"32c625f\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-1.webp\" class=\"attachment-large size-large wp-image-29314\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-1.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-1-300x300.webp 300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-1-150x150.webp 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\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-1dcfc4f e-con-full e-flex e-con e-child\" data-id=\"1dcfc4f\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b0b8f7 elementor-widget elementor-widget-image\" data-id=\"2b0b8f7\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project.webp\" class=\"attachment-large size-large wp-image-29312\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-300x300.webp 300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-150x150.webp 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\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-13d334f e-con-full e-flex e-con e-child\" data-id=\"13d334f\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f69b62 elementor-widget elementor-widget-image\" data-id=\"7f69b62\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"280\" height=\"500\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-10-16T092701.280.png\" class=\"attachment-large size-large wp-image-29311\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-10-16T092701.280.png 280w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-10-16T092701.280-168x300.png 168w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2025-10-16T092701.280-150x268.png 150w\" sizes=\"(max-width: 280px) 100vw, 280px\" \/>\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-a27a81b e-con-full e-flex e-con e-child\" data-id=\"a27a81b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b56bad0 elementor-widget elementor-widget-image\" data-id=\"b56bad0\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2.webp\" class=\"attachment-large size-large wp-image-29316\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2-300x300.webp 300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-2-150x150.webp 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\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-3e38770 e-con-full e-flex e-con e-child\" data-id=\"3e38770\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-411f352 elementor-widget elementor-widget-image\" data-id=\"411f352\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-3.webp\" class=\"attachment-large size-large wp-image-29317\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-3.webp 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-3-300x300.webp 300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/New-Project-3-150x150.webp 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-524a948 e-con-full wd-section-stretch e-flex e-con e-parent\" data-id=\"524a948\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b5c3f86 elementor-widget elementor-widget-image\" data-id=\"b5c3f86\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1300\" height=\"593\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png\" class=\"attachment-large size-large wp-image-29253\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1300x593.png 1300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-400x182.png 400w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-768x350.png 768w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-1536x700.png 1536w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-2048x934.png 2048w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-430x196.png 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-700x319.png 700w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/border-1-150x68.png 150w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" \/>\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-cb7872a wd-section-stretch e-flex e-con-boxed e-con e-parent\" data-id=\"cb7872a\" data-element_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<div class=\"elementor-element elementor-element-3f72327 e-con-full e-flex e-con e-child\" data-id=\"3f72327\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4b7cad7 wd-width-100 elementor-widget elementor-widget-wd_title\" data-id=\"4b7cad7\" data-element_type=\"widget\" data-widget_type=\"wd_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"title-wrapper wd-set-mb reset-last-child wd-title-color-default wd-title-style-default wd-title-size-large text-left\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"title-subtitle subtitle-color-default subtitle-style-default wd-fontsize-xs\">\n\t\t\t\t\tCertified Authenticity\t\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"liner-continer\">\n\t\t\t\t<h4 class=\"woodmart-title-container title wd-fontsize-xxl\">Every Saree, A Mark of Assurance<\/h4> \n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"title-after_title reset-last-child wd-fontsize-s\">\n\t\t\t\t\t<p>At Viswaveda, we take pride in offering sarees that carry the mark of trust and tradition. Our collections are recognized and certified by India\u2019s leading textile authorities, assuring you of genuine quality, purity, and craftsmanship.<\/p>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"wd-negative-gap elementor-element elementor-element-1cf60ac e-flex e-con-boxed e-con e-child\" data-id=\"1cf60ac\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2c2c3cb elementor-widget__width-auto elementor-widget elementor-widget-wd_button\" data-id=\"2c2c3cb\" data-element_type=\"widget\" data-widget_type=\"wd_button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"wd-button-wrapper text-center\" >\n\t\t\t<a class=\"btn btn-style-default btn-shape-semi-round btn-size-default btn-color-custom btn-icon-pos-right\"  href=\"https:\/\/viswaveda.in\/shop\/\">\n\t\t\t\t<span class=\"wd-btn-text\" data-elementor-setting-key=\"text\">\n\t\t\t\t\tSHOP NOW\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\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<div class=\"elementor-element elementor-element-1106863 e-con-full e-flex e-con e-child\" data-id=\"1106863\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-66ba691 elementor-widget elementor-widget-image\" data-id=\"66ba691\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"900\" src=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838.webp\" class=\"attachment-full size-full wp-image-29325\" alt=\"\" srcset=\"https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838.webp 900w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838-300x300.webp 300w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838-800x800.webp 800w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838-150x150.webp 150w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838-768x768.webp 768w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838-430x430.webp 430w, https:\/\/viswaveda.in\/wp-content\/uploads\/2025\/10\/42838-700x700.webp 700w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>WELCOME TO VISWAVEDA Explore Our Saree Collections Beautiful Handloom and\u00a0Handcrafted sarees collection Venkatagiri Cotton Baluchari Cotton Shantipur Jamdhani Maheshwari Si-Co<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-29554","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/viswaveda.in\/index.php?rest_route=\/wp\/v2\/pages\/29554","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/viswaveda.in\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/viswaveda.in\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/viswaveda.in\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/viswaveda.in\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=29554"}],"version-history":[{"count":101,"href":"https:\/\/viswaveda.in\/index.php?rest_route=\/wp\/v2\/pages\/29554\/revisions"}],"predecessor-version":[{"id":29771,"href":"https:\/\/viswaveda.in\/index.php?rest_route=\/wp\/v2\/pages\/29554\/revisions\/29771"}],"wp:attachment":[{"href":"https:\/\/viswaveda.in\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=29554"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}