This is the code that generates cart icon:
? ? function luxuryconcept_mini_cart_header() {
? ? ? ? if ( luxuryconcept_is_woocommerce_activated() ) {
? ? ? ? ? ? if ( ! is_cart() and ! is_checkout() ) {
? ? ? ? ? ? ? ? global $woocommerce;
? ? ? ? ? ? ? ? $count = $woocommerce->cart->cart_contents_count;
? ? ? ? ? ? ? ? ?>
? ? ? ? ? ? ? ? <ul class="header__mini_cart">
? ? ? ? ? ? ? ? ? ? <li class="btnOpenCart_container">
? ? ? ? ? ? ? ? ? ? ? ? <button aria-label="<?php esc_html_e( 'Open Cart', 'luxuryconcept' ) ?>" data-toggle="dropdown"
? ? ? ? ? ? ? ? ? ? ? ? ? ? aria-expanded="false" id="btnOpenCart" class="mini_cart_button">
? ? ? ? ? ? ? ? ? ? ? ? ? ? <svg class="at-icon icon-32 no-pointer-events" fill="none">
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <use href="#cart-outline"></use>
? ? ? ? ? ? ? ? ? ? ? ? ? ? </svg>
? ? ? ? ? ? ? ? ? ? ? ? </button>
? ? ? ? ? ? ? ? ? ? ? ? <span class="badge-cart-items-count"><?php echo esc_html( $count ); ?></span>
? ? ? ? ? ? ? ? ? ? </li>
? ? ? ? ? ? ? ? ? ? <?php if ( esc_attr( get_theme_mod( 'luxuryconcept_cart_type', LC_DEFAULT_CART_TYPE ) ) == 'classic' ) : ?>
? ? ? ? ? ? ? ? ? ? ? ? <li class="li__classic_cart">
? ? ? ? ? ? ? ? ? ? ? ? ? ? <div class="classic_shopping_cart top-chevron-border">
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <?php the_widget( 'WC_Widget_Cart', 'title=' ); ?>
? ? ? ? ? ? ? ? ? ? ? ? ? ? </div>
? ? ? ? ? ? ? ? ? ? ? ? </li>
? ? ? ? ? ? ? ? ? ? <?php endif; ?>
? ? ? ? ? ? ? ? </ul>
? ? ? ? ? ? ? ? <?php
? ? ? ? ? ? }
? ? ? ? }
? ? }
where <span class="badge-cart-items-count"><?php echo esc_html( $count ); ?></span>
is the issue.