/* 
 Theme Name:   shoptimizer child
 Theme URI:    
 Description:  
 Author:       Lisaverso
 Author URI:   https://lisaverso.cl
 Template:     shoptimizer
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/

add_action( 'woocommerce_after_add_to_cart_button', 'lisaverso_trust_badges', 10 );

function lisaverso_trust_badges() {
    ?>
    <div class="lv-trust-badges">

        <div class="lv-badge">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
                 stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round">
                <rect x="1" y="3" width="15" height="13" rx="2"/>
                <path d="M16 8h4l3 5v3h-7V8z"/>
                <circle cx="5.5" cy="18.5" r="2.5"/>
                <circle cx="18.5" cy="18.5" r="2.5"/>
            </svg>
            <div class="lv-badge-text">
                <strong>Envío a todo Chile</strong>
                <span>Despacho a domicilio</span>
            </div>
        </div>

        <div class="lv-badge">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
                 stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round">
                <rect x="1" y="4" width="22" height="16" rx="2"/>
                <line x1="1" y1="10" x2="23" y2="10"/>
            </svg>
            <div class="lv-badge-text">
                <strong>Pago 100% seguro</strong>
                <span>Transacción protegida</span>
            </div>
        </div>

        <div class="lv-badge">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
                 stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round">
                <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
                <polyline points="9 12 11 14 15 10"/>
            </svg>
            <div class="lv-badge-text">
                <strong>Producto garantizado</strong>
                <span>Calidad artesanal Chiloé</span>
            </div>
        </div>

    </div>
    <?php
}
