/* کوتاه کردن توضیحات */
.term-description {
    position: relative;
    max-height: 22em;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.term-description.woo-rm-open {
    max-height: none;
}

/* گرادیان fade پایین */
.term-description:not(.woo-rm-open)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

/* دکمه */
.woo-rm-btn {
    display: block;
    margin: 16px auto 0;
    padding: 12px 36px;
    background: #5b4fcf;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 18px rgba(91,79,207,0.28);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.woo-rm-btn:hover {
    background: #4a3fbf;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(91,79,207,0.38);
}
.woo-rm-btn:active {
    transform: translateY(0);
}
