.blinds-category-description-widget {
    position: relative;
}

.blinds-category-description-read-more-button {
    display: inline-block;
    cursor: pointer;
    border-style: solid;
    height: 40px;
    width: 108px;
    padding: 0px;
    font-weight: bold;
    transition: none;
    border-style: solid;
    border-width: 2px;
}

.blinds-category-description-content {
    position: relative;
    overflow: hidden;
    max-height: 4.5em; /* Approximately 3 lines of text */
    transition: max-height 0.5s ease-out;
}

.blinds-category-description-content.expanded {
    max-height: 1000px;
}

.blinds-category-description-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

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

.blinds-category-description-expandable-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
}

.blinds-category-description-expandable-content.active {
    opacity: 1;
}

.blinds-category-description-read-more-content {
    margin-top: 1rem;
}

.blinds-category-description-widget {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.blinds-category-description-content-wrapper {
    flex: 1;
    font-size: 22px;
}

.blinds-category-description-button-wrapper {
    flex-shrink: 0;
}


@media screen and (max-width: 787px) {
    .blinds-category-description-widget {
        flex-direction: column;
        align-items: center;
        gap: 17px;
    }

    .blinds-category-description-content-wrapper {
        font-size: 16px;
    }

    .blinds-category-description-read-more-button{
        width: 170px;
        height: 40px;
    }

    .blinds-category-description-read-more-button:hover {
        color: #6A5D87 !important; /* Same as normal state */
        background: #ffffff !important; /* Same as normal state */
        border-width: 2px !important; /* Same as normal state */
        border-color: #6A5D87 !important; /* Same as normal state */
    }
}