.container-with-products-block {
    background-color: var(--block-color, #f1fcfe);
    padding: 5px 0 15px 0;
    position: relative;
}

.products_tabs {
    position: relative;
}

/* Общий контейнер */
.category-carousel {
    padding: 15px 0;
    transition: opacity 0.3s ease;
}

.category-carousel.ready {
    visibility: visible;
    opacity: 1;
}

/* Каждая карточка */
.category-card {
    width: 90px; /* ширина карточки */
    text-align: center;
    font-family: sans-serif;
}

.category-card a {
    text-decoration: none;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Круглая рамка для изображения */
.category-image {
    width: 82px;
    height: 82px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* обрезка под круг */
}

/* Текст под картинкой */
.category-title {
    font-size: 14px;
    line-height: 1.2; /* высота строки */
    color: #444;
    text-align: center;
    word-break: break-word; /* перенос длинных слов при необходимости */

    /* принудительно минимум две строки */
    min-height: calc(1.2em * 2); /* высота двух строк по line-height */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* максимум 2 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
    align-content: center;
}

#home-local-loader {
    position: fixed; /* фиксированно к экрану */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* занимает весь экран */
    background: rgba(255, 255, 255, 0.6); /* полупрозрачный фон */
    display: flex;
    align-items: center; /* по центру вертикально */
    justify-content: center; /* по центру горизонтально */
    z-index: 9999; /* поверх всех элементов */
}

.preloader-wrapper {
    position: unset !important;
}