    <!--<style>-->
        
    <!--    #popup-overlay {-->
    <!--        position: fixed;-->
    <!--        top: 0;-->
    <!--        left: 0;-->
    <!--        width: 100%;-->
    <!--        height: 100%;-->
    <!--        background: rgba(0,0,0,0.7);-->
    <!--        display: none;-->
    <!--        justify-content: center;-->
    <!--        align-items: center;-->
    <!--        z-index: 9999;-->
    <!--        padding: 15px;-->
    <!--        box-sizing: border-box;-->
    <!--    }-->
    <!--    #popup-box {-->
    <!--        background: #fff;-->
    <!--        max-width: 500px;-->
    <!--        width: 100%;-->
            <!--max-height: 95vh;-->
    <!--        border-radius: 16px;-->
    <!--        overflow: hidden;-->
    <!--        box-shadow: 0 15px 40px rgba(0,0,0,0.4);-->
    <!--        text-align: center;-->
    <!--        animation: fadeIn 0.3s ease;-->
    <!--        position: relative;-->
    <!--        display: flex;-->
    <!--        flex-direction: column;-->
    <!--    }-->
    <!--    @keyframes fadeIn {-->
    <!--        from { transform: scale(0.8); opacity: 0; }-->
    <!--        to { transform: scale(1); opacity: 1; }-->
    <!--    }-->
    <!--    #popup-box img {-->
    <!--        width: 100%;-->
    <!--        height: auto;-->
            <!--max-height: 70vh; -->
            <!--object-fit: contain; -->
    <!--        display: block;-->
            <!--background: #fff;-->
    <!--    }-->
    <!--    #popup-close {-->
    <!--        position: absolute;-->
    <!--        top: 12px;-->
    <!--        right: 18px;-->
    <!--        font-size: 32px;-->
    <!--        font-weight: bold;-->
    <!--        color: #fff;-->
    <!--        background: rgba(0,0,0,0.5);-->
    <!--        border: none;-->
    <!--        border-radius: 50%;-->
    <!--        width: 40px;-->
    <!--        height: 40px;-->
    <!--        line-height: 40px;-->
    <!--        text-align: center;-->
    <!--        cursor: pointer;-->
    <!--        transition: 0.2s;-->
    <!--        z-index: 10;-->
    <!--        box-shadow: 0 2px 8px rgba(0,0,0,0.3);-->
    <!--    }-->
    <!--    #popup-close:hover {-->
    <!--        background: rgba(0,0,0,0.8);-->
    <!--    }-->

    <!--    .popup-btn-wrapper {-->
    <!--        padding: 20px 20px 25px;-->
    <!--        background: #fff;-->
            <!--flex-shrink: 0;-->
    <!--    }-->
    <!--    .popup-btn {-->
    <!--        display: inline-block;-->
    <!--        background: #e74c3c;-->
    <!--        color: #fff;-->
    <!--        padding: 14px 40px;-->
    <!--        border: none;-->
    <!--        border-radius: 50px;-->
    <!--        font-size: 20px;-->
    <!--        font-weight: bold;-->
    <!--        cursor: pointer;-->
    <!--        transition: background 0.2s;-->
    <!--        text-decoration: none;-->
    <!--        box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);-->
    <!--    }-->
    <!--    .popup-btn:hover {-->
    <!--        background: #c0392b;-->
    <!--    }-->

    <!--    @media (max-width: 600px) {-->
    <!--        #popup-box {-->
    <!--            max-width: 98%;-->
    <!--            max-height: 98vh;-->
    <!--            border-radius: 12px;-->
    <!--        }-->
    <!--        #popup-box img {-->
                <!--max-height: 60vh; -->
    <!--            object-fit: contain;-->
    <!--        }-->
    <!--        .popup-btn {-->
    <!--            padding: 12px 30px;-->
    <!--            font-size: 18px;-->
    <!--        }-->
    <!--        #popup-close {-->
    <!--            top: 8px;-->
    <!--            right: 12px;-->
    <!--            font-size: 28px;-->
    <!--            width: 34px;-->
    <!--            height: 34px;-->
    <!--            line-height: 34px;-->
    <!--        }-->
    <!--    }-->

    <!--    @media (min-width: 601px) and (max-width: 1024px) {-->
    <!--        #popup-box {-->
    <!--            max-width: 80%;-->
    <!--        }-->
    <!--        #popup-box img {-->
    <!--            max-height: 65vh;-->
    <!--        }-->
    <!--    }-->

    <!--    @media (min-width: 1025px) {-->
    <!--        #popup-box {-->
    <!--            max-width: 500px;-->
    <!--        }-->
    <!--        #popup-box img {-->
    <!--            max-height: 70vh;-->
    <!--        }-->
    <!--    }-->
    <!--</style>-->

    <!-- ساختار پاپ‌آپ -->
    <!--<div id="popup-overlay">-->
    <!--    <div id="popup-box">-->
            <!-- دکمه بستن -->
    <!--        <button id="popup-close">&times;</button>-->

            <!-- تصویر -->
    <!--        <img src="https://mojtabatamassoki.com/wp-content/uploads/2026/08/Untitled-1333.webp" alt="تخفیف ویژه">-->

            <!-- دکمه کلیک کنید -->
    <!--        <div class="popup-btn-wrapper">-->
    <!--            <button class="popup-btn" id="popup-action">کلیک کنید</button>-->
    <!--        </div>-->
    <!--    </div>-->
    <!--</div>-->

    <!--<script>-->
    <!--    (function() {-->
    <!--        var COOKIE_NAME = 'popup_image_shown';-->
    <!--        var EXPIRE_DAYS = 365;-->

    <!--        function setCookie(name, value, days) {-->
    <!--            var expires = '';-->
    <!--            if (days) {-->
    <!--                var date = new Date();-->
    <!--                date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));-->
    <!--                expires = '; expires=' + date.toUTCString();-->
    <!--            }-->
    <!--            document.cookie = name + '=' + (value || '') + expires + '; path=/';-->
    <!--        }-->

    <!--        function getCookie(name) {-->
    <!--            var nameEQ = name + '=';-->
    <!--            var ca = document.cookie.split(';');-->
    <!--            for (var i = 0; i < ca.length; i++) {-->
    <!--                var c = ca[i];-->
    <!--                while (c.charAt(0) === ' ') c = c.substring(1, c.length);-->
    <!--                if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length);-->
    <!--            }-->
    <!--            return null;-->
    <!--        }-->

    <!--        var overlay = document.getElementById('popup-overlay');-->
    <!--        var closeBtn = document.getElementById('popup-close');-->
    <!--        var actionBtn = document.getElementById('popup-action');-->

    <!--        function showPopup() {-->
    <!--            if (overlay) {-->
    <!--                overlay.style.display = 'flex';-->
    <!--                document.body.style.overflow = 'hidden';-->
    <!--            }-->
    <!--        }-->

    <!--        function hidePopup() {-->
    <!--            if (overlay) {-->
    <!--                overlay.style.display = 'none';-->
    <!--                document.body.style.overflow = '';-->
    <!--            }-->
    <!--            setCookie(COOKIE_NAME, 'true', EXPIRE_DAYS);-->
    <!--        }-->

    <!--        if (!getCookie(COOKIE_NAME)) {-->
    <!--            setTimeout(showPopup, 1000);-->
    <!--        }-->

    <!--        if (closeBtn) closeBtn.addEventListener('click', hidePopup);-->
    <!--        if (actionBtn) {-->
    <!--            actionBtn.addEventListener('click', function() {-->
    <!--                window.location.href = 'https://mojtabatamassoki.com/free-start/';-->
    <!--                hidePopup();-->
    <!--            });-->
    <!--        }-->
    <!--        if (overlay) {-->
    <!--            overlay.addEventListener('click', function(e) {-->
    <!--                if (e.target === overlay) hidePopup();-->
    <!--            });-->
    <!--        }-->
    <!--    })();-->
    <!--</script>-->
    <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//mojtabatamassoki.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://mojtabatamassoki.com/post-sitemap1.xml</loc>
		<lastmod>2026-09-01T16:16:17+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://mojtabatamassoki.com/post-sitemap2.xml</loc>
		<lastmod>2026-08-31T12:55:09+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://mojtabatamassoki.com/page-sitemap.xml</loc>
		<lastmod>2026-08-25T10:48:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://mojtabatamassoki.com/product-sitemap.xml</loc>
		<lastmod>2026-09-03T08:09:59+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://mojtabatamassoki.com/teacher-sitemap.xml</loc>
		<lastmod>2025-12-24T06:11:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://mojtabatamassoki.com/category-sitemap.xml</loc>
		<lastmod>2026-09-01T16:16:17+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://mojtabatamassoki.com/product_cat-sitemap.xml</loc>
		<lastmod>2026-09-03T08:10:03+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://mojtabatamassoki.com/local-sitemap.xml</loc>
		<lastmod>2026-09-03T08:36:58+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->