/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 1.5
*/

/* =====================================================
   Custom CSS - Final Unified Icons & Badge Fix
   ===================================================== */

/* 1. ОТКЛЮЧАЕМ РОДНЫЕ ШРИФТЫ */
.is-custom-lucide-icon::before {
    display: none !important;
    content: "" !important;
}

/* 2. БАЗОВЫЕ СТИЛИ SVG */
.is-custom-lucide-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    color: #2d2d2d !important;
    font-style: normal !important;
    position: relative !important;
}

.is-custom-lucide-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #2d2d2d !important;
    stroke-width: 1.75 !important;
}

/* 3. НАСТРОЙКА СЧЕТЧИКА ТОВАРОВ (Badge) */
/* Вешаем на любой элемент, имеющий атрибут data-icon-label */
[data-icon-label]:after {
    display: block !important;
    content: attr(data-icon-label) !important;
    position: absolute !important;
    top: -8px !important;
    right: -10px !important;
    background-color: #2d2d2d !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: bold !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    border-radius: 50% !important;
    text-align: center !important;
    padding: 0 2px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
    z-index: 10 !important;
}

/* Скрываем, если 0 */
[data-icon-label="0"]:after {
    display: none !important;
}

/* 4. ОТСТУПЫ МЕЖДУ ИКОНКАМИ */
.header-nav > li + li,
.mobile-nav > li + li {
    margin-left: 30px !important;
}

/* 5. ВЫРАВНИВАНИЕ ССЫЛОК */
.header-nav > li > a,
.mobile-nav > li > a {
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    align-items: center;
    min-height: 30px;
}

/* 6. СКРЫВАЕМ РОДНЫЕ КАРТИНКИ (для чистоты) */
.header-cart-icon img, .cart-img-icon {
    display: none !important;
}

/* =====================================================
   MOBILE ICONS SETUP
   ===================================================== */
@media only screen and (max-width: 849px) {
    .is-custom-lucide-icon svg {
        width: 26px !important;
        height: 26px !important;
    }
}

/* Product Title - Newsreader 300 Italic */
.product-page h1.product-title,
.single-product .product-title.entry-title,
.product-info .product-title,
h1.product-title {
    font-family: "Newsreader", Georgia, serif !important;
    font-weight: 300 !important;
    font-style: italic !important;
}

/* --- Уменьшение зачеркнутой цены на странице товара
   Работает на ПК --- */
@media screen and (min-width: 850px) {
    .single-product .product-page-price del,
    .single-product .product-info .price del,
    .single-product .product-info .price del .woocommerce-Price-amount {
        font-size: 0.7em !important; /* Твой рабочий размер для ПК */
        margin-right: 5px !important;
        vertical-align: middle !important;
    }
}


