/*
Theme Name: Sanora Custom Child
Theme URI: http://www.sanora.nl/
Author: sanora.nl
Author URI: http://sanora.nl
Description: Sanora custom Child Theme.
Version: 1.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: martfury
Domain Path: /lang/
Template: martfury
*/

/* BEGIN CSS extra tabblad "Kenmerken" */

table.specs {
    width: 100% !important;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 14px;
    line-height: 1.4;
}

table.specs th,
table.specs td {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

table.specs th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
    width: 30%;
}

table.specs tr:nth-child(even) td {
    background-color: #fcfcfc;
}

table.specs tr:hover td {
    background-color: #f1f1f1;
}

/* EINDE CSS extra tabblad "Kenmerken" */

/* Logo niet tonen in header (logo op topbar via widgets)

.site-logo {
	display: none;
}
*/
/* EINDE Logo niet tonen in header (logo op topbar via widgets)*/



add_filter( 'woocommerce_checkout_terms_and_conditions_checkbox_text', 'custom_terms_checkbox_text' );
function custom_terms_checkbox_text( $text ) {
    $text = 'Ik heb de websitevoorwaarden gelezen en ga hiermee akkoord'; // jouw aangepaste tekst
    return $text;
}

