/* Показываем блок сразу для избежания CLS */
.category-description-wrapper {
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Скрываем только если JS отключен и нужно быстрое скрытие */
.category-description-wrapper.js-loading {
    opacity: 0;
}

/* Когда готово — показываем */
.category-description-wrapper.ready {
    opacity: 1;
}

/* Текст описания */
.category-description {
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    min-height: 100px; /* Reserve minimum space to prevent CLS */
}

/* Градиент при обрезке */
.category-description-wrapper.collapsed .category-description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3em;
    background: linear-gradient(to bottom, transparent, white);
}

/* Ссылка Read more / Show less */
.category-description-wrapper .read-toggle-link {
    color: #f6871f !important; /* принудительно оранжевый */
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.category-description-wrapper .read-toggle-link:hover {
    text-decoration: underline;
}


/* Адаптив */
@media (max-width: 576px) {
    .category-description-wrapper .read-toggle-link {
        font-size: 14px;
    }

}
