/*
Theme Name: Flatsome Child
Theme URI: http://flatsome.uxthemes.com
Template: flatsome-autoup-19.6/flatsome
Author: UX-Themes
Author URI: https://uxthemes.com
Description: Multi-Purpose Responsive WooCommerce Theme
Version: 3.19.6.1728300730
Updated: 2024-10-07 18:32:10

*/
.taxonomy-description {
       max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
    padding: 10px;
    background: #dd333305;
    box-shadow: 0px 0px 2px 1px #8c8c8c;
    border-radius: 6px;
	text-align:left;
}
.toggle-description {
    display: inline-block;
    padding: 5px 10px;
    background-color: #dd3333;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.toggle-description:hover {
       background-color: #ffffff;
    border: 2px solid #ff091b;
    color: #ff0c25;
    font-weight: 600;
}

.taxonomy-description.expanded {
    max-height: none;  /* Khi mở rộng thì hiển thị toàn bộ */
}

/* Hiệu ứng fade dần phần dưới của mô tả */
.taxonomy-description::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);  /* Hiệu ứng mờ dần */
    display: none;
}

.taxonomy-description:not(.expanded)::before {
    display: block;  /* Chỉ hiển thị hiệu ứng fade khi mô tả chưa mở rộng */
}

