.wc-read-more-wrapper {
    font-family: inherit;
    line-height: 1.6;
}

.wc-short-desc {
    display: inline;
}

.wc-read-more-btn,
.wc-read-less-btn {
    color: #96588a;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    margin-left: 4px;
    display: inline-block;
    transition: all 0.2s ease;
    font-size: 0.95em;
}

.wc-read-more-btn:hover,
.wc-read-less-btn:hover {
    color: #7a3d6b;
    text-decoration: underline;
}

.wc-full-desc {
    display: none;
    margin-top: 12px;
    animation: fadeInUp 0.4s ease-out forwards;
}

/* Smooth animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Button style (uncomment to use) */
/*
.wc-read-more-btn {
    background: #96588a;
    color: white !important;
    padding: 6px 12px;
    border-radius: 4px;
    margin-top: 8px;
    display: inline-block;
}
.wc-read-more-btn:hover {
    background: #7a3d6b;
}
*/