
// Load custom single template for vehicle listings
add_filter('single_template', function($template) {
    if (get_post_type() === 'at_biz_dir') {
        $custom = get_stylesheet_directory() . '/single-vehicle.php';
        if (file_exists($custom)) return $custom;
    }
    return $template;
});

/*
 Theme Name: GeneratePress Child
 Theme URI: https://tankiberica.com
 Description: Tema hijo de GeneratePress
 Author: Byte Factory
 Author URI: https://tankiberica.com
 Template: generatepress
 Version: 1.0
*/

/* CSS personalizado aquí */


/* Header consistente en todas las páginas */
.site-logo img, .custom-logo {
    object-fit: contain !important;
    height: auto !important;
    max-height: 57px !important;
    transition: max-height 0.3s !important;
}
.site-header.scrolled .site-logo img,
.site-header.scrolled .custom-logo {
    max-height: 30px !important;
    width: auto !important;
}
.site-header.scrolled .inside-header {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.site-header.scrolled .main-navigation .main-nav > ul > li > a {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
