/* CSS để sửa lỗi hiển thị của card sản phẩm */
.random-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    height: auto !important; /* Thay đổi từ 40px sang auto */
    min-height: 40px;
    overflow: visible !important; /* Thay đổi từ hidden sang visible */
    white-space: normal;
    word-wrap: break-word;
    display: block !important; /* Thay đổi từ -webkit-box */
}

.random-product-price {
    color: #e31e24;
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 15px;
    display: block;
}

.random-product-item {
    height: auto !important; /* Thay đổi từ 350px */
    min-height: 350px;
    padding-bottom: 15px;
}

/* Đảm bảo không có nội dung bị ẩn trong card */
.random-product-info {
    padding: 15px;
    overflow: visible;
}

/* Ẩn dấu gạch ngang */
.random-product-name:empty:before {
    content: '';
    display: none;
}
