/* Tablet App View */
body.nps-mobile-app-webview {
    background: #ffffff !important;
    background-color: #ffffff !important;

    .wd-page-content{
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    /* Made Products 2 column in mobile and 4 in tablet */
    .wd-products {
        --wd-col-md: 4 !important;
        --wd-col-sm: 2 !important;
    }

    .shop-loop-head{
        display: none;
    }

    &.woocommerce-shop .wd-sidebar,
    &.woodmart-archive-shop .wd-sidebar,
    &.woodmart-archive-shop .term-description,
    &.woodmart-archive-shop .wd-page-title {
        display: none;
    }

    &.woocommerce-shop .wd-content-area,
    &.woodmart-archive-shop .wd-content-area {
        grid-column: auto/span 12;
    }

    /* Breadcrumbs */
    .wd-breadcrumbs {
        display: none;
    }

    /* <-- Header */
    .whb-header-bottom-inner {
        display: none !important;
    }
    /* Header --> */


    /* <-- Home Page */

    .homepage-herosliders-container {
        margin-top: -10px;
        padding-left: 0;
    }

    /* Homepage Icon Section */
    .home-icon-section-container {
        display: none;
    }

    /* Homepage Spacer between Icon Section and Flash Sales */
    .home-spacer-1 {
        display: none;
    }

    /* Flash Sales Container */
    #home-flash-sales {
        margin-bottom: -40px;
    }

    /* Made Category grid 2 in mobile */
    .categories-loop-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    /* Banners */
    .after-flash-sales-container,
    .after-popular-products-banners,
    .popular-filter-on-side-mobile-banners,
    .after-popular-filter-banner-container {
        display: none;
    }

    .home-popular-products-section {
        margin-bottom: -50px;
    }

    /* Popular filter container */
    .home-popular-filters-container {
        display: none;
    }

    .scrollToTop {
        display: none;
    }
    /* Home Page --> */

    /* <-- Single Product Page */
    &.single-product .wd-content-layout {
        padding-block: 0;
    }

    .single-product-breadcrumbs-section {
        display: none;
    }

    .single-product-image-container {
        width: 100%;
    }

    .single-product-details-container {
        margin-top: 25px;
    }

    .single-product-title-container {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .wd-attr-selected {
        display: none !important;
    }

    .reset_variations {
        display: none !important;
    }

    .woocommerce-variation-add-to-cart {
        padding-bottom: 20px;
        padding-top: 20px;
    }
    
    .single-product-seller-details-container {
        display: none;
    }

    .single-product-related-products-loop-container .elementor-loop-container {
        grid-template-columns: 1fr;
    }
    /* Single Product Page --> */
    
    /* Wishlist Page */
    .wd-social-icons {
        display: none;
    }

    /* My Account page */
    .wd-my-account-sidebar {
        display: none;
    }

    .woocommerce-MyAccount-content {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Main Header */
    .whb-header {
        display: none;
    }

    /* Sticky Header */
    .whb-sticky-header {
        display: none;
    }

    /* Footer */
    .wd-footer {
        display: none;
    }
    
}

html:has(body.nps-mobile-app-webview) {
    /* Hide Scroll bar for mobile */
    scrollbar-width: none;
}

@media only screen and (max-width: 2752px) and (hover: none) {
    /* Hide Scroll bar for mobile */
    * {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    *::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
}


/* Mobile App View */
@media screen and (max-width: 768px) {
    body.nps-mobile-app-webview {

        /* Made Category grid 2 in mobile */
        .categories-loop-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }
}