/* 
 * FORCE 3 LINES DESCRIPTION - ULTIMATE OVERRIDE
 * แสดง 3 บรรทัด
 */

/* Specific override for the redesigned product cards */
.product-card-new .product-desc-new,
.product-list-item .product-desc-new {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: #6b7280 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    margin: 6px 0 0 0 !important;
    padding: 6px 0 0 0 !important;
    border-top: 1px solid #e5e7eb !important;
    flex-shrink: 0 !important;
}

@media (max-width: 576px) {
    .product-card-new .product-desc-new,
    .product-list-item .product-desc-new {
        font-size: 10px !important;
        line-height: 1.4 !important;
        -webkit-line-clamp: 3 !important;
    }
}
/* FORCE 3 LINES - Override all webkit-line-clamp */
p.product-desc-new,
.product-desc-new {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    min-height: auto !important;
    max-height: none !important;
    margin: 6px 0 0 0 !important;
    padding: 6px 0 0 0 !important;
    border-top: 1px solid #e5e7eb !important;
    font-size: 11px !important;
}