/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Child theme for Hello Elementor.
Author: Your Name
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

@import url("../hello-elementor/style.css");

/* Add your custom CSS below */

section.related.products {
  clear: both;
  display: block;
  width: 100%;
  float: none;
  margin-top: 40px; /* optional spacing */
  margin-bottom: 40px; /* optional spacing */
}

.wp-list-table.widefat.fixed.striped.table-view-list {
    table-layout: fixed;
}
.wp-list-table.widefat.fixed.striped.table-view-list th,
.wp-list-table.widefat.fixed.striped.table-view-list td {
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-product p.price {
    display: none;
}

body.woocommerce.single-product form.cart button.single_add_to_cart_button.button.alt {
    background-color: #3B2A1F !important;
    color: #fff !important;
    border-color: #3B2A1F !important;

    /* Flexible sizing */
    padding: 0.65em 1.5em;
    min-height: 41px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    text-transform: uppercase;
    font-weight: 600;

    transition: all 0.3s ease;
}

body.woocommerce.single-product form.cart button.single_add_to_cart_button.button.alt:hover {
    background-color: #2d1f16 !important;
    border-color: #2d1f16 !important;
    color: #fff !important;
    transform: translateY(-1px);
}
add_filter( 'woocommerce_order_button_text', 'change_proceed_to_checkout' );
function change_proceed_to_checkout() {
    return 'Confirm Booking'; // your new button text
}

add_filter( 'woocommerce_proceed_to_checkout', 'change_cart_checkout_button_text' );
function change_cart_checkout_button_text( $button ) {
    $button = str_replace( 'Proceed to Checkout', 'Confirm Booking', $button );
    return $button;
}
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3JHS2VJYJF">
</script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-3JHS2VJYJF');
</script>


