/**
* Theme Name: Goya Child Theme
* Description: This is a child theme of Goya, automatically generated.
* Author: <a href="https://themeforest.net/user/everthemess">Everthemes</a>
* Template: goya
* Version: 1.0.9.9
*/
/* =========================================================
 * CAVENZI PRODUCT SHOWROOM BANNER
 * Position: immediately above single-product title
 * ========================================================= */

add_action(
    'woocommerce_single_product_summary',
    'cvz_product_showroom_banner',
    4
);

function cvz_product_showroom_banner() {

    if ( ! is_product() ) {
        return;
    }

    ?>
    <div class="cvz-product-showroom-banner">

        <div class="cvz-product-showroom-icon" aria-hidden="true">
            🏬
        </div>

        <div class="cvz-product-showroom-copy">
            <strong>See It In Our Showroom</strong>
            <span>Touch, feel &amp; compare selected furniture before buying.</span>
        </div>

        <a
            class="cvz-product-showroom-button"
            href="/contact-us/"
        >
            Showroom
            <span aria-hidden="true">→</span>
        </a>

    </div>
    <?php
}