.t888-product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t888-showcase-button {
    /* display: flex; */
    align-items: center;
    background: #F3E9E2;
    /* padding: 20px 40px 10px 50px; */
    border-radius: 60px;
    border: none;
    cursor: pointer;
    justify-content: space-between;
    width: 100%;           
    max-width: 440px;      
    height: 90px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 40px;

}

.t888-showcase-box {
    position: relative;
    width: 100%;
    text-align: center;
}

.t888-showcase-button .btn-small {
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    opacity: .7;
    font-weight: 400;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    margin-right: 68px;
    padding-left: 20px;

}

.t888-showcase-button .btn-main {
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #3E2B2E;
    margin-right: 60px;
    white-space: nowrap;

}

.t888-showcase-button .btn-arrow {
    font-size: 40px;
    padding-right: 44px;
}

.t888-showcase-content {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
}

.t888-dropdown {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    background: #F3E9E2;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transform: translateY(-20px) scale(0.98);
    transition: all .55s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 0 40px;
}
.t888-dropdown {
    transition: all .45s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.t888-dropdown.open {
    max-height: 346px;
    opacity: 1;
    transform: translateY(0) scale(1);
    padding: 40px;
}


/* TRẠNG THÁI ĐÓNG (animation ngược) */
.t888-dropdown.closing {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
    padding: 0 40px;
}


.t888-dropdown.closing {
    transition: all .28s cubic-bezier(0.25, 0.1, 0.25, 1); /* đóng nhanh hơn */
}



.toggle-dropdown {
    transition: border-radius .25s ease;
}

.toggle-dropdown.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.icon-down {
    display: none;
}

.toggle-dropdown.active .icon-right {
    display: none;
}

.toggle-dropdown.active .icon-down {
    display: inline-block;
}

/* INNER */
.dropdown-inner {
    background: #F3E9E2;
    padding: 40px;
    margin-top: -45px;
    border-radius: 0 0 45px 45px;
}

.dropdown-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dp-link {
    text-align: center;
    color: #3E2B2E;
    text-decoration: none;
}

.dp-img img {
    width: 100%;
    object-fit: contain;
}

.dp-title {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;

}

.toggle-dropdown.active .icon-right,
.toggle-dropdown.active .icon-right::before {
    display: none !important;
}


.toggle-dropdown:not(.active) .icon-down,
.toggle-dropdown:not(.active) .icon-down::before {
    display: none !important;
}


/* 📱 8. Tablet Responsive */
@media (max-width: 1024px) {
    .t888-product-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .t888-showcase-content {
        bottom: 30px;
    }
}

/* 📱 9. Mobile Responsive */
@media (max-width: 768px) {
    .t888-product-showcase-grid {
        grid-template-columns: 1fr;
    }

    .t888-showcase-button {
        padding: 10px 1px 8px 2px ;
        width: 350px;
        white-space: normal !important;
        
    }
    .t888-showcase-button .btn-main {
        font-size: 18px;
        white-space: normal !important;
    }
    .t888-dropdown{
        
        width: 350px !important;
        white-space: normal !important;
    }
}