/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
/* Mobilna wyszukiwarka biznesplanów */

/* Domyślnie - ukryta na komputerze */
.fp-mobile-product-search {
    display: none !important;
}

/* Telefon */
@media (max-width: 1000px) {

    .fp-mobile-product-search {
        display: block !important;
        width: 100%;
        margin: 0 0 24px 0;
        padding: 16px;
        background: #f7f8fa;
        box-sizing: border-box;
    }

    .fp-mobile-search-title {
        font-weight: 700;
        margin-bottom: 8px;
    }

    .fp-mobile-product-search .woocommerce-product-search {
        display: flex;
        gap: 8px;
        align-items: stretch;
    }

    .fp-mobile-product-search .search-field {
        flex: 1;
        min-width: 0;
    }

    .fp-mobile-product-search button {
        white-space: nowrap;
    }

    /* Ukryj starą wyszukiwarkę z panelu bocznego na telefonie */
    .wp-block-search:has(input[name="post_type"][value="product"]) {
        display: none !important;
    }
}

/* Ukrycie kategorii produktów na telefonie */
@media (max-width: 768px) {
    .products .product .entry-meta,
    .products .product .product-categories {
        display: none !important;
    }
}