/* 
Theme Name: Bricks Child
Theme URI: https://bricksbuilder.io/
Description: Bricks Child Theme
Author: Bricks Team
Author URI: https://bricksbuilder.io/
Template: bricks
Version: 1.0.0
Text Domain: bricks-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* ===========================
   Tema Pokémon — Light Mode
   =========================== */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent: #e3350d;
    --accent-hover: #ff5533;
    --gold: #f5c518;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
}
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

// Reindirizza ricerca al catalogo
add_action('template_redirect', function() {
    if (is_search() && !is_admin()) {
        $search = get_search_query();
        wp_redirect('/catalogo/?s=' . urlencode($search));
        exit;
    }
});

