#category-description.category-description--truncated {
    position: relative;
    overflow: hidden !important;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#category-description.category-description--truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(232, 232, 232, 0) 0%, rgba(232, 232, 232, 0.9) 50%, rgba(232, 232, 232, 1) 100%);
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#category-description.category-description--expanded {
    max-height: none;
}

#category-description.category-description--expanded::after {
    opacity: 0;
}

.category-description__toggle {
    display: flex;
    margin-top: 20px;
    background-color: transparent;
    color: #4200bb;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;
    justify-content: center;
}

.category-description__toggle:hover {
    color: #33bdcd;
}
