.woocommerce-Tabs-panel--description {
    position: relative;
    max-height: var(--woo-dc-height, 500px);
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.woocommerce-Tabs-panel--description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.woocommerce-Tabs-panel--description.expanded {
    max-height: none !important;
}
.woocommerce-Tabs-panel--description.expanded::after {
    opacity: 0;
}
.read-more-toggle {
    text-align: center;
    margin-top: 10px;
}
.read-more-toggle button {
    background: #3e3e3e;
    color: #fff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
