.detail-product {
    max-height: 250px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
    overflow: hidden;
    word-break: break-word;
    font-family: 'interSB';
}

    .detail-product.expanded {
        max-height: none;
        position: unset;
    }

        .detail-product.expanded:after {
            background: none
        }

    .detail-product h2 {
        color: #273584;
        letter-spacing: .01em;
    }

.show-more-btn {
    display: inline-block;
    cursor: pointer;
    color: var(--default-color-2);
    font-weight: bold;
    border: none;
    background: none;
    font-size: 16px;
    width: 100%;
    padding: 11px 20px;
    background: #E5E6ED;
    margin-bottom: 15px;
}

.fade-out {
    content: "";
    position: absolute;
    bottom: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

.detail-product:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, white);
}

.detail-product::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, white);
    transition: opacity 0.3s ease;
    pointer-events: none;
}
