<!DOCTYPE html>
<html lang="en-US">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
        <title>Coming Soon</title>
        <style>
            html *:not(body):not(.hsr-coming-soon-body > *) {
                display: none;
            }

            .hsr-coming-soon-body {
                display: flex !important;
            }
        </style>
    </head>
    <body class="hostinger">
        <div class="hsr-coming-soon-body">
            <img alt="logo" class="hsr-logo"
                src="https://roundthetable.co/wp-content/plugins/hostinger/assets/images/logo-black.svg">
            <img alt="illustration" class="hsr-coming-soon-illustration"
                src="https://roundthetable.co/wp-content/plugins/hostinger/assets/images/illustration.png">
            <h3>
                Coming Soon            </h3>
            <p>
                New WordPress website is being built and will be published soon            </p>
        </div>

        <script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/roundthetable/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
			<script>
				const registerAllyAction = () => {
					if ( ! window?.ElementorProFrontendConfig || ! window?.elementorFrontend?.utils?.urlActions ) {
						return;
					}

					elementorFrontend.utils.urlActions.addAction( 'allyWidget:open', () => {
						if (window?.ea11yWidget?.widget?.open) {
							return window.ea11yWidget.widget.isOpen()
								? window.ea11yWidget.widget.close()
								: window.ea11yWidget.widget.open();
						}
					} );
				};

				const waitingLimit = 30;
				let retryCounter = 0;

				const waitForElementorPro = () => {
					return new Promise( ( resolve ) => {
						const intervalId = setInterval( () => {
							if ( retryCounter === waitingLimit ) {
								resolve( null );
							}

							retryCounter++;

							if ( window.elementorFrontend && window?.elementorFrontend?.utils?.urlActions ) {
								clearInterval( intervalId );
								resolve( window.elementorFrontend );
							}
								}, 100 ); // Check every 100 milliseconds for availability of elementorFrontend
					});
				};

				waitForElementorPro().then( () => { registerAllyAction(); });
			</script>
						<script>
				( () => {
					const lazyloadRunObserver = () => {
						const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
						const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
							entries.forEach( ( entry ) => {
								if ( entry.isIntersecting ) {
									let lazyloadBackground = entry.target;
									if( lazyloadBackground ) {
										lazyloadBackground.classList.add( 'e-lazyloaded' );
									}
									lazyloadBackgroundObserver.unobserve( entry.target );
								}
							});
						}, { rootMargin: '200px 0px 200px 0px' } );
						lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
							lazyloadBackgroundObserver.observe( lazyloadBackground );
						} );
					};
					const events = [
						'DOMContentLoaded',
						'elementor/lazyload/observe',
					];
					events.forEach( ( event ) => {
						document.addEventListener( event, lazyloadRunObserver );
					} );
				} )();
			</script>
			
<link rel='stylesheet' id='hostinger_main_styles-css' href='https://roundthetable.co/wp-content/plugins/hostinger/assets//css/coming-soon.min.css' media='all' />
<style>
@media (max-width: 768px) {

    /* Panel hidden by default, slide-down animation */
    #facetwp-panel 
		{
        display: none;
        overflow: hidden;
        padding: 15px;
        background: #f7f7f7;
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-top: 10px;
        max-height: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
	
	#facetwp-panel [type=button], 
	#facetwp-panel [type=submit], 
	button#facetwp-toggle
	{
    border: 0;
	}

    #facetwp-panel.active 
		{
        display: block;
        max-height: 2000px;
        padding: 15px;
    }

    /* Close button */
    #facetwp-close 
		{
        display: block;
        width: 100%;
        text-align: left;
        font-size: 16px;
        background: none;
        border: none;
        margin-bottom: 10px;
        cursor: pointer;
    }

    /* Sticky toggle button */
    #facetwp-toggle 
		{
        position: sticky;
        top: 10px;
        width: 100%;
        background: #2B2A27;
        color: #fff;
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #facetwp-toggle-count 
		{
        background: #ff0000;
        color: #fff;
        border-radius: 12px;
        padding: 2px 6px;
        font-size: 12px;
        margin-left: 5px;
    }

    #facetwp-toggle-chevron 
		{
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    #facetwp-toggle.open #facetwp-toggle-chevron 
		{
        transform: rotate(180deg);
    }

    /* Accordion for Elementor FacetWP widgets */
    #facetwp-panel .facetwp-facet 
		{
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    #facetwp-panel .facetwp-facet .facetwp-title 
		{
        cursor: pointer;
        font-weight: bold;
        padding: 5px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #facetwp-panel .facetwp-facet .facetwp-options 
		{
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    #facetwp-panel .facetwp-facet.active .facetwp-options 
		{
        max-height: 1000px;
        padding-top: 5px;
    }
}

@media (min-width: 769px) 
{
    #facetwp-toggle,
    #facetwp-close 
		{
        display: none !important;
    }
    #facetwp-panel 
		{
        display: block !important;
        max-height: none !important;
    }
}


</style>

<script>
document.addEventListener("DOMContentLoaded", function () {

    const toggleBtn = document.getElementById("facetwp-toggle");
    const closeBtn  = document.getElementById("facetwp-close");
    const panel     = document.getElementById("facetwp-panel");
    const countEl   = document.getElementById("facetwp-toggle-count");

    if (!toggleBtn || !closeBtn || !panel) return;

    // Open panel
    toggleBtn.addEventListener("click", function() {
        panel.classList.toggle("active");
        toggleBtn.classList.toggle("open");
    });

    // Close panel
    closeBtn.addEventListener("click", function() {
        panel.classList.remove("active");
        toggleBtn.classList.remove("open");
    });

    // Accordion behavior for Elementor FacetWP widgets
    panel.querySelectorAll(".facetwp-facet").forEach(function(facet){
        const title = facet.querySelector(".facetwp-title");
        if (!title) return;
        title.addEventListener("click", function() {
            facet.classList.toggle("active");
        });
    });

    // Function to count active filters
    function updateFilterCount() {
        if (!window.FWP) return;
        let total = 0;
        for (const facetName in FWP.active_facets) {
            total += FWP.active_facets[facetName].length;
        }
        countEl.textContent = total > 0 ? total : '';
    }

    // Update filter count on FacetWP load/refresh
    if (window.FWP) {
        jQuery(document).on('facetwp-loaded', updateFilterCount);
        updateFilterCount();
    }

});



</script>
    </body>
</html>


<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-30 19:43:14 -->