/*
Theme Name: Shoptimizer Child Theme
Theme URI: 
Description: Child theme of Shoptimizer
Author: CommerceGurus
Author URI: 
Template: shoptimizer
Version: 1.2.2
License:         	GNU General Public License v2 or later
License URI:     	http://www.gnu.org/licenses/gpl-2.0.html
*/
css/* ============================================================
   SHOPTIMIZER — Ikona SVG nad labelami HOME i KOSZYK w headerze
   Wklej do: WP Admin > Wygląd > Dostosuj > Dodatkowy CSS
   ============================================================ */

/* --- Kontener — wymuszamy flex column żeby ikona była nad tekstem --- */
.site-header-cart > li > a.cart-contents,
.header-widget-region a[href="/"] {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* ============================================================
   HOME — ikona domku (Font Awesome lub Unicode)
   ============================================================ */
.header-widget-region .shoptimizer-home-icon a::before {
    font-family: "Font Awesome 5 Free", "FontAwesome", sans-serif;
    font-weight: 900;
    content: "\f015";       /* fa-home */
    font-size: 16px;
    line-height: 1;
    display: block;
    order: -1;               /* wymuś pozycję PRZED tekstem/TOP */
    color: currentColor;
}

/* ============================================================
   KOSZYK — ikona torby/koszyka
   ============================================================ */
.site-header-cart > li > a.cart-contents::before {
    font-family: "Font Awesome 5 Free", "FontAwesome", sans-serif;
    font-weight: 900;
    content: "\f291";       /* fa-shopping-basket — lub \f07a dla cart */
    font-size: 16px;
    line-height: 1;
    display: block;
    order: -1;
    color: currentColor;
}

/* Ukryj oryginalny SVG z motywu jeśli duplikuje ikonę
   (odkomentuj tylko jeśli widzisz podwójną ikonę) */
/*
.site-header-cart .shoptimizer-cart-icon-svg { display: none; }
.header-widget-region .shoptimizer-home-icon svg { display: none; }
*/