/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://your-site.com/
 Description:  Дочерняя тема для Hello Elementor
 Author:       Ваше имя
 Author URI:   https://your-site.com/
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Цвет ссылок в хлебных крошках WooCommerce */
.woocommerce-breadcrumb a {
    color: #ffffff; /* белый, можете заменить на любой */
}

/* Цвет обычного текста (название товара) */
.woocommerce-breadcrumb {
    color: #cccccc; /* светло-серый для текущего элемента */
}

/* При наведении можно сделать посветлее */
.woocommerce-breadcrumb a:hover {
    color: #f0f0f0;
}
.custom-cat-bar {
    text-align: center;
    margin-bottom: 30px;
}
.custom-cat-bar {
    text-align: center;
    margin: 20px 0 30px;
}




.custom-cat-bar {
    text-align: center;
    margin: 20px 0 40px; /* больше отступ сверху и снизу */
}
.custom-cat-bar .cat-link {
    display: inline-block;
    margin: 0 20px; /* увеличенные отступы по бокам */
    padding: 12px 28px;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 20px; /* крупнее шрифт */
    font-weight: bold;
    text-transform: uppercase; /* ЗАГЛАВНЫЕ БУКВЫ */
    letter-spacing: 2px; /* разрядка между буквами */
    transition: all 0.3s;
}
.custom-cat-bar .cat-link:hover {
    background: #ffffff;
    color: #000000;
}
.cat-separator {
    color: #ffffff;
    font-size: 20px;
    margin: 0 15px;
    font-weight: bold;
}

/* Гарантированное отображение навигации магазина на мобильных */
@media (max-width: 768px) {
    .custom-cat-bar a {
        display: block !important;
        text-align: left !important;
        font-size: 28px !important;
        font-weight: normal !important;
        color: #48c9b0 !important;
        margin-bottom: 10px !important;
    }
}