/*
Theme Name: Motta Child Theme
Theme URI: http://motta.uix.store/
Author: UIX Themes
Author URI: http://uix.store
Description: A fully responsive Premium WordPress Theme with a pixel perfect design and extensive functionality
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: motta
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Template: motta
*/
#datapago-redirect-container .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}


.single-product div.product.has-buy-now .quantity {
    margin-right: 0px !important;
    margin-bottom: 24px;
    width: 100% !important;
}

body { font-family: 'Montserrat', Arial, sans-serif; }
h1, h2, h3 { font-family: 'Nunito', Arial, sans-serif; }



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

add_filter('template_include', function($template) {
    if (is_singular('product')) {
        echo '<!-- Plantilla cargada: ' . basename($template) . ' -->';
    }
    return $template;
}, 100);